= ra.length ? rb : ra;\n\t\tmemo[i][j] = r;\n\t\treturn r;\n\t}\n}\n\nfunction printDiffWithLCS(r, x, y) {\n\n\tif(r.length===0 && x.length===0 && y.length===0)\n\t\treturn;\n\n\tif(x[0]===y[0] && x[0]===r[0]) {\n\t\tconsole.log(\" \" + x[0]);\n\t\tprintDiffWithLCS(r.slice(1), x.slice(1), y.slice(1));\n\t} else if(x[0]!==r[0]) {\n\t\tconsole.log(\"- \" + x[0]);\n\t\tprintDiffWithLCS(r, x.slice(1), y);\n\t} else { // y[0]!==r[0]\n\t\tconsole.log(\"+ \" + y[0]);\n\t\tprintDiffWithLCS(r, x, y.slice(1));\n\t}\n}\n\nvar r = naive_LCS(linesA, linesB);\nprintDiffWithLCS(r, linesA, linesB);\n\n\n","savedTextString":"\nvar linesA = $morph(\"CodeA\").textString.split(\"\\n\");\nvar linesB = $morph(\"CodeB\").textString.split(\"\\n\");\n\nfunction naive_LCS(x, y, memo) {\n\tvar i = x.length, j = y.length, ra, rb, r;\n\t\n\t// initialize memoization for this LCS.\n\tif(memo == undefined) {\n\t\tmemo = new Array(i);\n\t\tfor(var k=0; k= ra.length ? rb : ra;\n\t\tmemo[i][j] = r;\n\t\treturn r;\n\t}\n}\n\nfunction printDiffWithLCS(r, x, y) {\n\n\tif(r.length===0 && x.length===0 && y.length===0)\n\t\treturn;\n\n\tif(x[0]===y[0] && x[0]===r[0]) {\n\t\tconsole.log(\" \" + x[0]);\n\t\tprintDiffWithLCS(r.slice(1), x.slice(1), y.slice(1));\n\t} else if(x[0]!==r[0]) {\n\t\tconsole.log(\"- \" + x[0]);\n\t\tprintDiffWithLCS(r, x.slice(1), y);\n\t} else { // y[0]!==r[0]\n\t\tconsole.log(\"+ \" + y[0]);\n\t\tprintDiffWithLCS(r, x, y.slice(1));\n\t}\n}\n\nvar r = naive_LCS(linesA, linesB);\nprintDiffWithLCS(r, linesA, linesB);\n\n\n","submorphs":[{"__isSmartRef__":true,"id":"9AE3A423-8009-4BAB-B2B4-8486BFF1ADAF"}],"owner":{"__isSmartRef__":true,"id":"5A2BA5F5-4DB5-45D9-8E0E-E5E61D931FFD"},"_livelyDataWrapperId_":"9911:TextMorph","origin":{"__isSmartRef__":true,"id":"5764747D-02DC-4A54-8CA4-E22823173319"},"shape":{"__isSmartRef__":true,"id":"6468CB3C-EF0E-4D10-8BF4-3DFA802A53B0"},"textContent":{"__isSmartRef__":true,"id":"81AD9566-B51A-424F-9458-91DAEA0694B8"},"lineNumberHint":61,"pvtCachedTransform":{"__isSmartRef__":true,"id":"2074D850-D295-4069-8F30-45E9305EA317"},"textSelection":{"__isSmartRef__":true,"id":"9AE3A423-8009-4BAB-B2B4-8486BFF1ADAF"},"priorExtent":{"__isSmartRef__":true,"id":"A4A36BB9-CD7D-477B-8BC9-7022556A9C5A"},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":"CCED4F14-752E-4335-AFC8-F59C156F1BEA"},"suppressHandles":true,"openForDragAndDrop":false,"isSelecting":false,"hasKeyboardFocus":false,"fontFamily":"Courier","textStyle":{"__isSmartRef__":true,"id":"FA7DA0E7-1CA5-4052-8506-7EF5AEF88B22"},"undoTextStyle":{"__isSmartRef__":true,"id":"1A256E3E-0FDB-45FE-AE43-FD1E4F6DB921"},"__SourceModuleName__":"Global.lively.Text","tabReplacePrefix":"\\","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9911:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,-233.59999999999917)","namespaceURI":null}]},"withLayers":["BrowserSyntaxHighlightLayer"]},"9AE3A423-8009-4BAB-B2B4-8486BFF1ADAF":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":"1DA0E0D0-F7BC-4E28-ADDC-2929493C7692"},"_livelyDataWrapperId_":"9913:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":"2BBF6185-CFC2-4134-B5C5-1F56B906C5B0"},"shape":{"__isSmartRef__":true,"id":"00FEA858-C4BB-4520-8051-84BBE9CBE1BD"},"priorExtent":{"__isSmartRef__":true,"id":"58D7BC5B-6080-472B-9970-7E2BFADAAB25"},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":"4923128C-FCAE-4C6F-9492-0149E3A70A6C"},"openForDragAndDrop":false,"isCursor":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9913:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"2BBF6185-CFC2-4134-B5C5-1F56B906C5B0":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"00FEA858-C4BB-4520-8051-84BBE9CBE1BD":{"_livelyDataWrapperId_":"9912:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"9912:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"58D7BC5B-6080-472B-9970-7E2BFADAAB25":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4923128C-FCAE-4C6F-9492-0149E3A70A6C":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"5764747D-02DC-4A54-8CA4-E22823173319":{"x":0,"y":-233.59999999999917,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"6468CB3C-EF0E-4D10-8BF4-3DFA802A53B0":{"_x":0,"_y":0,"_width":665,"_height":899.5999999999991,"_stroke":{"__isSmartRef__":true,"id":"228C03B8-2215-4D0B-8A19-B202ABBDBA93"},"_fill":{"__isSmartRef__":true,"id":"947A255E-D58F-4C43-AC95-3F39E8C34CD0"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"665","namespaceURI":null},{"key":"height","value":"899.5999999999991","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"81AD9566-B51A-424F-9458-91DAEA0694B8":{"_fill":{"__isSmartRef__":true,"id":"DAB06C03-CF26-4B88-A336-87F68D88C5C4"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"2074D850-D295-4069-8F30-45E9305EA317":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":-233.59999999999917,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"A4A36BB9-CD7D-477B-8BC9-7022556A9C5A":{"x":653,"y":891.5999999999991,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"CCED4F14-752E-4335-AFC8-F59C156F1BEA":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"9914:Morph","origin":{"__isSmartRef__":true,"id":"B6B93803-C526-4C61-9DE8-20B50C40DEC7"},"shape":{"__isSmartRef__":true,"id":"5A6D17BD-4695-4D28-B28B-460954AEFD78"},"priorExtent":{"__isSmartRef__":true,"id":"830D9563-77FE-46A1-94F5-E4248DAD4728"},"mouseHandler":null,"_pointer-events":"none","ignoreWhenCopying":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":"BBED6F05-3E6A-4A3B-B287-59E53051DE1C"},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9914:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"B6B93803-C526-4C61-9DE8-20B50C40DEC7":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"5A6D17BD-4695-4D28-B28B-460954AEFD78":{"_x":0,"_y":0,"_width":5,"_height":5,"_stroke":{"__isSmartRef__":true,"id":"228C03B8-2215-4D0B-8A19-B202ABBDBA93"},"_fill":{"__isSmartRef__":true,"id":"291A4FCC-1D26-4124-82B5-C98A725CC1E3"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"5","namespaceURI":null},{"key":"height","value":"5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(204,0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"291A4FCC-1D26-4124-82B5-C98A725CC1E3":{"r":0.8,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"830D9563-77FE-46A1-94F5-E4248DAD4728":{"x":5,"y":5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"BBED6F05-3E6A-4A3B-B287-59E53051DE1C":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"FA7DA0E7-1CA5-4052-8506-7EF5AEF88B22":{"runs":[1,3,17,7,19,4,3,3,17,7,19,4,4,8,23,1,2,3,43,39,2,2,9,9,2,1,10,3,1,5,7,3,1,3,3,1,5,2,7,1,14,3,1,5,7,1,27,1,3,31,2,2,15,9,2,1,3,6,14,1,3,2,8,1,12,1,3,1,3,33,3,6,7,1,1,4,1,2,3,1,8,1,3,1,3,49,10,1,28,1,11,1,31,6,6,1,1,4,1,1,3,34,37,1,43,1,73,6,5,1,1,1,2,8,27,1,3,2,12,1,15,1,15,1,4,6,4,2,3,1,6,1,7,1,6,1,3,1,15,4,5,1,31,1,11,1,11,1,5,1,1,4,1,2,3,1,6,1,3,1,15,4,5,1,34,1,8,1,1,4,1,1,1,14,15,4,5,1,37,1,5,1,1,1,2,3,72],"values":[{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"5C9B9787-B211-4AAE-B816-0CDA6C9189C7"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"CB104431-01EF-4C96-B745-7ABFFCA81252"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"805E7B28-8185-470D-B5F3-E05D5F681B79"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"22F818C8-A6A2-42E6-9D74-8EE798DB7610"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"F5CAAE62-E214-4D01-8C4B-E5363BFA1920"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"35BC3DA7-2A25-4BEC-A6C0-08604BEC4763"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"A895CE2A-EEF4-47C5-A02A-33A5E4C3C8C4"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"35D7A0F6-804E-4D81-81EF-8898D7B165D7"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"A16E918B-20CC-45DE-993D-B9A79664D2D4"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"2B739192-553B-40CC-ABC9-034A41190C8B"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"9ED80D62-061D-4DB5-85B0-5C7EBC656126"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"611EBF42-51CA-4562-B740-C2F73FCC065A"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"6C1B6AEF-388A-40E7-8598-60F9CF3831B2"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"389642EA-8144-4AB1-A90D-E9B87B65914A"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"3AC641D5-E2DA-4B7B-86F1-76F5A691E1F0"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"07485D45-852C-4771-87A8-A421F8BC9E5D"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"D8840E93-48E6-4EF9-9C97-E573C07E765F"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"AA7E5440-2C08-48C4-B3B7-B9612CA0F4D9"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"0D3AEB8D-4F67-47E5-B3AA-A277ED661082"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"7945938E-9FD3-469C-AE16-358D71861890"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"9EF6CEE5-5D19-4D50-8308-06570BD6BEA0"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"8E2F3D7A-6F62-463D-987C-6865BE426455"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"0CEE3060-D143-45C1-A5C1-8185B7E4388B"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"30D236C5-3BC2-4BC4-8E60-BFC03719DFE6"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"E6DEFD5B-E732-4818-8F2F-53C91E2ED24E"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"B988AE06-0129-4369-8530-8BF1249FBA58"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"D6D24169-76C1-4C2E-98CB-89C26B6E3A67"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"F454E1DE-B000-45D6-96CA-24F3AA08B1C4"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"BE3CA00F-6A4F-4CE2-93F9-98AFC75297C8"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"9FC988B5-5959-4BCB-9CD8-96844D99F23D"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"0EB9B009-4005-430E-A9A8-6CF8EC1961E7"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"9726F0A9-1344-48B1-B881-A3FE67E1209A"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"904D8025-5FA9-4491-A639-91B52B279F0A"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"C6096A2B-2863-477A-BB88-3ED7EE634AD5"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"CFB173EE-2298-48CD-A0E7-CB8F4487D4DE"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"11F43253-991B-41BC-A141-8023111A25B9"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"5F1337DF-C3E7-4334-84AC-81B35FF81080"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"0B9E54C8-77CF-4287-B2E4-9C1EF5A23340"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"3D75D60A-FCCD-4497-AD24-B86D4FBFE17C"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"B6AEE587-A8F5-4C26-B6DF-9FDAF405652F"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"8D6A4006-B871-4D9A-8723-BE29CAA62E32"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"232A519D-7723-4F4C-B411-6701A86D4AD9"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"1238C6A3-ECEE-4B02-BC07-6771FF236A69"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"40DD9B1A-C3BA-4CFE-BA46-D124698D0541"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"DA938DF7-020F-4879-AC8A-872FBD9A2BE3"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"849A3DE5-2195-4A82-BFE8-76E3B05E9F60"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"19F19B2D-AFE7-4B1F-999F-BBAAE181F908"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"0FF332BB-494D-4014-9B4E-7A0D33145FD0"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"45A49968-FC95-46BD-85C4-4A9FDDE4B4F2"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"370F7705-8362-44B0-AD12-6CE4EE264F4F"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"F0A1ADBF-D1F1-417A-A576-AC33A9851C97"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"DC5A0F2A-1D0E-43A8-9E17-B480751E22AE"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"264C89CB-4609-4CA2-956D-29526E9E6354"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"404D2B50-7211-48D8-9D2D-56DDE702DD8B"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"D12599A9-C5D0-44C0-AB33-7C610CAF3159"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"323899D0-36FF-475A-9838-989B0E872418"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"505F9F3C-47E9-42A5-95B7-F2C3CD24612D"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"7598C0FF-3DD3-4A65-922F-6809FE42DAFD"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"EE6E3653-F8BF-4E45-9C7B-3712580468DB"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"C88FA5BA-0DC0-4950-858B-82D9121267A6"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"86DBD914-4DEE-46E0-86DD-F016E3866F35"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"041FFDAC-4371-4E61-91AB-E26A0432C6A1"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"6E272F25-EFF8-4E79-808F-C511C2582A74"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"509213AD-9751-4A98-A7B1-C2451BD9E3B1"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"34380507-78C5-4BB9-B725-DC3D261C33DD"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"199D996B-0CC9-4531-9F3A-9D1042772AF7"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"FACBF520-4D25-4428-B391-9CEAF07BE75E"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"1582B8A2-D809-4EB3-8F81-2B5AD959C830"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"1344D47B-63F4-451C-AE02-7F3972FD0B2B"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"3892FD68-0FF7-4C7A-8A4B-A334C0BFA96C"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"338CF3BA-DCCB-4428-89F4-2CCF66807893"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"34FA600D-B5FC-4F63-A26C-ED72448B7F68"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"92E796D0-2027-4BEE-B460-E8C3D3BC49D4"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"CE9C5F0E-9156-4FA1-8AB9-833373AE645F"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"A0A98EB1-58D0-4CE8-8721-E8256329172A"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"53756847-2AD6-4532-9603-E451F1BFFF3F"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"46709EA4-F77C-4209-ADEF-DAC0ECC8F59B"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"293A1C61-5895-4C43-9117-61F189573968"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"0C8E32BF-A490-43E3-B836-CC5D191D77EB"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"9FAF0F85-4067-4C4A-AF50-A8D76457FAAA"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"9F836BFD-2EE6-42EC-910F-3C5964C98D14"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"1AA9C3BA-E128-4ECA-94E3-E799B04E2580"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"E7CF55F3-D1C0-44DA-859F-C8879121A63C"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"14F94D4F-3302-4DFA-9441-A2A4ECD50758"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"8A3AAC31-E9AE-4D58-A2C4-57FBBD1ADD70"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"7CC49CD1-25AA-4F9E-94C6-81C4F6F9AF54"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"FF66A9C4-A282-4741-8753-426B23D880BF"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"758651E8-E62D-47B3-B0C2-560E2BA389FE"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"3E835CCE-82E4-4B99-A226-90E9D1071F22"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"2E3E693C-A642-48B6-A75B-01F9D57FE259"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"38A917BD-5A8D-4AA3-BE86-5F20C791C314"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"2D5AC6F7-1C83-4D64-A876-C29BBBA4F4BE"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"},{"__isSmartRef__":true,"id":"1A6FE34B-B43A-426B-83E8-FCA98FBAF28A"},{"__isSmartRef__":true,"id":"549B89F0-855D-4779-A31D-4120CF5FF71A"}],"lastIndex":1333,"lastRunIndex":186,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"549B89F0-855D-4779-A31D-4120CF5FF71A":{"color":{"__isSmartRef__":true,"id":"23449ADD-6450-4212-A13A-3F70DACAAC6F"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"23449ADD-6450-4212-A13A-3F70DACAAC6F":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"5C9B9787-B211-4AAE-B816-0CDA6C9189C7":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"72DDD53F-A294-470F-9159-ED76C7F8C298":{"r":0,"g":0,"b":0.5019607843137255,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"CB104431-01EF-4C96-B745-7ABFFCA81252":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"C81029C3-47AD-45E4-A068-F411BE3F4A55":{"r":0,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"805E7B28-8185-470D-B5F3-E05D5F681B79":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"22F818C8-A6A2-42E6-9D74-8EE798DB7610":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"F5CAAE62-E214-4D01-8C4B-E5363BFA1920":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"35BC3DA7-2A25-4BEC-A6C0-08604BEC4763":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"A895CE2A-EEF4-47C5-A02A-33A5E4C3C8C4":{"color":{"__isSmartRef__":true,"id":"59B82D7F-1103-44AF-8F08-68FAA702843C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"59B82D7F-1103-44AF-8F08-68FAA702843C":{"r":0,"g":0,"b":0.5450980392156862,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"35D7A0F6-804E-4D81-81EF-8898D7B165D7":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5":{"r":0,"g":0.5019607843137255,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"A16E918B-20CC-45DE-993D-B9A79664D2D4":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"2B739192-553B-40CC-ABC9-034A41190C8B":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"9ED80D62-061D-4DB5-85B0-5C7EBC656126":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"611EBF42-51CA-4562-B740-C2F73FCC065A":{"color":{"__isSmartRef__":true,"id":"0B15BC01-3387-47ED-B57D-E21123D4474C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"0B15BC01-3387-47ED-B57D-E21123D4474C":{"r":0.5019607843137255,"g":0,"b":0.5019607843137255,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"6C1B6AEF-388A-40E7-8598-60F9CF3831B2":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"389642EA-8144-4AB1-A90D-E9B87B65914A":{"color":{"__isSmartRef__":true,"id":"59B82D7F-1103-44AF-8F08-68FAA702843C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"3AC641D5-E2DA-4B7B-86F1-76F5A691E1F0":{"color":{"__isSmartRef__":true,"id":"EC235AFD-CCFF-4C18-9CB0-2BB57057D9CE"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"EC235AFD-CCFF-4C18-9CB0-2BB57057D9CE":{"r":1,"g":0.0784313725490196,"b":0.5764705882352941,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"07485D45-852C-4771-87A8-A421F8BC9E5D":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"D8840E93-48E6-4EF9-9C97-E573C07E765F":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"AA7E5440-2C08-48C4-B3B7-B9612CA0F4D9":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"6DEC6613-BA82-4D84-A2CA-22D1A990A724":{"r":0,"g":0,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"0D3AEB8D-4F67-47E5-B3AA-A277ED661082":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"7945938E-9FD3-469C-AE16-358D71861890":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"9EF6CEE5-5D19-4D50-8308-06570BD6BEA0":{"color":{"__isSmartRef__":true,"id":"59B82D7F-1103-44AF-8F08-68FAA702843C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"8E2F3D7A-6F62-463D-987C-6865BE426455":{"color":{"__isSmartRef__":true,"id":"EC235AFD-CCFF-4C18-9CB0-2BB57057D9CE"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"0CEE3060-D143-45C1-A5C1-8185B7E4388B":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"30D236C5-3BC2-4BC4-8E60-BFC03719DFE6":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"E6DEFD5B-E732-4818-8F2F-53C91E2ED24E":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"B988AE06-0129-4369-8530-8BF1249FBA58":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"D6D24169-76C1-4C2E-98CB-89C26B6E3A67":{"color":{"__isSmartRef__":true,"id":"0B15BC01-3387-47ED-B57D-E21123D4474C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"F454E1DE-B000-45D6-96CA-24F3AA08B1C4":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"BE3CA00F-6A4F-4CE2-93F9-98AFC75297C8":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"9FC988B5-5959-4BCB-9CD8-96844D99F23D":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"0EB9B009-4005-430E-A9A8-6CF8EC1961E7":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"9726F0A9-1344-48B1-B881-A3FE67E1209A":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"904D8025-5FA9-4491-A639-91B52B279F0A":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"C6096A2B-2863-477A-BB88-3ED7EE634AD5":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"CFB173EE-2298-48CD-A0E7-CB8F4487D4DE":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"11F43253-991B-41BC-A141-8023111A25B9":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"5F1337DF-C3E7-4334-84AC-81B35FF81080":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"0B9E54C8-77CF-4287-B2E4-9C1EF5A23340":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"3D75D60A-FCCD-4497-AD24-B86D4FBFE17C":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"B6AEE587-A8F5-4C26-B6DF-9FDAF405652F":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"8D6A4006-B871-4D9A-8723-BE29CAA62E32":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"232A519D-7723-4F4C-B411-6701A86D4AD9":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"1238C6A3-ECEE-4B02-BC07-6771FF236A69":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"40DD9B1A-C3BA-4CFE-BA46-D124698D0541":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"DA938DF7-020F-4879-AC8A-872FBD9A2BE3":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"849A3DE5-2195-4A82-BFE8-76E3B05E9F60":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"19F19B2D-AFE7-4B1F-999F-BBAAE181F908":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"0FF332BB-494D-4014-9B4E-7A0D33145FD0":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"45A49968-FC95-46BD-85C4-4A9FDDE4B4F2":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"370F7705-8362-44B0-AD12-6CE4EE264F4F":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"F0A1ADBF-D1F1-417A-A576-AC33A9851C97":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"DC5A0F2A-1D0E-43A8-9E17-B480751E22AE":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"264C89CB-4609-4CA2-956D-29526E9E6354":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"404D2B50-7211-48D8-9D2D-56DDE702DD8B":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"D12599A9-C5D0-44C0-AB33-7C610CAF3159":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"323899D0-36FF-475A-9838-989B0E872418":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"505F9F3C-47E9-42A5-95B7-F2C3CD24612D":{"color":{"__isSmartRef__":true,"id":"59B82D7F-1103-44AF-8F08-68FAA702843C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"7598C0FF-3DD3-4A65-922F-6809FE42DAFD":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"EE6E3653-F8BF-4E45-9C7B-3712580468DB":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"C88FA5BA-0DC0-4950-858B-82D9121267A6":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"86DBD914-4DEE-46E0-86DD-F016E3866F35":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"041FFDAC-4371-4E61-91AB-E26A0432C6A1":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"6E272F25-EFF8-4E79-808F-C511C2582A74":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"509213AD-9751-4A98-A7B1-C2451BD9E3B1":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"34380507-78C5-4BB9-B725-DC3D261C33DD":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"199D996B-0CC9-4531-9F3A-9D1042772AF7":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"FACBF520-4D25-4428-B391-9CEAF07BE75E":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"1582B8A2-D809-4EB3-8F81-2B5AD959C830":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"1344D47B-63F4-451C-AE02-7F3972FD0B2B":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"3892FD68-0FF7-4C7A-8A4B-A334C0BFA96C":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"338CF3BA-DCCB-4428-89F4-2CCF66807893":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"34FA600D-B5FC-4F63-A26C-ED72448B7F68":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"92E796D0-2027-4BEE-B460-E8C3D3BC49D4":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"CE9C5F0E-9156-4FA1-8AB9-833373AE645F":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"A0A98EB1-58D0-4CE8-8721-E8256329172A":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"53756847-2AD6-4532-9603-E451F1BFFF3F":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"46709EA4-F77C-4209-ADEF-DAC0ECC8F59B":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"293A1C61-5895-4C43-9117-61F189573968":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"0C8E32BF-A490-43E3-B836-CC5D191D77EB":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"9FAF0F85-4067-4C4A-AF50-A8D76457FAAA":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"9F836BFD-2EE6-42EC-910F-3C5964C98D14":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"1AA9C3BA-E128-4ECA-94E3-E799B04E2580":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"E7CF55F3-D1C0-44DA-859F-C8879121A63C":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"14F94D4F-3302-4DFA-9441-A2A4ECD50758":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"8A3AAC31-E9AE-4D58-A2C4-57FBBD1ADD70":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"7CC49CD1-25AA-4F9E-94C6-81C4F6F9AF54":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"FF66A9C4-A282-4741-8753-426B23D880BF":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"758651E8-E62D-47B3-B0C2-560E2BA389FE":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"3E835CCE-82E4-4B99-A226-90E9D1071F22":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"2E3E693C-A642-48B6-A75B-01F9D57FE259":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"38A917BD-5A8D-4AA3-BE86-5F20C791C314":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"2D5AC6F7-1C83-4D64-A876-C29BBBA4F4BE":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"1A6FE34B-B43A-426B-83E8-FCA98FBAF28A":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"1A256E3E-0FDB-45FE-AE43-FD1E4F6DB921":{"runs":[1,3,17,7,19,4,3,3,17,7,19,4,4,8,23,1,2,3,43,39,2,2,9,9,2,1,10,3,1,5,7,3,1,3,3,1,5,2,7,1,14,3,1,5,7,1,27,1,3,31,2,2,15,9,2,1,3,6,14,1,3,2,8,1,12,1,3,1,3,33,3,6,7,1,1,4,1,2,3,1,8,1,3,1,3,49,10,1,28,1,11,1,31,6,6,1,1,4,1,1,3,34,37,1,43,1,73,6,5,1,1,1,2,8,27,1,3,2,12,1,15,1,15,1,4,6,4,2,3,1,6,1,7,1,6,1,3,29,58,1,1,4,1,2,3,1,6,1,3,1,68,1,1,4,1,1,1,14,68,1,1,1,2,3,71],"values":[{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"B2929DEF-7ABE-4080-BE86-986644CA029B"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"C3ACBF61-F4D0-4A0D-B1CB-7121441D5332"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"957C549E-EAB5-4643-8996-AA5C4C863615"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"0693158F-F5EA-48AF-8357-D3363AE55BBD"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"62123A6A-4E0E-4C98-B3A3-306A005A7A7D"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"509A388C-B99C-4FCE-90FE-B87185275BB7"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"B15DE7BA-FE5B-46BA-902D-A93BC159F1AF"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"CC429643-1C83-460A-B02F-48CF2E07DCBC"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"D66A168B-CCCD-41D3-A4D2-23242ED35DE1"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"7D29BFFE-788F-4243-8AA9-01EB3D6ACE94"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"E6087F2D-A802-4DC9-95AA-2B01A74306F8"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"4C780F87-46D3-4F9A-9E7D-7BCAEBE50043"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"29D410AD-2776-4612-824C-D0BD90CCD19E"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"213B04B1-81A3-46F5-8D51-9CCD57A1ABEC"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"4FB9741B-8D63-488B-8A8E-1972BC39EDCB"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"CE42C73D-94E1-446E-88A0-B0913765319A"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"91AB5DE0-0343-47F5-A125-3105B43C5127"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"92963AA2-BB9E-4962-B5DF-02BEEF599534"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"4E7D704F-F16B-4442-9189-F57A0383FA90"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"CE655D21-7137-4CF2-8FAD-37BABADFD736"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"3F3CA082-CBB4-43D6-AEB8-684D8FA694DD"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"5C04FC2A-6288-46B8-A87F-5FBB59999A89"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"BDCF2795-C1BA-4489-9BB0-CD1F94362290"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"04E4AAAB-F946-4EFA-89D3-CE1DC2C30CBD"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"BBDCBFD4-7AB0-46C8-9405-8CBB89B54255"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"1230ABB0-A158-4EEA-8E80-A7C15A771091"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"812A1E52-1647-404E-A6FB-5F7B828FC047"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"0AB0C290-6760-4255-A3AC-C78306A71549"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"B06BC633-AFE6-4BDB-BC91-E002C7BA98DF"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"63FBCEB2-22D5-475C-9144-3245695B3765"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"33EABBC0-8F89-4951-88AF-234D122F9954"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"6C2A7CBB-A8D3-4E63-9B7F-906B152500FE"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"DD590260-98F6-41A3-B4DC-6E4B9C37ED1F"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"7218BCAA-A756-4195-BF4D-C139C6C036CE"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"3D1C3BD0-5CDA-4492-B31F-9039A77C75E2"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"FFC6B334-4602-465B-BD20-EAFB4851846E"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"5D666BCB-BDBD-47AC-BE41-B75F44C1A598"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"D5ADF432-5F27-4AF1-A27F-F9F5851E9F55"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"F218CD02-6B57-4E57-9DBF-0C4B3892CE39"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"158A980E-D4F3-4991-B54E-58BAE4897A67"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"482CFD9E-A671-490A-9197-1E60C63ADA7B"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"CF32966C-66C7-4C0C-AA96-581C48BB8BDA"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"63BD247E-C1A7-4C02-B31F-55AAFC16B140"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"527A0053-8165-4D54-998C-5117CD8EE984"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"157EB685-CFFC-4989-985A-C47112D6728B"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"7029D742-F94F-4CC0-A858-42A1F622536C"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"B5E00F4E-D196-4550-97EA-C8ACDBD0B57A"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"9EF44F80-824B-48C7-9A05-88BA7BA2F475"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"8CFF9740-1BB6-4622-B0D3-A2F15061940B"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"AE27F70B-420E-48B7-9F5E-9F91E6566C80"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"7BDDBA45-0B3A-429E-9A96-276A8C9132B4"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"D6EC7D99-2328-4E8E-8D19-700451250526"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"1E1D188D-0C98-4AD2-93F3-AEC2A430C20D"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"96A157EA-8B7F-433C-931C-32CD70D1A958"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"27D6C3A2-EA8B-46DF-9AB2-D3CF372DE9E1"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"C20D6827-A2F5-4149-9C67-729FF76C3291"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"7DDC4BA5-C1D4-4EB8-BBE9-D7B75B27D402"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"B0E4B51B-1B84-406A-97C1-68721187E170"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"31956086-E4DD-445D-96DA-09DA52CD1EF1"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"AD0AEE89-A685-4CC1-B764-F942444C7E9F"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"38E10F0D-82B0-48BF-B837-042C7942C11A"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"B263B71D-E8B9-4F20-BBA7-3A665EDC96A3"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"ABA0E0A9-9FBE-4058-832A-92E93D5F3C58"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"E7016F00-DA9B-44A2-95D6-A4D168B81F8C"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"1628E32D-0195-4BC3-A5BA-7A964D319483"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"44F54E64-C78F-48CC-ADD1-BE44B57010FC"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"19FB1CC8-DA7F-4356-B98D-9BB5B545CF44"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"3A81072C-A68E-4950-9ABC-7670DCABE738"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"FE00357B-6CE8-4C0F-AE33-E26821B490C1"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"8060C3C4-0E37-43B2-86AA-1B8B7456933B"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"F12B932D-749A-4CCA-B1F6-F2C4755166A6"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"FF575597-A9A4-47D0-8F8E-2AD2F8224398"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"E0B4F04F-F11A-4974-8CF8-7909EB58BFD2"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"B58019C6-8D82-47F4-AE97-91CC20444C83"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"562B23A1-69D7-4FA1-9C9B-9EB3C130A1D5"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"85E50A44-2729-48E5-B9FC-0267AC387517"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"FFF6FD76-AEA6-4C6C-8924-59BD3B98BEA9"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"638BC789-20DE-46CA-9AFF-249092470169"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"DB698B5C-2FE6-4F71-97EF-FC9DC19DFD34"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"F81BABAA-AB50-4453-96A7-B4D8EC7A8CE1"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"DB42A1E6-BBEB-4878-B460-D0B817C3D514"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"},{"__isSmartRef__":true,"id":"6F3099B6-894A-4573-9733-16F4CE894DEF"},{"__isSmartRef__":true,"id":"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F"}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"D7AD2B29-F2AB-4442-9C59-530DF2E9F59F":{"color":{"__isSmartRef__":true,"id":"23449ADD-6450-4212-A13A-3F70DACAAC6F"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"B2929DEF-7ABE-4080-BE86-986644CA029B":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"C3ACBF61-F4D0-4A0D-B1CB-7121441D5332":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"957C549E-EAB5-4643-8996-AA5C4C863615":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"0693158F-F5EA-48AF-8357-D3363AE55BBD":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"62123A6A-4E0E-4C98-B3A3-306A005A7A7D":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"509A388C-B99C-4FCE-90FE-B87185275BB7":{"color":{"__isSmartRef__":true,"id":"C81029C3-47AD-45E4-A068-F411BE3F4A55"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"B15DE7BA-FE5B-46BA-902D-A93BC159F1AF":{"color":{"__isSmartRef__":true,"id":"59B82D7F-1103-44AF-8F08-68FAA702843C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"CC429643-1C83-460A-B02F-48CF2E07DCBC":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"D66A168B-CCCD-41D3-A4D2-23242ED35DE1":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"7D29BFFE-788F-4243-8AA9-01EB3D6ACE94":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"E6087F2D-A802-4DC9-95AA-2B01A74306F8":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"4C780F87-46D3-4F9A-9E7D-7BCAEBE50043":{"color":{"__isSmartRef__":true,"id":"0B15BC01-3387-47ED-B57D-E21123D4474C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"29D410AD-2776-4612-824C-D0BD90CCD19E":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"213B04B1-81A3-46F5-8D51-9CCD57A1ABEC":{"color":{"__isSmartRef__":true,"id":"59B82D7F-1103-44AF-8F08-68FAA702843C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"4FB9741B-8D63-488B-8A8E-1972BC39EDCB":{"color":{"__isSmartRef__":true,"id":"EC235AFD-CCFF-4C18-9CB0-2BB57057D9CE"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"CE42C73D-94E1-446E-88A0-B0913765319A":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"91AB5DE0-0343-47F5-A125-3105B43C5127":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"92963AA2-BB9E-4962-B5DF-02BEEF599534":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"4E7D704F-F16B-4442-9189-F57A0383FA90":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"CE655D21-7137-4CF2-8FAD-37BABADFD736":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"3F3CA082-CBB4-43D6-AEB8-684D8FA694DD":{"color":{"__isSmartRef__":true,"id":"59B82D7F-1103-44AF-8F08-68FAA702843C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"5C04FC2A-6288-46B8-A87F-5FBB59999A89":{"color":{"__isSmartRef__":true,"id":"EC235AFD-CCFF-4C18-9CB0-2BB57057D9CE"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"BDCF2795-C1BA-4489-9BB0-CD1F94362290":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"04E4AAAB-F946-4EFA-89D3-CE1DC2C30CBD":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"BBDCBFD4-7AB0-46C8-9405-8CBB89B54255":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"1230ABB0-A158-4EEA-8E80-A7C15A771091":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"812A1E52-1647-404E-A6FB-5F7B828FC047":{"color":{"__isSmartRef__":true,"id":"0B15BC01-3387-47ED-B57D-E21123D4474C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"0AB0C290-6760-4255-A3AC-C78306A71549":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"B06BC633-AFE6-4BDB-BC91-E002C7BA98DF":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"63FBCEB2-22D5-475C-9144-3245695B3765":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"33EABBC0-8F89-4951-88AF-234D122F9954":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"6C2A7CBB-A8D3-4E63-9B7F-906B152500FE":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"DD590260-98F6-41A3-B4DC-6E4B9C37ED1F":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"7218BCAA-A756-4195-BF4D-C139C6C036CE":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"3D1C3BD0-5CDA-4492-B31F-9039A77C75E2":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"FFC6B334-4602-465B-BD20-EAFB4851846E":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"5D666BCB-BDBD-47AC-BE41-B75F44C1A598":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"D5ADF432-5F27-4AF1-A27F-F9F5851E9F55":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"F218CD02-6B57-4E57-9DBF-0C4B3892CE39":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"158A980E-D4F3-4991-B54E-58BAE4897A67":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"482CFD9E-A671-490A-9197-1E60C63ADA7B":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"CF32966C-66C7-4C0C-AA96-581C48BB8BDA":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"63BD247E-C1A7-4C02-B31F-55AAFC16B140":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"527A0053-8165-4D54-998C-5117CD8EE984":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"157EB685-CFFC-4989-985A-C47112D6728B":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"7029D742-F94F-4CC0-A858-42A1F622536C":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"B5E00F4E-D196-4550-97EA-C8ACDBD0B57A":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"9EF44F80-824B-48C7-9A05-88BA7BA2F475":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"8CFF9740-1BB6-4622-B0D3-A2F15061940B":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"AE27F70B-420E-48B7-9F5E-9F91E6566C80":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"7BDDBA45-0B3A-429E-9A96-276A8C9132B4":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"D6EC7D99-2328-4E8E-8D19-700451250526":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"1E1D188D-0C98-4AD2-93F3-AEC2A430C20D":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"96A157EA-8B7F-433C-931C-32CD70D1A958":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"27D6C3A2-EA8B-46DF-9AB2-D3CF372DE9E1":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"C20D6827-A2F5-4149-9C67-729FF76C3291":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"7DDC4BA5-C1D4-4EB8-BBE9-D7B75B27D402":{"color":{"__isSmartRef__":true,"id":"59B82D7F-1103-44AF-8F08-68FAA702843C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"B0E4B51B-1B84-406A-97C1-68721187E170":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"31956086-E4DD-445D-96DA-09DA52CD1EF1":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"AD0AEE89-A685-4CC1-B764-F942444C7E9F":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"38E10F0D-82B0-48BF-B837-042C7942C11A":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"B263B71D-E8B9-4F20-BBA7-3A665EDC96A3":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"ABA0E0A9-9FBE-4058-832A-92E93D5F3C58":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"E7016F00-DA9B-44A2-95D6-A4D168B81F8C":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"1628E32D-0195-4BC3-A5BA-7A964D319483":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"44F54E64-C78F-48CC-ADD1-BE44B57010FC":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"19FB1CC8-DA7F-4356-B98D-9BB5B545CF44":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"3A81072C-A68E-4950-9ABC-7670DCABE738":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"FE00357B-6CE8-4C0F-AE33-E26821B490C1":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"8060C3C4-0E37-43B2-86AA-1B8B7456933B":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"F12B932D-749A-4CCA-B1F6-F2C4755166A6":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"FF575597-A9A4-47D0-8F8E-2AD2F8224398":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"E0B4F04F-F11A-4974-8CF8-7909EB58BFD2":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"B58019C6-8D82-47F4-AE97-91CC20444C83":{"color":{"__isSmartRef__":true,"id":"6DEC6613-BA82-4D84-A2CA-22D1A990A724"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"562B23A1-69D7-4FA1-9C9B-9EB3C130A1D5":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"85E50A44-2729-48E5-B9FC-0267AC387517":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"FFF6FD76-AEA6-4C6C-8924-59BD3B98BEA9":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"638BC789-20DE-46CA-9AFF-249092470169":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"DB698B5C-2FE6-4F71-97EF-FC9DC19DFD34":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"F81BABAA-AB50-4453-96A7-B4D8EC7A8CE1":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"DB42A1E6-BBEB-4878-B460-D0B817C3D514":{"color":{"__isSmartRef__":true,"id":"F63A45B1-D0A3-453E-8BCA-559D8BB46BF5"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"6F3099B6-894A-4573-9733-16F4CE894DEF":{"color":{"__isSmartRef__":true,"id":"72DDD53F-A294-470F-9159-ED76C7F8C298"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"414E22FD-66D3-48FE-A4AC-25F3EE612C80":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"66C7C2FA-1060-470F-8A61-8D71A47494B6":{"_x":0,"_y":0,"_width":665,"_height":667,"_fill":{"__isSmartRef__":true,"id":"947A255E-D58F-4C43-AC95-3F39E8C34CD0"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"665","namespaceURI":null},{"key":"height","value":"667","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"2FDB2CB1-8CF3-42B1-98BC-CA44D1C65FDE":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"28A53FA1-C6D7-4CAA-94B9-29EF84D97ECB":{"_livelyDataWrapperId_":"39:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":"60EAD917-BBC9-4673-9A0D-CFC90F932FB1"},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"39:lively.scene.Clip","namespaceURI":null}]}},"60EAD917-BBC9-4673-9A0D-CFC90F932FB1":{"_fill":{"__isSmartRef__":true,"id":"947A255E-D58F-4C43-AC95-3F39E8C34CD0"},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"665","namespaceURI":null},{"key":"height","value":"667","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"5F52948E-5CAD-46D0-B6B4-46D2CCA8C07B":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"24ACC2D7-74A4-412A-9044-70BCC3B76590":{"layoutOnSubmorphLayout":{"__isSmartRef__":true,"id":"90858084-0D68-4DD3-B434-AB2D7B5FED72"}},"90858084-0D68-4DD3-B434-AB2D7B5FED72":{"varMapping":{"__isSmartRef__":true,"id":"376CC018-D653-47E6-9B48-7F67485FE03B"},"source":"function layoutOnSubmorphLayout() { return true }","funcProperties":{"__isSmartRef__":true,"id":"A2BBC5AE-7A07-491F-9FB5-8EC0419D97D1"},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"376CC018-D653-47E6-9B48-7F67485FE03B":{"this":{"__isSmartRef__":true,"id":"5A2BA5F5-4DB5-45D9-8E0E-E5E61D931FFD"},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":"0DEDCC02-1D7B-403E-83FF-E4BFC2679805"}},"0DEDCC02-1D7B-403E-83FF-E4BFC2679805":{"$super":{"__isSmartRef__":true,"id":"B31BF0D4-1559-42FF-BB41-666194D3BEEA"}},"B31BF0D4-1559-42FF-BB41-666194D3BEEA":{"varMapping":{"__isSmartRef__":true,"id":"A9BF40C0-B739-400C-B6E3-CCDF0A58084B"},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":"0F3C3088-70E7-4D7F-A2D6-D6AA4E4890B5"},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"A9BF40C0-B739-400C-B6E3-CCDF0A58084B":{"obj":{"__isSmartRef__":true,"id":"5A2BA5F5-4DB5-45D9-8E0E-E5E61D931FFD"},"name":"layoutOnSubmorphLayout"},"0F3C3088-70E7-4D7F-A2D6-D6AA4E4890B5":{},"A2BBC5AE-7A07-491F-9FB5-8EC0419D97D1":{},"BB151E23-1200-4A41-9C6C-0F68459C9D3A":{"submorphs":[{"__isSmartRef__":true,"id":"60A45C04-DBB0-4429-A000-CA0D2AA14984"}],"owner":{"__isSmartRef__":true,"id":"B9670E7C-5307-4C40-B904-796C8C08A6E5"},"_livelyDataWrapperId_":"9918:SliderMorph","origin":{"__isSmartRef__":true,"id":"3A37BE53-F014-4017-86B3-52BE195222BA"},"shape":{"__isSmartRef__":true,"id":"A9F5CC2D-0D59-486C-8970-624334C54C12"},"priorExtent":{"__isSmartRef__":true,"id":"25752FDF-5029-4E81-B290-C8A609680AD2"},"value":0.9709060681629261,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":"80FD6547-3FF5-4C73-84BD-322173C97C4D"},"sliderKnob":{"__isSmartRef__":true,"id":"60A45C04-DBB0-4429-A000-CA0D2AA14984"},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":"3E4BE896-B19B-429F-B4AA-B7485CA6D8EA"},{"__isSmartRef__":true,"id":"1AEE3B95-9AF2-46AA-8820-F79961A65601"}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"openForDragAndDrop":false,"hitPoint":{"__isSmartRef__":true,"id":"98BDCB82-D6EE-43DA-A6A8-6762AE918BB4"},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"SliderMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9918:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(664,0)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"60A45C04-DBB0-4429-A000-CA0D2AA14984":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":"BB151E23-1200-4A41-9C6C-0F68459C9D3A"},"_livelyDataWrapperId_":"9919:Morph","origin":{"__isSmartRef__":true,"id":"6131864C-23E1-4FF2-B921-356B6430CF8A"},"shape":{"__isSmartRef__":true,"id":"154119A5-3E0A-4A6B-B03D-94C6C083094C"},"priorExtent":{"__isSmartRef__":true,"id":"11135B3D-0B1B-4868-AD68-B7DC7D4410DC"},"pvtCachedTransform":{"__isSmartRef__":true,"id":"4D0DB680-9A27-4D05-AAB0-D628DEDF668F"},"mouseHandler":{"__isSmartRef__":true,"id":"E977F5AB-83AC-44F6-AE0F-5198D412AB31"},"styleClass":["slider"],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9919:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,167.60252555699856)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"6131864C-23E1-4FF2-B921-356B6430CF8A":{"x":0,"y":167.60252555699856,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"154119A5-3E0A-4A6B-B03D-94C6C083094C":{"_x":0,"_y":0,"_width":13,"_height":494.3751384888106,"_stroke":{"__isSmartRef__":true,"id":"5173D465-685F-4BAD-B862-BE91FE507778"},"_fill":{"__isSmartRef__":true,"id":"0CCF4E96-2E24-41EB-A00A-0476D6F40F71"},"_rx":6,"_ry":6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"494.3751384888106","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"5173D465-685F-4BAD-B862-BE91FE507778":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"0CCF4E96-2E24-41EB-A00A-0476D6F40F71":{"vector":{"__isSmartRef__":true,"id":"A3324BE4-3F8A-4DCD-ACA9-0C0D2504DC7D"},"stops":[{"__isSmartRef__":true,"id":"95A2F749-725E-495F-A7B5-3806D7451A86"},{"__isSmartRef__":true,"id":"1C2E6BE1-4D22-4ADD-B402-BEF1F6F00F34"},{"__isSmartRef__":true,"id":"AB051F87-F1BD-43D9-8CC0-777061C39C5B"}],"refcount":113,"_livelyDataWrapperId_":"18:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"18:lively.paint.LinearGradient","namespaceURI":null}]}},"A3324BE4-3F8A-4DCD-ACA9-0C0D2504DC7D":{"x":0,"y":0,"width":1,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"95A2F749-725E-495F-A7B5-3806D7451A86":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(196,211,221)","namespaceURI":null}]}},"1C2E6BE1-4D22-4ADD-B402-BEF1F6F00F34":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(137,167,187)","namespaceURI":null}]}},"AB051F87-F1BD-43D9-8CC0-777061C39C5B":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(96,130,153)","namespaceURI":null}]}},"11135B3D-0B1B-4868-AD68-B7DC7D4410DC":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4D0DB680-9A27-4D05-AAB0-D628DEDF668F":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":167.60252555699856,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"E977F5AB-83AC-44F6-AE0F-5198D412AB31":{"target":{"__isSmartRef__":true,"id":"BB151E23-1200-4A41-9C6C-0F68459C9D3A"},"eventSpec":{"__isSmartRef__":true,"id":"1D04427E-24D4-4456-9C7B-1258F0EEA200"},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"MouseHandlerForRelay"},"1D04427E-24D4-4456-9C7B-1258F0EEA200":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"3A37BE53-F014-4017-86B3-52BE195222BA":{"x":664,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"A9F5CC2D-0D59-486C-8970-624334C54C12":{"_x":0,"_y":0,"_width":13,"_height":667,"_stroke":{"__isSmartRef__":true,"id":"E97C7346-7AAD-41D2-9F4E-A5E297092762"},"_fill":{"__isSmartRef__":true,"id":"71862A60-76AA-4259-B37F-BDE3048DE6AB"},"_rx":6,"_ry":6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"667","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"E97C7346-7AAD-41D2-9F4E-A5E297092762":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"71862A60-76AA-4259-B37F-BDE3048DE6AB":{"vector":{"__isSmartRef__":true,"id":"A3324BE4-3F8A-4DCD-ACA9-0C0D2504DC7D"},"stops":[{"__isSmartRef__":true,"id":"057E6F5D-2380-40C7-8725-B77B820A956E"},{"__isSmartRef__":true,"id":"6457600E-AF48-46D7-87E9-BBCD2D0EF18D"},{"__isSmartRef__":true,"id":"87C5D5DC-DF9B-4A2C-ABE2-6BF7B37B08A9"}],"refcount":174,"_livelyDataWrapperId_":"19:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"19:lively.paint.LinearGradient","namespaceURI":null}]}},"057E6F5D-2380-40C7-8725-B77B820A956E":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"6457600E-AF48-46D7-87E9-BBCD2D0EF18D":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.4","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"87C5D5DC-DF9B-4A2C-ABE2-6BF7B37B08A9":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(245,245,245)","namespaceURI":null}]}},"25752FDF-5029-4E81-B290-C8A609680AD2":{"x":5,"y":10,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"80FD6547-3FF5-4C73-84BD-322173C97C4D":{"a":1,"b":0,"c":0,"d":1,"e":664,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"3E4BE896-B19B-429F-B4AA-B7485CA6D8EA":{"sourceObj":{"__isSmartRef__":true,"id":"BB151E23-1200-4A41-9C6C-0F68459C9D3A"},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":"B9670E7C-5307-4C40-B904-796C8C08A6E5"},"targetMethodName":"setVerticalScrollPosition","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1AEE3B95-9AF2-46AA-8820-F79961A65601":{"sourceObj":{"__isSmartRef__":true,"id":"BB151E23-1200-4A41-9C6C-0F68459C9D3A"},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":"B9670E7C-5307-4C40-B904-796C8C08A6E5"},"targetMethodName":"getVerticalVisibleExtent","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"98BDCB82-D6EE-43DA-A6A8-6762AE918BB4":{"x":10.5,"y":265.61429088933187,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2787D523-31F3-4C7F-9B03-C43E0FAB3B82":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"28BB17D2-FED3-4836-AB53-EA6A790F4C9D":{"_x":0,"_y":0,"_width":677,"_height":667,"_fill":null,"_stroke":{"__isSmartRef__":true,"id":"228C03B8-2215-4D0B-8A19-B202ABBDBA93"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"677","namespaceURI":null},{"key":"height","value":"667","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null}]}},"62D05CEC-877B-427B-BE40-EEC139ECDE5F":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"092525F1-7AD8-428E-BFFA-DEBD725AEB0E":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":22,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"23B90D45-21E3-4936-A4E0-5B1258B54545":{"sourceObj":{"__isSmartRef__":true,"id":"B9670E7C-5307-4C40-B904-796C8C08A6E5"},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":"BB151E23-1200-4A41-9C6C-0F68459C9D3A"},"targetMethodName":"setValue","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"F9EBCADB-3FF0-42FA-86B0-0FC38866A50B":{"submorphs":[{"__isSmartRef__":true,"id":"4BB1487A-A7A4-48C2-8A14-A5AF9CBA5869"},{"__isSmartRef__":true,"id":"2099BA24-2068-48C5-8EA7-49BFB29E3C35"},{"__isSmartRef__":true,"id":"9D0C22FB-05CB-47C3-A53F-CFB88BC7AEFF"},{"__isSmartRef__":true,"id":"62FA933E-707F-48AF-8AA2-0239199CD51F"},{"__isSmartRef__":true,"id":"E22DEB5E-5D38-4260-A399-4C6C6F4B3248"}],"owner":{"__isSmartRef__":true,"id":"C1A1DE96-51D2-474A-9C20-B53F3100DDD3"},"_livelyDataWrapperId_":"9921:TitleBarMorph","origin":{"__isSmartRef__":true,"id":"441EBAD4-3B99-4867-B987-ADC239649EA1"},"shape":{"__isSmartRef__":true,"id":"164B98E1-F6E9-49EF-B266-EA765FF62AF7"},"priorExtent":{"__isSmartRef__":true,"id":"114FDA7F-AE8B-4C5B-944B-AF18106F57D6"},"pvtCachedTransform":{"__isSmartRef__":true,"id":"1912EE73-C6CF-4F31-B6B1-023E4AEF5084"},"mouseHandler":null,"_pointer-events":"none","contentMorph":{"__isSmartRef__":true,"id":"9B96D755-D611-417A-90B3-224A09055814"},"windowMorph":{"__isSmartRef__":true,"id":"C1A1DE96-51D2-474A-9C20-B53F3100DDD3"},"label":{"__isSmartRef__":true,"id":"2099BA24-2068-48C5-8EA7-49BFB29E3C35"},"closeButton":{"__isSmartRef__":true,"id":"9D0C22FB-05CB-47C3-A53F-CFB88BC7AEFF"},"menuButton":{"__isSmartRef__":true,"id":"62FA933E-707F-48AF-8AA2-0239199CD51F"},"collapseButton":{"__isSmartRef__":true,"id":"E22DEB5E-5D38-4260-A399-4C6C6F4B3248"},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"TitleBarMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TitleBarMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9921:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"4BB1487A-A7A4-48C2-8A14-A5AF9CBA5869":{"submorphs":[{"__isSmartRef__":true,"id":"9B96D755-D611-417A-90B3-224A09055814"}],"owner":{"__isSmartRef__":true,"id":"F9EBCADB-3FF0-42FA-86B0-0FC38866A50B"},"_livelyDataWrapperId_":"9923:ClipMorph","origin":{"__isSmartRef__":true,"id":"D003C929-0351-473F-AF84-2223610A87D3"},"shape":{"__isSmartRef__":true,"id":"EA8CD295-3848-4A6C-BBF7-E773C4ECD6CC"},"priorExtent":{"__isSmartRef__":true,"id":"8492F3C2-E390-49BF-A460-3CF89F112979"},"clip":{"__isSmartRef__":true,"id":"AAD218F4-988B-4490-ABB9-61D366E0EB6F"},"_clip-path":"url(#40:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":"1703758C-18EB-4ED3-8FEA-FEC0C3C7B1FB"},"mouseHandler":null,"_pointer-events":"none","openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ClipMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ClipMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9923:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#40:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(-1,-1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"9B96D755-D611-417A-90B3-224A09055814":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":"4BB1487A-A7A4-48C2-8A14-A5AF9CBA5869"},"_livelyDataWrapperId_":"9922:Morph","origin":{"__isSmartRef__":true,"id":"C030E65F-4149-445E-BC09-9FF36DAD6764"},"shape":{"__isSmartRef__":true,"id":"6C5BA18C-7A30-446A-B45F-8A7BD6D84E43"},"priorExtent":{"__isSmartRef__":true,"id":"8E98E459-0FFB-497A-B0D9-A1D06770650F"},"pvtCachedTransform":{"__isSmartRef__":true,"id":"970925C9-EFDB-43D4-9AC9-F564D68A70BA"},"styleClass":["titleBar"],"mouseHandler":null,"_pointer-events":"none","openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9922:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"C030E65F-4149-445E-BC09-9FF36DAD6764":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"6C5BA18C-7A30-446A-B45F-8A7BD6D84E43":{"_x":0,"_y":0,"_width":677,"_height":30,"_stroke":{"__isSmartRef__":true,"id":"228C03B8-2215-4D0B-8A19-B202ABBDBA93"},"_fill":{"__isSmartRef__":true,"id":"D0E93696-46B6-4316-99CE-AABEC97FDEC5"},"_rx":8,"_ry":8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"677","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#22:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"D0E93696-46B6-4316-99CE-AABEC97FDEC5":{"vector":{"__isSmartRef__":true,"id":"5F03D33C-F45E-44B8-9390-D4A041334665"},"stops":[{"__isSmartRef__":true,"id":"4C70F0BE-5504-4BF9-AD11-0CF65FFC0FDE"},{"__isSmartRef__":true,"id":"B48ABBF6-EC63-4B68-AD2B-28ACE534FB2C"},{"__isSmartRef__":true,"id":"22B47402-AA8F-465C-A57E-DC006BEDCB76"}],"refcount":25,"_livelyDataWrapperId_":"22:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"22:lively.paint.LinearGradient","namespaceURI":null}]}},"5F03D33C-F45E-44B8-9390-D4A041334665":{"x":0,"y":1,"width":0,"height":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"4C70F0BE-5504-4BF9-AD11-0CF65FFC0FDE":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(184,184,184)","namespaceURI":null}]}},"B48ABBF6-EC63-4B68-AD2B-28ACE534FB2C":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.6","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"22B47402-AA8F-465C-A57E-DC006BEDCB76":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(184,184,184)","namespaceURI":null}]}},"8E98E459-0FFB-497A-B0D9-A1D06770650F":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"970925C9-EFDB-43D4-9AC9-F564D68A70BA":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"D003C929-0351-473F-AF84-2223610A87D3":{"x":-1,"y":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"EA8CD295-3848-4A6C-BBF7-E773C4ECD6CC":{"_x":0,"_y":0,"_width":679,"_height":23,"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"679","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"8492F3C2-E390-49BF-A460-3CF89F112979":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"AAD218F4-988B-4490-ABB9-61D366E0EB6F":{"_livelyDataWrapperId_":"40:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":"0EF584E5-67FD-4A86-83E3-9B9F6BFBEE94"},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"40:lively.scene.Clip","namespaceURI":null}]}},"0EF584E5-67FD-4A86-83E3-9B9F6BFBEE94":{"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"679","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1703758C-18EB-4ED3-8FEA-FEC0C3C7B1FB":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2099BA24-2068-48C5-8EA7-49BFB29E3C35":{"textString":"Diff","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":"CBFCC403-BFF2-4F8D-A882-B90CE47402C1"}],"owner":{"__isSmartRef__":true,"id":"F9EBCADB-3FF0-42FA-86B0-0FC38866A50B"},"_livelyDataWrapperId_":"9925:TextMorph","origin":{"__isSmartRef__":true,"id":"34904F69-9DBF-45E0-80B0-DDBCCBDA666B"},"shape":{"__isSmartRef__":true,"id":"8E0356B8-192D-4783-946E-2C203D0BC825"},"textContent":{"__isSmartRef__":true,"id":"7406C275-1596-4381-A5B7-4D5F39FC7AF4"},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":"39FDB68E-B305-42AF-BAC3-A46B38C9B3B1"},"textSelection":{"__isSmartRef__":true,"id":"CBFCC403-BFF2-4F8D-A882-B90CE47402C1"},"priorExtent":{"__isSmartRef__":true,"id":"0092D97A-8772-4C81-8F67-9168F4F23498"},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":"ADBA3F07-71FE-4C90-A7EA-2CD9A7E177F7"},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"openForDragAndDrop":false,"styleClass":["titleBar_label"],"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9925:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(325,3)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label","namespaceURI":null}]}},"CBFCC403-BFF2-4F8D-A882-B90CE47402C1":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":"2099BA24-2068-48C5-8EA7-49BFB29E3C35"},"_livelyDataWrapperId_":"9927:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":"1D644B15-B228-481C-949A-C4D8B0343DCC"},"shape":{"__isSmartRef__":true,"id":"8C609CAC-CBFE-4B3D-A82E-A0395BA8FB62"},"priorExtent":{"__isSmartRef__":true,"id":"4DD40756-18BC-46DC-9275-0CE3C717396F"},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":"013B1F06-50E6-4305-83E7-C08A4C6FB838"},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9927:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1D644B15-B228-481C-949A-C4D8B0343DCC":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8C609CAC-CBFE-4B3D-A82E-A0395BA8FB62":{"_livelyDataWrapperId_":"9926:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"9926:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"4DD40756-18BC-46DC-9275-0CE3C717396F":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"013B1F06-50E6-4305-83E7-C08A4C6FB838":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"34904F69-9DBF-45E0-80B0-DDBCCBDA666B":{"x":325,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8E0356B8-192D-4783-946E-2C203D0BC825":{"_x":0,"_y":0,"_width":30,"_height":17.2,"_stroke":{"__isSmartRef__":true,"id":"228C03B8-2215-4D0B-8A19-B202ABBDBA93"},"_fill":null,"_rx":8,"_ry":8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"30","namespaceURI":null},{"key":"height","value":"17.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"7406C275-1596-4381-A5B7-4D5F39FC7AF4":{"_fill":{"__isSmartRef__":true,"id":"DAB06C03-CF26-4B88-A336-87F68D88C5C4"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"39FDB68E-B305-42AF-BAC3-A46B38C9B3B1":{"a":1,"b":0,"c":0,"d":1,"e":325,"f":3,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"0092D97A-8772-4C81-8F67-9168F4F23498":{"x":18,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"ADBA3F07-71FE-4C90-A7EA-2CD9A7E177F7":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"9D0C22FB-05CB-47C3-A53F-CFB88BC7AEFF":{"submorphs":[{"__isSmartRef__":true,"id":"6D9B4FBB-2B41-43AA-A048-D99474E0822D"}],"owner":{"__isSmartRef__":true,"id":"F9EBCADB-3FF0-42FA-86B0-0FC38866A50B"},"_livelyDataWrapperId_":"9928:WindowControlMorph","origin":{"__isSmartRef__":true,"id":"A9816710-F702-4D7D-A842-49CF757C8EA5"},"shape":{"__isSmartRef__":true,"id":"0DA5BCA4-39DB-4AA2-B26F-A28A422FFD60"},"priorExtent":{"__isSmartRef__":true,"id":"020B01DD-409A-45FA-BF1E-72412AB2BF3B"},"label":{"__isSmartRef__":true,"id":"6D9B4FBB-2B41-43AA-A048-D99474E0822D"},"pvtCachedTransform":{"__isSmartRef__":true,"id":"EE0369B2-BE77-4299-904C-D9A220F7CB4B"},"styleClass":["titleBar_closeButton"],"attributeConnections":[{"__isSmartRef__":true,"id":"38DE1DAB-3ADA-4207-B7E9-C932B951BD31"},{"__isSmartRef__":true,"id":"9D1CB926-C889-406C-A6F5-12BC14074AA6"}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9928:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(666,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton","namespaceURI":null}]}},"6D9B4FBB-2B41-43AA-A048-D99474E0822D":{"textString":"X","savedTextString":"X","submorphs":[{"__isSmartRef__":true,"id":"9E370D8E-E04C-421E-8DE4-DB69E40D9C9A"}],"owner":{"__isSmartRef__":true,"id":"9D0C22FB-05CB-47C3-A53F-CFB88BC7AEFF"},"_livelyDataWrapperId_":"9929:TextMorph","origin":{"__isSmartRef__":true,"id":"34E684E7-28A4-4820-9919-05DBF1E93C6C"},"shape":{"__isSmartRef__":true,"id":"7151213F-DA1D-4668-9B10-FDFADE655310"},"textContent":{"__isSmartRef__":true,"id":"4FF69DF2-AC84-493C-A5C0-EFB1546CC69A"},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":"DCB8933C-462C-4B92-A116-B309770B379C"},"textSelection":{"__isSmartRef__":true,"id":"9E370D8E-E04C-421E-8DE4-DB69E40D9C9A"},"priorExtent":{"__isSmartRef__":true,"id":"DF0521AA-6716-44F0-B486-7D0ADAA76B17"},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":"0A989A97-B73B-4450-BAB4-21CEC043C24D"},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":"C0B9979F-D177-4EBF-AE91-38C21DAE5BD8"},"textStyle":{"__isSmartRef__":true,"id":"F3BF37FA-7080-469B-8A46-DD58158DD571"},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9929:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-4,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"9E370D8E-E04C-421E-8DE4-DB69E40D9C9A":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":"6D9B4FBB-2B41-43AA-A048-D99474E0822D"},"_livelyDataWrapperId_":"9931:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":"B9B017EC-DDD8-4727-B0D1-E2037E79D16A"},"shape":{"__isSmartRef__":true,"id":"E32068F0-45BD-4CBE-A5B5-6F64C86A48EB"},"priorExtent":{"__isSmartRef__":true,"id":"7D0B31A1-A548-4F9A-8663-61B8646EE7FB"},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":"C0A8C45E-6005-42D5-88C8-FFA9C8B4CA0D"},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9931:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"B9B017EC-DDD8-4727-B0D1-E2037E79D16A":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"E32068F0-45BD-4CBE-A5B5-6F64C86A48EB":{"_livelyDataWrapperId_":"9930:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"9930:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"7D0B31A1-A548-4F9A-8663-61B8646EE7FB":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"C0A8C45E-6005-42D5-88C8-FFA9C8B4CA0D":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"34E684E7-28A4-4820-9919-05DBF1E93C6C":{"x":-4,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"7151213F-DA1D-4668-9B10-FDFADE655310":{"_x":0,"_y":0,"_width":8,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":"228C03B8-2215-4D0B-8A19-B202ABBDBA93"},"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"8","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"4FF69DF2-AC84-493C-A5C0-EFB1546CC69A":{"_fill":{"__isSmartRef__":true,"id":"C0B9979F-D177-4EBF-AE91-38C21DAE5BD8"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"C0B9979F-D177-4EBF-AE91-38C21DAE5BD8":{"r":0.5,"g":0.5,"b":0.5,"a":0.5,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"DCB8933C-462C-4B92-A116-B309770B379C":{"a":1,"b":0,"c":0,"d":1,"e":-4,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"DF0521AA-6716-44F0-B486-7D0ADAA76B17":{"x":8,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"0A989A97-B73B-4450-BAB4-21CEC043C24D":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"F3BF37FA-7080-469B-8A46-DD58158DD571":{"runs":[2],"values":[{"__isSmartRef__":true,"id":"3129EC9B-3425-452A-BCA0-DCE39D99DFE3"}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"3129EC9B-3425-452A-BCA0-DCE39D99DFE3":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"A9816710-F702-4D7D-A842-49CF757C8EA5":{"x":666,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"0DA5BCA4-39DB-4AA2-B26F-A28A422FFD60":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":"FD2C9038-22B7-43CC-952B-BB69E75F17A3"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#23:lively.paint.RadialGradient)","namespaceURI":null}]}},"FD2C9038-22B7-43CC-952B-BB69E75F17A3":{"stops":[{"__isSmartRef__":true,"id":"CF9A7DDE-9341-4796-877D-2D6DE47F3843"},{"__isSmartRef__":true,"id":"F1C7D0DE-39CC-48CE-81D3-C5790FADB271"},{"__isSmartRef__":true,"id":"9D35CC2B-3E88-497B-895D-B54C11BA23E6"}],"f":{"__isSmartRef__":true,"id":"449B3EF0-8A14-401B-AE84-58D1A196AF59"},"refcount":128,"_livelyDataWrapperId_":"23:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"23:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"CF9A7DDE-9341-4796-877D-2D6DE47F3843":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"F1C7D0DE-39CC-48CE-81D3-C5790FADB271":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"9D35CC2B-3E88-497B-895D-B54C11BA23E6":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(122,122,122)","namespaceURI":null}]}},"449B3EF0-8A14-401B-AE84-58D1A196AF59":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"020B01DD-409A-45FA-BF1E-72412AB2BF3B":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"EE0369B2-BE77-4299-904C-D9A220F7CB4B":{"a":1,"b":0,"c":0,"d":1,"e":666,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"38DE1DAB-3ADA-4207-B7E9-C932B951BD31":{"sourceObj":{"__isSmartRef__":true,"id":"9D0C22FB-05CB-47C3-A53F-CFB88BC7AEFF"},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":"C1A1DE96-51D2-474A-9C20-B53F3100DDD3"},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"9D1CB926-C889-406C-A6F5-12BC14074AA6":{"sourceObj":{"__isSmartRef__":true,"id":"9D0C22FB-05CB-47C3-A53F-CFB88BC7AEFF"},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":"C1A1DE96-51D2-474A-9C20-B53F3100DDD3"},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"62FA933E-707F-48AF-8AA2-0239199CD51F":{"submorphs":[{"__isSmartRef__":true,"id":"9CEF30DF-B374-4BB4-8CBE-2564FC34D9EC"}],"owner":{"__isSmartRef__":true,"id":"F9EBCADB-3FF0-42FA-86B0-0FC38866A50B"},"_livelyDataWrapperId_":"9932:WindowControlMorph","origin":{"__isSmartRef__":true,"id":"CEB84FE9-B437-4360-800E-A48544BC3721"},"shape":{"__isSmartRef__":true,"id":"25A079DD-8D35-4400-99D0-B3E55C8C30C5"},"priorExtent":{"__isSmartRef__":true,"id":"CBD43575-BAB4-4E82-8679-6E798C21472C"},"label":{"__isSmartRef__":true,"id":"9CEF30DF-B374-4BB4-8CBE-2564FC34D9EC"},"pvtCachedTransform":{"__isSmartRef__":true,"id":"7948D73C-3160-4B7F-BA01-DD876F92D8A9"},"styleClass":["titleBar_menuButton"],"attributeConnections":[{"__isSmartRef__":true,"id":"E6522873-4483-4D83-99F8-98E92F2D62BE"},{"__isSmartRef__":true,"id":"6BDCDD57-6A16-4A50-8355-A8BBD42EF357"}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9932:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton","namespaceURI":null}]}},"9CEF30DF-B374-4BB4-8CBE-2564FC34D9EC":{"textString":"M","savedTextString":"M","submorphs":[{"__isSmartRef__":true,"id":"87420C82-08A7-4C83-B442-4808B8C3056E"}],"owner":{"__isSmartRef__":true,"id":"62FA933E-707F-48AF-8AA2-0239199CD51F"},"_livelyDataWrapperId_":"9933:TextMorph","origin":{"__isSmartRef__":true,"id":"4944897F-9CE6-419D-8043-E0140F93EEF7"},"shape":{"__isSmartRef__":true,"id":"F623A05A-2B02-4715-9667-830F13C6C959"},"textContent":{"__isSmartRef__":true,"id":"7B991CA8-FA34-4498-BB55-4832EAF87E13"},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":"00555A9C-912F-4B34-9600-B7B47A01F9BB"},"textSelection":{"__isSmartRef__":true,"id":"87420C82-08A7-4C83-B442-4808B8C3056E"},"priorExtent":{"__isSmartRef__":true,"id":"30955BB6-7A80-4856-97CF-AD80A996FD77"},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":"E831A24B-2308-4CF7-AEB2-3E6D26EED80F"},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":"C0B9979F-D177-4EBF-AE91-38C21DAE5BD8"},"textStyle":{"__isSmartRef__":true,"id":"1B7788DD-515B-4BBB-BE8B-DB321BF6CCC3"},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9933:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-5,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"87420C82-08A7-4C83-B442-4808B8C3056E":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":"9CEF30DF-B374-4BB4-8CBE-2564FC34D9EC"},"_livelyDataWrapperId_":"9935:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":"B307DF80-F31E-43CB-9C5F-2A7EEE0901B7"},"shape":{"__isSmartRef__":true,"id":"7C8BF40F-FF26-44B7-B4EF-36097D216138"},"priorExtent":{"__isSmartRef__":true,"id":"66A155AF-E82D-4C2C-9197-0C6D56DE0C9E"},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":"93F54B2F-B9B1-402A-AEB0-8484A108635E"},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9935:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"B307DF80-F31E-43CB-9C5F-2A7EEE0901B7":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"7C8BF40F-FF26-44B7-B4EF-36097D216138":{"_livelyDataWrapperId_":"9934:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"9934:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"66A155AF-E82D-4C2C-9197-0C6D56DE0C9E":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"93F54B2F-B9B1-402A-AEB0-8484A108635E":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"4944897F-9CE6-419D-8043-E0140F93EEF7":{"x":-5,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"F623A05A-2B02-4715-9667-830F13C6C959":{"_x":0,"_y":0,"_width":10,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":"228C03B8-2215-4D0B-8A19-B202ABBDBA93"},"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"10","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"7B991CA8-FA34-4498-BB55-4832EAF87E13":{"_fill":{"__isSmartRef__":true,"id":"C0B9979F-D177-4EBF-AE91-38C21DAE5BD8"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"00555A9C-912F-4B34-9600-B7B47A01F9BB":{"a":1,"b":0,"c":0,"d":1,"e":-5,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"30955BB6-7A80-4856-97CF-AD80A996FD77":{"x":10,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"E831A24B-2308-4CF7-AEB2-3E6D26EED80F":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1B7788DD-515B-4BBB-BE8B-DB321BF6CCC3":{"runs":[2],"values":[{"__isSmartRef__":true,"id":"E1D97DA7-ABFC-45C3-AE2F-41B269DEAFC2"}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"E1D97DA7-ABFC-45C3-AE2F-41B269DEAFC2":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"CEB84FE9-B437-4360-800E-A48544BC3721":{"x":11,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"25A079DD-8D35-4400-99D0-B3E55C8C30C5":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":"0D898EC5-3A0B-4C46-920E-2783F6DD19C9"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#24:lively.paint.RadialGradient)","namespaceURI":null}]}},"0D898EC5-3A0B-4C46-920E-2783F6DD19C9":{"stops":[{"__isSmartRef__":true,"id":"9DFFB872-53B9-47FF-A032-28E99361BD5E"},{"__isSmartRef__":true,"id":"D90F5A69-5544-4550-A766-EFAC011BDDBC"},{"__isSmartRef__":true,"id":"475E4DED-9344-4D5B-B7B2-704A9EAF28E5"}],"f":{"__isSmartRef__":true,"id":"DAB1CF64-9925-4E24-BF5A-BF892576D38C"},"refcount":128,"_livelyDataWrapperId_":"24:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"24:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"9DFFB872-53B9-47FF-A032-28E99361BD5E":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"D90F5A69-5544-4550-A766-EFAC011BDDBC":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"475E4DED-9344-4D5B-B7B2-704A9EAF28E5":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(122,122,122)","namespaceURI":null}]}},"DAB1CF64-9925-4E24-BF5A-BF892576D38C":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"CBD43575-BAB4-4E82-8679-6E798C21472C":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"7948D73C-3160-4B7F-BA01-DD876F92D8A9":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"E6522873-4483-4D83-99F8-98E92F2D62BE":{"sourceObj":{"__isSmartRef__":true,"id":"62FA933E-707F-48AF-8AA2-0239199CD51F"},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":"C1A1DE96-51D2-474A-9C20-B53F3100DDD3"},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"6BDCDD57-6A16-4A50-8355-A8BBD42EF357":{"sourceObj":{"__isSmartRef__":true,"id":"62FA933E-707F-48AF-8AA2-0239199CD51F"},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":"C1A1DE96-51D2-474A-9C20-B53F3100DDD3"},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"E22DEB5E-5D38-4260-A399-4C6C6F4B3248":{"submorphs":[{"__isSmartRef__":true,"id":"F3B559F5-8070-401C-81AD-D8DF80BF5322"}],"owner":{"__isSmartRef__":true,"id":"F9EBCADB-3FF0-42FA-86B0-0FC38866A50B"},"_livelyDataWrapperId_":"9936:WindowControlMorph","origin":{"__isSmartRef__":true,"id":"C49506E0-A0F0-492D-8C03-4AC564D373C9"},"shape":{"__isSmartRef__":true,"id":"2DD2C9A5-0923-4121-BE4D-363411EA16D7"},"priorExtent":{"__isSmartRef__":true,"id":"12FE0ABE-EFB5-45B4-BB85-26DE0877B114"},"label":{"__isSmartRef__":true,"id":"F3B559F5-8070-401C-81AD-D8DF80BF5322"},"pvtCachedTransform":{"__isSmartRef__":true,"id":"18111246-5615-4B57-BBD2-417F69FCACF3"},"styleClass":["titleBar_collapseButton"],"attributeConnections":[{"__isSmartRef__":true,"id":"1C234115-9323-4DC1-BD50-8721433DA325"},{"__isSmartRef__":true,"id":"E86B9C6F-7159-424E-A96D-44280233FCF8"}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9936:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(647,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton","namespaceURI":null}]}},"F3B559F5-8070-401C-81AD-D8DF80BF5322":{"textString":"–","savedTextString":"–","submorphs":[{"__isSmartRef__":true,"id":"25142E59-9FF1-4EB5-AB1D-5E55130E6B0D"}],"owner":{"__isSmartRef__":true,"id":"E22DEB5E-5D38-4260-A399-4C6C6F4B3248"},"_livelyDataWrapperId_":"9937:TextMorph","origin":{"__isSmartRef__":true,"id":"3C3A0B6A-BDAF-44C1-B46C-7A129127B308"},"shape":{"__isSmartRef__":true,"id":"FC053BFD-987A-47E4-A08E-054B2C57C399"},"textContent":{"__isSmartRef__":true,"id":"53DC5304-169E-4353-B606-B7BEB74E913E"},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":"17E7E08D-32E8-4A32-ADC2-511AAD7004A6"},"textSelection":{"__isSmartRef__":true,"id":"25142E59-9FF1-4EB5-AB1D-5E55130E6B0D"},"priorExtent":{"__isSmartRef__":true,"id":"27A7B6D5-A5F9-4B75-842E-5A83B410041C"},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":"F1A2F33F-7FB3-46E1-A687-03A1E4BE4092"},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":"C0B9979F-D177-4EBF-AE91-38C21DAE5BD8"},"textStyle":{"__isSmartRef__":true,"id":"7C786164-3B5C-42E7-B2BE-7A663040B3C8"},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9937:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-3,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"25142E59-9FF1-4EB5-AB1D-5E55130E6B0D":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":"F3B559F5-8070-401C-81AD-D8DF80BF5322"},"_livelyDataWrapperId_":"9939:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":"ADE12DA0-2749-4604-9547-57BA797FF2B6"},"shape":{"__isSmartRef__":true,"id":"47AC7E72-AFED-46CA-9EE9-228CCD67A264"},"priorExtent":{"__isSmartRef__":true,"id":"23009684-DF52-4063-8013-42E650FEF003"},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":"D6D55974-BAED-459B-BE22-EAC2FAC794E2"},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"9939:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"ADE12DA0-2749-4604-9547-57BA797FF2B6":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"47AC7E72-AFED-46CA-9EE9-228CCD67A264":{"_livelyDataWrapperId_":"9938:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"9938:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"23009684-DF52-4063-8013-42E650FEF003":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"D6D55974-BAED-459B-BE22-EAC2FAC794E2":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"3C3A0B6A-BDAF-44C1-B46C-7A129127B308":{"x":-3,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"FC053BFD-987A-47E4-A08E-054B2C57C399":{"_x":0,"_y":0,"_width":7,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":"228C03B8-2215-4D0B-8A19-B202ABBDBA93"},"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"7","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"53DC5304-169E-4353-B606-B7BEB74E913E":{"_fill":{"__isSmartRef__":true,"id":"C0B9979F-D177-4EBF-AE91-38C21DAE5BD8"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"17E7E08D-32E8-4A32-ADC2-511AAD7004A6":{"a":1,"b":0,"c":0,"d":1,"e":-3,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"27A7B6D5-A5F9-4B75-842E-5A83B410041C":{"x":7,"y":13.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"F1A2F33F-7FB3-46E1-A687-03A1E4BE4092":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"7C786164-3B5C-42E7-B2BE-7A663040B3C8":{"runs":[2],"values":[{"__isSmartRef__":true,"id":"7FEC45BB-1E66-44EB-9DE3-F8AA556E55F2"}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"7FEC45BB-1E66-44EB-9DE3-F8AA556E55F2":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"C49506E0-A0F0-492D-8C03-4AC564D373C9":{"x":647,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2DD2C9A5-0923-4121-BE4D-363411EA16D7":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":"FE434E90-FCA8-4BD2-9115-97FA3E9AF97B"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#25:lively.paint.RadialGradient)","namespaceURI":null}]}},"FE434E90-FCA8-4BD2-9115-97FA3E9AF97B":{"stops":[{"__isSmartRef__":true,"id":"7E42E48B-0819-4EDC-96F9-FB58916D5794"},{"__isSmartRef__":true,"id":"9D4709A7-FD53-4630-A743-7AC45C5062D4"},{"__isSmartRef__":true,"id":"7D095996-E009-4D5E-B7B2-59DEEC1E6F47"}],"f":{"__isSmartRef__":true,"id":"CC5BA0E2-E5AB-4552-A991-115E2EEC18E7"},"refcount":128,"_livelyDataWrapperId_":"25:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"25:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"7E42E48B-0819-4EDC-96F9-FB58916D5794":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"9D4709A7-FD53-4630-A743-7AC45C5062D4":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"7D095996-E009-4D5E-B7B2-59DEEC1E6F47":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(122,122,122)","namespaceURI":null}]}},"CC5BA0E2-E5AB-4552-A991-115E2EEC18E7":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"12FE0ABE-EFB5-45B4-BB85-26DE0877B114":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18111246-5615-4B57-BBD2-417F69FCACF3":{"a":1,"b":0,"c":0,"d":1,"e":647,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1C234115-9323-4DC1-BD50-8721433DA325":{"sourceObj":{"__isSmartRef__":true,"id":"E22DEB5E-5D38-4260-A399-4C6C6F4B3248"},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":"C1A1DE96-51D2-474A-9C20-B53F3100DDD3"},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"E86B9C6F-7159-424E-A96D-44280233FCF8":{"sourceObj":{"__isSmartRef__":true,"id":"E22DEB5E-5D38-4260-A399-4C6C6F4B3248"},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":"C1A1DE96-51D2-474A-9C20-B53F3100DDD3"},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"441EBAD4-3B99-4867-B987-ADC239649EA1":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"164B98E1-F6E9-49EF-B266-EA765FF62AF7":{"_x":0,"_y":0,"_width":677,"_height":22,"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"677","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"114FDA7F-AE8B-4C5B-944B-AF18106F57D6":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1912EE73-C6CF-4F31-B6B1-023E4AEF5084":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"26C99AED-23A8-47D7-B8A3-9A13191411D6":{"x":890,"y":361,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"85DFEBA9-7088-433D-8CD9-CF76FD630963":{"_x":0,"_y":0,"_width":677,"_height":689,"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"677","namespaceURI":null},{"key":"height","value":"689","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"CA0EEE90-64DC-408F-9479-502E682CB7BD":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"022EC6D9-BB07-4E40-B6CF-C0D77B4A1FDD":{"a":1,"b":0,"c":0,"d":1,"e":890,"f":361,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"7ABCC3A7-03CB-49E0-9B58-4D439772B5AC":{"x":0,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"A11132F0-4211-4D63-985E-C04FDAAA1071":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"BFD8E636-6FE9-471C-B28C-39D311D80D11":{"textString":"Wiki control","savedTextString":"Wiki control","submorphs":[{"__isSmartRef__":true,"id":"D48B9471-84D6-49A0-970D-9BA6232D76E2"}],"owner":{"__isSmartRef__":true,"id":"9BC17EDD-7D57-444D-9EF4-0A7805A4DDDC"},"_livelyDataWrapperId_":"43:TextMorph","origin":{"__isSmartRef__":true,"id":"3A370CF2-5D9A-44C0-8966-687136A14F5F"},"shape":{"__isSmartRef__":true,"id":"17AEA404-2ED8-41F1-BB58-92AF1F4257AE"},"textContent":{"__isSmartRef__":true,"id":"8925C5B2-FDAA-4324-9EFE-75CDB6351BCF"},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":"6DB2D5A7-D591-4742-B8AB-B1E584E0E20A"},"textSelection":{"__isSmartRef__":true,"id":"D48B9471-84D6-49A0-970D-9BA6232D76E2"},"priorExtent":{"__isSmartRef__":true,"id":"B9AC067C-81C7-4767-B2A2-3D575EE7A823"},"useChangeClue":false,"suppressHandles":true,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"43:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"D48B9471-84D6-49A0-970D-9BA6232D76E2":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":"BFD8E636-6FE9-471C-B28C-39D311D80D11"},"_livelyDataWrapperId_":"45:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":"7551A400-FB4B-4FEA-A1C9-EC6C34C56405"},"shape":{"__isSmartRef__":true,"id":"56268617-D8C2-40E6-A007-F7477D47A2AA"},"priorExtent":{"__isSmartRef__":true,"id":"D4E5ED6F-1FDB-48C5-A0CC-6C2E0F14DD40"},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":"5D273CB5-7ECB-4F05-8E62-43160AF79A8F"},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"45:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"7551A400-FB4B-4FEA-A1C9-EC6C34C56405":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"56268617-D8C2-40E6-A007-F7477D47A2AA":{"_livelyDataWrapperId_":"44:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"44:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"D4E5ED6F-1FDB-48C5-A0CC-6C2E0F14DD40":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"5D273CB5-7ECB-4F05-8E62-43160AF79A8F":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"3A370CF2-5D9A-44C0-8966-687136A14F5F":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17AEA404-2ED8-41F1-BB58-92AF1F4257AE":{"_x":0,"_y":0,"_width":80,"_height":21.2,"_stroke":{"__isSmartRef__":true,"id":"DAB06C03-CF26-4B88-A336-87F68D88C5C4"},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"80","namespaceURI":null},{"key":"height","value":"21.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"8925C5B2-FDAA-4324-9EFE-75CDB6351BCF":{"_fill":{"__isSmartRef__":true,"id":"DAB06C03-CF26-4B88-A336-87F68D88C5C4"},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"6DB2D5A7-D591-4742-B8AB-B1E584E0E20A":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"B9AC067C-81C7-4767-B2A2-3D575EE7A823":{"x":68,"y":42,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"287FB8CC-1486-42DE-82FD-C797A5125458":{"textString":"Diffing of Text blocks","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":"BF60B1C8-2699-4897-84B5-66FC06EAD0E6"}],"owner":{"__isSmartRef__":true,"id":"9BC17EDD-7D57-444D-9EF4-0A7805A4DDDC"},"_livelyDataWrapperId_":"12056:TextMorph","origin":{"__isSmartRef__":true,"id":"EE57F32A-8DCF-4CF5-9FC2-3EB7EDE6D671"},"shape":{"__isSmartRef__":true,"id":"CE1AB2B4-2781-4611-A396-63B9ACFB102E"},"textContent":{"__isSmartRef__":true,"id":"27F191DF-C02B-4C17-AFF0-7C0B75FFEDFF"},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":"D4CF1FC7-A4AB-4B35-8F35-5EC93901C04D"},"textSelection":{"__isSmartRef__":true,"id":"BF60B1C8-2699-4897-84B5-66FC06EAD0E6"},"priorExtent":{"__isSmartRef__":true,"id":"84B58776-1CAD-4A8E-8E18-94E3AD904992"},"useChangeClue":false,"isSelecting":false,"hasKeyboardFocus":false,"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":"CA0C3FB5-A8A6-46FE-ACAA-8E64651247D7"},"attributeConnections":[],"textColor":{"__isSmartRef__":true,"id":"527929DB-9AB7-4A5A-A1A3-F6F043DC849E"},"fontSize":40,"padding":{"__isSmartRef__":true,"id":"27A07DC2-EC49-4E31-8936-5BE20811F47C"},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"12056:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(13,46)","namespaceURI":null}]}},"BF60B1C8-2699-4897-84B5-66FC06EAD0E6":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":"287FB8CC-1486-42DE-82FD-C797A5125458"},"_livelyDataWrapperId_":"12058:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":"52438E01-A81D-43A1-BB65-BD1D2AF0679A"},"shape":{"__isSmartRef__":true,"id":"162BBA9B-DF93-438E-91FA-0B8589FCDB0A"},"priorExtent":{"__isSmartRef__":true,"id":"936951AE-55C2-401E-8091-60B4007D1F1B"},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":"5451AB8B-191A-46A3-8033-C4028DFD18AA"},"isCursor":false,"attributeConnections":[],"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"12058:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"52438E01-A81D-43A1-BB65-BD1D2AF0679A":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"162BBA9B-DF93-438E-91FA-0B8589FCDB0A":{"_livelyDataWrapperId_":"12057:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"12057:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"936951AE-55C2-401E-8091-60B4007D1F1B":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"5451AB8B-191A-46A3-8033-C4028DFD18AA":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"EE57F32A-8DCF-4CF5-9FC2-3EB7EDE6D671":{"x":13,"y":46,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"CE1AB2B4-2781-4611-A396-63B9ACFB102E":{"_x":0,"_y":0,"_width":750,"_height":70.66666666666666,"_stroke":{"__isSmartRef__":true,"id":"228C03B8-2215-4D0B-8A19-B202ABBDBA93"},"_fill":{"__isSmartRef__":true,"id":"947A255E-D58F-4C43-AC95-3F39E8C34CD0"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"750","namespaceURI":null},{"key":"height","value":"70.66666666666666","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"27F191DF-C02B-4C17-AFF0-7C0B75FFEDFF":{"_fill":{"__isSmartRef__":true,"id":"527929DB-9AB7-4A5A-A1A3-F6F043DC849E"},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,139,3)","namespaceURI":null},{"key":"font-size","value":"40","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"527929DB-9AB7-4A5A-A1A3-F6F043DC849E":{"r":1,"g":0.5458381981090233,"b":0.01484684173717199,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"D4CF1FC7-A4AB-4B35-8F35-5EC93901C04D":{"a":1,"b":0,"c":0,"d":1,"e":13,"f":46,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"84B58776-1CAD-4A8E-8E18-94E3AD904992":{"x":706,"y":43.999999999999986,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"CA0C3FB5-A8A6-46FE-ACAA-8E64651247D7":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"27A07DC2-EC49-4E31-8936-5BE20811F47C":{"x":22,"y":13.333333333333334,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"95F44672-584B-4E85-AB33-99F564EB533A":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"FE57D534-A252-4B37-A33C-9B4AD97B4D51":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"55B146F7-A43F-427E-8DA5-48F40146C7CC":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"C7500D50-3EE3-4F55-8AF1-0EA384C3E730":{"_fill":{"__isSmartRef__":true,"id":"82307216-5055-41CA-8C21-CDC4BDF7A4EE"},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","_x":0,"_y":0,"_width":2665.5,"_height":2729.6,"__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"2665.5","namespaceURI":null},{"key":"height","value":"2729.6","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null}]}},"82307216-5055-41CA-8C21-CDC4BDF7A4EE":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"433E090A-D53C-4043-A5CB-A71027C3D770":{"x":1665,"y":867,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"914587DB-B6A3-4B39-8990-2F6A55BDCFA9":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":"1EEF8788-F3F8-49F6-80D5-12878A4222E8"},"button":{"__isSmartRef__":true,"id":"532651A4-D625-4989-BD71-71F6C6ADEF0D"},"widgetPanel":{"__isSmartRef__":true,"id":"0A7C2197-D782-4FA9-A972-DDB54F3B2697"},"focusHalo":{"__isSmartRef__":true,"id":"9C7A3FCE-F078-4FA9-8A3A-FAAD64235F02"},"panel":{"__isSmartRef__":true,"id":"F9C1C36F-F1DF-44CF-BB90-87A4EE741A5B"},"link":{"__isSmartRef__":true,"id":"2F9FB209-48D2-43B6-81D5-8AEEAB4852FB"},"helpText":{"__isSmartRef__":true,"id":"06371326-BB3B-4486-97D7-0908191D4588"},"menu_items":{"__isSmartRef__":true,"id":"E3BA691C-39C6-4599-BB2D-DA1F25D31881"},"menu_list":{"__isSmartRef__":true,"id":"68E975E2-47E3-42B2-B936-58049D8B9598"},"slider":{"__isSmartRef__":true,"id":"5DA951C4-CAE9-4394-A445-58EC0C387B51"},"slider_background":{"__isSmartRef__":true,"id":"C9CFDCC4-83D6-434D-A5F9-8E67246B2DCD"},"slider_horizontal":{"__isSmartRef__":true,"id":"2057A49E-636B-4088-899B-B82F322CAFB5"},"slider_background_horizontal":{"__isSmartRef__":true,"id":"9DDC7AC4-70A1-4ED0-B37E-33A7C4191769"},"titleBar":{"__isSmartRef__":true,"id":"D7723B4F-AF29-4403-A9F8-E1B0CF960052"},"titleBar_label":{"__isSmartRef__":true,"id":"9765FEAB-1D54-45D6-A848-F3EDDAE5F0D7"},"titleBar_label_highlight":{"__isSmartRef__":true,"id":"EC656FA1-C677-4A7B-A0CB-2D2BB3C5C49B"},"titleBar_button_label":{"__isSmartRef__":true,"id":"0B52219B-4895-40BA-A65F-AACE6654EE6A"},"titleBar_closeButton":{"__isSmartRef__":true,"id":"7F8E28E3-7B61-48B3-9D14-42439A6403EB"},"titleBar_menuButton":{"__isSmartRef__":true,"id":"8279B82E-DB41-47F3-8822-633A35FF98FF"},"titleBar_collapseButton":{"__isSmartRef__":true,"id":"F8685EF0-5042-44F7-906B-F3E777895DA0"},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":"3E180EA1-3345-412E-B9EF-C81955A029CA"},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":"906E4861-FF7C-4A31-AECE-E093552E8B06"},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":"06A0D490-5640-49BF-A1FA-C97B424F7533"},"clock":{"__isSmartRef__":true,"id":"4206738B-BBDF-4AE0-A439-2F7A3635B969"},"fabrik":{"__isSmartRef__":true,"id":"2433A257-2227-42AF-99B4-8A8FA43B8BA3"},"world":{"__isSmartRef__":true,"id":"3C0C9BA3-05BA-4FF2-93CD-6753170F4D68"}},"1EEF8788-F3F8-49F6-80D5-12878A4222E8":{"borderColor":{"__isSmartRef__":true,"id":"BE067240-F2DB-499B-AB8E-6064E141B960"}},"BE067240-F2DB-499B-AB8E-6064E141B960":{"vector":{"__isSmartRef__":true,"id":"CD6CC89B-21FB-46FB-81EE-508960A81F76"},"stops":[{"__isSmartRef__":true,"id":"47E1F5D4-E424-48D0-BA3E-CC400C3F3D6D"},{"__isSmartRef__":true,"id":"74B99A14-D2FE-4DFE-BADF-AC3449F0E654"}],"refcount":0,"_livelyDataWrapperId_":"16:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"16:lively.paint.LinearGradient","namespaceURI":null}]}},"CD6CC89B-21FB-46FB-81EE-508960A81F76":{"x":0,"y":0,"width":1,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"47E1F5D4-E424-48D0-BA3E-CC400C3F3D6D":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"74B99A14-D2FE-4DFE-BADF-AC3449F0E654":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(12,12,12)","namespaceURI":null}]}},"532651A4-D625-4989-BD71-71F6C6ADEF0D":{"borderColor":{"__isSmartRef__":true,"id":"0BB19089-1DCB-4CD1-8836-0A35C38FB4F0"},"borderWidth":0.6,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":"F8E8F028-31BA-4F8E-AC5F-A907034808EF"}},"0BB19089-1DCB-4CD1-8836-0A35C38FB4F0":{"r":0.5019607843137255,"g":0.4470588235294118,"b":0.4666666666666667,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"F8E8F028-31BA-4F8E-AC5F-A907034808EF":{"vector":{"__isSmartRef__":true,"id":"5F03D33C-F45E-44B8-9390-D4A041334665"},"stops":[{"__isSmartRef__":true,"id":"900010CA-A74A-4CDE-8F16-907EC4A287CC"},{"__isSmartRef__":true,"id":"59A01C1E-4460-4038-AEB0-96FEDCAD9547"},{"__isSmartRef__":true,"id":"475D3B5C-AD61-4654-B938-FAF24A83514E"}],"refcount":0,"_livelyDataWrapperId_":"17:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"17:lively.paint.LinearGradient","namespaceURI":null}]}},"900010CA-A74A-4CDE-8F16-907EC4A287CC":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"59A01C1E-4460-4038-AEB0-96FEDCAD9547":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"475D3B5C-AD61-4654-B938-FAF24A83514E":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"0A7C2197-D782-4FA9-A972-DDB54F3B2697":{"borderColor":{"__isSmartRef__":true,"id":"9DE56A59-9BB2-4246-8777-B6A06CEF7086"},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":"1DB36E61-556D-4EC8-93EB-3B1DD7ED5C0E"},"opacity":0.4},"9DE56A59-9BB2-4246-8777-B6A06CEF7086":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1DB36E61-556D-4EC8-93EB-3B1DD7ED5C0E":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"9C7A3FCE-F078-4FA9-8A3A-FAAD64235F02":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":"F872D84D-F93E-4CC3-8AB3-4FF93B012F53"},"strokeOpacity":0.5},"F872D84D-F93E-4CC3-8AB3-4FF93B012F53":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"F9C1C36F-F1DF-44CF-BB90-87A4EE741A5B":{"fill":{"__isSmartRef__":true,"id":"8158F44D-FE7B-45FB-88EE-8805B8EE274C"},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":"BF2E09EE-83D3-4901-8A4D-82CAA0244517"}},"8158F44D-FE7B-45FB-88EE-8805B8EE274C":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"BF2E09EE-83D3-4901-8A4D-82CAA0244517":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2F9FB209-48D2-43B6-81D5-8AEEAB4852FB":{"borderColor":{"__isSmartRef__":true,"id":"163D8A3A-A28E-4433-B57B-932BC2505E4A"},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":"E97C7346-7AAD-41D2-9F4E-A5E297092762"}},"163D8A3A-A28E-4433-B57B-932BC2505E4A":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"06371326-BB3B-4486-97D7-0908191D4588":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":"BE6D71CB-BC84-4D84-B818-B14C5150A406"},"fillOpacity":0.8},"BE6D71CB-BC84-4D84-B818-B14C5150A406":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"E3BA691C-39C6-4599-BB2D-DA1F25D31881":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":"961EECAE-8663-462B-AFA9-867294D10173"}},"961EECAE-8663-462B-AFA9-867294D10173":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"68E975E2-47E3-42B2-B936-58049D8B9598":{"fill":{"__isSmartRef__":true,"id":"649A4EC9-722A-4AFB-BBA9-4E3EE94FC332"}},"649A4EC9-722A-4AFB-BBA9-4E3EE94FC332":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"5DA951C4-CAE9-4394-A445-58EC0C387B51":{"borderColor":{"__isSmartRef__":true,"id":"5173D465-685F-4BAD-B862-BE91FE507778"},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":"0CCF4E96-2E24-41EB-A00A-0476D6F40F71"}},"C9CFDCC4-83D6-434D-A5F9-8E67246B2DCD":{"borderColor":{"__isSmartRef__":true,"id":"E97C7346-7AAD-41D2-9F4E-A5E297092762"},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":"71862A60-76AA-4259-B37F-BDE3048DE6AB"}},"2057A49E-636B-4088-899B-B82F322CAFB5":{"borderColor":{"__isSmartRef__":true,"id":"BC6595D8-91E3-4464-A8AB-8C415EFFA2DA"},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":"B019BE15-D68E-4667-9031-2C9A9938E626"}},"BC6595D8-91E3-4464-A8AB-8C415EFFA2DA":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"B019BE15-D68E-4667-9031-2C9A9938E626":{"vector":{"__isSmartRef__":true,"id":"9CDE4478-0048-4954-9FCB-15A0D1195BC9"},"stops":[{"__isSmartRef__":true,"id":"3CDDA33B-3FDC-4F48-9A14-31393DA93EBD"},{"__isSmartRef__":true,"id":"E3659DD8-FE37-4889-BA23-E03B1F62BD85"},{"__isSmartRef__":true,"id":"B016DDDD-DBDC-4D5E-8458-3FDA6C750648"}],"refcount":4,"_livelyDataWrapperId_":"20:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"20:lively.paint.LinearGradient","namespaceURI":null}]}},"9CDE4478-0048-4954-9FCB-15A0D1195BC9":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3CDDA33B-3FDC-4F48-9A14-31393DA93EBD":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(196,211,221)","namespaceURI":null}]}},"E3659DD8-FE37-4889-BA23-E03B1F62BD85":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(137,167,187)","namespaceURI":null}]}},"B016DDDD-DBDC-4D5E-8458-3FDA6C750648":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(96,130,153)","namespaceURI":null}]}},"9DDC7AC4-70A1-4ED0-B37E-33A7C4191769":{"borderColor":{"__isSmartRef__":true,"id":"BC6595D8-91E3-4464-A8AB-8C415EFFA2DA"},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":"1E1C472E-AC64-404A-B072-5F6396440C3F"}},"1E1C472E-AC64-404A-B072-5F6396440C3F":{"vector":{"__isSmartRef__":true,"id":"9CDE4478-0048-4954-9FCB-15A0D1195BC9"},"stops":[{"__isSmartRef__":true,"id":"96EA52F8-F186-474C-9418-D37D8269113E"},{"__isSmartRef__":true,"id":"8211EB78-73FF-42E9-8D63-48FE32E358E3"},{"__isSmartRef__":true,"id":"58BDC3F6-0590-4172-8BFA-C594395D6A8E"}],"refcount":4,"_livelyDataWrapperId_":"21:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"21:lively.paint.LinearGradient","namespaceURI":null}]}},"96EA52F8-F186-474C-9418-D37D8269113E":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"8211EB78-73FF-42E9-8D63-48FE32E358E3":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.4","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"58BDC3F6-0590-4172-8BFA-C594395D6A8E":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(245,245,245)","namespaceURI":null}]}},"D7723B4F-AF29-4403-A9F8-E1B0CF960052":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":"BC6595D8-91E3-4464-A8AB-8C415EFFA2DA"},"fill":{"__isSmartRef__":true,"id":"D0E93696-46B6-4316-99CE-AABEC97FDEC5"}},"9765FEAB-1D54-45D6-A848-F3EDDAE5F0D7":{"fill":null},"EC656FA1-C677-4A7B-A0CB-2D2BB3C5C49B":{"fill":{"__isSmartRef__":true,"id":"604BD5FC-B6CE-4F1B-A81B-8A8589EBDF68"},"fillOpacity":0.5},"604BD5FC-B6CE-4F1B-A81B-8A8589EBDF68":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"0B52219B-4895-40BA-A65F-AACE6654EE6A":{"textColor":{"__isSmartRef__":true,"id":"C0B9979F-D177-4EBF-AE91-38C21DAE5BD8"},"fontStyle":"bold"},"7F8E28E3-7B61-48B3-9D14-42439A6403EB":{"fill":{"__isSmartRef__":true,"id":"FD2C9038-22B7-43CC-952B-BB69E75F17A3"}},"8279B82E-DB41-47F3-8822-633A35FF98FF":{"fill":{"__isSmartRef__":true,"id":"0D898EC5-3A0B-4C46-920E-2783F6DD19C9"}},"F8685EF0-5042-44F7-906B-F3E777895DA0":{"fill":{"__isSmartRef__":true,"id":"FE434E90-FCA8-4BD2-9115-97FA3E9AF97B"}},"3E180EA1-3345-412E-B9EF-C81955A029CA":{"fill":{"__isSmartRef__":true,"id":"595E9851-663D-4556-A4E0-BD59ACB0D73E"}},"595E9851-663D-4556-A4E0-BD59ACB0D73E":{"stops":[{"__isSmartRef__":true,"id":"6E9DAE17-7BFE-4B9D-9661-30D616C64290"},{"__isSmartRef__":true,"id":"0925DC5A-0AF6-4C42-B630-4D8B7B4BC548"},{"__isSmartRef__":true,"id":"1BE1F86D-DBA0-43A9-8339-46BFC7558FCA"}],"f":{"__isSmartRef__":true,"id":"6A4C5E65-0186-40C3-8B2D-86E0DC628C7A"},"refcount":12,"_livelyDataWrapperId_":"26:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"26:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"6E9DAE17-7BFE-4B9D-9661-30D616C64290":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(226,179,179)","namespaceURI":null}]}},"0925DC5A-0AF6-4C42-B630-4D8B7B4BC548":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(158,0,0)","namespaceURI":null}]}},"1BE1F86D-DBA0-43A9-8339-46BFC7558FCA":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(95,0,0)","namespaceURI":null}]}},"6A4C5E65-0186-40C3-8B2D-86E0DC628C7A":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"906E4861-FF7C-4A31-AECE-E093552E8B06":{"fill":{"__isSmartRef__":true,"id":"8D535D23-CAFF-49DA-B37D-E1CEFB98E324"}},"8D535D23-CAFF-49DA-B37D-E1CEFB98E324":{"stops":[{"__isSmartRef__":true,"id":"754F6A58-CC60-45B1-9950-F8937ADFA4B5"},{"__isSmartRef__":true,"id":"63F6D38F-999B-4D7B-8DB1-B3460C49FB3D"},{"__isSmartRef__":true,"id":"95DDE381-8850-44A6-A89E-3384C636DC40"}],"f":{"__isSmartRef__":true,"id":"E78E54A6-3B5E-463F-8BAB-D5930B596414"},"refcount":12,"_livelyDataWrapperId_":"27:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"27:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"754F6A58-CC60-45B1-9950-F8937ADFA4B5":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(179,219,179)","namespaceURI":null}]}},"63F6D38F-999B-4D7B-8DB1-B3460C49FB3D":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(0,133,0)","namespaceURI":null}]}},"95DDE381-8850-44A6-A89E-3384C636DC40":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(0,79,0)","namespaceURI":null}]}},"E78E54A6-3B5E-463F-8BAB-D5930B596414":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"06A0D490-5640-49BF-A1FA-C97B424F7533":{"fill":{"__isSmartRef__":true,"id":"99C7F8D3-0EFA-4E79-83D5-A8B26B272DD0"}},"99C7F8D3-0EFA-4E79-83D5-A8B26B272DD0":{"stops":[{"__isSmartRef__":true,"id":"2D55FB42-1375-497B-882C-7C620BFB75F3"},{"__isSmartRef__":true,"id":"ED6F84FB-CC37-412E-A859-65CA5393D3BB"},{"__isSmartRef__":true,"id":"0EC25A0A-B176-4023-B17E-78B1208356C2"}],"f":{"__isSmartRef__":true,"id":"A2B8C661-3C6C-41EA-B907-6125510F02D0"},"refcount":12,"_livelyDataWrapperId_":"28:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"28:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"2D55FB42-1375-497B-882C-7C620BFB75F3":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(255,243,209)","namespaceURI":null}]}},"ED6F84FB-CC37-412E-A859-65CA5393D3BB":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(255,215,102)","namespaceURI":null}]}},"0EC25A0A-B176-4023-B17E-78B1208356C2":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(153,129,61)","namespaceURI":null}]}},"A2B8C661-3C6C-41EA-B907-6125510F02D0":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4206738B-BBDF-4AE0-A439-2F7A3635B969":{"borderColor":{"__isSmartRef__":true,"id":"864B14D2-AD81-4E14-82F0-ED63CD05D0E1"},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":"A57BC9C9-1C72-41A0-B4EF-310B64AE9641"}},"864B14D2-AD81-4E14-82F0-ED63CD05D0E1":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"A57BC9C9-1C72-41A0-B4EF-310B64AE9641":{"stops":[{"__isSmartRef__":true,"id":"C3F83C99-9E64-4489-A842-79F5D70E2F16"},{"__isSmartRef__":true,"id":"879D6269-A53A-418D-AEDA-6AC75A0A3440"}],"refcount":0,"_livelyDataWrapperId_":"29:lively.paint.RadialGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"29:lively.paint.RadialGradient","namespaceURI":null}]}},"C3F83C99-9E64-4489-A842-79F5D70E2F16":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(243,243,243)","namespaceURI":null}]}},"879D6269-A53A-418D-AEDA-6AC75A0A3440":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"2433A257-2227-42AF-99B4-8A8FA43B8BA3":{"borderColor":{"__isSmartRef__":true,"id":"CE3C7377-26DE-47F2-9780-CCC06E141A2D"},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":"E97C7346-7AAD-41D2-9F4E-A5E297092762"},"opacity":1},"CE3C7377-26DE-47F2-9780-CCC06E141A2D":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3C0C9BA3-05BA-4FF2-93CD-6753170F4D68":{"fill":{"__isSmartRef__":true,"id":"604BD5FC-B6CE-4F1B-A81B-8A8589EBDF68"}}}}]]>