diff --git a/lib/grammar.js b/lib/grammar.js index 0b14f323..600ad49e 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -15,64 +15,64 @@ }; grammar = { Root: [ - o("", function() { + o('', function() { return new Expressions; - }), o("TERMINATOR", function() { + }), o('TERMINATOR', function() { return new Expressions; - }), o("Body"), o("Block TERMINATOR") + }), o('Body'), o('Block TERMINATOR') ], Body: [ - o("Line", function() { + o('Line', function() { return Expressions.wrap([$1]); - }), o("Body TERMINATOR Line", function() { + }), o('Body TERMINATOR Line', function() { return $1.push($3); - }), o("Body TERMINATOR") + }), o('Body TERMINATOR') ], - Line: [o("Expression"), o("Statement")], + Line: [o('Expression'), o('Statement')], Statement: [ - o("Return"), o("Throw"), o("BREAK", function() { + o('Return'), o('Throw'), o('BREAK', function() { return new Literal($1); - }), o("CONTINUE", function() { + }), o('CONTINUE', function() { return new Literal($1); - }), o("DEBUGGER", function() { + }), o('DEBUGGER', function() { return new Literal($1); }) ], - Expression: [o("Value"), o("Invocation"), o("Code"), o("Operation"), o("Assign"), o("If"), o("Try"), o("While"), o("For"), o("Switch"), o("Extends"), o("Class"), o("Existence"), o("Comment")], + Expression: [o('Value'), o('Invocation'), o('Code'), o('Operation'), o('Assign'), o('If'), o('Try'), o('While'), o('For'), o('Switch'), o('Extends'), o('Class'), o('Comment')], Block: [ - o("INDENT Body OUTDENT", function() { + o('INDENT Body OUTDENT', function() { return $2; - }), o("INDENT OUTDENT", function() { + }), o('INDENT OUTDENT', function() { return new Expressions; - }), o("TERMINATOR Comment", function() { + }), o('TERMINATOR Comment', function() { return Expressions.wrap([$2]); }) ], Identifier: [ - o("IDENTIFIER", function() { + o('IDENTIFIER', function() { return new Literal($1); }) ], AlphaNumeric: [ - o("NUMBER", function() { + o('NUMBER', function() { return new Literal($1); - }), o("STRING", function() { + }), o('STRING', function() { return new Literal($1); }) ], Literal: [ - o("AlphaNumeric"), o("JS", function() { + o('AlphaNumeric'), o('JS', function() { return new Literal($1); - }), o("REGEX", function() { + }), o('REGEX', function() { return new Literal($1); - }), o("BOOL", function() { + }), o('BOOL', function() { return new Literal($1); }) ], Assign: [ - o("Assignable = Expression", function() { + o('Assignable = Expression', function() { return new Assign($1, $3); - }), o("Assignable = INDENT Expression OUTDENT", function() { + }), o('Assignable = INDENT Expression OUTDENT', function() { return new Assign($1, $4); }) ], @@ -88,70 +88,65 @@ ], ObjAssignable: [o('Identifier'), o('AlphaNumeric'), o('Parenthetical')], Return: [ - o("RETURN Expression", function() { + o('RETURN Expression', function() { return new Return($2); - }), o("RETURN", function() { + }), o('RETURN', function() { return new Return; }) ], Comment: [ - o("HERECOMMENT", function() { + o('HERECOMMENT', function() { return new Comment($1); }) ], - Existence: [ - o("Expression ?", function() { - return new Existence($1); - }) - ], Code: [ - o("PARAM_START ParamList PARAM_END FuncGlyph Block", function() { + o('PARAM_START ParamList PARAM_END FuncGlyph Block', function() { return new Code($2, $5, $4); - }), o("FuncGlyph Block", function() { + }), o('FuncGlyph Block', function() { return new Code([], $2, $1); }) ], FuncGlyph: [ - o("->", function() { + o('->', function() { return 'func'; - }), o("=>", function() { + }), o('=>', function() { return 'boundfunc'; }) ], OptComma: [o(''), o(',')], ParamList: [ - o("", function() { + o('', function() { return []; - }), o("Param", function() { + }), o('Param', function() { return [$1]; - }), o("ParamList , Param", function() { + }), o('ParamList , Param', function() { return $1.concat($3); }) ], Param: [ - o("PARAM", function() { + o('PARAM', function() { return new Literal($1); - }), o("@ PARAM", function() { - return new Param($2, true); - }), o("PARAM ...", function() { + }), o('PARAM ...', function() { return new Param($1, false, true); - }), o("@ PARAM ...", function() { + }), o('@ PARAM', function() { + return new Param($2, true); + }), o('@ PARAM ...', function() { return new Param($2, true, true); }) ], Splat: [ - o("Expression ...", function() { + o('Expression ...', function() { return new Splat($1); }) ], SimpleAssignable: [ - o("Identifier", function() { + o('Identifier', function() { return new Value($1); - }), o("Value Accessor", function() { + }), o('Value Accessor', function() { return $1.push($2); - }), o("Invocation Accessor", function() { + }), o('Invocation Accessor', function() { return new Value($1, [$2]); - }), o("ThisProperty") + }), o('ThisProperty') ], Assignable: [ o('SimpleAssignable'), o('Array', function() { @@ -161,51 +156,51 @@ }) ], Value: [ - o("Assignable"), o("Literal", function() { + o('Assignable'), o('Literal', function() { return new Value($1); - }), o("Parenthetical", function() { + }), o('Parenthetical', function() { return new Value($1); - }), o("This") + }), o('This') ], Accessor: [ - o("PROPERTY_ACCESS Identifier", function() { + o('PROPERTY_ACCESS Identifier', function() { return new Accessor($2); - }), o("PROTOTYPE_ACCESS Identifier", function() { + }), o('PROTOTYPE_ACCESS Identifier', function() { return new Accessor($2, 'prototype'); - }), o("::", function() { + }), o('::', function() { return new Accessor(new Literal('prototype')); - }), o("SOAK_ACCESS Identifier", function() { + }), o('SOAK_ACCESS Identifier', function() { return new Accessor($2, 'soak'); - }), o("Index") + }), o('Index') ], Index: [ - o("INDEX_START Expression INDEX_END", function() { + o('INDEX_START Expression INDEX_END', function() { return new Index($2); - }), o("INDEX_SOAK Index", function() { + }), o('INDEX_SOAK Index', function() { return extend($2, { soakNode: true }); - }), o("INDEX_PROTO Index", function() { + }), o('INDEX_PROTO Index', function() { return extend($2, { proto: true }); }) ], Object: [ - o("{ AssignList OptComma }", function() { + o('{ AssignList OptComma }', function() { return new Obj($2); }) ], AssignList: [ - o("", function() { + o('', function() { return []; - }), o("AssignObj", function() { + }), o('AssignObj', function() { return [$1]; - }), o("AssignList , AssignObj", function() { + }), o('AssignList , AssignObj', function() { return $1.concat($3); - }), o("AssignList OptComma TERMINATOR AssignObj", function() { + }), o('AssignList OptComma TERMINATOR AssignObj', function() { return $1.concat($4); - }), o("AssignList OptComma INDENT AssignList OptComma OUTDENT", function() { + }), o('AssignList OptComma INDENT AssignList OptComma OUTDENT', function() { return $1.concat($4); }) ], @@ -232,131 +227,131 @@ }) ], ClassAssign: [ - o("AssignObj", function() { + o('AssignObj', function() { return $1; - }), o("ThisProperty : Expression", function() { + }), o('ThisProperty : Expression', function() { return new Assign(new Value($1), $3, 'this'); - }), o("ThisProperty : INDENT Expression OUTDENT", function() { + }), o('ThisProperty : INDENT Expression OUTDENT', function() { return new Assign(new Value($1), $4, 'this'); }) ], ClassBody: [ - o("", function() { + o('', function() { return []; - }), o("ClassAssign", function() { + }), o('ClassAssign', function() { return [$1]; - }), o("ClassBody TERMINATOR ClassAssign", function() { + }), o('ClassBody TERMINATOR ClassAssign', function() { return $1.concat($3); - }), o("{ ClassBody }", function() { + }), o('{ ClassBody }', function() { return $2; }) ], Extends: [ - o("SimpleAssignable EXTENDS Value", function() { + o('SimpleAssignable EXTENDS Value', function() { return new Extends($1, $3); }) ], Invocation: [ - o("Value OptFuncExist Arguments", function() { + o('Value OptFuncExist Arguments', function() { return new Call($1, $3, $2); - }), o("Invocation OptFuncExist Arguments", function() { + }), o('Invocation OptFuncExist Arguments', function() { return new Call($1, $3, $2); - }), o("SUPER", function() { + }), o('SUPER', function() { return new Call('super', [new Splat(new Literal('arguments'))]); - }), o("SUPER Arguments", function() { + }), o('SUPER Arguments', function() { return new Call('super', $2); }) ], OptFuncExist: [ - o("", function() { + o('', function() { return false; - }), o("FUNC_EXIST", function() { + }), o('FUNC_EXIST', function() { return true; }) ], Arguments: [ - o("CALL_START CALL_END", function() { + o('CALL_START CALL_END', function() { return []; - }), o("CALL_START ArgList OptComma CALL_END", function() { + }), o('CALL_START ArgList OptComma CALL_END', function() { return $2; }) ], This: [ - o("THIS", function() { + o('THIS', function() { return new Value(new Literal('this')); - }), o("@", function() { + }), o('@', function() { return new Value(new Literal('this')); }) ], ThisProperty: [ - o("@ Identifier", function() { + o('@ Identifier', function() { return new Value(new Literal('this'), [new Accessor($2)], 'this'); }) ], Array: [ - o("[ ]", function() { + o('[ ]', function() { return new Arr([]); - }), o("[ ArgList OptComma ]", function() { + }), o('[ ArgList OptComma ]', function() { return new Arr($2); }) ], ArgList: [ - o("Arg", function() { + o('Arg', function() { return [$1]; - }), o("ArgList , Arg", function() { + }), o('ArgList , Arg', function() { return $1.concat($3); - }), o("ArgList OptComma TERMINATOR Arg", function() { + }), o('ArgList OptComma TERMINATOR Arg', function() { return $1.concat($4); - }), o("INDENT ArgList OptComma OUTDENT", function() { + }), o('INDENT ArgList OptComma OUTDENT', function() { return $2; - }), o("ArgList OptComma INDENT ArgList OptComma OUTDENT", function() { + }), o('ArgList OptComma INDENT ArgList OptComma OUTDENT', function() { return $1.concat($4); }) ], - Arg: [o("Expression"), o("Splat")], + Arg: [o('Expression'), o('Splat')], SimpleArgs: [ - o("Expression"), o("SimpleArgs , Expression", function() { + o('Expression'), o('SimpleArgs , Expression', function() { return [].concat($1, $3); }) ], Try: [ - o("TRY Block", function() { + o('TRY Block', function() { return new Try($2); - }), o("TRY Block Catch", function() { + }), o('TRY Block Catch', function() { return new Try($2, $3[0], $3[1]); - }), o("TRY Block FINALLY Block", function() { + }), o('TRY Block FINALLY Block', function() { return new Try($2, null, null, $4); - }), o("TRY Block Catch FINALLY Block", function() { + }), o('TRY Block Catch FINALLY Block', function() { return new Try($2, $3[0], $3[1], $5); }) ], Catch: [ - o("CATCH Identifier Block", function() { + o('CATCH Identifier Block', function() { return [$2, $3]; }) ], Throw: [ - o("THROW Expression", function() { + o('THROW Expression', function() { return new Throw($2); }) ], Parenthetical: [ - o("( Expression )", function() { + o('( Expression )', function() { return new Parens($2); }) ], WhileSource: [ - o("WHILE Expression", function() { + o('WHILE Expression', function() { return new While($2); - }), o("WHILE Expression WHEN Expression", function() { + }), o('WHILE Expression WHEN Expression', function() { return new While($2, { guard: $4 }); - }), o("UNTIL Expression", function() { + }), o('UNTIL Expression', function() { return new While($2, { invert: true }); - }), o("UNTIL Expression WHEN Expression", function() { + }), o('UNTIL Expression WHEN Expression', function() { return new While($2, { invert: true, guard: $4 @@ -364,20 +359,20 @@ }) ], While: [ - o("WhileSource Block", function() { + o('WhileSource Block', function() { return $1.addBody($2); - }), o("Statement WhileSource", function() { + }), o('Statement WhileSource', function() { return $2.addBody(Expressions.wrap([$1])); - }), o("Expression WhileSource", function() { + }), o('Expression WhileSource', function() { return $2.addBody(Expressions.wrap([$1])); - }), o("Loop", function() { + }), o('Loop', function() { return $1; }) ], Loop: [ - o("LOOP Block", function() { + o('LOOP Block', function() { return new While(new Literal('true')).addBody($2); - }), o("LOOP Expression", function() { + }), o('LOOP Expression', function() { return new While(new Literal('true')).addBody(Expressions.wrap([$2])); }) ], @@ -495,56 +490,56 @@ }) ], Switch: [ - o("SWITCH Expression INDENT Whens OUTDENT", function() { + o('SWITCH Expression INDENT Whens OUTDENT', function() { return new Switch($2, $4); - }), o("SWITCH Expression INDENT Whens ELSE Block OUTDENT", function() { + }), o('SWITCH Expression INDENT Whens ELSE Block OUTDENT', function() { return new Switch($2, $4, $6); - }), o("SWITCH INDENT Whens OUTDENT", function() { + }), o('SWITCH INDENT Whens OUTDENT', function() { return new Switch(null, $3); - }), o("SWITCH INDENT Whens ELSE Block OUTDENT", function() { + }), o('SWITCH INDENT Whens ELSE Block OUTDENT', function() { return new Switch(null, $3, $5); }) ], Whens: [ - o("When"), o("Whens When", function() { + o('When'), o('Whens When', function() { return $1.concat($2); }) ], When: [ - o("LEADING_WHEN SimpleArgs Block", function() { + o('LEADING_WHEN SimpleArgs Block', function() { return [[$2, $3]]; - }), o("LEADING_WHEN SimpleArgs Block TERMINATOR", function() { + }), o('LEADING_WHEN SimpleArgs Block TERMINATOR', function() { return [[$2, $3]]; }) ], IfBlock: [ - o("IF Expression Block", function() { + o('IF Expression Block', function() { return new If($2, $3); - }), o("UNLESS Expression Block", function() { + }), o('UNLESS Expression Block', function() { return new If($2, $3, { invert: true }); - }), o("IfBlock ELSE IF Expression Block", function() { + }), o('IfBlock ELSE IF Expression Block', function() { return $1.addElse(new If($4, $5)); - }), o("IfBlock ELSE Block", function() { + }), o('IfBlock ELSE Block', function() { return $1.addElse($3); }) ], If: [ - o("IfBlock"), o("Statement POST_IF Expression", function() { + o('IfBlock'), o('Statement POST_IF Expression', function() { return new If($3, Expressions.wrap([$1]), { statement: true }); - }), o("Expression POST_IF Expression", function() { + }), o('Expression POST_IF Expression', function() { return new If($3, Expressions.wrap([$1]), { statement: true }); - }), o("Statement POST_UNLESS Expression", function() { + }), o('Statement POST_UNLESS Expression', function() { return new If($3, Expressions.wrap([$1]), { statement: true, invert: true }); - }), o("Expression POST_UNLESS Expression", function() { + }), o('Expression POST_UNLESS Expression', function() { return new If($3, Expressions.wrap([$1]), { statement: true, invert: true @@ -570,6 +565,8 @@ return new Op('--', $1, null, true); }), o('SimpleAssignable ++', function() { return new Op('++', $1, null, true); + }), o('Expression ?', function() { + return new Existence($1); }), o('Expression + Expression', function() { return new Op('+', $1, $3); }), o('Expression - Expression', function() { @@ -584,9 +581,11 @@ return new Op($2, $1, $3); }), o('Expression RELATION Expression', function() { return $2.charAt(0) === '!' ? new Op($2.slice(1), $1, $3).invert() : new Op($2, $1, $3); - }), o('SimpleAssignable COMPOUND_ASSIGN Expression', function() { + }), o('SimpleAssignable COMPOUND_ASSIGN\ + Expression', function() { return new Assign($1, $3, $2); - }), o('SimpleAssignable COMPOUND_ASSIGN INDENT Expression OUTDENT', function() { + }), o('SimpleAssignable COMPOUND_ASSIGN\ + INDENT Expression OUTDENT', function() { return new Assign($1, $4, $2); }) ] diff --git a/lib/parser.js b/lib/parser.js index 180aa4d6..0d244532 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,9 +2,9 @@ var parser = (function(){ var parser = {trace: function trace() { }, yy: {}, -symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"BOOL":39,"Assignable":40,"=":41,"AssignObj":42,"ObjAssignable":43,":":44,"ThisProperty":45,"Parenthetical":46,"RETURN":47,"HERECOMMENT":48,"?":49,"PARAM_START":50,"ParamList":51,"PARAM_END":52,"FuncGlyph":53,"->":54,"=>":55,"OptComma":56,",":57,"Param":58,"PARAM":59,"@":60,"...":61,"Splat":62,"SimpleAssignable":63,"Accessor":64,"Array":65,"Object":66,"This":67,"PROPERTY_ACCESS":68,"PROTOTYPE_ACCESS":69,"::":70,"SOAK_ACCESS":71,"Index":72,"INDEX_START":73,"INDEX_END":74,"INDEX_SOAK":75,"INDEX_PROTO":76,"{":77,"AssignList":78,"}":79,"CLASS":80,"EXTENDS":81,"ClassBody":82,"ClassAssign":83,"OptFuncExist":84,"Arguments":85,"SUPER":86,"FUNC_EXIST":87,"CALL_START":88,"CALL_END":89,"ArgList":90,"THIS":91,"[":92,"]":93,"Arg":94,"SimpleArgs":95,"TRY":96,"Catch":97,"FINALLY":98,"CATCH":99,"THROW":100,"(":101,")":102,"WhileSource":103,"WHILE":104,"WHEN":105,"UNTIL":106,"Loop":107,"LOOP":108,"ForBody":109,"ForValue":110,"ForIn":111,"FORIN":112,"BY":113,"ForOf":114,"FOROF":115,"ForTo":116,"TO":117,"FOR":118,"ALL":119,"FROM":120,"SWITCH":121,"Whens":122,"ELSE":123,"When":124,"LEADING_WHEN":125,"IfBlock":126,"IF":127,"UNLESS":128,"POST_IF":129,"POST_UNLESS":130,"UNARY":131,"-":132,"+":133,"--":134,"++":135,"MATH":136,"SHIFT":137,"COMPARE":138,"LOGIC":139,"RELATION":140,"COMPOUND_ASSIGN":141,"$accept":0,"$end":1}, -terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"BOOL","41":"=","44":":","47":"RETURN","48":"HERECOMMENT","49":"?","50":"PARAM_START","52":"PARAM_END","54":"->","55":"=>","57":",","59":"PARAM","60":"@","61":"...","68":"PROPERTY_ACCESS","69":"PROTOTYPE_ACCESS","70":"::","71":"SOAK_ACCESS","73":"INDEX_START","74":"INDEX_END","75":"INDEX_SOAK","76":"INDEX_PROTO","77":"{","79":"}","80":"CLASS","81":"EXTENDS","86":"SUPER","87":"FUNC_EXIST","88":"CALL_START","89":"CALL_END","91":"THIS","92":"[","93":"]","96":"TRY","98":"FINALLY","99":"CATCH","100":"THROW","101":"(","102":")","104":"WHILE","105":"WHEN","106":"UNTIL","108":"LOOP","112":"FORIN","113":"BY","115":"FOROF","117":"TO","118":"FOR","119":"ALL","120":"FROM","121":"SWITCH","123":"ELSE","125":"LEADING_WHEN","127":"IF","128":"UNLESS","129":"POST_IF","130":"POST_UNLESS","131":"UNARY","132":"-","133":"+","134":"--","135":"++","136":"MATH","137":"SHIFT","138":"COMPARE","139":"LOGIC","140":"RELATION","141":"COMPOUND_ASSIGN"}, -productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[19,3],[19,5],[42,1],[42,3],[42,5],[42,1],[42,1],[43,1],[43,1],[43,1],[10,2],[10,1],[28,1],[27,2],[17,5],[17,2],[53,1],[53,1],[56,0],[56,1],[51,0],[51,1],[51,3],[58,1],[58,2],[58,2],[58,3],[62,2],[63,1],[63,2],[63,2],[63,1],[40,1],[40,1],[40,1],[15,1],[15,1],[15,1],[15,1],[64,2],[64,2],[64,1],[64,2],[64,1],[72,3],[72,2],[72,2],[66,4],[78,0],[78,1],[78,3],[78,4],[78,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[83,1],[83,3],[83,5],[82,0],[82,1],[82,3],[82,3],[25,3],[16,3],[16,3],[16,1],[16,2],[84,0],[84,1],[85,2],[85,4],[67,1],[67,1],[45,2],[65,2],[65,4],[90,1],[90,3],[90,4],[90,4],[90,6],[94,1],[94,1],[95,1],[95,3],[21,2],[21,3],[21,4],[21,5],[97,3],[11,2],[46,3],[103,2],[103,4],[103,2],[103,4],[22,2],[22,2],[22,2],[22,1],[107,2],[107,2],[23,2],[23,2],[23,2],[110,1],[110,1],[110,1],[111,2],[111,4],[111,4],[111,6],[114,2],[114,4],[116,2],[116,4],[116,4],[116,6],[109,3],[109,5],[109,3],[109,5],[109,4],[109,6],[109,5],[24,5],[24,7],[24,4],[24,6],[122,1],[122,2],[124,3],[124,4],[126,3],[126,3],[126,5],[126,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], +symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"PARAM":57,"...":58,"@":59,"Splat":60,"SimpleAssignable":61,"Accessor":62,"Array":63,"Object":64,"This":65,"PROPERTY_ACCESS":66,"PROTOTYPE_ACCESS":67,"::":68,"SOAK_ACCESS":69,"Index":70,"INDEX_START":71,"INDEX_END":72,"INDEX_SOAK":73,"INDEX_PROTO":74,"{":75,"AssignList":76,"}":77,"CLASS":78,"EXTENDS":79,"ClassBody":80,"ClassAssign":81,"OptFuncExist":82,"Arguments":83,"SUPER":84,"FUNC_EXIST":85,"CALL_START":86,"CALL_END":87,"ArgList":88,"THIS":89,"[":90,"]":91,"Arg":92,"SimpleArgs":93,"TRY":94,"Catch":95,"FINALLY":96,"CATCH":97,"THROW":98,"(":99,")":100,"WhileSource":101,"WHILE":102,"WHEN":103,"UNTIL":104,"Loop":105,"LOOP":106,"ForBody":107,"ForValue":108,"ForIn":109,"FORIN":110,"BY":111,"ForOf":112,"FOROF":113,"ForTo":114,"TO":115,"FOR":116,"ALL":117,"FROM":118,"SWITCH":119,"Whens":120,"ELSE":121,"When":122,"LEADING_WHEN":123,"IfBlock":124,"IF":125,"UNLESS":126,"POST_IF":127,"POST_UNLESS":128,"UNARY":129,"-":130,"+":131,"--":132,"++":133,"?":134,"MATH":135,"SHIFT":136,"COMPARE":137,"LOGIC":138,"RELATION":139,"COMPOUND_ASSIGN":140,"$accept":0,"$end":1}, +terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"BOOL","40":"=","43":":","46":"RETURN","47":"HERECOMMENT","48":"PARAM_START","50":"PARAM_END","52":"->","53":"=>","55":",","57":"PARAM","58":"...","59":"@","66":"PROPERTY_ACCESS","67":"PROTOTYPE_ACCESS","68":"::","69":"SOAK_ACCESS","71":"INDEX_START","72":"INDEX_END","73":"INDEX_SOAK","74":"INDEX_PROTO","75":"{","77":"}","78":"CLASS","79":"EXTENDS","84":"SUPER","85":"FUNC_EXIST","86":"CALL_START","87":"CALL_END","89":"THIS","90":"[","91":"]","94":"TRY","96":"FINALLY","97":"CATCH","98":"THROW","99":"(","100":")","102":"WHILE","103":"WHEN","104":"UNTIL","106":"LOOP","110":"FORIN","111":"BY","113":"FOROF","115":"TO","116":"FOR","117":"ALL","118":"FROM","119":"SWITCH","121":"ELSE","123":"LEADING_WHEN","125":"IF","126":"UNLESS","127":"POST_IF","128":"POST_UNLESS","129":"UNARY","130":"-","131":"+","132":"--","133":"++","134":"?","135":"MATH","136":"SHIFT","137":"COMPARE","138":"LOGIC","139":"RELATION","140":"COMPOUND_ASSIGN"}, +productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[19,3],[19,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[27,1],[17,5],[17,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,2],[56,3],[60,2],[61,1],[61,2],[61,2],[61,1],[39,1],[39,1],[39,1],[15,1],[15,1],[15,1],[15,1],[62,2],[62,2],[62,1],[62,2],[62,1],[70,3],[70,2],[70,2],[64,4],[76,0],[76,1],[76,3],[76,4],[76,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[81,1],[81,3],[81,5],[80,0],[80,1],[80,3],[80,3],[25,3],[16,3],[16,3],[16,1],[16,2],[82,0],[82,1],[83,2],[83,4],[65,1],[65,1],[44,2],[63,2],[63,4],[88,1],[88,3],[88,4],[88,4],[88,6],[92,1],[92,1],[93,1],[93,3],[21,2],[21,3],[21,4],[21,5],[95,3],[11,2],[45,3],[101,2],[101,4],[101,2],[101,4],[22,2],[22,2],[22,2],[22,1],[105,2],[105,2],[23,2],[23,2],[23,2],[108,1],[108,1],[108,1],[109,2],[109,4],[109,4],[109,6],[112,2],[112,4],[114,2],[114,4],[114,4],[114,6],[107,3],[107,5],[107,3],[107,5],[107,4],[107,6],[107,5],[24,5],[24,7],[24,4],[24,6],[120,1],[120,2],[122,3],[122,4],[124,3],[124,3],[124,5],[124,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -63,37 +63,37 @@ case 26:this.$ = $$[$0-1+1-1]; break; case 27:this.$ = $$[$0-1+1-1]; break; -case 28:this.$ = $$[$0-1+1-1]; +case 28:this.$ = $$[$0-3+2-1]; break; -case 29:this.$ = $$[$0-3+2-1]; +case 29:this.$ = new yy.Expressions; break; -case 30:this.$ = new yy.Expressions; +case 30:this.$ = yy.Expressions.wrap([$$[$0-2+2-1]]); break; -case 31:this.$ = yy.Expressions.wrap([$$[$0-2+2-1]]); +case 31:this.$ = new yy.Literal($$[$0-1+1-1]); break; case 32:this.$ = new yy.Literal($$[$0-1+1-1]); break; case 33:this.$ = new yy.Literal($$[$0-1+1-1]); break; -case 34:this.$ = new yy.Literal($$[$0-1+1-1]); +case 34:this.$ = $$[$0-1+1-1]; break; -case 35:this.$ = $$[$0-1+1-1]; +case 35:this.$ = new yy.Literal($$[$0-1+1-1]); break; case 36:this.$ = new yy.Literal($$[$0-1+1-1]); break; case 37:this.$ = new yy.Literal($$[$0-1+1-1]); break; -case 38:this.$ = new yy.Literal($$[$0-1+1-1]); +case 38:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 39:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1]); +case 39:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1]); break; -case 40:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1]); +case 40:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 41:this.$ = new yy.Value($$[$0-1+1-1]); +case 41:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); break; -case 42:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); +case 42:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'object'); break; -case 43:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'object'); +case 43:this.$ = $$[$0-1+1-1]; break; case 44:this.$ = $$[$0-1+1-1]; break; @@ -103,375 +103,375 @@ case 46:this.$ = $$[$0-1+1-1]; break; case 47:this.$ = $$[$0-1+1-1]; break; -case 48:this.$ = $$[$0-1+1-1]; +case 48:this.$ = new yy.Return($$[$0-2+2-1]); break; -case 49:this.$ = new yy.Return($$[$0-2+2-1]); +case 49:this.$ = new yy.Return; break; -case 50:this.$ = new yy.Return; +case 50:this.$ = new yy.Comment($$[$0-1+1-1]); break; -case 51:this.$ = new yy.Comment($$[$0-1+1-1]); +case 51:this.$ = new yy.Code($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); break; -case 52:this.$ = new yy.Existence($$[$0-2+1-1]); +case 52:this.$ = new yy.Code([], $$[$0-2+2-1], $$[$0-2+1-1]); break; -case 53:this.$ = new yy.Code($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); +case 53:this.$ = 'func'; break; -case 54:this.$ = new yy.Code([], $$[$0-2+2-1], $$[$0-2+1-1]); +case 54:this.$ = 'boundfunc'; break; -case 55:this.$ = 'func'; +case 55:this.$ = $$[$0-1+1-1]; break; -case 56:this.$ = 'boundfunc'; +case 56:this.$ = $$[$0-1+1-1]; break; -case 57:this.$ = $$[$0-1+1-1]; +case 57:this.$ = []; break; -case 58:this.$ = $$[$0-1+1-1]; +case 58:this.$ = [$$[$0-1+1-1]]; break; -case 59:this.$ = []; +case 59:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 60:this.$ = [$$[$0-1+1-1]]; +case 60:this.$ = new yy.Literal($$[$0-1+1-1]); break; -case 61:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 61:this.$ = new yy.Param($$[$0-2+1-1], false, true); break; -case 62:this.$ = new yy.Literal($$[$0-1+1-1]); +case 62:this.$ = new yy.Param($$[$0-2+2-1], true); break; -case 63:this.$ = new yy.Param($$[$0-2+2-1], true); +case 63:this.$ = new yy.Param($$[$0-3+2-1], true, true); break; -case 64:this.$ = new yy.Param($$[$0-2+1-1], false, true); +case 64:this.$ = new yy.Splat($$[$0-2+1-1]); break; -case 65:this.$ = new yy.Param($$[$0-3+2-1], true, true); +case 65:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 66:this.$ = new yy.Splat($$[$0-2+1-1]); +case 66:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 67:this.$ = new yy.Value($$[$0-1+1-1]); +case 67:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); break; -case 68:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 68:this.$ = $$[$0-1+1-1]; break; -case 69:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); +case 69:this.$ = $$[$0-1+1-1]; break; -case 70:this.$ = $$[$0-1+1-1]; +case 70:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 71:this.$ = $$[$0-1+1-1]; +case 71:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 72:this.$ = new yy.Value($$[$0-1+1-1]); +case 72:this.$ = $$[$0-1+1-1]; break; case 73:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 74:this.$ = $$[$0-1+1-1]; +case 74:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 75:this.$ = new yy.Value($$[$0-1+1-1]); +case 75:this.$ = $$[$0-1+1-1]; break; -case 76:this.$ = new yy.Value($$[$0-1+1-1]); +case 76:this.$ = new yy.Accessor($$[$0-2+2-1]); break; -case 77:this.$ = $$[$0-1+1-1]; +case 77:this.$ = new yy.Accessor($$[$0-2+2-1], 'prototype'); break; -case 78:this.$ = new yy.Accessor($$[$0-2+2-1]); +case 78:this.$ = new yy.Accessor(new yy.Literal('prototype')); break; -case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'prototype'); +case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); break; -case 80:this.$ = new yy.Accessor(new yy.Literal('prototype')); +case 80:this.$ = $$[$0-1+1-1]; break; -case 81:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); +case 81:this.$ = new yy.Index($$[$0-3+2-1]); break; -case 82:this.$ = $$[$0-1+1-1]; -break; -case 83:this.$ = new yy.Index($$[$0-3+2-1]); -break; -case 84:this.$ = yy.extend($$[$0-2+2-1], { +case 82:this.$ = yy.extend($$[$0-2+2-1], { soakNode: true }); break; -case 85:this.$ = yy.extend($$[$0-2+2-1], { +case 83:this.$ = yy.extend($$[$0-2+2-1], { proto: true }); break; -case 86:this.$ = new yy.Obj($$[$0-4+2-1]); +case 84:this.$ = new yy.Obj($$[$0-4+2-1]); break; -case 87:this.$ = []; +case 85:this.$ = []; break; -case 88:this.$ = [$$[$0-1+1-1]]; +case 86:this.$ = [$$[$0-1+1-1]]; break; -case 89:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 87:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 90:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 88:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 91:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 89:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 92:this.$ = new yy.Class($$[$0-2+2-1]); +case 90:this.$ = new yy.Class($$[$0-2+2-1]); break; -case 93:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); +case 91:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); break; -case 94:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); +case 92:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); break; -case 95:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 93:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 96:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); +case 94:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); break; -case 97:this.$ = new yy.Class(null, null, new yy.Expressions); +case 95:this.$ = new yy.Class(null, null, new yy.Expressions); break; -case 98:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); +case 96:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); break; -case 99:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 97:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 100:this.$ = $$[$0-1+1-1]; +case 98:this.$ = $$[$0-1+1-1]; break; -case 101:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); +case 99:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); break; -case 102:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); +case 100:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); break; -case 103:this.$ = []; +case 101:this.$ = []; break; -case 104:this.$ = [$$[$0-1+1-1]]; +case 102:this.$ = [$$[$0-1+1-1]]; break; -case 105:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 103:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 106:this.$ = $$[$0-3+2-1]; +case 104:this.$ = $$[$0-3+2-1]; break; -case 107:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); +case 105:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 108:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 106:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 109:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 107:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 110:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); +case 108:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); break; -case 111:this.$ = new yy.Call('super', $$[$0-2+2-1]); +case 109:this.$ = new yy.Call('super', $$[$0-2+2-1]); break; -case 112:this.$ = false; +case 110:this.$ = false; break; -case 113:this.$ = true; +case 111:this.$ = true; break; -case 114:this.$ = []; +case 112:this.$ = []; break; -case 115:this.$ = $$[$0-4+2-1]; +case 113:this.$ = $$[$0-4+2-1]; break; -case 116:this.$ = new yy.Value(new yy.Literal('this')); +case 114:this.$ = new yy.Value(new yy.Literal('this')); break; -case 117:this.$ = new yy.Value(new yy.Literal('this')); +case 115:this.$ = new yy.Value(new yy.Literal('this')); break; -case 118:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); +case 116:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); break; -case 119:this.$ = new yy.Arr([]); +case 117:this.$ = new yy.Arr([]); break; -case 120:this.$ = new yy.Arr($$[$0-4+2-1]); +case 118:this.$ = new yy.Arr($$[$0-4+2-1]); break; -case 121:this.$ = [$$[$0-1+1-1]]; +case 119:this.$ = [$$[$0-1+1-1]]; break; -case 122:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 120:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 123:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 121:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 124:this.$ = $$[$0-4+2-1]; +case 122:this.$ = $$[$0-4+2-1]; break; -case 125:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 123:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +break; +case 124:this.$ = $$[$0-1+1-1]; +break; +case 125:this.$ = $$[$0-1+1-1]; break; case 126:this.$ = $$[$0-1+1-1]; break; -case 127:this.$ = $$[$0-1+1-1]; +case 127:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 128:this.$ = $$[$0-1+1-1]; +case 128:this.$ = new yy.Try($$[$0-2+2-1]); break; -case 129:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); +case 129:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; -case 130:this.$ = new yy.Try($$[$0-2+2-1]); +case 130:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); break; -case 131:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); +case 131:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); break; -case 132:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); +case 132:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 133:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); +case 133:this.$ = new yy.Throw($$[$0-2+2-1]); break; -case 134:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; +case 134:this.$ = new yy.Parens($$[$0-3+2-1]); break; -case 135:this.$ = new yy.Throw($$[$0-2+2-1]); +case 135:this.$ = new yy.While($$[$0-2+2-1]); break; -case 136:this.$ = new yy.Parens($$[$0-3+2-1]); -break; -case 137:this.$ = new yy.While($$[$0-2+2-1]); -break; -case 138:this.$ = new yy.While($$[$0-4+2-1], { +case 136:this.$ = new yy.While($$[$0-4+2-1], { guard: $$[$0-4+4-1] }); break; -case 139:this.$ = new yy.While($$[$0-2+2-1], { +case 137:this.$ = new yy.While($$[$0-2+2-1], { invert: true }); break; -case 140:this.$ = new yy.While($$[$0-4+2-1], { +case 138:this.$ = new yy.While($$[$0-4+2-1], { invert: true, guard: $$[$0-4+4-1] }); break; -case 141:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +case 139:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); break; -case 142:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); +case 140:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; -case 143:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); +case 141:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; -case 144:this.$ = $$[$0-1+1-1]; +case 142:this.$ = $$[$0-1+1-1]; break; -case 145:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); +case 143:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); break; -case 146:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); +case 144:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); break; -case 147:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); +case 145:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 148:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); +case 146:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 149:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); +case 147:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); break; -case 150:this.$ = $$[$0-1+1-1]; +case 148:this.$ = $$[$0-1+1-1]; break; -case 151:this.$ = new yy.Value($$[$0-1+1-1]); +case 149:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 152:this.$ = new yy.Value($$[$0-1+1-1]); +case 150:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 153:this.$ = { +case 151:this.$ = { source: $$[$0-2+2-1] }; break; -case 154:this.$ = { +case 152:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 155:this.$ = { +case 153:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 156:this.$ = { +case 154:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 157:this.$ = { +case 155:this.$ = { object: true, source: $$[$0-2+2-1] }; break; -case 158:this.$ = { +case 156:this.$ = { object: true, source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 159:this.$ = { +case 157:this.$ = { to: $$[$0-2+2-1] }; break; -case 160:this.$ = { +case 158:this.$ = { to: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 161:this.$ = { +case 159:this.$ = { to: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 162:this.$ = { +case 160:this.$ = { to: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 163:this.$ = yy.extend($$[$0-3+3-1], { +case 161:this.$ = yy.extend($$[$0-3+3-1], { name: $$[$0-3+2-1] }); break; -case 164:this.$ = yy.extend($$[$0-5+5-1], { +case 162:this.$ = yy.extend($$[$0-5+5-1], { name: $$[$0-5+2-1], index: $$[$0-5+4-1] }); break; -case 165:this.$ = yy.extend($$[$0-3+3-1], { +case 163:this.$ = yy.extend($$[$0-3+3-1], { index: $$[$0-3+2-1] }); break; -case 166:this.$ = yy.extend($$[$0-5+5-1], { +case 164:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], name: $$[$0-5+4-1] }); break; -case 167:this.$ = yy.extend($$[$0-4+4-1], { +case 165:this.$ = yy.extend($$[$0-4+4-1], { raw: true, index: $$[$0-4+3-1] }); break; -case 168:this.$ = yy.extend($$[$0-6+6-1], { +case 166:this.$ = yy.extend($$[$0-6+6-1], { raw: true, index: $$[$0-6+3-1], name: $$[$0-6+5-1] }); break; -case 169:this.$ = yy.extend($$[$0-5+5-1], { +case 167:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], from: $$[$0-5+4-1] }); break; -case 170:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); +case 168:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); break; -case 171:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 169:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 172:this.$ = new yy.Switch(null, $$[$0-4+3-1]); +case 170:this.$ = new yy.Switch(null, $$[$0-4+3-1]); break; -case 173:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 171:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 174:this.$ = $$[$0-1+1-1]; +case 172:this.$ = $$[$0-1+1-1]; break; -case 175:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); +case 173:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); break; -case 176:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; +case 174:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; break; -case 177:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; +case 175:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; break; -case 178:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); +case 176:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 179:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { +case 177:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 180:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); +case 178:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); break; -case 181:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 179:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 182:this.$ = $$[$0-1+1-1]; +case 180:this.$ = $$[$0-1+1-1]; +break; +case 181:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); +break; +case 182:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); break; case 183:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true + statement: true, + invert: true }); break; case 184:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true - }); -break; -case 185:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 186:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true, - invert: true - }); +case 185:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 187:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); +case 186:this.$ = new yy.Op('-', $$[$0-2+2-1]); break; -case 188:this.$ = new yy.Op('-', $$[$0-2+2-1]); +case 187:this.$ = new yy.Op('+', $$[$0-2+2-1]); break; -case 189:this.$ = new yy.Op('+', $$[$0-2+2-1]); +case 188:this.$ = new yy.Op('--', $$[$0-2+2-1]); break; -case 190:this.$ = new yy.Op('--', $$[$0-2+2-1]); +case 189:this.$ = new yy.Op('++', $$[$0-2+2-1]); break; -case 191:this.$ = new yy.Op('++', $$[$0-2+2-1]); +case 190:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); break; -case 192:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); +case 191:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); break; -case 193:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); +case 192:this.$ = new yy.Existence($$[$0-2+1-1]); break; -case 194:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 193:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 195:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 194:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 195:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; case 196:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; @@ -479,18 +479,16 @@ case 197:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; case 198:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 199:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +case 199:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +case 200:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 201:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); -break; -case 202:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); +case 201:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,6],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[3]},{"1":[2,2],"28":75,"48":[1,48]},{"1":[2,3],"4":[1,76]},{"4":[1,77]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":78,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"30":[1,79],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,8],"4":[2,8],"30":[2,8],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,9],"4":[2,9],"30":[2,9],"103":94,"104":[1,66],"106":[1,67],"109":95,"118":[1,69],"129":[1,92],"130":[1,93]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"49":[2,15],"57":[2,15],"61":[2,15],"64":97,"68":[1,99],"69":[1,100],"70":[1,101],"71":[1,102],"72":103,"73":[1,104],"74":[2,15],"75":[1,105],"76":[1,106],"79":[2,15],"84":96,"87":[1,98],"88":[2,112],"89":[2,15],"93":[2,15],"102":[2,15],"104":[2,15],"105":[2,15],"106":[2,15],"113":[2,15],"117":[2,15],"118":[2,15],"129":[2,15],"130":[2,15],"132":[2,15],"133":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"49":[2,16],"57":[2,16],"61":[2,16],"64":108,"68":[1,99],"69":[1,100],"70":[1,101],"71":[1,102],"72":103,"73":[1,104],"74":[2,16],"75":[1,105],"76":[1,106],"79":[2,16],"84":107,"87":[1,98],"88":[2,112],"89":[2,16],"93":[2,16],"102":[2,16],"104":[2,16],"105":[2,16],"106":[2,16],"113":[2,16],"117":[2,16],"118":[2,16],"129":[2,16],"130":[2,16],"132":[2,16],"133":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"49":[2,17],"57":[2,17],"61":[2,17],"74":[2,17],"79":[2,17],"89":[2,17],"93":[2,17],"102":[2,17],"104":[2,17],"105":[2,17],"106":[2,17],"113":[2,17],"117":[2,17],"118":[2,17],"129":[2,17],"130":[2,17],"132":[2,17],"133":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"49":[2,18],"57":[2,18],"61":[2,18],"74":[2,18],"79":[2,18],"89":[2,18],"93":[2,18],"102":[2,18],"104":[2,18],"105":[2,18],"106":[2,18],"113":[2,18],"117":[2,18],"118":[2,18],"129":[2,18],"130":[2,18],"132":[2,18],"133":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"49":[2,19],"57":[2,19],"61":[2,19],"74":[2,19],"79":[2,19],"89":[2,19],"93":[2,19],"102":[2,19],"104":[2,19],"105":[2,19],"106":[2,19],"113":[2,19],"117":[2,19],"118":[2,19],"129":[2,19],"130":[2,19],"132":[2,19],"133":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"49":[2,20],"57":[2,20],"61":[2,20],"74":[2,20],"79":[2,20],"89":[2,20],"93":[2,20],"102":[2,20],"104":[2,20],"105":[2,20],"106":[2,20],"113":[2,20],"117":[2,20],"118":[2,20],"129":[2,20],"130":[2,20],"132":[2,20],"133":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"49":[2,21],"57":[2,21],"61":[2,21],"74":[2,21],"79":[2,21],"89":[2,21],"93":[2,21],"102":[2,21],"104":[2,21],"105":[2,21],"106":[2,21],"113":[2,21],"117":[2,21],"118":[2,21],"129":[2,21],"130":[2,21],"132":[2,21],"133":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"49":[2,22],"57":[2,22],"61":[2,22],"74":[2,22],"79":[2,22],"89":[2,22],"93":[2,22],"102":[2,22],"104":[2,22],"105":[2,22],"106":[2,22],"113":[2,22],"117":[2,22],"118":[2,22],"129":[2,22],"130":[2,22],"132":[2,22],"133":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"49":[2,23],"57":[2,23],"61":[2,23],"74":[2,23],"79":[2,23],"89":[2,23],"93":[2,23],"102":[2,23],"104":[2,23],"105":[2,23],"106":[2,23],"113":[2,23],"117":[2,23],"118":[2,23],"129":[2,23],"130":[2,23],"132":[2,23],"133":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"49":[2,24],"57":[2,24],"61":[2,24],"74":[2,24],"79":[2,24],"89":[2,24],"93":[2,24],"102":[2,24],"104":[2,24],"105":[2,24],"106":[2,24],"113":[2,24],"117":[2,24],"118":[2,24],"129":[2,24],"130":[2,24],"132":[2,24],"133":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"49":[2,25],"57":[2,25],"61":[2,25],"74":[2,25],"79":[2,25],"89":[2,25],"93":[2,25],"102":[2,25],"104":[2,25],"105":[2,25],"106":[2,25],"113":[2,25],"117":[2,25],"118":[2,25],"129":[2,25],"130":[2,25],"132":[2,25],"133":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"49":[2,26],"57":[2,26],"61":[2,26],"74":[2,26],"79":[2,26],"89":[2,26],"93":[2,26],"102":[2,26],"104":[2,26],"105":[2,26],"106":[2,26],"113":[2,26],"117":[2,26],"118":[2,26],"129":[2,26],"130":[2,26],"132":[2,26],"133":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"49":[2,27],"57":[2,27],"61":[2,27],"74":[2,27],"79":[2,27],"89":[2,27],"93":[2,27],"102":[2,27],"104":[2,27],"105":[2,27],"106":[2,27],"113":[2,27],"117":[2,27],"118":[2,27],"129":[2,27],"130":[2,27],"132":[2,27],"133":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"49":[2,28],"57":[2,28],"61":[2,28],"74":[2,28],"79":[2,28],"89":[2,28],"93":[2,28],"102":[2,28],"104":[2,28],"105":[2,28],"106":[2,28],"113":[2,28],"117":[2,28],"118":[2,28],"129":[2,28],"130":[2,28],"132":[2,28],"133":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"104":[2,10],"106":[2,10],"118":[2,10],"129":[2,10],"130":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"104":[2,11],"106":[2,11],"118":[2,11],"129":[2,11],"130":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"104":[2,12],"106":[2,12],"118":[2,12],"129":[2,12],"130":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"104":[2,13],"106":[2,13],"118":[2,13],"129":[2,13],"130":[2,13]},{"1":[2,14],"4":[2,14],"30":[2,14],"104":[2,14],"106":[2,14],"118":[2,14],"129":[2,14],"130":[2,14]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"41":[1,109],"49":[2,74],"57":[2,74],"61":[2,74],"68":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"79":[2,74],"87":[2,74],"88":[2,74],"89":[2,74],"93":[2,74],"102":[2,74],"104":[2,74],"105":[2,74],"106":[2,74],"113":[2,74],"117":[2,74],"118":[2,74],"129":[2,74],"130":[2,74],"132":[2,74],"133":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"49":[2,75],"57":[2,75],"61":[2,75],"68":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"79":[2,75],"87":[2,75],"88":[2,75],"89":[2,75],"93":[2,75],"102":[2,75],"104":[2,75],"105":[2,75],"106":[2,75],"113":[2,75],"117":[2,75],"118":[2,75],"129":[2,75],"130":[2,75],"132":[2,75],"133":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"49":[2,76],"57":[2,76],"61":[2,76],"68":[2,76],"69":[2,76],"70":[2,76],"71":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"79":[2,76],"87":[2,76],"88":[2,76],"89":[2,76],"93":[2,76],"102":[2,76],"104":[2,76],"105":[2,76],"106":[2,76],"113":[2,76],"117":[2,76],"118":[2,76],"129":[2,76],"130":[2,76],"132":[2,76],"133":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"49":[2,77],"57":[2,77],"61":[2,77],"68":[2,77],"69":[2,77],"70":[2,77],"71":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"79":[2,77],"87":[2,77],"88":[2,77],"89":[2,77],"93":[2,77],"102":[2,77],"104":[2,77],"105":[2,77],"106":[2,77],"113":[2,77],"117":[2,77],"118":[2,77],"129":[2,77],"130":[2,77],"132":[2,77],"133":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"49":[2,110],"57":[2,110],"61":[2,110],"68":[2,110],"69":[2,110],"70":[2,110],"71":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"76":[2,110],"79":[2,110],"85":110,"87":[2,110],"88":[1,111],"89":[2,110],"93":[2,110],"102":[2,110],"104":[2,110],"105":[2,110],"106":[2,110],"113":[2,110],"117":[2,110],"118":[2,110],"129":[2,110],"130":[2,110],"132":[2,110],"133":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110]},{"51":112,"52":[2,59],"57":[2,59],"58":113,"59":[1,114],"60":[1,115]},{"4":[1,117],"6":116,"29":[1,6]},{"8":118,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":120,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":121,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"15":123,"16":124,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":125,"45":63,"46":30,"60":[1,59],"63":122,"65":51,"66":52,"67":31,"77":[1,71],"86":[1,32],"91":[1,58],"92":[1,70],"101":[1,57]},{"15":123,"16":124,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":125,"45":63,"46":30,"60":[1,59],"63":126,"65":51,"66":52,"67":31,"77":[1,71],"86":[1,32],"91":[1,58],"92":[1,70],"101":[1,57]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"41":[2,71],"49":[2,71],"57":[2,71],"61":[2,71],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"79":[2,71],"81":[1,130],"87":[2,71],"88":[2,71],"89":[2,71],"93":[2,71],"102":[2,71],"104":[2,71],"105":[2,71],"106":[2,71],"113":[2,71],"117":[2,71],"118":[2,71],"129":[2,71],"130":[2,71],"132":[2,71],"133":[2,71],"134":[1,127],"135":[1,128],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[1,129]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"49":[2,182],"57":[2,182],"61":[2,182],"74":[2,182],"79":[2,182],"89":[2,182],"93":[2,182],"102":[2,182],"104":[2,182],"105":[2,182],"106":[2,182],"113":[2,182],"117":[2,182],"118":[2,182],"123":[1,131],"129":[2,182],"130":[2,182],"132":[2,182],"133":[2,182],"136":[2,182],"137":[2,182],"138":[2,182],"139":[2,182],"140":[2,182]},{"4":[1,117],"6":132,"29":[1,6]},{"4":[1,117],"6":133,"29":[1,6]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"49":[2,144],"57":[2,144],"61":[2,144],"74":[2,144],"79":[2,144],"89":[2,144],"93":[2,144],"102":[2,144],"104":[2,144],"105":[2,144],"106":[2,144],"113":[2,144],"117":[2,144],"118":[2,144],"129":[2,144],"130":[2,144],"132":[2,144],"133":[2,144],"136":[2,144],"137":[2,144],"138":[2,144],"139":[2,144],"140":[2,144]},{"4":[1,117],"6":134,"29":[1,6]},{"8":135,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,136],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,97],"4":[2,97],"15":123,"16":124,"29":[1,138],"30":[2,97],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":125,"45":63,"46":30,"49":[2,97],"57":[2,97],"60":[1,59],"61":[2,97],"63":137,"65":51,"66":52,"67":31,"74":[2,97],"77":[1,71],"79":[2,97],"81":[1,139],"86":[1,32],"89":[2,97],"91":[1,58],"92":[1,70],"93":[2,97],"101":[1,57],"102":[2,97],"104":[2,97],"105":[2,97],"106":[2,97],"113":[2,97],"117":[2,97],"118":[2,97],"129":[2,97],"130":[2,97],"132":[2,97],"133":[2,97],"136":[2,97],"137":[2,97],"138":[2,97],"139":[2,97],"140":[2,97]},{"1":[2,51],"4":[2,51],"29":[2,51],"30":[2,51],"49":[2,51],"57":[2,51],"61":[2,51],"74":[2,51],"79":[2,51],"89":[2,51],"93":[2,51],"98":[2,51],"99":[2,51],"102":[2,51],"104":[2,51],"105":[2,51],"106":[2,51],"113":[2,51],"117":[2,51],"118":[2,51],"123":[2,51],"125":[2,51],"129":[2,51],"130":[2,51],"132":[2,51],"133":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51],"140":[2,51]},{"1":[2,50],"4":[2,50],"8":140,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"30":[2,50],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[2,50],"106":[2,50],"107":44,"108":[1,68],"109":45,"118":[2,50],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"129":[2,50],"130":[2,50],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":141,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"41":[2,72],"49":[2,72],"57":[2,72],"61":[2,72],"68":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"79":[2,72],"87":[2,72],"88":[2,72],"89":[2,72],"93":[2,72],"102":[2,72],"104":[2,72],"105":[2,72],"106":[2,72],"113":[2,72],"117":[2,72],"118":[2,72],"129":[2,72],"130":[2,72],"132":[2,72],"133":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"41":[2,73],"49":[2,73],"57":[2,73],"61":[2,73],"68":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"87":[2,73],"88":[2,73],"89":[2,73],"93":[2,73],"102":[2,73],"104":[2,73],"105":[2,73],"106":[2,73],"113":[2,73],"117":[2,73],"118":[2,73],"129":[2,73],"130":[2,73],"132":[2,73],"133":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"49":[2,35],"57":[2,35],"61":[2,35],"68":[2,35],"69":[2,35],"70":[2,35],"71":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"79":[2,35],"87":[2,35],"88":[2,35],"89":[2,35],"93":[2,35],"102":[2,35],"104":[2,35],"105":[2,35],"106":[2,35],"113":[2,35],"117":[2,35],"118":[2,35],"129":[2,35],"130":[2,35],"132":[2,35],"133":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"49":[2,36],"57":[2,36],"61":[2,36],"68":[2,36],"69":[2,36],"70":[2,36],"71":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"79":[2,36],"87":[2,36],"88":[2,36],"89":[2,36],"93":[2,36],"102":[2,36],"104":[2,36],"105":[2,36],"106":[2,36],"113":[2,36],"117":[2,36],"118":[2,36],"129":[2,36],"130":[2,36],"132":[2,36],"133":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"49":[2,37],"57":[2,37],"61":[2,37],"68":[2,37],"69":[2,37],"70":[2,37],"71":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"79":[2,37],"87":[2,37],"88":[2,37],"89":[2,37],"93":[2,37],"102":[2,37],"104":[2,37],"105":[2,37],"106":[2,37],"113":[2,37],"117":[2,37],"118":[2,37],"129":[2,37],"130":[2,37],"132":[2,37],"133":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"49":[2,38],"57":[2,38],"61":[2,38],"68":[2,38],"69":[2,38],"70":[2,38],"71":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"79":[2,38],"87":[2,38],"88":[2,38],"89":[2,38],"93":[2,38],"102":[2,38],"104":[2,38],"105":[2,38],"106":[2,38],"113":[2,38],"117":[2,38],"118":[2,38],"129":[2,38],"130":[2,38],"132":[2,38],"133":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38]},{"8":142,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"49":[2,116],"57":[2,116],"61":[2,116],"68":[2,116],"69":[2,116],"70":[2,116],"71":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"76":[2,116],"79":[2,116],"87":[2,116],"88":[2,116],"89":[2,116],"93":[2,116],"102":[2,116],"104":[2,116],"105":[2,116],"106":[2,116],"113":[2,116],"117":[2,116],"118":[2,116],"129":[2,116],"130":[2,116],"132":[2,116],"133":[2,116],"136":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"31":143,"32":[1,74],"49":[2,117],"57":[2,117],"61":[2,117],"68":[2,117],"69":[2,117],"70":[2,117],"71":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"76":[2,117],"79":[2,117],"87":[2,117],"88":[2,117],"89":[2,117],"93":[2,117],"102":[2,117],"104":[2,117],"105":[2,117],"106":[2,117],"113":[2,117],"117":[2,117],"118":[2,117],"129":[2,117],"130":[2,117],"132":[2,117],"133":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[2,117]},{"4":[2,55],"29":[2,55]},{"4":[2,56],"29":[2,56]},{"1":[2,67],"4":[2,67],"29":[2,67],"30":[2,67],"41":[2,67],"49":[2,67],"57":[2,67],"61":[2,67],"68":[2,67],"69":[2,67],"70":[2,67],"71":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"76":[2,67],"79":[2,67],"81":[2,67],"87":[2,67],"88":[2,67],"89":[2,67],"93":[2,67],"102":[2,67],"104":[2,67],"105":[2,67],"106":[2,67],"113":[2,67],"117":[2,67],"118":[2,67],"129":[2,67],"130":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"41":[2,70],"49":[2,70],"57":[2,70],"61":[2,70],"68":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"79":[2,70],"81":[2,70],"87":[2,70],"88":[2,70],"89":[2,70],"93":[2,70],"102":[2,70],"104":[2,70],"105":[2,70],"106":[2,70],"113":[2,70],"117":[2,70],"118":[2,70],"129":[2,70],"130":[2,70],"132":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70]},{"8":144,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":145,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":146,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":147,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"4":[1,117],"6":148,"8":149,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,6],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"31":151,"32":[1,74],"65":153,"66":154,"77":[1,71],"92":[1,70],"110":150,"119":[1,152]},{"8":159,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,158],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"62":160,"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"90":156,"91":[1,58],"92":[1,70],"93":[1,155],"94":157,"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"4":[2,87],"28":165,"29":[2,87],"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":162,"43":163,"45":164,"46":168,"48":[1,48],"57":[2,87],"60":[1,169],"78":161,"79":[2,87],"101":[1,57]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"44":[2,33],"49":[2,33],"57":[2,33],"61":[2,33],"68":[2,33],"69":[2,33],"70":[2,33],"71":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"79":[2,33],"87":[2,33],"88":[2,33],"89":[2,33],"93":[2,33],"102":[2,33],"104":[2,33],"105":[2,33],"106":[2,33],"113":[2,33],"117":[2,33],"118":[2,33],"129":[2,33],"130":[2,33],"132":[2,33],"133":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"44":[2,34],"49":[2,34],"57":[2,34],"61":[2,34],"68":[2,34],"69":[2,34],"70":[2,34],"71":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"79":[2,34],"87":[2,34],"88":[2,34],"89":[2,34],"93":[2,34],"102":[2,34],"104":[2,34],"105":[2,34],"106":[2,34],"113":[2,34],"117":[2,34],"118":[2,34],"129":[2,34],"130":[2,34],"132":[2,34],"133":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"41":[2,32],"44":[2,32],"49":[2,32],"57":[2,32],"61":[2,32],"68":[2,32],"69":[2,32],"70":[2,32],"71":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"79":[2,32],"81":[2,32],"87":[2,32],"88":[2,32],"89":[2,32],"93":[2,32],"102":[2,32],"104":[2,32],"105":[2,32],"106":[2,32],"112":[2,32],"113":[2,32],"115":[2,32],"117":[2,32],"118":[2,32],"120":[2,32],"129":[2,32],"130":[2,32],"132":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"49":[2,31],"57":[2,31],"61":[2,31],"74":[2,31],"79":[2,31],"89":[2,31],"93":[2,31],"98":[2,31],"99":[2,31],"102":[2,31],"104":[2,31],"105":[2,31],"106":[2,31],"113":[2,31],"117":[2,31],"118":[2,31],"123":[2,31],"125":[2,31],"129":[2,31],"130":[2,31],"132":[2,31],"133":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31]},{"1":[2,7],"4":[2,7],"7":170,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"30":[2,7],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,4]},{"4":[1,76],"30":[1,171]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"49":[2,30],"57":[2,30],"61":[2,30],"74":[2,30],"79":[2,30],"89":[2,30],"93":[2,30],"98":[2,30],"99":[2,30],"102":[2,30],"104":[2,30],"105":[2,30],"106":[2,30],"113":[2,30],"117":[2,30],"118":[2,30],"123":[2,30],"125":[2,30],"129":[2,30],"130":[2,30],"132":[2,30],"133":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30]},{"8":172,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":173,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":174,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":175,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":176,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":177,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":178,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":179,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":180,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"49":[2,143],"57":[2,143],"61":[2,143],"74":[2,143],"79":[2,143],"89":[2,143],"93":[2,143],"102":[2,143],"104":[2,143],"105":[2,143],"106":[2,143],"113":[2,143],"117":[2,143],"118":[2,143],"129":[2,143],"130":[2,143],"132":[2,143],"133":[2,143],"136":[2,143],"137":[2,143],"138":[2,143],"139":[2,143],"140":[2,143]},{"1":[2,148],"4":[2,148],"29":[2,148],"30":[2,148],"49":[2,148],"57":[2,148],"61":[2,148],"74":[2,148],"79":[2,148],"89":[2,148],"93":[2,148],"102":[2,148],"104":[2,148],"105":[2,148],"106":[2,148],"113":[2,148],"117":[2,148],"118":[2,148],"129":[2,148],"130":[2,148],"132":[2,148],"133":[2,148],"136":[2,148],"137":[2,148],"138":[2,148],"139":[2,148],"140":[2,148]},{"1":[2,52],"4":[2,52],"29":[2,52],"30":[2,52],"49":[2,52],"57":[2,52],"61":[2,52],"74":[2,52],"79":[2,52],"89":[2,52],"93":[2,52],"102":[2,52],"104":[2,52],"105":[2,52],"106":[2,52],"113":[2,52],"117":[2,52],"118":[2,52],"129":[2,52],"130":[2,52],"132":[2,52],"133":[2,52],"136":[2,52],"137":[2,52],"138":[2,52],"139":[2,52],"140":[2,52]},{"8":181,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":182,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"49":[2,142],"57":[2,142],"61":[2,142],"74":[2,142],"79":[2,142],"89":[2,142],"93":[2,142],"102":[2,142],"104":[2,142],"105":[2,142],"106":[2,142],"113":[2,142],"117":[2,142],"118":[2,142],"129":[2,142],"130":[2,142],"132":[2,142],"133":[2,142],"136":[2,142],"137":[2,142],"138":[2,142],"139":[2,142],"140":[2,142]},{"1":[2,147],"4":[2,147],"29":[2,147],"30":[2,147],"49":[2,147],"57":[2,147],"61":[2,147],"74":[2,147],"79":[2,147],"89":[2,147],"93":[2,147],"102":[2,147],"104":[2,147],"105":[2,147],"106":[2,147],"113":[2,147],"117":[2,147],"118":[2,147],"129":[2,147],"130":[2,147],"132":[2,147],"133":[2,147],"136":[2,147],"137":[2,147],"138":[2,147],"139":[2,147],"140":[2,147]},{"85":183,"88":[1,111]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"41":[2,68],"49":[2,68],"57":[2,68],"61":[2,68],"68":[2,68],"69":[2,68],"70":[2,68],"71":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"76":[2,68],"79":[2,68],"81":[2,68],"87":[2,68],"88":[2,68],"89":[2,68],"93":[2,68],"102":[2,68],"104":[2,68],"105":[2,68],"106":[2,68],"113":[2,68],"117":[2,68],"118":[2,68],"129":[2,68],"130":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68]},{"88":[2,113]},{"31":184,"32":[1,74]},{"31":185,"32":[1,74]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"41":[2,80],"49":[2,80],"57":[2,80],"61":[2,80],"68":[2,80],"69":[2,80],"70":[2,80],"71":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"79":[2,80],"81":[2,80],"87":[2,80],"88":[2,80],"89":[2,80],"93":[2,80],"102":[2,80],"104":[2,80],"105":[2,80],"106":[2,80],"113":[2,80],"117":[2,80],"118":[2,80],"129":[2,80],"130":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80]},{"31":186,"32":[1,74]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"41":[2,82],"49":[2,82],"57":[2,82],"61":[2,82],"68":[2,82],"69":[2,82],"70":[2,82],"71":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"79":[2,82],"81":[2,82],"87":[2,82],"88":[2,82],"89":[2,82],"93":[2,82],"102":[2,82],"104":[2,82],"105":[2,82],"106":[2,82],"113":[2,82],"117":[2,82],"118":[2,82],"129":[2,82],"130":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82]},{"8":187,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"72":188,"73":[1,104],"75":[1,105],"76":[1,106]},{"72":189,"73":[1,104],"75":[1,105],"76":[1,106]},{"85":190,"88":[1,111]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"41":[2,69],"49":[2,69],"57":[2,69],"61":[2,69],"68":[2,69],"69":[2,69],"70":[2,69],"71":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"76":[2,69],"79":[2,69],"81":[2,69],"87":[2,69],"88":[2,69],"89":[2,69],"93":[2,69],"102":[2,69],"104":[2,69],"105":[2,69],"106":[2,69],"113":[2,69],"117":[2,69],"118":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69]},{"8":191,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,192],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"49":[2,111],"57":[2,111],"61":[2,111],"68":[2,111],"69":[2,111],"70":[2,111],"71":[2,111],"73":[2,111],"74":[2,111],"75":[2,111],"76":[2,111],"79":[2,111],"87":[2,111],"88":[2,111],"89":[2,111],"93":[2,111],"102":[2,111],"104":[2,111],"105":[2,111],"106":[2,111],"113":[2,111],"117":[2,111],"118":[2,111],"129":[2,111],"130":[2,111],"132":[2,111],"133":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111]},{"8":159,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,158],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"62":160,"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"89":[1,193],"90":194,"91":[1,58],"92":[1,70],"94":157,"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"52":[1,195],"57":[1,196]},{"52":[2,60],"57":[2,60]},{"52":[2,62],"57":[2,62],"61":[1,197]},{"59":[1,198]},{"1":[2,54],"4":[2,54],"29":[2,54],"30":[2,54],"49":[2,54],"57":[2,54],"61":[2,54],"74":[2,54],"79":[2,54],"89":[2,54],"93":[2,54],"102":[2,54],"104":[2,54],"105":[2,54],"106":[2,54],"113":[2,54],"117":[2,54],"118":[2,54],"129":[2,54],"130":[2,54],"132":[2,54],"133":[2,54],"136":[2,54],"137":[2,54],"138":[2,54],"139":[2,54],"140":[2,54]},{"28":75,"48":[1,48]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"49":[1,91],"57":[2,187],"61":[2,187],"74":[2,187],"79":[2,187],"89":[2,187],"93":[2,187],"102":[2,187],"103":89,"104":[2,187],"105":[2,187],"106":[2,187],"109":90,"113":[2,187],"117":[2,187],"118":[2,187],"129":[2,187],"130":[2,187],"132":[2,187],"133":[2,187],"136":[2,187],"137":[2,187],"138":[2,187],"139":[2,187],"140":[2,187]},{"103":94,"104":[1,66],"106":[1,67],"109":95,"118":[1,69],"129":[1,92],"130":[1,93]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"49":[1,91],"57":[2,188],"61":[2,188],"74":[2,188],"79":[2,188],"89":[2,188],"93":[2,188],"102":[2,188],"103":89,"104":[2,188],"105":[2,188],"106":[2,188],"109":90,"113":[2,188],"117":[2,188],"118":[2,188],"129":[2,188],"130":[2,188],"132":[2,188],"133":[2,188],"136":[2,188],"137":[2,188],"138":[2,188],"139":[2,188],"140":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"49":[1,91],"57":[2,189],"61":[2,189],"74":[2,189],"79":[2,189],"89":[2,189],"93":[2,189],"102":[2,189],"103":89,"104":[2,189],"105":[2,189],"106":[2,189],"109":90,"113":[2,189],"117":[2,189],"118":[2,189],"129":[2,189],"130":[2,189],"132":[2,189],"133":[2,189],"136":[2,189],"137":[2,189],"138":[2,189],"139":[2,189],"140":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"49":[2,190],"57":[2,190],"61":[2,190],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"73":[2,71],"74":[2,190],"75":[2,71],"76":[2,71],"79":[2,190],"87":[2,71],"88":[2,71],"89":[2,190],"93":[2,190],"102":[2,190],"104":[2,190],"105":[2,190],"106":[2,190],"113":[2,190],"117":[2,190],"118":[2,190],"129":[2,190],"130":[2,190],"132":[2,190],"133":[2,190],"136":[2,190],"137":[2,190],"138":[2,190],"139":[2,190],"140":[2,190]},{"64":97,"68":[1,99],"69":[1,100],"70":[1,101],"71":[1,102],"72":103,"73":[1,104],"75":[1,105],"76":[1,106],"84":96,"87":[1,98],"88":[2,112]},{"64":108,"68":[1,99],"69":[1,100],"70":[1,101],"71":[1,102],"72":103,"73":[1,104],"75":[1,105],"76":[1,106],"84":107,"87":[1,98],"88":[2,112]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"49":[2,74],"57":[2,74],"61":[2,74],"68":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"79":[2,74],"87":[2,74],"88":[2,74],"89":[2,74],"93":[2,74],"102":[2,74],"104":[2,74],"105":[2,74],"106":[2,74],"113":[2,74],"117":[2,74],"118":[2,74],"129":[2,74],"130":[2,74],"132":[2,74],"133":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"49":[2,191],"57":[2,191],"61":[2,191],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"73":[2,71],"74":[2,191],"75":[2,71],"76":[2,71],"79":[2,191],"87":[2,71],"88":[2,71],"89":[2,191],"93":[2,191],"102":[2,191],"104":[2,191],"105":[2,191],"106":[2,191],"113":[2,191],"117":[2,191],"118":[2,191],"129":[2,191],"130":[2,191],"132":[2,191],"133":[2,191],"136":[2,191],"137":[2,191],"138":[2,191],"139":[2,191],"140":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"49":[2,192],"57":[2,192],"61":[2,192],"74":[2,192],"79":[2,192],"89":[2,192],"93":[2,192],"102":[2,192],"104":[2,192],"105":[2,192],"106":[2,192],"113":[2,192],"117":[2,192],"118":[2,192],"129":[2,192],"130":[2,192],"132":[2,192],"133":[2,192],"136":[2,192],"137":[2,192],"138":[2,192],"139":[2,192],"140":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"49":[2,193],"57":[2,193],"61":[2,193],"74":[2,193],"79":[2,193],"89":[2,193],"93":[2,193],"102":[2,193],"104":[2,193],"105":[2,193],"106":[2,193],"113":[2,193],"117":[2,193],"118":[2,193],"129":[2,193],"130":[2,193],"132":[2,193],"133":[2,193],"136":[2,193],"137":[2,193],"138":[2,193],"139":[2,193],"140":[2,193]},{"8":199,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,200],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"15":201,"16":124,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":125,"45":63,"46":30,"60":[1,59],"63":202,"65":51,"66":52,"67":31,"77":[1,71],"86":[1,32],"91":[1,58],"92":[1,70],"101":[1,57]},{"4":[1,117],"6":204,"29":[1,6],"127":[1,203]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"49":[2,130],"57":[2,130],"61":[2,130],"74":[2,130],"79":[2,130],"89":[2,130],"93":[2,130],"97":205,"98":[1,206],"99":[1,207],"102":[2,130],"104":[2,130],"105":[2,130],"106":[2,130],"113":[2,130],"117":[2,130],"118":[2,130],"129":[2,130],"130":[2,130],"132":[2,130],"133":[2,130],"136":[2,130],"137":[2,130],"138":[2,130],"139":[2,130],"140":[2,130]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"49":[2,141],"57":[2,141],"61":[2,141],"74":[2,141],"79":[2,141],"89":[2,141],"93":[2,141],"102":[2,141],"104":[2,141],"105":[2,141],"106":[2,141],"113":[2,141],"117":[2,141],"118":[2,141],"129":[2,141],"130":[2,141],"132":[2,141],"133":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141],"140":[2,141]},{"1":[2,149],"4":[2,149],"29":[2,149],"30":[2,149],"49":[2,149],"57":[2,149],"61":[2,149],"74":[2,149],"79":[2,149],"89":[2,149],"93":[2,149],"102":[2,149],"104":[2,149],"105":[2,149],"106":[2,149],"113":[2,149],"117":[2,149],"118":[2,149],"129":[2,149],"130":[2,149],"132":[2,149],"133":[2,149],"136":[2,149],"137":[2,149],"138":[2,149],"139":[2,149],"140":[2,149]},{"29":[1,208],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"122":209,"124":210,"125":[1,211]},{"1":[2,92],"4":[2,92],"29":[1,213],"30":[2,92],"49":[2,92],"57":[2,92],"61":[2,92],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"73":[2,71],"74":[2,92],"75":[2,71],"76":[2,71],"79":[2,92],"81":[1,212],"87":[2,71],"88":[2,71],"89":[2,92],"93":[2,92],"102":[2,92],"104":[2,92],"105":[2,92],"106":[2,92],"113":[2,92],"117":[2,92],"118":[2,92],"129":[2,92],"130":[2,92],"132":[2,92],"133":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92]},{"4":[2,103],"28":165,"30":[2,103],"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":217,"43":163,"45":218,"46":168,"48":[1,48],"60":[1,169],"77":[1,216],"82":214,"83":215,"101":[1,57]},{"15":219,"16":124,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":125,"45":63,"46":30,"60":[1,59],"63":202,"65":51,"66":52,"67":31,"77":[1,71],"86":[1,32],"91":[1,58],"92":[1,70],"101":[1,57]},{"1":[2,49],"4":[2,49],"30":[2,49],"49":[1,91],"103":89,"104":[2,49],"106":[2,49],"109":90,"118":[2,49],"129":[2,49],"130":[2,49],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,135],"4":[2,135],"30":[2,135],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[2,135],"130":[2,135],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"49":[1,91],"102":[1,220],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"41":[2,118],"44":[2,118],"49":[2,118],"57":[2,118],"61":[2,118],"68":[2,118],"69":[2,118],"70":[2,118],"71":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"76":[2,118],"79":[2,118],"81":[2,118],"87":[2,118],"88":[2,118],"89":[2,118],"93":[2,118],"102":[2,118],"104":[2,118],"105":[2,118],"106":[2,118],"113":[2,118],"117":[2,118],"118":[2,118],"129":[2,118],"130":[2,118],"132":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118]},{"4":[1,117],"6":221,"29":[1,6],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"4":[1,117],"6":222,"29":[1,6],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"49":[1,91],"57":[2,137],"61":[2,137],"74":[2,137],"79":[2,137],"89":[2,137],"93":[2,137],"102":[2,137],"103":89,"104":[1,66],"105":[1,223],"106":[1,67],"109":90,"113":[2,137],"117":[2,137],"118":[1,69],"129":[2,137],"130":[2,137],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"49":[1,91],"57":[2,139],"61":[2,139],"74":[2,139],"79":[2,139],"89":[2,139],"93":[2,139],"102":[2,139],"103":89,"104":[1,66],"105":[1,224],"106":[1,67],"109":90,"113":[2,139],"117":[2,139],"118":[1,69],"129":[2,139],"130":[2,139],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"49":[2,145],"57":[2,145],"61":[2,145],"74":[2,145],"79":[2,145],"89":[2,145],"93":[2,145],"102":[2,145],"104":[2,145],"105":[2,145],"106":[2,145],"113":[2,145],"117":[2,145],"118":[2,145],"129":[2,145],"130":[2,145],"132":[2,145],"133":[2,145],"136":[2,145],"137":[2,145],"138":[2,145],"139":[2,145],"140":[2,145]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"49":[1,91],"57":[2,146],"61":[2,146],"74":[2,146],"79":[2,146],"89":[2,146],"93":[2,146],"102":[2,146],"103":89,"104":[1,66],"105":[2,146],"106":[1,67],"109":90,"113":[2,146],"117":[2,146],"118":[1,69],"129":[2,146],"130":[2,146],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"57":[1,226],"111":225,"112":[1,227]},{"57":[2,150],"112":[2,150],"114":228,"115":[1,230],"120":[1,229]},{"31":231,"32":[1,74]},{"57":[2,151],"112":[2,151],"115":[2,151]},{"57":[2,152],"112":[2,152],"115":[2,152]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"41":[2,119],"49":[2,119],"57":[2,119],"61":[2,119],"68":[2,119],"69":[2,119],"70":[2,119],"71":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"79":[2,119],"87":[2,119],"88":[2,119],"89":[2,119],"93":[2,119],"102":[2,119],"104":[2,119],"105":[2,119],"106":[2,119],"112":[2,119],"113":[2,119],"115":[2,119],"117":[2,119],"118":[2,119],"129":[2,119],"130":[2,119],"132":[2,119],"133":[2,119],"136":[2,119],"137":[2,119],"138":[2,119],"139":[2,119],"140":[2,119]},{"4":[2,57],"29":[2,57],"56":232,"57":[1,233],"93":[2,57]},{"4":[2,121],"29":[2,121],"30":[2,121],"57":[2,121],"89":[2,121],"93":[2,121]},{"8":159,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,158],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"62":160,"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"90":234,"91":[1,58],"92":[1,70],"94":157,"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"4":[2,126],"29":[2,126],"30":[2,126],"49":[1,91],"57":[2,126],"61":[1,235],"89":[2,126],"93":[2,126],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"4":[2,127],"29":[2,127],"30":[2,127],"57":[2,127],"89":[2,127],"93":[2,127]},{"4":[2,57],"29":[2,57],"56":236,"57":[1,237],"79":[2,57]},{"4":[2,88],"29":[2,88],"30":[2,88],"57":[2,88],"79":[2,88]},{"4":[2,41],"29":[2,41],"30":[2,41],"44":[1,238],"57":[2,41],"79":[2,41]},{"4":[2,44],"29":[2,44],"30":[2,44],"57":[2,44],"79":[2,44]},{"4":[2,45],"29":[2,45],"30":[2,45],"57":[2,45],"79":[2,45]},{"4":[2,46],"29":[2,46],"30":[2,46],"44":[2,46],"57":[2,46],"79":[2,46]},{"4":[2,47],"29":[2,47],"30":[2,47],"44":[2,47],"57":[2,47],"79":[2,47]},{"4":[2,48],"29":[2,48],"30":[2,48],"44":[2,48],"57":[2,48],"79":[2,48]},{"31":143,"32":[1,74]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"49":[2,29],"57":[2,29],"61":[2,29],"74":[2,29],"79":[2,29],"89":[2,29],"93":[2,29],"98":[2,29],"99":[2,29],"102":[2,29],"104":[2,29],"105":[2,29],"106":[2,29],"113":[2,29],"117":[2,29],"118":[2,29],"123":[2,29],"125":[2,29],"129":[2,29],"130":[2,29],"132":[2,29],"133":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"49":[1,91],"57":[2,194],"61":[2,194],"74":[2,194],"79":[2,194],"89":[2,194],"93":[2,194],"102":[2,194],"103":89,"104":[2,194],"105":[2,194],"106":[2,194],"109":90,"113":[2,194],"117":[2,194],"118":[2,194],"129":[2,194],"130":[2,194],"132":[2,194],"133":[2,194],"136":[1,82],"137":[2,194],"138":[2,194],"139":[2,194],"140":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"49":[1,91],"57":[2,195],"61":[2,195],"74":[2,195],"79":[2,195],"89":[2,195],"93":[2,195],"102":[2,195],"103":89,"104":[2,195],"105":[2,195],"106":[2,195],"109":90,"113":[2,195],"117":[2,195],"118":[2,195],"129":[2,195],"130":[2,195],"132":[2,195],"133":[2,195],"136":[1,82],"137":[2,195],"138":[2,195],"139":[2,195],"140":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"49":[1,91],"57":[2,196],"61":[2,196],"74":[2,196],"79":[2,196],"89":[2,196],"93":[2,196],"102":[2,196],"103":89,"104":[2,196],"105":[2,196],"106":[2,196],"109":90,"113":[2,196],"117":[2,196],"118":[2,196],"129":[2,196],"130":[2,196],"132":[2,196],"133":[2,196],"136":[2,196],"137":[2,196],"138":[2,196],"139":[2,196],"140":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"49":[1,91],"57":[2,197],"61":[2,197],"74":[2,197],"79":[2,197],"89":[2,197],"93":[2,197],"102":[2,197],"103":89,"104":[2,197],"105":[2,197],"106":[2,197],"109":90,"113":[2,197],"117":[2,197],"118":[2,197],"129":[2,197],"130":[2,197],"132":[1,81],"133":[1,80],"136":[1,82],"137":[2,197],"138":[2,197],"139":[2,197],"140":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"49":[1,91],"57":[2,198],"61":[2,198],"74":[2,198],"79":[2,198],"89":[2,198],"93":[2,198],"102":[2,198],"103":89,"104":[2,198],"105":[2,198],"106":[2,198],"109":90,"113":[2,198],"117":[2,198],"118":[2,198],"129":[2,198],"130":[2,198],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[2,198],"139":[2,198],"140":[1,86]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"49":[1,91],"57":[2,199],"61":[2,199],"74":[2,199],"79":[2,199],"89":[2,199],"93":[2,199],"102":[2,199],"103":89,"104":[2,199],"105":[2,199],"106":[2,199],"109":90,"113":[2,199],"117":[2,199],"118":[2,199],"129":[2,199],"130":[2,199],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[2,199],"140":[1,86]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"49":[1,91],"57":[2,200],"61":[2,200],"74":[2,200],"79":[2,200],"89":[2,200],"93":[2,200],"102":[2,200],"103":89,"104":[2,200],"105":[2,200],"106":[2,200],"109":90,"113":[2,200],"117":[2,200],"118":[2,200],"129":[2,200],"130":[2,200],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[2,200],"139":[2,200],"140":[2,200]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"49":[1,91],"57":[2,184],"61":[2,184],"74":[2,184],"79":[2,184],"89":[2,184],"93":[2,184],"102":[2,184],"103":89,"104":[1,66],"105":[2,184],"106":[1,67],"109":90,"113":[2,184],"117":[2,184],"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"49":[1,91],"57":[2,186],"61":[2,186],"74":[2,186],"79":[2,186],"89":[2,186],"93":[2,186],"102":[2,186],"103":89,"104":[1,66],"105":[2,186],"106":[1,67],"109":90,"113":[2,186],"117":[2,186],"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"49":[1,91],"57":[2,183],"61":[2,183],"74":[2,183],"79":[2,183],"89":[2,183],"93":[2,183],"102":[2,183],"103":89,"104":[1,66],"105":[2,183],"106":[1,67],"109":90,"113":[2,183],"117":[2,183],"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"49":[1,91],"57":[2,185],"61":[2,185],"74":[2,185],"79":[2,185],"89":[2,185],"93":[2,185],"102":[2,185],"103":89,"104":[1,66],"105":[2,185],"106":[1,67],"109":90,"113":[2,185],"117":[2,185],"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"49":[2,108],"57":[2,108],"61":[2,108],"68":[2,108],"69":[2,108],"70":[2,108],"71":[2,108],"73":[2,108],"74":[2,108],"75":[2,108],"76":[2,108],"79":[2,108],"87":[2,108],"88":[2,108],"89":[2,108],"93":[2,108],"102":[2,108],"104":[2,108],"105":[2,108],"106":[2,108],"113":[2,108],"117":[2,108],"118":[2,108],"129":[2,108],"130":[2,108],"132":[2,108],"133":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108],"140":[2,108]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"41":[2,78],"49":[2,78],"57":[2,78],"61":[2,78],"68":[2,78],"69":[2,78],"70":[2,78],"71":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"79":[2,78],"81":[2,78],"87":[2,78],"88":[2,78],"89":[2,78],"93":[2,78],"102":[2,78],"104":[2,78],"105":[2,78],"106":[2,78],"113":[2,78],"117":[2,78],"118":[2,78],"129":[2,78],"130":[2,78],"132":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"41":[2,79],"49":[2,79],"57":[2,79],"61":[2,79],"68":[2,79],"69":[2,79],"70":[2,79],"71":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"79":[2,79],"81":[2,79],"87":[2,79],"88":[2,79],"89":[2,79],"93":[2,79],"102":[2,79],"104":[2,79],"105":[2,79],"106":[2,79],"113":[2,79],"117":[2,79],"118":[2,79],"129":[2,79],"130":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"41":[2,81],"49":[2,81],"57":[2,81],"61":[2,81],"68":[2,81],"69":[2,81],"70":[2,81],"71":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"79":[2,81],"81":[2,81],"87":[2,81],"88":[2,81],"89":[2,81],"93":[2,81],"102":[2,81],"104":[2,81],"105":[2,81],"106":[2,81],"113":[2,81],"117":[2,81],"118":[2,81],"129":[2,81],"130":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81]},{"49":[1,91],"74":[1,239],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"41":[2,84],"49":[2,84],"57":[2,84],"61":[2,84],"68":[2,84],"69":[2,84],"70":[2,84],"71":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"79":[2,84],"81":[2,84],"87":[2,84],"88":[2,84],"89":[2,84],"93":[2,84],"102":[2,84],"104":[2,84],"105":[2,84],"106":[2,84],"113":[2,84],"117":[2,84],"118":[2,84],"129":[2,84],"130":[2,84],"132":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"41":[2,85],"49":[2,85],"57":[2,85],"61":[2,85],"68":[2,85],"69":[2,85],"70":[2,85],"71":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"79":[2,85],"81":[2,85],"87":[2,85],"88":[2,85],"89":[2,85],"93":[2,85],"102":[2,85],"104":[2,85],"105":[2,85],"106":[2,85],"113":[2,85],"117":[2,85],"118":[2,85],"129":[2,85],"130":[2,85],"132":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"49":[2,109],"57":[2,109],"61":[2,109],"68":[2,109],"69":[2,109],"70":[2,109],"71":[2,109],"73":[2,109],"74":[2,109],"75":[2,109],"76":[2,109],"79":[2,109],"87":[2,109],"88":[2,109],"89":[2,109],"93":[2,109],"102":[2,109],"104":[2,109],"105":[2,109],"106":[2,109],"113":[2,109],"117":[2,109],"118":[2,109],"129":[2,109],"130":[2,109],"132":[2,109],"133":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[2,109]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"49":[1,91],"57":[2,39],"61":[2,39],"74":[2,39],"79":[2,39],"89":[2,39],"93":[2,39],"102":[2,39],"103":89,"104":[2,39],"105":[2,39],"106":[2,39],"109":90,"113":[2,39],"117":[2,39],"118":[2,39],"129":[2,39],"130":[2,39],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"8":240,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"49":[2,114],"57":[2,114],"61":[2,114],"68":[2,114],"69":[2,114],"70":[2,114],"71":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"76":[2,114],"79":[2,114],"87":[2,114],"88":[2,114],"89":[2,114],"93":[2,114],"102":[2,114],"104":[2,114],"105":[2,114],"106":[2,114],"113":[2,114],"117":[2,114],"118":[2,114],"129":[2,114],"130":[2,114],"132":[2,114],"133":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114]},{"4":[2,57],"29":[2,57],"56":241,"57":[1,233],"89":[2,57]},{"53":242,"54":[1,60],"55":[1,61]},{"58":243,"59":[1,114],"60":[1,115]},{"52":[2,64],"57":[2,64]},{"52":[2,63],"57":[2,63],"61":[1,244]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"49":[1,91],"57":[2,201],"61":[2,201],"74":[2,201],"79":[2,201],"89":[2,201],"93":[2,201],"102":[2,201],"103":89,"104":[2,201],"105":[2,201],"106":[2,201],"109":90,"113":[2,201],"117":[2,201],"118":[2,201],"129":[2,201],"130":[2,201],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"8":245,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"49":[2,107],"57":[2,107],"61":[2,107],"64":97,"68":[1,99],"69":[1,100],"70":[1,101],"71":[1,102],"72":103,"73":[1,104],"74":[2,107],"75":[1,105],"76":[1,106],"79":[2,107],"84":96,"87":[1,98],"88":[2,112],"89":[2,107],"93":[2,107],"102":[2,107],"104":[2,107],"105":[2,107],"106":[2,107],"113":[2,107],"117":[2,107],"118":[2,107],"129":[2,107],"130":[2,107],"132":[2,107],"133":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107],"140":[2,107]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"49":[2,71],"57":[2,71],"61":[2,71],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"79":[2,71],"87":[2,71],"88":[2,71],"89":[2,71],"93":[2,71],"102":[2,71],"104":[2,71],"105":[2,71],"106":[2,71],"113":[2,71],"117":[2,71],"118":[2,71],"129":[2,71],"130":[2,71],"132":[2,71],"133":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71]},{"8":246,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"49":[2,181],"57":[2,181],"61":[2,181],"74":[2,181],"79":[2,181],"89":[2,181],"93":[2,181],"102":[2,181],"104":[2,181],"105":[2,181],"106":[2,181],"113":[2,181],"117":[2,181],"118":[2,181],"123":[2,181],"129":[2,181],"130":[2,181],"132":[2,181],"133":[2,181],"136":[2,181],"137":[2,181],"138":[2,181],"139":[2,181],"140":[2,181]},{"1":[2,131],"4":[2,131],"29":[2,131],"30":[2,131],"49":[2,131],"57":[2,131],"61":[2,131],"74":[2,131],"79":[2,131],"89":[2,131],"93":[2,131],"98":[1,247],"102":[2,131],"104":[2,131],"105":[2,131],"106":[2,131],"113":[2,131],"117":[2,131],"118":[2,131],"129":[2,131],"130":[2,131],"132":[2,131],"133":[2,131],"136":[2,131],"137":[2,131],"138":[2,131],"139":[2,131],"140":[2,131]},{"4":[1,117],"6":248,"29":[1,6]},{"31":249,"32":[1,74]},{"122":250,"124":210,"125":[1,211]},{"30":[1,251],"123":[1,252],"124":253,"125":[1,211]},{"30":[2,174],"123":[2,174],"125":[2,174]},{"8":255,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"95":254,"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"15":256,"16":124,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":125,"45":63,"46":30,"60":[1,59],"63":202,"65":51,"66":52,"67":31,"77":[1,71],"86":[1,32],"91":[1,58],"92":[1,70],"101":[1,57]},{"4":[2,103],"28":165,"30":[2,103],"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":217,"43":163,"45":218,"46":168,"48":[1,48],"60":[1,169],"77":[1,216],"82":257,"83":215,"101":[1,57]},{"4":[1,259],"30":[1,258]},{"4":[2,104],"30":[2,104],"79":[2,104]},{"4":[2,103],"28":165,"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":217,"43":163,"45":218,"46":168,"48":[1,48],"60":[1,169],"77":[1,216],"79":[2,103],"82":260,"83":215,"101":[1,57]},{"4":[2,100],"30":[2,100],"79":[2,100]},{"4":[2,44],"30":[2,44],"44":[1,261],"79":[2,44]},{"1":[2,98],"4":[2,98],"29":[1,262],"30":[2,98],"49":[2,98],"57":[2,98],"61":[2,98],"64":97,"68":[1,99],"69":[1,100],"70":[1,101],"71":[1,102],"72":103,"73":[1,104],"74":[2,98],"75":[1,105],"76":[1,106],"79":[2,98],"84":96,"87":[1,98],"88":[2,112],"89":[2,98],"93":[2,98],"102":[2,98],"104":[2,98],"105":[2,98],"106":[2,98],"113":[2,98],"117":[2,98],"118":[2,98],"129":[2,98],"130":[2,98],"132":[2,98],"133":[2,98],"136":[2,98],"137":[2,98],"138":[2,98],"139":[2,98],"140":[2,98]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"44":[2,136],"49":[2,136],"57":[2,136],"61":[2,136],"68":[2,136],"69":[2,136],"70":[2,136],"71":[2,136],"73":[2,136],"74":[2,136],"75":[2,136],"76":[2,136],"79":[2,136],"87":[2,136],"88":[2,136],"89":[2,136],"93":[2,136],"102":[2,136],"104":[2,136],"105":[2,136],"106":[2,136],"113":[2,136],"117":[2,136],"118":[2,136],"129":[2,136],"130":[2,136],"132":[2,136],"133":[2,136],"136":[2,136],"137":[2,136],"138":[2,136],"139":[2,136],"140":[2,136]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"49":[2,178],"57":[2,178],"61":[2,178],"74":[2,178],"79":[2,178],"89":[2,178],"93":[2,178],"102":[2,178],"104":[2,178],"105":[2,178],"106":[2,178],"113":[2,178],"117":[2,178],"118":[2,178],"123":[2,178],"129":[2,178],"130":[2,178],"132":[2,178],"133":[2,178],"136":[2,178],"137":[2,178],"138":[2,178],"139":[2,178],"140":[2,178]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"49":[2,179],"57":[2,179],"61":[2,179],"74":[2,179],"79":[2,179],"89":[2,179],"93":[2,179],"102":[2,179],"104":[2,179],"105":[2,179],"106":[2,179],"113":[2,179],"117":[2,179],"118":[2,179],"123":[2,179],"129":[2,179],"130":[2,179],"132":[2,179],"133":[2,179],"136":[2,179],"137":[2,179],"138":[2,179],"139":[2,179],"140":[2,179]},{"8":263,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":264,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,163],"4":[2,163],"29":[2,163],"30":[2,163],"49":[2,163],"57":[2,163],"61":[2,163],"74":[2,163],"79":[2,163],"89":[2,163],"93":[2,163],"102":[2,163],"104":[2,163],"105":[2,163],"106":[2,163],"113":[2,163],"117":[2,163],"118":[2,163],"129":[2,163],"130":[2,163],"132":[2,163],"133":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163],"140":[2,163]},{"31":265,"32":[1,74],"65":153,"66":154,"77":[1,71],"92":[1,70],"110":266},{"8":267,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,165],"4":[2,165],"29":[2,165],"30":[2,165],"49":[2,165],"57":[2,165],"61":[2,165],"74":[2,165],"79":[2,165],"89":[2,165],"93":[2,165],"102":[2,165],"104":[2,165],"105":[2,165],"106":[2,165],"113":[2,165],"117":[2,165],"118":[2,165],"129":[2,165],"130":[2,165],"132":[2,165],"133":[2,165],"136":[2,165],"137":[2,165],"138":[2,165],"139":[2,165],"140":[2,165]},{"8":268,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":269,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"57":[1,271],"114":270,"115":[1,230]},{"4":[1,273],"29":[1,274],"93":[1,272]},{"4":[2,58],"8":159,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[2,58],"30":[2,58],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"62":160,"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"89":[2,58],"91":[1,58],"92":[1,70],"93":[2,58],"94":275,"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"4":[2,57],"29":[2,57],"30":[2,57],"56":276,"57":[1,233]},{"4":[2,66],"29":[2,66],"30":[2,66],"57":[2,66],"89":[2,66],"93":[2,66]},{"4":[1,278],"29":[1,279],"79":[1,277]},{"4":[2,58],"28":165,"29":[2,58],"30":[2,58],"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":280,"43":163,"45":164,"46":168,"48":[1,48],"60":[1,169],"79":[2,58],"101":[1,57]},{"8":281,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,282],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"41":[2,83],"49":[2,83],"57":[2,83],"61":[2,83],"68":[2,83],"69":[2,83],"70":[2,83],"71":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"79":[2,83],"81":[2,83],"87":[2,83],"88":[2,83],"89":[2,83],"93":[2,83],"102":[2,83],"104":[2,83],"105":[2,83],"106":[2,83],"113":[2,83],"117":[2,83],"118":[2,83],"129":[2,83],"130":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83]},{"30":[1,283],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"4":[1,273],"29":[1,274],"89":[1,284]},{"4":[1,117],"6":285,"29":[1,6]},{"52":[2,61],"57":[2,61]},{"52":[2,65],"57":[2,65]},{"30":[1,286],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"4":[1,117],"6":287,"29":[1,6],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"4":[1,117],"6":288,"29":[1,6]},{"1":[2,132],"4":[2,132],"29":[2,132],"30":[2,132],"49":[2,132],"57":[2,132],"61":[2,132],"74":[2,132],"79":[2,132],"89":[2,132],"93":[2,132],"102":[2,132],"104":[2,132],"105":[2,132],"106":[2,132],"113":[2,132],"117":[2,132],"118":[2,132],"129":[2,132],"130":[2,132],"132":[2,132],"133":[2,132],"136":[2,132],"137":[2,132],"138":[2,132],"139":[2,132],"140":[2,132]},{"4":[1,117],"6":289,"29":[1,6]},{"30":[1,290],"123":[1,291],"124":253,"125":[1,211]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"49":[2,172],"57":[2,172],"61":[2,172],"74":[2,172],"79":[2,172],"89":[2,172],"93":[2,172],"102":[2,172],"104":[2,172],"105":[2,172],"106":[2,172],"113":[2,172],"117":[2,172],"118":[2,172],"129":[2,172],"130":[2,172],"132":[2,172],"133":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172]},{"4":[1,117],"6":292,"29":[1,6]},{"30":[2,175],"123":[2,175],"125":[2,175]},{"4":[1,117],"6":293,"29":[1,6],"57":[1,294]},{"4":[2,128],"29":[2,128],"49":[1,91],"57":[2,128],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,93],"4":[2,93],"29":[1,295],"30":[2,93],"49":[2,93],"57":[2,93],"61":[2,93],"64":97,"68":[1,99],"69":[1,100],"70":[1,101],"71":[1,102],"72":103,"73":[1,104],"74":[2,93],"75":[1,105],"76":[1,106],"79":[2,93],"84":96,"87":[1,98],"88":[2,112],"89":[2,93],"93":[2,93],"102":[2,93],"104":[2,93],"105":[2,93],"106":[2,93],"113":[2,93],"117":[2,93],"118":[2,93],"129":[2,93],"130":[2,93],"132":[2,93],"133":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93],"140":[2,93]},{"4":[1,259],"30":[1,296]},{"1":[2,96],"4":[2,96],"29":[2,96],"30":[2,96],"49":[2,96],"57":[2,96],"61":[2,96],"74":[2,96],"79":[2,96],"89":[2,96],"93":[2,96],"102":[2,96],"104":[2,96],"105":[2,96],"106":[2,96],"113":[2,96],"117":[2,96],"118":[2,96],"129":[2,96],"130":[2,96],"132":[2,96],"133":[2,96],"136":[2,96],"137":[2,96],"138":[2,96],"139":[2,96],"140":[2,96]},{"28":165,"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":217,"43":163,"45":218,"46":168,"48":[1,48],"60":[1,169],"83":297,"101":[1,57]},{"4":[1,259],"79":[1,298]},{"8":299,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,300],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"4":[2,103],"28":165,"30":[2,103],"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":217,"43":163,"45":218,"46":168,"48":[1,48],"60":[1,169],"77":[1,216],"82":301,"83":215,"101":[1,57]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"49":[1,91],"57":[2,138],"61":[2,138],"74":[2,138],"79":[2,138],"89":[2,138],"93":[2,138],"102":[2,138],"103":89,"104":[1,66],"105":[2,138],"106":[1,67],"109":90,"113":[2,138],"117":[2,138],"118":[1,69],"129":[2,138],"130":[2,138],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"49":[1,91],"57":[2,140],"61":[2,140],"74":[2,140],"79":[2,140],"89":[2,140],"93":[2,140],"102":[2,140],"103":89,"104":[1,66],"105":[2,140],"106":[1,67],"109":90,"113":[2,140],"117":[2,140],"118":[1,69],"129":[2,140],"130":[2,140],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"111":302,"112":[1,227],"115":[2,150]},{"114":303,"115":[1,230]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"49":[1,91],"57":[2,153],"61":[2,153],"74":[2,153],"79":[2,153],"89":[2,153],"93":[2,153],"102":[2,153],"103":89,"104":[1,66],"105":[1,304],"106":[1,67],"109":90,"113":[1,305],"117":[2,153],"118":[1,69],"129":[2,153],"130":[2,153],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"116":306,"117":[1,307],"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"49":[1,91],"57":[2,157],"61":[2,157],"74":[2,157],"79":[2,157],"89":[2,157],"93":[2,157],"102":[2,157],"103":89,"104":[1,66],"105":[1,308],"106":[1,67],"109":90,"113":[2,157],"117":[2,157],"118":[1,69],"129":[2,157],"130":[2,157],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"49":[2,167],"57":[2,167],"61":[2,167],"74":[2,167],"79":[2,167],"89":[2,167],"93":[2,167],"102":[2,167],"104":[2,167],"105":[2,167],"106":[2,167],"113":[2,167],"117":[2,167],"118":[2,167],"129":[2,167],"130":[2,167],"132":[2,167],"133":[2,167],"136":[2,167],"137":[2,167],"138":[2,167],"139":[2,167],"140":[2,167]},{"31":310,"32":[1,74],"65":153,"66":154,"77":[1,71],"92":[1,70],"110":309},{"1":[2,120],"4":[2,120],"29":[2,120],"30":[2,120],"41":[2,120],"49":[2,120],"57":[2,120],"61":[2,120],"68":[2,120],"69":[2,120],"70":[2,120],"71":[2,120],"73":[2,120],"74":[2,120],"75":[2,120],"76":[2,120],"79":[2,120],"87":[2,120],"88":[2,120],"89":[2,120],"93":[2,120],"102":[2,120],"104":[2,120],"105":[2,120],"106":[2,120],"112":[2,120],"113":[2,120],"115":[2,120],"117":[2,120],"118":[2,120],"129":[2,120],"130":[2,120],"132":[2,120],"133":[2,120],"136":[2,120],"137":[2,120],"138":[2,120],"139":[2,120],"140":[2,120]},{"8":159,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"62":160,"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"94":311,"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":159,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,158],"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"62":160,"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"90":312,"91":[1,58],"92":[1,70],"94":157,"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"4":[2,122],"29":[2,122],"30":[2,122],"57":[2,122],"89":[2,122],"93":[2,122]},{"4":[1,273],"29":[1,274],"30":[1,313]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"41":[2,86],"49":[2,86],"57":[2,86],"61":[2,86],"68":[2,86],"69":[2,86],"70":[2,86],"71":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"79":[2,86],"87":[2,86],"88":[2,86],"89":[2,86],"93":[2,86],"102":[2,86],"104":[2,86],"105":[2,86],"106":[2,86],"112":[2,86],"113":[2,86],"115":[2,86],"117":[2,86],"118":[2,86],"129":[2,86],"130":[2,86],"132":[2,86],"133":[2,86],"136":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[2,86]},{"28":165,"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":314,"43":163,"45":164,"46":168,"48":[1,48],"60":[1,169],"101":[1,57]},{"4":[2,87],"28":165,"29":[2,87],"30":[2,87],"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":162,"43":163,"45":164,"46":168,"48":[1,48],"57":[2,87],"60":[1,169],"78":315,"101":[1,57]},{"4":[2,89],"29":[2,89],"30":[2,89],"57":[2,89],"79":[2,89]},{"4":[2,42],"29":[2,42],"30":[2,42],"49":[1,91],"57":[2,42],"79":[2,42],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"8":316,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"49":[2,40],"57":[2,40],"61":[2,40],"74":[2,40],"79":[2,40],"89":[2,40],"93":[2,40],"102":[2,40],"104":[2,40],"105":[2,40],"106":[2,40],"113":[2,40],"117":[2,40],"118":[2,40],"129":[2,40],"130":[2,40],"132":[2,40],"133":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"49":[2,115],"57":[2,115],"61":[2,115],"68":[2,115],"69":[2,115],"70":[2,115],"71":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"76":[2,115],"79":[2,115],"87":[2,115],"88":[2,115],"89":[2,115],"93":[2,115],"102":[2,115],"104":[2,115],"105":[2,115],"106":[2,115],"113":[2,115],"117":[2,115],"118":[2,115],"129":[2,115],"130":[2,115],"132":[2,115],"133":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[2,115]},{"1":[2,53],"4":[2,53],"29":[2,53],"30":[2,53],"49":[2,53],"57":[2,53],"61":[2,53],"74":[2,53],"79":[2,53],"89":[2,53],"93":[2,53],"102":[2,53],"104":[2,53],"105":[2,53],"106":[2,53],"113":[2,53],"117":[2,53],"118":[2,53],"129":[2,53],"130":[2,53],"132":[2,53],"133":[2,53],"136":[2,53],"137":[2,53],"138":[2,53],"139":[2,53],"140":[2,53]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"49":[2,202],"57":[2,202],"61":[2,202],"74":[2,202],"79":[2,202],"89":[2,202],"93":[2,202],"102":[2,202],"104":[2,202],"105":[2,202],"106":[2,202],"113":[2,202],"117":[2,202],"118":[2,202],"129":[2,202],"130":[2,202],"132":[2,202],"133":[2,202],"136":[2,202],"137":[2,202],"138":[2,202],"139":[2,202],"140":[2,202]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"49":[2,180],"57":[2,180],"61":[2,180],"74":[2,180],"79":[2,180],"89":[2,180],"93":[2,180],"102":[2,180],"104":[2,180],"105":[2,180],"106":[2,180],"113":[2,180],"117":[2,180],"118":[2,180],"123":[2,180],"129":[2,180],"130":[2,180],"132":[2,180],"133":[2,180],"136":[2,180],"137":[2,180],"138":[2,180],"139":[2,180],"140":[2,180]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"49":[2,133],"57":[2,133],"61":[2,133],"74":[2,133],"79":[2,133],"89":[2,133],"93":[2,133],"102":[2,133],"104":[2,133],"105":[2,133],"106":[2,133],"113":[2,133],"117":[2,133],"118":[2,133],"129":[2,133],"130":[2,133],"132":[2,133],"133":[2,133],"136":[2,133],"137":[2,133],"138":[2,133],"139":[2,133],"140":[2,133]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"49":[2,134],"57":[2,134],"61":[2,134],"74":[2,134],"79":[2,134],"89":[2,134],"93":[2,134],"98":[2,134],"102":[2,134],"104":[2,134],"105":[2,134],"106":[2,134],"113":[2,134],"117":[2,134],"118":[2,134],"129":[2,134],"130":[2,134],"132":[2,134],"133":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134],"140":[2,134]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"49":[2,170],"57":[2,170],"61":[2,170],"74":[2,170],"79":[2,170],"89":[2,170],"93":[2,170],"102":[2,170],"104":[2,170],"105":[2,170],"106":[2,170],"113":[2,170],"117":[2,170],"118":[2,170],"129":[2,170],"130":[2,170],"132":[2,170],"133":[2,170],"136":[2,170],"137":[2,170],"138":[2,170],"139":[2,170],"140":[2,170]},{"4":[1,117],"6":317,"29":[1,6]},{"30":[1,318]},{"4":[1,319],"30":[2,176],"123":[2,176],"125":[2,176]},{"8":320,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"4":[2,103],"28":165,"30":[2,103],"31":166,"32":[1,74],"33":167,"34":[1,72],"35":[1,73],"42":217,"43":163,"45":218,"46":168,"48":[1,48],"60":[1,169],"77":[1,216],"82":321,"83":215,"101":[1,57]},{"1":[2,94],"4":[2,94],"29":[2,94],"30":[2,94],"49":[2,94],"57":[2,94],"61":[2,94],"74":[2,94],"79":[2,94],"89":[2,94],"93":[2,94],"102":[2,94],"104":[2,94],"105":[2,94],"106":[2,94],"113":[2,94],"117":[2,94],"118":[2,94],"129":[2,94],"130":[2,94],"132":[2,94],"133":[2,94],"136":[2,94],"137":[2,94],"138":[2,94],"139":[2,94],"140":[2,94]},{"4":[2,105],"30":[2,105],"79":[2,105]},{"4":[2,106],"30":[2,106],"79":[2,106]},{"4":[2,101],"30":[2,101],"49":[1,91],"79":[2,101],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"8":322,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"4":[1,259],"30":[1,323]},{"1":[2,164],"4":[2,164],"29":[2,164],"30":[2,164],"49":[2,164],"57":[2,164],"61":[2,164],"74":[2,164],"79":[2,164],"89":[2,164],"93":[2,164],"102":[2,164],"104":[2,164],"105":[2,164],"106":[2,164],"113":[2,164],"117":[2,164],"118":[2,164],"129":[2,164],"130":[2,164],"132":[2,164],"133":[2,164],"136":[2,164],"137":[2,164],"138":[2,164],"139":[2,164],"140":[2,164]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"49":[2,166],"57":[2,166],"61":[2,166],"74":[2,166],"79":[2,166],"89":[2,166],"93":[2,166],"102":[2,166],"104":[2,166],"105":[2,166],"106":[2,166],"113":[2,166],"117":[2,166],"118":[2,166],"129":[2,166],"130":[2,166],"132":[2,166],"133":[2,166],"136":[2,166],"137":[2,166],"138":[2,166],"139":[2,166],"140":[2,166]},{"8":324,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":325,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"49":[2,169],"57":[2,169],"61":[2,169],"74":[2,169],"79":[2,169],"89":[2,169],"93":[2,169],"102":[2,169],"104":[2,169],"105":[2,169],"106":[2,169],"113":[2,169],"117":[2,169],"118":[2,169],"129":[2,169],"130":[2,169],"132":[2,169],"133":[2,169],"136":[2,169],"137":[2,169],"138":[2,169],"139":[2,169],"140":[2,169]},{"8":326,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":327,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"114":328,"115":[1,230]},{"115":[2,150]},{"4":[2,123],"29":[2,123],"30":[2,123],"57":[2,123],"89":[2,123],"93":[2,123]},{"4":[2,57],"29":[2,57],"30":[2,57],"56":329,"57":[1,233]},{"4":[2,124],"29":[2,124],"30":[2,124],"57":[2,124],"89":[2,124],"93":[2,124]},{"4":[2,90],"29":[2,90],"30":[2,90],"57":[2,90],"79":[2,90]},{"4":[2,57],"29":[2,57],"30":[2,57],"56":330,"57":[1,237]},{"30":[1,331],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"30":[1,332]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"49":[2,173],"57":[2,173],"61":[2,173],"74":[2,173],"79":[2,173],"89":[2,173],"93":[2,173],"102":[2,173],"104":[2,173],"105":[2,173],"106":[2,173],"113":[2,173],"117":[2,173],"118":[2,173],"129":[2,173],"130":[2,173],"132":[2,173],"133":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173]},{"30":[2,177],"123":[2,177],"125":[2,177]},{"4":[2,129],"29":[2,129],"49":[1,91],"57":[2,129],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"4":[1,259],"30":[1,333]},{"30":[1,334],"49":[1,91],"103":89,"104":[1,66],"106":[1,67],"109":90,"118":[1,69],"129":[1,87],"130":[1,88],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,99],"4":[2,99],"29":[2,99],"30":[2,99],"49":[2,99],"57":[2,99],"61":[2,99],"74":[2,99],"79":[2,99],"89":[2,99],"93":[2,99],"102":[2,99],"104":[2,99],"105":[2,99],"106":[2,99],"113":[2,99],"117":[2,99],"118":[2,99],"129":[2,99],"130":[2,99],"132":[2,99],"133":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"49":[1,91],"57":[2,154],"61":[2,154],"74":[2,154],"79":[2,154],"89":[2,154],"93":[2,154],"102":[2,154],"103":89,"104":[1,66],"105":[2,154],"106":[1,67],"109":90,"113":[2,154],"117":[2,154],"118":[1,69],"129":[2,154],"130":[2,154],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"49":[1,91],"57":[2,155],"61":[2,155],"74":[2,155],"79":[2,155],"89":[2,155],"93":[2,155],"102":[2,155],"103":89,"104":[1,66],"105":[1,335],"106":[1,67],"109":90,"113":[2,155],"117":[2,155],"118":[1,69],"129":[2,155],"130":[2,155],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"49":[1,91],"57":[2,159],"61":[2,159],"74":[2,159],"79":[2,159],"89":[2,159],"93":[2,159],"102":[2,159],"103":89,"104":[1,66],"105":[1,336],"106":[1,67],"109":90,"113":[1,337],"117":[2,159],"118":[1,69],"129":[2,159],"130":[2,159],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"49":[1,91],"57":[2,158],"61":[2,158],"74":[2,158],"79":[2,158],"89":[2,158],"93":[2,158],"102":[2,158],"103":89,"104":[1,66],"105":[2,158],"106":[1,67],"109":90,"113":[2,158],"117":[2,158],"118":[1,69],"129":[2,158],"130":[2,158],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"49":[2,168],"57":[2,168],"61":[2,168],"74":[2,168],"79":[2,168],"89":[2,168],"93":[2,168],"102":[2,168],"104":[2,168],"105":[2,168],"106":[2,168],"113":[2,168],"117":[2,168],"118":[2,168],"129":[2,168],"130":[2,168],"132":[2,168],"133":[2,168],"136":[2,168],"137":[2,168],"138":[2,168],"139":[2,168],"140":[2,168]},{"4":[1,273],"29":[1,274],"30":[1,338]},{"4":[1,278],"29":[1,279],"30":[1,339]},{"4":[2,43],"29":[2,43],"30":[2,43],"57":[2,43],"79":[2,43]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"49":[2,171],"57":[2,171],"61":[2,171],"74":[2,171],"79":[2,171],"89":[2,171],"93":[2,171],"102":[2,171],"104":[2,171],"105":[2,171],"106":[2,171],"113":[2,171],"117":[2,171],"118":[2,171],"129":[2,171],"130":[2,171],"132":[2,171],"133":[2,171],"136":[2,171],"137":[2,171],"138":[2,171],"139":[2,171],"140":[2,171]},{"1":[2,95],"4":[2,95],"29":[2,95],"30":[2,95],"49":[2,95],"57":[2,95],"61":[2,95],"74":[2,95],"79":[2,95],"89":[2,95],"93":[2,95],"102":[2,95],"104":[2,95],"105":[2,95],"106":[2,95],"113":[2,95],"117":[2,95],"118":[2,95],"129":[2,95],"130":[2,95],"132":[2,95],"133":[2,95],"136":[2,95],"137":[2,95],"138":[2,95],"139":[2,95],"140":[2,95]},{"4":[2,102],"30":[2,102],"79":[2,102]},{"8":340,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":341,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"8":342,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"4":[2,125],"29":[2,125],"30":[2,125],"57":[2,125],"89":[2,125],"93":[2,125]},{"4":[2,91],"29":[2,91],"30":[2,91],"57":[2,91],"79":[2,91]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"49":[1,91],"57":[2,156],"61":[2,156],"74":[2,156],"79":[2,156],"89":[2,156],"93":[2,156],"102":[2,156],"103":89,"104":[1,66],"105":[2,156],"106":[1,67],"109":90,"113":[2,156],"117":[2,156],"118":[1,69],"129":[2,156],"130":[2,156],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"49":[1,91],"57":[2,160],"61":[2,160],"74":[2,160],"79":[2,160],"89":[2,160],"93":[2,160],"102":[2,160],"103":89,"104":[1,66],"105":[2,160],"106":[1,67],"109":90,"113":[2,160],"117":[2,160],"118":[1,69],"129":[2,160],"130":[2,160],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"49":[1,91],"57":[2,161],"61":[2,161],"74":[2,161],"79":[2,161],"89":[2,161],"93":[2,161],"102":[2,161],"103":89,"104":[1,66],"105":[1,343],"106":[1,67],"109":90,"113":[2,161],"117":[2,161],"118":[1,69],"129":[2,161],"130":[2,161],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]},{"8":344,"9":119,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":62,"32":[1,74],"33":53,"34":[1,72],"35":[1,73],"36":29,"37":[1,54],"38":[1,55],"39":[1,56],"40":28,"45":63,"46":30,"47":[1,49],"48":[1,48],"50":[1,33],"53":34,"54":[1,60],"55":[1,61],"60":[1,59],"63":40,"65":51,"66":52,"67":31,"77":[1,71],"80":[1,47],"86":[1,32],"91":[1,58],"92":[1,70],"96":[1,42],"100":[1,50],"101":[1,57],"103":43,"104":[1,66],"106":[1,67],"107":44,"108":[1,68],"109":45,"118":[1,69],"121":[1,46],"126":41,"127":[1,64],"128":[1,65],"131":[1,35],"132":[1,36],"133":[1,37],"134":[1,38],"135":[1,39]},{"1":[2,162],"4":[2,162],"29":[2,162],"30":[2,162],"49":[1,91],"57":[2,162],"61":[2,162],"74":[2,162],"79":[2,162],"89":[2,162],"93":[2,162],"102":[2,162],"103":89,"104":[1,66],"105":[2,162],"106":[1,67],"109":90,"113":[2,162],"117":[2,162],"118":[1,69],"129":[2,162],"130":[2,162],"132":[1,81],"133":[1,80],"136":[1,82],"137":[1,83],"138":[1,84],"139":[1,85],"140":[1,86]}], -defaultActions: {"77":[2,4],"98":[2,113],"310":[2,150]}, +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[3]},{"1":[2,2],"27":74,"47":[1,47]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"101":93,"102":[1,65],"104":[1,66],"107":94,"116":[1,68],"127":[1,91],"128":[1,92]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"55":[2,15],"58":[2,15],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":[1,101],"70":102,"71":[1,103],"72":[2,15],"73":[1,104],"74":[1,105],"77":[2,15],"82":95,"85":[1,97],"86":[2,110],"87":[2,15],"91":[2,15],"100":[2,15],"102":[2,15],"103":[2,15],"104":[2,15],"111":[2,15],"115":[2,15],"116":[2,15],"127":[2,15],"128":[2,15],"130":[2,15],"131":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"55":[2,16],"58":[2,16],"62":107,"66":[1,98],"67":[1,99],"68":[1,100],"69":[1,101],"70":102,"71":[1,103],"72":[2,16],"73":[1,104],"74":[1,105],"77":[2,16],"82":106,"85":[1,97],"86":[2,110],"87":[2,16],"91":[2,16],"100":[2,16],"102":[2,16],"103":[2,16],"104":[2,16],"111":[2,16],"115":[2,16],"116":[2,16],"127":[2,16],"128":[2,16],"130":[2,16],"131":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"55":[2,17],"58":[2,17],"72":[2,17],"77":[2,17],"87":[2,17],"91":[2,17],"100":[2,17],"102":[2,17],"103":[2,17],"104":[2,17],"111":[2,17],"115":[2,17],"116":[2,17],"127":[2,17],"128":[2,17],"130":[2,17],"131":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"55":[2,18],"58":[2,18],"72":[2,18],"77":[2,18],"87":[2,18],"91":[2,18],"100":[2,18],"102":[2,18],"103":[2,18],"104":[2,18],"111":[2,18],"115":[2,18],"116":[2,18],"127":[2,18],"128":[2,18],"130":[2,18],"131":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"55":[2,19],"58":[2,19],"72":[2,19],"77":[2,19],"87":[2,19],"91":[2,19],"100":[2,19],"102":[2,19],"103":[2,19],"104":[2,19],"111":[2,19],"115":[2,19],"116":[2,19],"127":[2,19],"128":[2,19],"130":[2,19],"131":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"55":[2,20],"58":[2,20],"72":[2,20],"77":[2,20],"87":[2,20],"91":[2,20],"100":[2,20],"102":[2,20],"103":[2,20],"104":[2,20],"111":[2,20],"115":[2,20],"116":[2,20],"127":[2,20],"128":[2,20],"130":[2,20],"131":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"55":[2,21],"58":[2,21],"72":[2,21],"77":[2,21],"87":[2,21],"91":[2,21],"100":[2,21],"102":[2,21],"103":[2,21],"104":[2,21],"111":[2,21],"115":[2,21],"116":[2,21],"127":[2,21],"128":[2,21],"130":[2,21],"131":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"55":[2,22],"58":[2,22],"72":[2,22],"77":[2,22],"87":[2,22],"91":[2,22],"100":[2,22],"102":[2,22],"103":[2,22],"104":[2,22],"111":[2,22],"115":[2,22],"116":[2,22],"127":[2,22],"128":[2,22],"130":[2,22],"131":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"55":[2,23],"58":[2,23],"72":[2,23],"77":[2,23],"87":[2,23],"91":[2,23],"100":[2,23],"102":[2,23],"103":[2,23],"104":[2,23],"111":[2,23],"115":[2,23],"116":[2,23],"127":[2,23],"128":[2,23],"130":[2,23],"131":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"55":[2,24],"58":[2,24],"72":[2,24],"77":[2,24],"87":[2,24],"91":[2,24],"100":[2,24],"102":[2,24],"103":[2,24],"104":[2,24],"111":[2,24],"115":[2,24],"116":[2,24],"127":[2,24],"128":[2,24],"130":[2,24],"131":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"55":[2,25],"58":[2,25],"72":[2,25],"77":[2,25],"87":[2,25],"91":[2,25],"100":[2,25],"102":[2,25],"103":[2,25],"104":[2,25],"111":[2,25],"115":[2,25],"116":[2,25],"127":[2,25],"128":[2,25],"130":[2,25],"131":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"55":[2,26],"58":[2,26],"72":[2,26],"77":[2,26],"87":[2,26],"91":[2,26],"100":[2,26],"102":[2,26],"103":[2,26],"104":[2,26],"111":[2,26],"115":[2,26],"116":[2,26],"127":[2,26],"128":[2,26],"130":[2,26],"131":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"55":[2,27],"58":[2,27],"72":[2,27],"77":[2,27],"87":[2,27],"91":[2,27],"100":[2,27],"102":[2,27],"103":[2,27],"104":[2,27],"111":[2,27],"115":[2,27],"116":[2,27],"127":[2,27],"128":[2,27],"130":[2,27],"131":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"102":[2,10],"104":[2,10],"116":[2,10],"127":[2,10],"128":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"102":[2,11],"104":[2,11],"116":[2,11],"127":[2,11],"128":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"102":[2,12],"104":[2,12],"116":[2,12],"127":[2,12],"128":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"102":[2,13],"104":[2,13],"116":[2,13],"127":[2,13],"128":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"102":[2,14],"104":[2,14],"116":[2,14],"127":[2,14],"128":[2,14]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[1,108],"55":[2,72],"58":[2,72],"66":[2,72],"67":[2,72],"68":[2,72],"69":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"74":[2,72],"77":[2,72],"85":[2,72],"86":[2,72],"87":[2,72],"91":[2,72],"100":[2,72],"102":[2,72],"103":[2,72],"104":[2,72],"111":[2,72],"115":[2,72],"116":[2,72],"127":[2,72],"128":[2,72],"130":[2,72],"131":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"55":[2,73],"58":[2,73],"66":[2,73],"67":[2,73],"68":[2,73],"69":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"77":[2,73],"85":[2,73],"86":[2,73],"87":[2,73],"91":[2,73],"100":[2,73],"102":[2,73],"103":[2,73],"104":[2,73],"111":[2,73],"115":[2,73],"116":[2,73],"127":[2,73],"128":[2,73],"130":[2,73],"131":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"55":[2,74],"58":[2,74],"66":[2,74],"67":[2,74],"68":[2,74],"69":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"74":[2,74],"77":[2,74],"85":[2,74],"86":[2,74],"87":[2,74],"91":[2,74],"100":[2,74],"102":[2,74],"103":[2,74],"104":[2,74],"111":[2,74],"115":[2,74],"116":[2,74],"127":[2,74],"128":[2,74],"130":[2,74],"131":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"55":[2,75],"58":[2,75],"66":[2,75],"67":[2,75],"68":[2,75],"69":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"74":[2,75],"77":[2,75],"85":[2,75],"86":[2,75],"87":[2,75],"91":[2,75],"100":[2,75],"102":[2,75],"103":[2,75],"104":[2,75],"111":[2,75],"115":[2,75],"116":[2,75],"127":[2,75],"128":[2,75],"130":[2,75],"131":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"55":[2,108],"58":[2,108],"66":[2,108],"67":[2,108],"68":[2,108],"69":[2,108],"71":[2,108],"72":[2,108],"73":[2,108],"74":[2,108],"77":[2,108],"83":109,"85":[2,108],"86":[1,110],"87":[2,108],"91":[2,108],"100":[2,108],"102":[2,108],"103":[2,108],"104":[2,108],"111":[2,108],"115":[2,108],"116":[2,108],"127":[2,108],"128":[2,108],"130":[2,108],"131":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108]},{"49":111,"50":[2,57],"55":[2,57],"56":112,"57":[1,113],"59":[1,114]},{"4":[1,116],"6":115,"28":[1,6]},{"8":117,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":119,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":120,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"15":122,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":[1,58],"61":121,"63":50,"64":51,"65":30,"75":[1,70],"84":[1,31],"89":[1,57],"90":[1,69],"99":[1,56]},{"15":122,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":[1,58],"61":125,"63":50,"64":51,"65":30,"75":[1,70],"84":[1,31],"89":[1,57],"90":[1,69],"99":[1,56]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"55":[2,69],"58":[2,69],"66":[2,69],"67":[2,69],"68":[2,69],"69":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"74":[2,69],"77":[2,69],"79":[1,129],"85":[2,69],"86":[2,69],"87":[2,69],"91":[2,69],"100":[2,69],"102":[2,69],"103":[2,69],"104":[2,69],"111":[2,69],"115":[2,69],"116":[2,69],"127":[2,69],"128":[2,69],"130":[2,69],"131":[2,69],"132":[1,126],"133":[1,127],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[1,128]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"55":[2,180],"58":[2,180],"72":[2,180],"77":[2,180],"87":[2,180],"91":[2,180],"100":[2,180],"102":[2,180],"103":[2,180],"104":[2,180],"111":[2,180],"115":[2,180],"116":[2,180],"121":[1,130],"127":[2,180],"128":[2,180],"130":[2,180],"131":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180],"138":[2,180],"139":[2,180]},{"4":[1,116],"6":131,"28":[1,6]},{"4":[1,116],"6":132,"28":[1,6]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"55":[2,142],"58":[2,142],"72":[2,142],"77":[2,142],"87":[2,142],"91":[2,142],"100":[2,142],"102":[2,142],"103":[2,142],"104":[2,142],"111":[2,142],"115":[2,142],"116":[2,142],"127":[2,142],"128":[2,142],"130":[2,142],"131":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142],"138":[2,142],"139":[2,142]},{"4":[1,116],"6":133,"28":[1,6]},{"8":134,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,135],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,95],"4":[2,95],"15":122,"16":123,"28":[1,137],"29":[2,95],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"55":[2,95],"58":[2,95],"59":[1,58],"61":136,"63":50,"64":51,"65":30,"72":[2,95],"75":[1,70],"77":[2,95],"79":[1,138],"84":[1,31],"87":[2,95],"89":[1,57],"90":[1,69],"91":[2,95],"99":[1,56],"100":[2,95],"102":[2,95],"103":[2,95],"104":[2,95],"111":[2,95],"115":[2,95],"116":[2,95],"127":[2,95],"128":[2,95],"130":[2,95],"131":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95],"138":[2,95],"139":[2,95]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"55":[2,50],"58":[2,50],"72":[2,50],"77":[2,50],"87":[2,50],"91":[2,50],"96":[2,50],"97":[2,50],"100":[2,50],"102":[2,50],"103":[2,50],"104":[2,50],"111":[2,50],"115":[2,50],"116":[2,50],"121":[2,50],"123":[2,50],"127":[2,50],"128":[2,50],"130":[2,50],"131":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50],"138":[2,50],"139":[2,50]},{"1":[2,49],"4":[2,49],"8":139,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[2,49],"104":[2,49],"105":43,"106":[1,67],"107":44,"116":[2,49],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"127":[2,49],"128":[2,49],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":140,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"40":[2,70],"55":[2,70],"58":[2,70],"66":[2,70],"67":[2,70],"68":[2,70],"69":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"77":[2,70],"85":[2,70],"86":[2,70],"87":[2,70],"91":[2,70],"100":[2,70],"102":[2,70],"103":[2,70],"104":[2,70],"111":[2,70],"115":[2,70],"116":[2,70],"127":[2,70],"128":[2,70],"130":[2,70],"131":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"55":[2,71],"58":[2,71],"66":[2,71],"67":[2,71],"68":[2,71],"69":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"74":[2,71],"77":[2,71],"85":[2,71],"86":[2,71],"87":[2,71],"91":[2,71],"100":[2,71],"102":[2,71],"103":[2,71],"104":[2,71],"111":[2,71],"115":[2,71],"116":[2,71],"127":[2,71],"128":[2,71],"130":[2,71],"131":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"55":[2,34],"58":[2,34],"66":[2,34],"67":[2,34],"68":[2,34],"69":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"74":[2,34],"77":[2,34],"85":[2,34],"86":[2,34],"87":[2,34],"91":[2,34],"100":[2,34],"102":[2,34],"103":[2,34],"104":[2,34],"111":[2,34],"115":[2,34],"116":[2,34],"127":[2,34],"128":[2,34],"130":[2,34],"131":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"55":[2,35],"58":[2,35],"66":[2,35],"67":[2,35],"68":[2,35],"69":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"74":[2,35],"77":[2,35],"85":[2,35],"86":[2,35],"87":[2,35],"91":[2,35],"100":[2,35],"102":[2,35],"103":[2,35],"104":[2,35],"111":[2,35],"115":[2,35],"116":[2,35],"127":[2,35],"128":[2,35],"130":[2,35],"131":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"55":[2,36],"58":[2,36],"66":[2,36],"67":[2,36],"68":[2,36],"69":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"74":[2,36],"77":[2,36],"85":[2,36],"86":[2,36],"87":[2,36],"91":[2,36],"100":[2,36],"102":[2,36],"103":[2,36],"104":[2,36],"111":[2,36],"115":[2,36],"116":[2,36],"127":[2,36],"128":[2,36],"130":[2,36],"131":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"55":[2,37],"58":[2,37],"66":[2,37],"67":[2,37],"68":[2,37],"69":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"74":[2,37],"77":[2,37],"85":[2,37],"86":[2,37],"87":[2,37],"91":[2,37],"100":[2,37],"102":[2,37],"103":[2,37],"104":[2,37],"111":[2,37],"115":[2,37],"116":[2,37],"127":[2,37],"128":[2,37],"130":[2,37],"131":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37]},{"8":141,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"55":[2,114],"58":[2,114],"66":[2,114],"67":[2,114],"68":[2,114],"69":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"74":[2,114],"77":[2,114],"85":[2,114],"86":[2,114],"87":[2,114],"91":[2,114],"100":[2,114],"102":[2,114],"103":[2,114],"104":[2,114],"111":[2,114],"115":[2,114],"116":[2,114],"127":[2,114],"128":[2,114],"130":[2,114],"131":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"30":142,"31":[1,73],"55":[2,115],"58":[2,115],"66":[2,115],"67":[2,115],"68":[2,115],"69":[2,115],"71":[2,115],"72":[2,115],"73":[2,115],"74":[2,115],"77":[2,115],"85":[2,115],"86":[2,115],"87":[2,115],"91":[2,115],"100":[2,115],"102":[2,115],"103":[2,115],"104":[2,115],"111":[2,115],"115":[2,115],"116":[2,115],"127":[2,115],"128":[2,115],"130":[2,115],"131":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,65],"4":[2,65],"28":[2,65],"29":[2,65],"40":[2,65],"55":[2,65],"58":[2,65],"66":[2,65],"67":[2,65],"68":[2,65],"69":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"74":[2,65],"77":[2,65],"79":[2,65],"85":[2,65],"86":[2,65],"87":[2,65],"91":[2,65],"100":[2,65],"102":[2,65],"103":[2,65],"104":[2,65],"111":[2,65],"115":[2,65],"116":[2,65],"127":[2,65],"128":[2,65],"130":[2,65],"131":[2,65],"132":[2,65],"133":[2,65],"134":[2,65],"135":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65],"140":[2,65]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"55":[2,68],"58":[2,68],"66":[2,68],"67":[2,68],"68":[2,68],"69":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"74":[2,68],"77":[2,68],"79":[2,68],"85":[2,68],"86":[2,68],"87":[2,68],"91":[2,68],"100":[2,68],"102":[2,68],"103":[2,68],"104":[2,68],"111":[2,68],"115":[2,68],"116":[2,68],"127":[2,68],"128":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[2,68]},{"8":143,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":144,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":145,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":146,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"4":[1,116],"6":147,"8":148,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"30":150,"31":[1,73],"63":152,"64":153,"75":[1,70],"90":[1,69],"108":149,"117":[1,151]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":159,"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"88":155,"89":[1,57],"90":[1,69],"91":[1,154],"92":156,"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"4":[2,85],"27":164,"28":[2,85],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":161,"42":162,"44":163,"45":167,"47":[1,47],"55":[2,85],"59":[1,168],"76":160,"77":[2,85],"99":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"55":[2,32],"58":[2,32],"66":[2,32],"67":[2,32],"68":[2,32],"69":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"74":[2,32],"77":[2,32],"85":[2,32],"86":[2,32],"87":[2,32],"91":[2,32],"100":[2,32],"102":[2,32],"103":[2,32],"104":[2,32],"111":[2,32],"115":[2,32],"116":[2,32],"127":[2,32],"128":[2,32],"130":[2,32],"131":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"55":[2,33],"58":[2,33],"66":[2,33],"67":[2,33],"68":[2,33],"69":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"74":[2,33],"77":[2,33],"85":[2,33],"86":[2,33],"87":[2,33],"91":[2,33],"100":[2,33],"102":[2,33],"103":[2,33],"104":[2,33],"111":[2,33],"115":[2,33],"116":[2,33],"127":[2,33],"128":[2,33],"130":[2,33],"131":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"55":[2,31],"58":[2,31],"66":[2,31],"67":[2,31],"68":[2,31],"69":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"74":[2,31],"77":[2,31],"79":[2,31],"85":[2,31],"86":[2,31],"87":[2,31],"91":[2,31],"100":[2,31],"102":[2,31],"103":[2,31],"104":[2,31],"110":[2,31],"111":[2,31],"113":[2,31],"115":[2,31],"116":[2,31],"118":[2,31],"127":[2,31],"128":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"55":[2,30],"58":[2,30],"72":[2,30],"77":[2,30],"87":[2,30],"91":[2,30],"96":[2,30],"97":[2,30],"100":[2,30],"102":[2,30],"103":[2,30],"104":[2,30],"111":[2,30],"115":[2,30],"116":[2,30],"121":[2,30],"123":[2,30],"127":[2,30],"128":[2,30],"130":[2,30],"131":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30]},{"1":[2,7],"4":[2,7],"7":169,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,170]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"55":[2,29],"58":[2,29],"72":[2,29],"77":[2,29],"87":[2,29],"91":[2,29],"96":[2,29],"97":[2,29],"100":[2,29],"102":[2,29],"103":[2,29],"104":[2,29],"111":[2,29],"115":[2,29],"116":[2,29],"121":[2,29],"123":[2,29],"127":[2,29],"128":[2,29],"130":[2,29],"131":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"55":[2,192],"58":[2,192],"72":[2,192],"77":[2,192],"87":[2,192],"91":[2,192],"100":[2,192],"102":[2,192],"103":[2,192],"104":[2,192],"111":[2,192],"115":[2,192],"116":[2,192],"127":[2,192],"128":[2,192],"130":[2,192],"131":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192],"138":[2,192],"139":[2,192]},{"8":171,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":172,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":173,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":174,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":175,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":176,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":177,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":178,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":179,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"55":[2,141],"58":[2,141],"72":[2,141],"77":[2,141],"87":[2,141],"91":[2,141],"100":[2,141],"102":[2,141],"103":[2,141],"104":[2,141],"111":[2,141],"115":[2,141],"116":[2,141],"127":[2,141],"128":[2,141],"130":[2,141],"131":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"55":[2,146],"58":[2,146],"72":[2,146],"77":[2,146],"87":[2,146],"91":[2,146],"100":[2,146],"102":[2,146],"103":[2,146],"104":[2,146],"111":[2,146],"115":[2,146],"116":[2,146],"127":[2,146],"128":[2,146],"130":[2,146],"131":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146],"139":[2,146]},{"8":180,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":181,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"55":[2,140],"58":[2,140],"72":[2,140],"77":[2,140],"87":[2,140],"91":[2,140],"100":[2,140],"102":[2,140],"103":[2,140],"104":[2,140],"111":[2,140],"115":[2,140],"116":[2,140],"127":[2,140],"128":[2,140],"130":[2,140],"131":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"55":[2,145],"58":[2,145],"72":[2,145],"77":[2,145],"87":[2,145],"91":[2,145],"100":[2,145],"102":[2,145],"103":[2,145],"104":[2,145],"111":[2,145],"115":[2,145],"116":[2,145],"127":[2,145],"128":[2,145],"130":[2,145],"131":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145],"138":[2,145],"139":[2,145]},{"83":182,"86":[1,110]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"40":[2,66],"55":[2,66],"58":[2,66],"66":[2,66],"67":[2,66],"68":[2,66],"69":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"74":[2,66],"77":[2,66],"79":[2,66],"85":[2,66],"86":[2,66],"87":[2,66],"91":[2,66],"100":[2,66],"102":[2,66],"103":[2,66],"104":[2,66],"111":[2,66],"115":[2,66],"116":[2,66],"127":[2,66],"128":[2,66],"130":[2,66],"131":[2,66],"132":[2,66],"133":[2,66],"134":[2,66],"135":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66]},{"86":[2,111]},{"30":183,"31":[1,73]},{"30":184,"31":[1,73]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"40":[2,78],"55":[2,78],"58":[2,78],"66":[2,78],"67":[2,78],"68":[2,78],"69":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"74":[2,78],"77":[2,78],"79":[2,78],"85":[2,78],"86":[2,78],"87":[2,78],"91":[2,78],"100":[2,78],"102":[2,78],"103":[2,78],"104":[2,78],"111":[2,78],"115":[2,78],"116":[2,78],"127":[2,78],"128":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78]},{"30":185,"31":[1,73]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"40":[2,80],"55":[2,80],"58":[2,80],"66":[2,80],"67":[2,80],"68":[2,80],"69":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"74":[2,80],"77":[2,80],"79":[2,80],"85":[2,80],"86":[2,80],"87":[2,80],"91":[2,80],"100":[2,80],"102":[2,80],"103":[2,80],"104":[2,80],"111":[2,80],"115":[2,80],"116":[2,80],"127":[2,80],"128":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80]},{"8":186,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"70":187,"71":[1,103],"73":[1,104],"74":[1,105]},{"70":188,"71":[1,103],"73":[1,104],"74":[1,105]},{"83":189,"86":[1,110]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"40":[2,67],"55":[2,67],"58":[2,67],"66":[2,67],"67":[2,67],"68":[2,67],"69":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"74":[2,67],"77":[2,67],"79":[2,67],"85":[2,67],"86":[2,67],"87":[2,67],"91":[2,67],"100":[2,67],"102":[2,67],"103":[2,67],"104":[2,67],"111":[2,67],"115":[2,67],"116":[2,67],"127":[2,67],"128":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67]},{"8":190,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,191],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"55":[2,109],"58":[2,109],"66":[2,109],"67":[2,109],"68":[2,109],"69":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"74":[2,109],"77":[2,109],"85":[2,109],"86":[2,109],"87":[2,109],"91":[2,109],"100":[2,109],"102":[2,109],"103":[2,109],"104":[2,109],"111":[2,109],"115":[2,109],"116":[2,109],"127":[2,109],"128":[2,109],"130":[2,109],"131":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":159,"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"87":[1,192],"88":193,"89":[1,57],"90":[1,69],"92":156,"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"50":[1,194],"55":[1,195]},{"50":[2,58],"55":[2,58]},{"50":[2,60],"55":[2,60],"58":[1,196]},{"57":[1,197]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"55":[2,52],"58":[2,52],"72":[2,52],"77":[2,52],"87":[2,52],"91":[2,52],"100":[2,52],"102":[2,52],"103":[2,52],"104":[2,52],"111":[2,52],"115":[2,52],"116":[2,52],"127":[2,52],"128":[2,52],"130":[2,52],"131":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52],"138":[2,52],"139":[2,52]},{"27":74,"47":[1,47]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"55":[2,185],"58":[2,185],"72":[2,185],"77":[2,185],"87":[2,185],"91":[2,185],"100":[2,185],"101":89,"102":[2,185],"103":[2,185],"104":[2,185],"107":90,"111":[2,185],"115":[2,185],"116":[2,185],"127":[2,185],"128":[2,185],"130":[2,185],"131":[2,185],"134":[1,79],"135":[2,185],"136":[2,185],"137":[2,185],"138":[2,185],"139":[2,185]},{"101":93,"102":[1,65],"104":[1,66],"107":94,"116":[1,68],"127":[1,91],"128":[1,92]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"55":[2,186],"58":[2,186],"72":[2,186],"77":[2,186],"87":[2,186],"91":[2,186],"100":[2,186],"101":89,"102":[2,186],"103":[2,186],"104":[2,186],"107":90,"111":[2,186],"115":[2,186],"116":[2,186],"127":[2,186],"128":[2,186],"130":[2,186],"131":[2,186],"134":[1,79],"135":[2,186],"136":[2,186],"137":[2,186],"138":[2,186],"139":[2,186]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"55":[2,187],"58":[2,187],"72":[2,187],"77":[2,187],"87":[2,187],"91":[2,187],"100":[2,187],"101":89,"102":[2,187],"103":[2,187],"104":[2,187],"107":90,"111":[2,187],"115":[2,187],"116":[2,187],"127":[2,187],"128":[2,187],"130":[2,187],"131":[2,187],"134":[1,79],"135":[2,187],"136":[2,187],"137":[2,187],"138":[2,187],"139":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"55":[2,188],"58":[2,188],"66":[2,69],"67":[2,69],"68":[2,69],"69":[2,69],"71":[2,69],"72":[2,188],"73":[2,69],"74":[2,69],"77":[2,188],"85":[2,69],"86":[2,69],"87":[2,188],"91":[2,188],"100":[2,188],"102":[2,188],"103":[2,188],"104":[2,188],"111":[2,188],"115":[2,188],"116":[2,188],"127":[2,188],"128":[2,188],"130":[2,188],"131":[2,188],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188],"138":[2,188],"139":[2,188]},{"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":[1,101],"70":102,"71":[1,103],"73":[1,104],"74":[1,105],"82":95,"85":[1,97],"86":[2,110]},{"62":107,"66":[1,98],"67":[1,99],"68":[1,100],"69":[1,101],"70":102,"71":[1,103],"73":[1,104],"74":[1,105],"82":106,"85":[1,97],"86":[2,110]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"55":[2,72],"58":[2,72],"66":[2,72],"67":[2,72],"68":[2,72],"69":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"74":[2,72],"77":[2,72],"85":[2,72],"86":[2,72],"87":[2,72],"91":[2,72],"100":[2,72],"102":[2,72],"103":[2,72],"104":[2,72],"111":[2,72],"115":[2,72],"116":[2,72],"127":[2,72],"128":[2,72],"130":[2,72],"131":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"55":[2,189],"58":[2,189],"66":[2,69],"67":[2,69],"68":[2,69],"69":[2,69],"71":[2,69],"72":[2,189],"73":[2,69],"74":[2,69],"77":[2,189],"85":[2,69],"86":[2,69],"87":[2,189],"91":[2,189],"100":[2,189],"102":[2,189],"103":[2,189],"104":[2,189],"111":[2,189],"115":[2,189],"116":[2,189],"127":[2,189],"128":[2,189],"130":[2,189],"131":[2,189],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189],"138":[2,189],"139":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"55":[2,190],"58":[2,190],"72":[2,190],"77":[2,190],"87":[2,190],"91":[2,190],"100":[2,190],"102":[2,190],"103":[2,190],"104":[2,190],"111":[2,190],"115":[2,190],"116":[2,190],"127":[2,190],"128":[2,190],"130":[2,190],"131":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190],"138":[2,190],"139":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"55":[2,191],"58":[2,191],"72":[2,191],"77":[2,191],"87":[2,191],"91":[2,191],"100":[2,191],"102":[2,191],"103":[2,191],"104":[2,191],"111":[2,191],"115":[2,191],"116":[2,191],"127":[2,191],"128":[2,191],"130":[2,191],"131":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191],"138":[2,191],"139":[2,191]},{"8":198,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,199],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"15":200,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":[1,58],"61":201,"63":50,"64":51,"65":30,"75":[1,70],"84":[1,31],"89":[1,57],"90":[1,69],"99":[1,56]},{"4":[1,116],"6":203,"28":[1,6],"125":[1,202]},{"1":[2,128],"4":[2,128],"28":[2,128],"29":[2,128],"55":[2,128],"58":[2,128],"72":[2,128],"77":[2,128],"87":[2,128],"91":[2,128],"95":204,"96":[1,205],"97":[1,206],"100":[2,128],"102":[2,128],"103":[2,128],"104":[2,128],"111":[2,128],"115":[2,128],"116":[2,128],"127":[2,128],"128":[2,128],"130":[2,128],"131":[2,128],"134":[2,128],"135":[2,128],"136":[2,128],"137":[2,128],"138":[2,128],"139":[2,128]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"55":[2,139],"58":[2,139],"72":[2,139],"77":[2,139],"87":[2,139],"91":[2,139],"100":[2,139],"102":[2,139],"103":[2,139],"104":[2,139],"111":[2,139],"115":[2,139],"116":[2,139],"127":[2,139],"128":[2,139],"130":[2,139],"131":[2,139],"134":[2,139],"135":[2,139],"136":[2,139],"137":[2,139],"138":[2,139],"139":[2,139]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"55":[2,147],"58":[2,147],"72":[2,147],"77":[2,147],"87":[2,147],"91":[2,147],"100":[2,147],"102":[2,147],"103":[2,147],"104":[2,147],"111":[2,147],"115":[2,147],"116":[2,147],"127":[2,147],"128":[2,147],"130":[2,147],"131":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147],"138":[2,147],"139":[2,147]},{"28":[1,207],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"120":208,"122":209,"123":[1,210]},{"1":[2,90],"4":[2,90],"28":[1,212],"29":[2,90],"55":[2,90],"58":[2,90],"66":[2,69],"67":[2,69],"68":[2,69],"69":[2,69],"71":[2,69],"72":[2,90],"73":[2,69],"74":[2,69],"77":[2,90],"79":[1,211],"85":[2,69],"86":[2,69],"87":[2,90],"91":[2,90],"100":[2,90],"102":[2,90],"103":[2,90],"104":[2,90],"111":[2,90],"115":[2,90],"116":[2,90],"127":[2,90],"128":[2,90],"130":[2,90],"131":[2,90],"134":[2,90],"135":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90]},{"4":[2,101],"27":164,"29":[2,101],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":216,"42":162,"44":217,"45":167,"47":[1,47],"59":[1,168],"75":[1,215],"80":213,"81":214,"99":[1,56]},{"15":218,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":[1,58],"61":201,"63":50,"64":51,"65":30,"75":[1,70],"84":[1,31],"89":[1,57],"90":[1,69],"99":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"101":89,"102":[2,48],"104":[2,48],"107":90,"116":[2,48],"127":[2,48],"128":[2,48],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,133],"4":[2,133],"29":[2,133],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[2,133],"128":[2,133],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"100":[1,219],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"40":[2,116],"43":[2,116],"55":[2,116],"58":[2,116],"66":[2,116],"67":[2,116],"68":[2,116],"69":[2,116],"71":[2,116],"72":[2,116],"73":[2,116],"74":[2,116],"77":[2,116],"79":[2,116],"85":[2,116],"86":[2,116],"87":[2,116],"91":[2,116],"100":[2,116],"102":[2,116],"103":[2,116],"104":[2,116],"111":[2,116],"115":[2,116],"116":[2,116],"127":[2,116],"128":[2,116],"130":[2,116],"131":[2,116],"132":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116]},{"4":[1,116],"6":220,"28":[1,6],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"4":[1,116],"6":221,"28":[1,6],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"55":[2,135],"58":[2,135],"72":[2,135],"77":[2,135],"87":[2,135],"91":[2,135],"100":[2,135],"101":89,"102":[1,65],"103":[1,222],"104":[1,66],"107":90,"111":[2,135],"115":[2,135],"116":[1,68],"127":[2,135],"128":[2,135],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"55":[2,137],"58":[2,137],"72":[2,137],"77":[2,137],"87":[2,137],"91":[2,137],"100":[2,137],"101":89,"102":[1,65],"103":[1,223],"104":[1,66],"107":90,"111":[2,137],"115":[2,137],"116":[1,68],"127":[2,137],"128":[2,137],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"55":[2,143],"58":[2,143],"72":[2,143],"77":[2,143],"87":[2,143],"91":[2,143],"100":[2,143],"102":[2,143],"103":[2,143],"104":[2,143],"111":[2,143],"115":[2,143],"116":[2,143],"127":[2,143],"128":[2,143],"130":[2,143],"131":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143],"138":[2,143],"139":[2,143]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"55":[2,144],"58":[2,144],"72":[2,144],"77":[2,144],"87":[2,144],"91":[2,144],"100":[2,144],"101":89,"102":[1,65],"103":[2,144],"104":[1,66],"107":90,"111":[2,144],"115":[2,144],"116":[1,68],"127":[2,144],"128":[2,144],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"55":[1,225],"109":224,"110":[1,226]},{"55":[2,148],"110":[2,148],"112":227,"113":[1,229],"118":[1,228]},{"30":230,"31":[1,73]},{"55":[2,149],"110":[2,149],"113":[2,149]},{"55":[2,150],"110":[2,150],"113":[2,150]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"40":[2,117],"55":[2,117],"58":[2,117],"66":[2,117],"67":[2,117],"68":[2,117],"69":[2,117],"71":[2,117],"72":[2,117],"73":[2,117],"74":[2,117],"77":[2,117],"85":[2,117],"86":[2,117],"87":[2,117],"91":[2,117],"100":[2,117],"102":[2,117],"103":[2,117],"104":[2,117],"110":[2,117],"111":[2,117],"113":[2,117],"115":[2,117],"116":[2,117],"127":[2,117],"128":[2,117],"130":[2,117],"131":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117]},{"4":[2,55],"28":[2,55],"54":231,"55":[1,232],"91":[2,55]},{"4":[2,119],"28":[2,119],"29":[2,119],"55":[2,119],"87":[2,119],"91":[2,119]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":159,"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"88":233,"89":[1,57],"90":[1,69],"92":156,"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"58":[1,234],"87":[2,124],"91":[2,124],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"87":[2,125],"91":[2,125]},{"4":[2,55],"28":[2,55],"54":235,"55":[1,236],"77":[2,55]},{"4":[2,86],"28":[2,86],"29":[2,86],"55":[2,86],"77":[2,86]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,237],"55":[2,40],"77":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"77":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"77":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"77":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"77":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"77":[2,47]},{"30":142,"31":[1,73]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"55":[2,28],"58":[2,28],"72":[2,28],"77":[2,28],"87":[2,28],"91":[2,28],"96":[2,28],"97":[2,28],"100":[2,28],"102":[2,28],"103":[2,28],"104":[2,28],"111":[2,28],"115":[2,28],"116":[2,28],"121":[2,28],"123":[2,28],"127":[2,28],"128":[2,28],"130":[2,28],"131":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"55":[2,193],"58":[2,193],"72":[2,193],"77":[2,193],"87":[2,193],"91":[2,193],"100":[2,193],"101":89,"102":[2,193],"103":[2,193],"104":[2,193],"107":90,"111":[2,193],"115":[2,193],"116":[2,193],"127":[2,193],"128":[2,193],"130":[2,193],"131":[2,193],"134":[1,79],"135":[1,82],"136":[2,193],"137":[2,193],"138":[2,193],"139":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"55":[2,194],"58":[2,194],"72":[2,194],"77":[2,194],"87":[2,194],"91":[2,194],"100":[2,194],"101":89,"102":[2,194],"103":[2,194],"104":[2,194],"107":90,"111":[2,194],"115":[2,194],"116":[2,194],"127":[2,194],"128":[2,194],"130":[2,194],"131":[2,194],"134":[1,79],"135":[1,82],"136":[2,194],"137":[2,194],"138":[2,194],"139":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"55":[2,195],"58":[2,195],"72":[2,195],"77":[2,195],"87":[2,195],"91":[2,195],"100":[2,195],"101":89,"102":[2,195],"103":[2,195],"104":[2,195],"107":90,"111":[2,195],"115":[2,195],"116":[2,195],"127":[2,195],"128":[2,195],"130":[2,195],"131":[2,195],"134":[1,79],"135":[2,195],"136":[2,195],"137":[2,195],"138":[2,195],"139":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"55":[2,196],"58":[2,196],"72":[2,196],"77":[2,196],"87":[2,196],"91":[2,196],"100":[2,196],"101":89,"102":[2,196],"103":[2,196],"104":[2,196],"107":90,"111":[2,196],"115":[2,196],"116":[2,196],"127":[2,196],"128":[2,196],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[2,196],"137":[2,196],"138":[2,196],"139":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"55":[2,197],"58":[2,197],"72":[2,197],"77":[2,197],"87":[2,197],"91":[2,197],"100":[2,197],"101":89,"102":[2,197],"103":[2,197],"104":[2,197],"107":90,"111":[2,197],"115":[2,197],"116":[2,197],"127":[2,197],"128":[2,197],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[2,197],"138":[2,197],"139":[1,86]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"55":[2,198],"58":[2,198],"72":[2,198],"77":[2,198],"87":[2,198],"91":[2,198],"100":[2,198],"101":89,"102":[2,198],"103":[2,198],"104":[2,198],"107":90,"111":[2,198],"115":[2,198],"116":[2,198],"127":[2,198],"128":[2,198],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[2,198],"139":[1,86]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"55":[2,199],"58":[2,199],"72":[2,199],"77":[2,199],"87":[2,199],"91":[2,199],"100":[2,199],"101":89,"102":[2,199],"103":[2,199],"104":[2,199],"107":90,"111":[2,199],"115":[2,199],"116":[2,199],"127":[2,199],"128":[2,199],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[2,199],"138":[2,199],"139":[2,199]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"55":[2,182],"58":[2,182],"72":[2,182],"77":[2,182],"87":[2,182],"91":[2,182],"100":[2,182],"101":89,"102":[1,65],"103":[2,182],"104":[1,66],"107":90,"111":[2,182],"115":[2,182],"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"55":[2,184],"58":[2,184],"72":[2,184],"77":[2,184],"87":[2,184],"91":[2,184],"100":[2,184],"101":89,"102":[1,65],"103":[2,184],"104":[1,66],"107":90,"111":[2,184],"115":[2,184],"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"55":[2,181],"58":[2,181],"72":[2,181],"77":[2,181],"87":[2,181],"91":[2,181],"100":[2,181],"101":89,"102":[1,65],"103":[2,181],"104":[1,66],"107":90,"111":[2,181],"115":[2,181],"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"55":[2,183],"58":[2,183],"72":[2,183],"77":[2,183],"87":[2,183],"91":[2,183],"100":[2,183],"101":89,"102":[1,65],"103":[2,183],"104":[1,66],"107":90,"111":[2,183],"115":[2,183],"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"55":[2,106],"58":[2,106],"66":[2,106],"67":[2,106],"68":[2,106],"69":[2,106],"71":[2,106],"72":[2,106],"73":[2,106],"74":[2,106],"77":[2,106],"85":[2,106],"86":[2,106],"87":[2,106],"91":[2,106],"100":[2,106],"102":[2,106],"103":[2,106],"104":[2,106],"111":[2,106],"115":[2,106],"116":[2,106],"127":[2,106],"128":[2,106],"130":[2,106],"131":[2,106],"134":[2,106],"135":[2,106],"136":[2,106],"137":[2,106],"138":[2,106],"139":[2,106]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"40":[2,76],"55":[2,76],"58":[2,76],"66":[2,76],"67":[2,76],"68":[2,76],"69":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"74":[2,76],"77":[2,76],"79":[2,76],"85":[2,76],"86":[2,76],"87":[2,76],"91":[2,76],"100":[2,76],"102":[2,76],"103":[2,76],"104":[2,76],"111":[2,76],"115":[2,76],"116":[2,76],"127":[2,76],"128":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"40":[2,77],"55":[2,77],"58":[2,77],"66":[2,77],"67":[2,77],"68":[2,77],"69":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"74":[2,77],"77":[2,77],"79":[2,77],"85":[2,77],"86":[2,77],"87":[2,77],"91":[2,77],"100":[2,77],"102":[2,77],"103":[2,77],"104":[2,77],"111":[2,77],"115":[2,77],"116":[2,77],"127":[2,77],"128":[2,77],"130":[2,77],"131":[2,77],"132":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"40":[2,79],"55":[2,79],"58":[2,79],"66":[2,79],"67":[2,79],"68":[2,79],"69":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"74":[2,79],"77":[2,79],"79":[2,79],"85":[2,79],"86":[2,79],"87":[2,79],"91":[2,79],"100":[2,79],"102":[2,79],"103":[2,79],"104":[2,79],"111":[2,79],"115":[2,79],"116":[2,79],"127":[2,79],"128":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79]},{"72":[1,238],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"40":[2,82],"55":[2,82],"58":[2,82],"66":[2,82],"67":[2,82],"68":[2,82],"69":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"74":[2,82],"77":[2,82],"79":[2,82],"85":[2,82],"86":[2,82],"87":[2,82],"91":[2,82],"100":[2,82],"102":[2,82],"103":[2,82],"104":[2,82],"111":[2,82],"115":[2,82],"116":[2,82],"127":[2,82],"128":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"55":[2,83],"58":[2,83],"66":[2,83],"67":[2,83],"68":[2,83],"69":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"74":[2,83],"77":[2,83],"79":[2,83],"85":[2,83],"86":[2,83],"87":[2,83],"91":[2,83],"100":[2,83],"102":[2,83],"103":[2,83],"104":[2,83],"111":[2,83],"115":[2,83],"116":[2,83],"127":[2,83],"128":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"55":[2,107],"58":[2,107],"66":[2,107],"67":[2,107],"68":[2,107],"69":[2,107],"71":[2,107],"72":[2,107],"73":[2,107],"74":[2,107],"77":[2,107],"85":[2,107],"86":[2,107],"87":[2,107],"91":[2,107],"100":[2,107],"102":[2,107],"103":[2,107],"104":[2,107],"111":[2,107],"115":[2,107],"116":[2,107],"127":[2,107],"128":[2,107],"130":[2,107],"131":[2,107],"134":[2,107],"135":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"55":[2,38],"58":[2,38],"72":[2,38],"77":[2,38],"87":[2,38],"91":[2,38],"100":[2,38],"101":89,"102":[2,38],"103":[2,38],"104":[2,38],"107":90,"111":[2,38],"115":[2,38],"116":[2,38],"127":[2,38],"128":[2,38],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"8":239,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"55":[2,112],"58":[2,112],"66":[2,112],"67":[2,112],"68":[2,112],"69":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"74":[2,112],"77":[2,112],"85":[2,112],"86":[2,112],"87":[2,112],"91":[2,112],"100":[2,112],"102":[2,112],"103":[2,112],"104":[2,112],"111":[2,112],"115":[2,112],"116":[2,112],"127":[2,112],"128":[2,112],"130":[2,112],"131":[2,112],"134":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112]},{"4":[2,55],"28":[2,55],"54":240,"55":[1,232],"87":[2,55]},{"51":241,"52":[1,59],"53":[1,60]},{"56":242,"57":[1,113],"59":[1,114]},{"50":[2,61],"55":[2,61]},{"50":[2,62],"55":[2,62],"58":[1,243]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"55":[2,200],"58":[2,200],"72":[2,200],"77":[2,200],"87":[2,200],"91":[2,200],"100":[2,200],"101":89,"102":[2,200],"103":[2,200],"104":[2,200],"107":90,"111":[2,200],"115":[2,200],"116":[2,200],"127":[2,200],"128":[2,200],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"8":244,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,105],"4":[2,105],"28":[2,105],"29":[2,105],"55":[2,105],"58":[2,105],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":[1,101],"70":102,"71":[1,103],"72":[2,105],"73":[1,104],"74":[1,105],"77":[2,105],"82":95,"85":[1,97],"86":[2,110],"87":[2,105],"91":[2,105],"100":[2,105],"102":[2,105],"103":[2,105],"104":[2,105],"111":[2,105],"115":[2,105],"116":[2,105],"127":[2,105],"128":[2,105],"130":[2,105],"131":[2,105],"134":[2,105],"135":[2,105],"136":[2,105],"137":[2,105],"138":[2,105],"139":[2,105]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"55":[2,69],"58":[2,69],"66":[2,69],"67":[2,69],"68":[2,69],"69":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"74":[2,69],"77":[2,69],"85":[2,69],"86":[2,69],"87":[2,69],"91":[2,69],"100":[2,69],"102":[2,69],"103":[2,69],"104":[2,69],"111":[2,69],"115":[2,69],"116":[2,69],"127":[2,69],"128":[2,69],"130":[2,69],"131":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69]},{"8":245,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"55":[2,179],"58":[2,179],"72":[2,179],"77":[2,179],"87":[2,179],"91":[2,179],"100":[2,179],"102":[2,179],"103":[2,179],"104":[2,179],"111":[2,179],"115":[2,179],"116":[2,179],"121":[2,179],"127":[2,179],"128":[2,179],"130":[2,179],"131":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179],"139":[2,179]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"55":[2,129],"58":[2,129],"72":[2,129],"77":[2,129],"87":[2,129],"91":[2,129],"96":[1,246],"100":[2,129],"102":[2,129],"103":[2,129],"104":[2,129],"111":[2,129],"115":[2,129],"116":[2,129],"127":[2,129],"128":[2,129],"130":[2,129],"131":[2,129],"134":[2,129],"135":[2,129],"136":[2,129],"137":[2,129],"138":[2,129],"139":[2,129]},{"4":[1,116],"6":247,"28":[1,6]},{"30":248,"31":[1,73]},{"120":249,"122":209,"123":[1,210]},{"29":[1,250],"121":[1,251],"122":252,"123":[1,210]},{"29":[2,172],"121":[2,172],"123":[2,172]},{"8":254,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"93":253,"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"15":255,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":[1,58],"61":201,"63":50,"64":51,"65":30,"75":[1,70],"84":[1,31],"89":[1,57],"90":[1,69],"99":[1,56]},{"4":[2,101],"27":164,"29":[2,101],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":216,"42":162,"44":217,"45":167,"47":[1,47],"59":[1,168],"75":[1,215],"80":256,"81":214,"99":[1,56]},{"4":[1,258],"29":[1,257]},{"4":[2,102],"29":[2,102],"77":[2,102]},{"4":[2,101],"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":216,"42":162,"44":217,"45":167,"47":[1,47],"59":[1,168],"75":[1,215],"77":[2,101],"80":259,"81":214,"99":[1,56]},{"4":[2,98],"29":[2,98],"77":[2,98]},{"4":[2,43],"29":[2,43],"43":[1,260],"77":[2,43]},{"1":[2,96],"4":[2,96],"28":[1,261],"29":[2,96],"55":[2,96],"58":[2,96],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":[1,101],"70":102,"71":[1,103],"72":[2,96],"73":[1,104],"74":[1,105],"77":[2,96],"82":95,"85":[1,97],"86":[2,110],"87":[2,96],"91":[2,96],"100":[2,96],"102":[2,96],"103":[2,96],"104":[2,96],"111":[2,96],"115":[2,96],"116":[2,96],"127":[2,96],"128":[2,96],"130":[2,96],"131":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96],"138":[2,96],"139":[2,96]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"43":[2,134],"55":[2,134],"58":[2,134],"66":[2,134],"67":[2,134],"68":[2,134],"69":[2,134],"71":[2,134],"72":[2,134],"73":[2,134],"74":[2,134],"77":[2,134],"85":[2,134],"86":[2,134],"87":[2,134],"91":[2,134],"100":[2,134],"102":[2,134],"103":[2,134],"104":[2,134],"111":[2,134],"115":[2,134],"116":[2,134],"127":[2,134],"128":[2,134],"130":[2,134],"131":[2,134],"134":[2,134],"135":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"55":[2,176],"58":[2,176],"72":[2,176],"77":[2,176],"87":[2,176],"91":[2,176],"100":[2,176],"102":[2,176],"103":[2,176],"104":[2,176],"111":[2,176],"115":[2,176],"116":[2,176],"121":[2,176],"127":[2,176],"128":[2,176],"130":[2,176],"131":[2,176],"134":[2,176],"135":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"55":[2,177],"58":[2,177],"72":[2,177],"77":[2,177],"87":[2,177],"91":[2,177],"100":[2,177],"102":[2,177],"103":[2,177],"104":[2,177],"111":[2,177],"115":[2,177],"116":[2,177],"121":[2,177],"127":[2,177],"128":[2,177],"130":[2,177],"131":[2,177],"134":[2,177],"135":[2,177],"136":[2,177],"137":[2,177],"138":[2,177],"139":[2,177]},{"8":262,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":263,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"55":[2,161],"58":[2,161],"72":[2,161],"77":[2,161],"87":[2,161],"91":[2,161],"100":[2,161],"102":[2,161],"103":[2,161],"104":[2,161],"111":[2,161],"115":[2,161],"116":[2,161],"127":[2,161],"128":[2,161],"130":[2,161],"131":[2,161],"134":[2,161],"135":[2,161],"136":[2,161],"137":[2,161],"138":[2,161],"139":[2,161]},{"30":264,"31":[1,73],"63":152,"64":153,"75":[1,70],"90":[1,69],"108":265},{"8":266,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"55":[2,163],"58":[2,163],"72":[2,163],"77":[2,163],"87":[2,163],"91":[2,163],"100":[2,163],"102":[2,163],"103":[2,163],"104":[2,163],"111":[2,163],"115":[2,163],"116":[2,163],"127":[2,163],"128":[2,163],"130":[2,163],"131":[2,163],"134":[2,163],"135":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163]},{"8":267,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":268,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"55":[1,270],"112":269,"113":[1,229]},{"4":[1,272],"28":[1,273],"91":[1,271]},{"4":[2,56],"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":159,"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"87":[2,56],"89":[1,57],"90":[1,69],"91":[2,56],"92":274,"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":275,"55":[1,232]},{"4":[2,64],"28":[2,64],"29":[2,64],"55":[2,64],"87":[2,64],"91":[2,64]},{"4":[1,277],"28":[1,278],"77":[1,276]},{"4":[2,56],"27":164,"28":[2,56],"29":[2,56],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":279,"42":162,"44":163,"45":167,"47":[1,47],"59":[1,168],"77":[2,56],"99":[1,56]},{"8":280,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,281],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"40":[2,81],"55":[2,81],"58":[2,81],"66":[2,81],"67":[2,81],"68":[2,81],"69":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"74":[2,81],"77":[2,81],"79":[2,81],"85":[2,81],"86":[2,81],"87":[2,81],"91":[2,81],"100":[2,81],"102":[2,81],"103":[2,81],"104":[2,81],"111":[2,81],"115":[2,81],"116":[2,81],"127":[2,81],"128":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81]},{"29":[1,282],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"4":[1,272],"28":[1,273],"87":[1,283]},{"4":[1,116],"6":284,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,63],"55":[2,63]},{"29":[1,285],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"4":[1,116],"6":286,"28":[1,6],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"4":[1,116],"6":287,"28":[1,6]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"55":[2,130],"58":[2,130],"72":[2,130],"77":[2,130],"87":[2,130],"91":[2,130],"100":[2,130],"102":[2,130],"103":[2,130],"104":[2,130],"111":[2,130],"115":[2,130],"116":[2,130],"127":[2,130],"128":[2,130],"130":[2,130],"131":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130],"138":[2,130],"139":[2,130]},{"4":[1,116],"6":288,"28":[1,6]},{"29":[1,289],"121":[1,290],"122":252,"123":[1,210]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"55":[2,170],"58":[2,170],"72":[2,170],"77":[2,170],"87":[2,170],"91":[2,170],"100":[2,170],"102":[2,170],"103":[2,170],"104":[2,170],"111":[2,170],"115":[2,170],"116":[2,170],"127":[2,170],"128":[2,170],"130":[2,170],"131":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170],"139":[2,170]},{"4":[1,116],"6":291,"28":[1,6]},{"29":[2,173],"121":[2,173],"123":[2,173]},{"4":[1,116],"6":292,"28":[1,6],"55":[1,293]},{"4":[2,126],"28":[2,126],"55":[2,126],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,91],"4":[2,91],"28":[1,294],"29":[2,91],"55":[2,91],"58":[2,91],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":[1,101],"70":102,"71":[1,103],"72":[2,91],"73":[1,104],"74":[1,105],"77":[2,91],"82":95,"85":[1,97],"86":[2,110],"87":[2,91],"91":[2,91],"100":[2,91],"102":[2,91],"103":[2,91],"104":[2,91],"111":[2,91],"115":[2,91],"116":[2,91],"127":[2,91],"128":[2,91],"130":[2,91],"131":[2,91],"134":[2,91],"135":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91]},{"4":[1,258],"29":[1,295]},{"1":[2,94],"4":[2,94],"28":[2,94],"29":[2,94],"55":[2,94],"58":[2,94],"72":[2,94],"77":[2,94],"87":[2,94],"91":[2,94],"100":[2,94],"102":[2,94],"103":[2,94],"104":[2,94],"111":[2,94],"115":[2,94],"116":[2,94],"127":[2,94],"128":[2,94],"130":[2,94],"131":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94],"138":[2,94],"139":[2,94]},{"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":216,"42":162,"44":217,"45":167,"47":[1,47],"59":[1,168],"81":296,"99":[1,56]},{"4":[1,258],"77":[1,297]},{"8":298,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,299],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"4":[2,101],"27":164,"29":[2,101],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":216,"42":162,"44":217,"45":167,"47":[1,47],"59":[1,168],"75":[1,215],"80":300,"81":214,"99":[1,56]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"55":[2,136],"58":[2,136],"72":[2,136],"77":[2,136],"87":[2,136],"91":[2,136],"100":[2,136],"101":89,"102":[1,65],"103":[2,136],"104":[1,66],"107":90,"111":[2,136],"115":[2,136],"116":[1,68],"127":[2,136],"128":[2,136],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"55":[2,138],"58":[2,138],"72":[2,138],"77":[2,138],"87":[2,138],"91":[2,138],"100":[2,138],"101":89,"102":[1,65],"103":[2,138],"104":[1,66],"107":90,"111":[2,138],"115":[2,138],"116":[1,68],"127":[2,138],"128":[2,138],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"109":301,"110":[1,226],"113":[2,148]},{"112":302,"113":[1,229]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"55":[2,151],"58":[2,151],"72":[2,151],"77":[2,151],"87":[2,151],"91":[2,151],"100":[2,151],"101":89,"102":[1,65],"103":[1,303],"104":[1,66],"107":90,"111":[1,304],"115":[2,151],"116":[1,68],"127":[2,151],"128":[2,151],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"101":89,"102":[1,65],"104":[1,66],"107":90,"114":305,"115":[1,306],"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"55":[2,155],"58":[2,155],"72":[2,155],"77":[2,155],"87":[2,155],"91":[2,155],"100":[2,155],"101":89,"102":[1,65],"103":[1,307],"104":[1,66],"107":90,"111":[2,155],"115":[2,155],"116":[1,68],"127":[2,155],"128":[2,155],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"55":[2,165],"58":[2,165],"72":[2,165],"77":[2,165],"87":[2,165],"91":[2,165],"100":[2,165],"102":[2,165],"103":[2,165],"104":[2,165],"111":[2,165],"115":[2,165],"116":[2,165],"127":[2,165],"128":[2,165],"130":[2,165],"131":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165],"138":[2,165],"139":[2,165]},{"30":309,"31":[1,73],"63":152,"64":153,"75":[1,70],"90":[1,69],"108":308},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"40":[2,118],"55":[2,118],"58":[2,118],"66":[2,118],"67":[2,118],"68":[2,118],"69":[2,118],"71":[2,118],"72":[2,118],"73":[2,118],"74":[2,118],"77":[2,118],"85":[2,118],"86":[2,118],"87":[2,118],"91":[2,118],"100":[2,118],"102":[2,118],"103":[2,118],"104":[2,118],"110":[2,118],"111":[2,118],"113":[2,118],"115":[2,118],"116":[2,118],"127":[2,118],"128":[2,118],"130":[2,118],"131":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118],"139":[2,118]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":159,"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"92":310,"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":159,"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"88":311,"89":[1,57],"90":[1,69],"92":156,"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"4":[2,120],"28":[2,120],"29":[2,120],"55":[2,120],"87":[2,120],"91":[2,120]},{"4":[1,272],"28":[1,273],"29":[1,312]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"55":[2,84],"58":[2,84],"66":[2,84],"67":[2,84],"68":[2,84],"69":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"74":[2,84],"77":[2,84],"85":[2,84],"86":[2,84],"87":[2,84],"91":[2,84],"100":[2,84],"102":[2,84],"103":[2,84],"104":[2,84],"110":[2,84],"111":[2,84],"113":[2,84],"115":[2,84],"116":[2,84],"127":[2,84],"128":[2,84],"130":[2,84],"131":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84]},{"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":313,"42":162,"44":163,"45":167,"47":[1,47],"59":[1,168],"99":[1,56]},{"4":[2,85],"27":164,"28":[2,85],"29":[2,85],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":161,"42":162,"44":163,"45":167,"47":[1,47],"55":[2,85],"59":[1,168],"76":314,"99":[1,56]},{"4":[2,87],"28":[2,87],"29":[2,87],"55":[2,87],"77":[2,87]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"77":[2,41],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"8":315,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"55":[2,39],"58":[2,39],"72":[2,39],"77":[2,39],"87":[2,39],"91":[2,39],"100":[2,39],"102":[2,39],"103":[2,39],"104":[2,39],"111":[2,39],"115":[2,39],"116":[2,39],"127":[2,39],"128":[2,39],"130":[2,39],"131":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"55":[2,113],"58":[2,113],"66":[2,113],"67":[2,113],"68":[2,113],"69":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"74":[2,113],"77":[2,113],"85":[2,113],"86":[2,113],"87":[2,113],"91":[2,113],"100":[2,113],"102":[2,113],"103":[2,113],"104":[2,113],"111":[2,113],"115":[2,113],"116":[2,113],"127":[2,113],"128":[2,113],"130":[2,113],"131":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"55":[2,51],"58":[2,51],"72":[2,51],"77":[2,51],"87":[2,51],"91":[2,51],"100":[2,51],"102":[2,51],"103":[2,51],"104":[2,51],"111":[2,51],"115":[2,51],"116":[2,51],"127":[2,51],"128":[2,51],"130":[2,51],"131":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"55":[2,201],"58":[2,201],"72":[2,201],"77":[2,201],"87":[2,201],"91":[2,201],"100":[2,201],"102":[2,201],"103":[2,201],"104":[2,201],"111":[2,201],"115":[2,201],"116":[2,201],"127":[2,201],"128":[2,201],"130":[2,201],"131":[2,201],"134":[2,201],"135":[2,201],"136":[2,201],"137":[2,201],"138":[2,201],"139":[2,201]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"55":[2,178],"58":[2,178],"72":[2,178],"77":[2,178],"87":[2,178],"91":[2,178],"100":[2,178],"102":[2,178],"103":[2,178],"104":[2,178],"111":[2,178],"115":[2,178],"116":[2,178],"121":[2,178],"127":[2,178],"128":[2,178],"130":[2,178],"131":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178],"139":[2,178]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"55":[2,131],"58":[2,131],"72":[2,131],"77":[2,131],"87":[2,131],"91":[2,131],"100":[2,131],"102":[2,131],"103":[2,131],"104":[2,131],"111":[2,131],"115":[2,131],"116":[2,131],"127":[2,131],"128":[2,131],"130":[2,131],"131":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131],"138":[2,131],"139":[2,131]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"55":[2,132],"58":[2,132],"72":[2,132],"77":[2,132],"87":[2,132],"91":[2,132],"96":[2,132],"100":[2,132],"102":[2,132],"103":[2,132],"104":[2,132],"111":[2,132],"115":[2,132],"116":[2,132],"127":[2,132],"128":[2,132],"130":[2,132],"131":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132],"138":[2,132],"139":[2,132]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"55":[2,168],"58":[2,168],"72":[2,168],"77":[2,168],"87":[2,168],"91":[2,168],"100":[2,168],"102":[2,168],"103":[2,168],"104":[2,168],"111":[2,168],"115":[2,168],"116":[2,168],"127":[2,168],"128":[2,168],"130":[2,168],"131":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168],"138":[2,168],"139":[2,168]},{"4":[1,116],"6":316,"28":[1,6]},{"29":[1,317]},{"4":[1,318],"29":[2,174],"121":[2,174],"123":[2,174]},{"8":319,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"4":[2,101],"27":164,"29":[2,101],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":216,"42":162,"44":217,"45":167,"47":[1,47],"59":[1,168],"75":[1,215],"80":320,"81":214,"99":[1,56]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"55":[2,92],"58":[2,92],"72":[2,92],"77":[2,92],"87":[2,92],"91":[2,92],"100":[2,92],"102":[2,92],"103":[2,92],"104":[2,92],"111":[2,92],"115":[2,92],"116":[2,92],"127":[2,92],"128":[2,92],"130":[2,92],"131":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92]},{"4":[2,103],"29":[2,103],"77":[2,103]},{"4":[2,104],"29":[2,104],"77":[2,104]},{"4":[2,99],"29":[2,99],"77":[2,99],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"8":321,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"4":[1,258],"29":[1,322]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"55":[2,162],"58":[2,162],"72":[2,162],"77":[2,162],"87":[2,162],"91":[2,162],"100":[2,162],"102":[2,162],"103":[2,162],"104":[2,162],"111":[2,162],"115":[2,162],"116":[2,162],"127":[2,162],"128":[2,162],"130":[2,162],"131":[2,162],"134":[2,162],"135":[2,162],"136":[2,162],"137":[2,162],"138":[2,162],"139":[2,162]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"55":[2,164],"58":[2,164],"72":[2,164],"77":[2,164],"87":[2,164],"91":[2,164],"100":[2,164],"102":[2,164],"103":[2,164],"104":[2,164],"111":[2,164],"115":[2,164],"116":[2,164],"127":[2,164],"128":[2,164],"130":[2,164],"131":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164],"138":[2,164],"139":[2,164]},{"8":323,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":324,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"55":[2,167],"58":[2,167],"72":[2,167],"77":[2,167],"87":[2,167],"91":[2,167],"100":[2,167],"102":[2,167],"103":[2,167],"104":[2,167],"111":[2,167],"115":[2,167],"116":[2,167],"127":[2,167],"128":[2,167],"130":[2,167],"131":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167],"138":[2,167],"139":[2,167]},{"8":325,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":326,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"112":327,"113":[1,229]},{"113":[2,148]},{"4":[2,121],"28":[2,121],"29":[2,121],"55":[2,121],"87":[2,121],"91":[2,121]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":328,"55":[1,232]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"87":[2,122],"91":[2,122]},{"4":[2,88],"28":[2,88],"29":[2,88],"55":[2,88],"77":[2,88]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":329,"55":[1,236]},{"29":[1,330],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"29":[1,331]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"55":[2,171],"58":[2,171],"72":[2,171],"77":[2,171],"87":[2,171],"91":[2,171],"100":[2,171],"102":[2,171],"103":[2,171],"104":[2,171],"111":[2,171],"115":[2,171],"116":[2,171],"127":[2,171],"128":[2,171],"130":[2,171],"131":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171],"139":[2,171]},{"29":[2,175],"121":[2,175],"123":[2,175]},{"4":[2,127],"28":[2,127],"55":[2,127],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"4":[1,258],"29":[1,332]},{"29":[1,333],"101":89,"102":[1,65],"104":[1,66],"107":90,"116":[1,68],"127":[1,87],"128":[1,88],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,97],"4":[2,97],"28":[2,97],"29":[2,97],"55":[2,97],"58":[2,97],"72":[2,97],"77":[2,97],"87":[2,97],"91":[2,97],"100":[2,97],"102":[2,97],"103":[2,97],"104":[2,97],"111":[2,97],"115":[2,97],"116":[2,97],"127":[2,97],"128":[2,97],"130":[2,97],"131":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97],"138":[2,97],"139":[2,97]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"55":[2,152],"58":[2,152],"72":[2,152],"77":[2,152],"87":[2,152],"91":[2,152],"100":[2,152],"101":89,"102":[1,65],"103":[2,152],"104":[1,66],"107":90,"111":[2,152],"115":[2,152],"116":[1,68],"127":[2,152],"128":[2,152],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"55":[2,153],"58":[2,153],"72":[2,153],"77":[2,153],"87":[2,153],"91":[2,153],"100":[2,153],"101":89,"102":[1,65],"103":[1,334],"104":[1,66],"107":90,"111":[2,153],"115":[2,153],"116":[1,68],"127":[2,153],"128":[2,153],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"55":[2,157],"58":[2,157],"72":[2,157],"77":[2,157],"87":[2,157],"91":[2,157],"100":[2,157],"101":89,"102":[1,65],"103":[1,335],"104":[1,66],"107":90,"111":[1,336],"115":[2,157],"116":[1,68],"127":[2,157],"128":[2,157],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"55":[2,156],"58":[2,156],"72":[2,156],"77":[2,156],"87":[2,156],"91":[2,156],"100":[2,156],"101":89,"102":[1,65],"103":[2,156],"104":[1,66],"107":90,"111":[2,156],"115":[2,156],"116":[1,68],"127":[2,156],"128":[2,156],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"55":[2,166],"58":[2,166],"72":[2,166],"77":[2,166],"87":[2,166],"91":[2,166],"100":[2,166],"102":[2,166],"103":[2,166],"104":[2,166],"111":[2,166],"115":[2,166],"116":[2,166],"127":[2,166],"128":[2,166],"130":[2,166],"131":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166],"138":[2,166],"139":[2,166]},{"4":[1,272],"28":[1,273],"29":[1,337]},{"4":[1,277],"28":[1,278],"29":[1,338]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"77":[2,42]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"55":[2,169],"58":[2,169],"72":[2,169],"77":[2,169],"87":[2,169],"91":[2,169],"100":[2,169],"102":[2,169],"103":[2,169],"104":[2,169],"111":[2,169],"115":[2,169],"116":[2,169],"127":[2,169],"128":[2,169],"130":[2,169],"131":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169],"138":[2,169],"139":[2,169]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"55":[2,93],"58":[2,93],"72":[2,93],"77":[2,93],"87":[2,93],"91":[2,93],"100":[2,93],"102":[2,93],"103":[2,93],"104":[2,93],"111":[2,93],"115":[2,93],"116":[2,93],"127":[2,93],"128":[2,93],"130":[2,93],"131":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93]},{"4":[2,100],"29":[2,100],"77":[2,100]},{"8":339,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":340,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"8":341,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"87":[2,123],"91":[2,123]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"77":[2,89]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"55":[2,154],"58":[2,154],"72":[2,154],"77":[2,154],"87":[2,154],"91":[2,154],"100":[2,154],"101":89,"102":[1,65],"103":[2,154],"104":[1,66],"107":90,"111":[2,154],"115":[2,154],"116":[1,68],"127":[2,154],"128":[2,154],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"55":[2,158],"58":[2,158],"72":[2,158],"77":[2,158],"87":[2,158],"91":[2,158],"100":[2,158],"101":89,"102":[1,65],"103":[2,158],"104":[1,66],"107":90,"111":[2,158],"115":[2,158],"116":[1,68],"127":[2,158],"128":[2,158],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"55":[2,159],"58":[2,159],"72":[2,159],"77":[2,159],"87":[2,159],"91":[2,159],"100":[2,159],"101":89,"102":[1,65],"103":[1,342],"104":[1,66],"107":90,"111":[2,159],"115":[2,159],"116":[1,68],"127":[2,159],"128":[2,159],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]},{"8":343,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"75":[1,70],"78":[1,46],"84":[1,31],"89":[1,57],"90":[1,69],"94":[1,41],"98":[1,49],"99":[1,56],"101":42,"102":[1,65],"104":[1,66],"105":43,"106":[1,67],"107":44,"116":[1,68],"119":[1,45],"124":40,"125":[1,63],"126":[1,64],"129":[1,34],"130":[1,35],"131":[1,36],"132":[1,37],"133":[1,38]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"55":[2,160],"58":[2,160],"72":[2,160],"77":[2,160],"87":[2,160],"91":[2,160],"100":[2,160],"101":89,"102":[1,65],"103":[2,160],"104":[1,66],"107":90,"111":[2,160],"115":[2,160],"116":[1,68],"127":[2,160],"128":[2,160],"130":[1,81],"131":[1,80],"134":[1,79],"135":[1,82],"136":[1,83],"137":[1,84],"138":[1,85],"139":[1,86]}], +defaultActions: {"76":[2,4],"97":[2,111],"309":[2,148]}, parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/grammar.coffee b/src/grammar.coffee index 5f468ac8..127b3f8c 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -56,32 +56,32 @@ grammar = # The **Root** is the top-level node in the syntax tree. Since we parse bottom-up, # all parsing must end here. Root: [ - o "", -> new Expressions - o "TERMINATOR", -> new Expressions - o "Body" - o "Block TERMINATOR" + o '', -> new Expressions + o 'TERMINATOR', -> new Expressions + o 'Body' + o 'Block TERMINATOR' ] # Any list of statements and expressions, seperated by line breaks or semicolons. Body: [ - o "Line", -> Expressions.wrap [$1] - o "Body TERMINATOR Line", -> $1.push $3 - o "Body TERMINATOR" + o 'Line', -> Expressions.wrap [$1] + o 'Body TERMINATOR Line', -> $1.push $3 + o 'Body TERMINATOR' ] # Expressions and statements, which make up a line in a body. Line: [ - o "Expression" - o "Statement" + o 'Expression' + o 'Statement' ] # Pure statements which cannot be expressions. Statement: [ - o "Return" - o "Throw" - o "BREAK", -> new Literal $1 - o "CONTINUE", -> new Literal $1 - o "DEBUGGER", -> new Literal $1 + o 'Return' + o 'Throw' + o 'BREAK', -> new Literal $1 + o 'CONTINUE', -> new Literal $1 + o 'DEBUGGER', -> new Literal $1 ] # All the different types of expressions in our language. The basic unit of @@ -89,56 +89,55 @@ grammar = # is one. Expressions serve as the building blocks of many other rules, making # them somewhat circular. Expression: [ - o "Value" - o "Invocation" - o "Code" - o "Operation" - o "Assign" - o "If" - o "Try" - o "While" - o "For" - o "Switch" - o "Extends" - o "Class" - o "Existence" - o "Comment" + o 'Value' + o 'Invocation' + o 'Code' + o 'Operation' + o 'Assign' + o 'If' + o 'Try' + o 'While' + o 'For' + o 'Switch' + o 'Extends' + o 'Class' + o 'Comment' ] # An indented block of expressions. Note that the [Rewriter](rewriter.html) # will convert some postfix forms into blocks for us, by adjusting the # token stream. Block: [ - o "INDENT Body OUTDENT", -> $2 - o "INDENT OUTDENT", -> new Expressions - o "TERMINATOR Comment", -> Expressions.wrap [$2] + o 'INDENT Body OUTDENT', -> $2 + o 'INDENT OUTDENT', -> new Expressions + o 'TERMINATOR Comment', -> Expressions.wrap [$2] ] # A literal identifier, a variable name or property. Identifier: [ - o "IDENTIFIER", -> new Literal $1 + o 'IDENTIFIER', -> new Literal $1 ] # Alphanumerics are separated from the other **Literal** matchers because # they can also serve as keys in object literals. AlphaNumeric: [ - o "NUMBER", -> new Literal $1 - o "STRING", -> new Literal $1 + o 'NUMBER', -> new Literal $1 + o 'STRING', -> new Literal $1 ] # All of our immediate values. These can (in general), be passed straight # through and printed to JavaScript. Literal: [ - o "AlphaNumeric" - o "JS", -> new Literal $1 - o "REGEX", -> new Literal $1 - o "BOOL", -> new Literal $1 + o 'AlphaNumeric' + o 'JS', -> new Literal $1 + o 'REGEX', -> new Literal $1 + o 'BOOL', -> new Literal $1 ] # Assignment of a variable, property, or index to a value. Assign: [ - o "Assignable = Expression", -> new Assign $1, $3 - o "Assignable = INDENT Expression OUTDENT", -> new Assign $1, $4 + o 'Assignable = Expression', -> new Assign $1, $3 + o 'Assignable = INDENT Expression OUTDENT', -> new Assign $1, $4 ] # Assignment when it happens within an object literal. The difference from @@ -160,33 +159,28 @@ grammar = # A return statement from a function body. Return: [ - o "RETURN Expression", -> new Return $2 - o "RETURN", -> new Return + o 'RETURN Expression', -> new Return $2 + o 'RETURN', -> new Return ] # A block comment. Comment: [ - o "HERECOMMENT", -> new Comment $1 - ] - - # [The existential operator](http://jashkenas.github.com/coffee-script/#existence). - Existence: [ - o "Expression ?", -> new Existence $1 + o 'HERECOMMENT', -> new Comment $1 ] # The **Code** node is the function literal. It's defined by an indented block # of **Expressions** preceded by a function arrow, with an optional parameter # list. Code: [ - o "PARAM_START ParamList PARAM_END FuncGlyph Block", -> new Code $2, $5, $4 - o "FuncGlyph Block", -> new Code [], $2, $1 + o 'PARAM_START ParamList PARAM_END FuncGlyph Block', -> new Code $2, $5, $4 + o 'FuncGlyph Block', -> new Code [], $2, $1 ] # CoffeeScript has two different symbols for functions. `->` is for ordinary # functions, and `=>` is for functions bound to the current value of *this*. FuncGlyph: [ - o "->", -> 'func' - o "=>", -> 'boundfunc' + o '->', -> 'func' + o '=>', -> 'boundfunc' ] # An optional, trailing comma. @@ -197,31 +191,31 @@ grammar = # The list of parameters that a function accepts can be of any length. ParamList: [ - o "", -> [] - o "Param", -> [$1] - o "ParamList , Param", -> $1.concat $3 + o '', -> [] + o 'Param', -> [$1] + o 'ParamList , Param', -> $1.concat $3 ] # A single parameter in a function definition can be ordinary, or a splat # that hoovers up the remaining arguments. Param: [ - o "PARAM", -> new Literal $1 - o "@ PARAM", -> new Param $2, true - o "PARAM ...", -> new Param $1, false, true - o "@ PARAM ...", -> new Param $2, true, true + o 'PARAM', -> new Literal $1 + o 'PARAM ...', -> new Param $1, false, true + o '@ PARAM', -> new Param $2, true + o '@ PARAM ...', -> new Param $2, true, true ] # A splat that occurs outside of a parameter list. Splat: [ - o "Expression ...", -> new Splat $1 + o 'Expression ...', -> new Splat $1 ] # Variables and properties that can be assigned to. SimpleAssignable: [ - o "Identifier", -> new Value $1 - o "Value Accessor", -> $1.push $2 - o "Invocation Accessor", -> new Value $1, [$2] - o "ThisProperty" + o 'Identifier', -> new Value $1 + o 'Value Accessor', -> $1.push $2 + o 'Invocation Accessor', -> new Value $1, [$2] + o 'ThisProperty' ] # Everything that can be assigned to. @@ -234,159 +228,161 @@ grammar = # The types of things that can be treated as values -- assigned to, invoked # as functions, indexed into, named as a class, etc. Value: [ - o "Assignable" - o "Literal", -> new Value $1 - o "Parenthetical", -> new Value $1 - o "This" + o 'Assignable' + o 'Literal', -> new Value $1 + o 'Parenthetical', -> new Value $1 + o 'This' ] # The general group of accessors into an object, by property, by prototype # or by array index or slice. Accessor: [ - o "PROPERTY_ACCESS Identifier", -> new Accessor $2 - o "PROTOTYPE_ACCESS Identifier", -> new Accessor $2, 'prototype' - o "::", -> new Accessor(new Literal('prototype')) - o "SOAK_ACCESS Identifier", -> new Accessor $2, 'soak' - o "Index" + o 'PROPERTY_ACCESS Identifier', -> new Accessor $2 + o 'PROTOTYPE_ACCESS Identifier', -> new Accessor $2, 'prototype' + o '::', -> new Accessor new Literal 'prototype' + o 'SOAK_ACCESS Identifier', -> new Accessor $2, 'soak' + o 'Index' ] # Indexing into an object or array using bracket notation. Index: [ - o "INDEX_START Expression INDEX_END", -> new Index $2 - o "INDEX_SOAK Index", -> extend $2, soakNode: yes - o "INDEX_PROTO Index", -> extend $2, proto: yes + o 'INDEX_START Expression INDEX_END', -> new Index $2 + o 'INDEX_SOAK Index', -> extend $2, soakNode: yes + o 'INDEX_PROTO Index', -> extend $2, proto: yes ] # In CoffeeScript, an object literal is simply a list of assignments. Object: [ - o "{ AssignList OptComma }", -> new Obj $2 + o '{ AssignList OptComma }', -> new Obj $2 ] # Assignment of properties within an object literal can be separated by # comma, as in JavaScript, or simply by newline. AssignList: [ - o "", -> [] - o "AssignObj", -> [$1] - o "AssignList , AssignObj", -> $1.concat $3 - o "AssignList OptComma TERMINATOR AssignObj", -> $1.concat $4 - o "AssignList OptComma INDENT AssignList OptComma OUTDENT", -> $1.concat $4 + o '', -> [] + o 'AssignObj', -> [$1] + o 'AssignList , AssignObj', -> $1.concat $3 + o 'AssignList OptComma TERMINATOR AssignObj', -> $1.concat $4 + o 'AssignList OptComma INDENT AssignList OptComma OUTDENT', -> $1.concat $4 ] # Class definitions have optional bodies of prototype property assignments, # and optional references to the superclass. Class: [ - o 'CLASS SimpleAssignable', -> new Class $2 - o 'CLASS SimpleAssignable EXTENDS Value', -> new Class $2, $4 + o 'CLASS SimpleAssignable', -> new Class $2 + o 'CLASS SimpleAssignable EXTENDS Value', -> new Class $2, $4 o 'CLASS SimpleAssignable - INDENT ClassBody OUTDENT', -> new Class $2, null, $4 + INDENT ClassBody OUTDENT', -> new Class $2, null, $4 o 'CLASS SimpleAssignable EXTENDS Value - INDENT ClassBody OUTDENT', -> new Class $2, $4, $6 - o 'CLASS INDENT ClassBody OUTDENT', -> new Class null, null, $3 - o 'CLASS', -> new Class null, null, new Expressions - o 'CLASS EXTENDS Value', -> new Class null, $3 , new Expressions + INDENT ClassBody OUTDENT', -> new Class $2, $4, $6 + o 'CLASS INDENT ClassBody OUTDENT', -> new Class null, null, $3 + o 'CLASS', -> new Class null, null, new Expressions + o 'CLASS EXTENDS Value', -> new Class null, $3 , new Expressions o 'CLASS EXTENDS Value - INDENT ClassBody OUTDENT', -> new Class null, $3, $5 + INDENT ClassBody OUTDENT', -> new Class null, $3, $5 ] # Assignments that can happen directly inside a class declaration. ClassAssign: [ - o "AssignObj", -> $1 - o "ThisProperty : Expression", -> new Assign new Value($1), $3, 'this' - o "ThisProperty : INDENT Expression OUTDENT", -> new Assign new Value($1), $4, 'this' + o 'AssignObj', -> $1 + o 'ThisProperty : Expression', -> new Assign new Value($1), $3, 'this' + o 'ThisProperty : INDENT Expression OUTDENT', -> new Assign new Value($1), $4, 'this' ] # A list of assignments to a class. ClassBody: [ - o "", -> [] - o "ClassAssign", -> [$1] - o "ClassBody TERMINATOR ClassAssign", -> $1.concat $3 - o "{ ClassBody }", -> $2 + o '', -> [] + o 'ClassAssign', -> [$1] + o 'ClassBody TERMINATOR ClassAssign', -> $1.concat $3 + o '{ ClassBody }', -> $2 ] # Extending an object by setting its prototype chain to reference a parent # object. Extends: [ - o "SimpleAssignable EXTENDS Value", -> new Extends $1, $3 + o 'SimpleAssignable EXTENDS Value', -> new Extends $1, $3 ] # Ordinary function invocation, or a chained series of calls. Invocation: [ - o "Value OptFuncExist Arguments", -> new Call $1, $3, $2 - o "Invocation OptFuncExist Arguments", -> new Call $1, $3, $2 - o "SUPER", -> new Call 'super', [new Splat(new Literal('arguments'))] - o "SUPER Arguments", -> new Call 'super', $2 + o 'Value OptFuncExist Arguments', -> new Call $1, $3, $2 + o 'Invocation OptFuncExist Arguments', -> new Call $1, $3, $2 + o 'SUPER', -> + new Call 'super', [new Splat new Literal 'arguments'] + o 'SUPER Arguments', -> + new Call 'super', $2 ] # An optional existence check on a function. OptFuncExist: [ - o "", -> no - o "FUNC_EXIST", -> yes + o '', -> no + o 'FUNC_EXIST', -> yes ] # The list of arguments to a function call. Arguments: [ - o "CALL_START CALL_END", -> [] - o "CALL_START ArgList OptComma CALL_END", -> $2 + o 'CALL_START CALL_END', -> [] + o 'CALL_START ArgList OptComma CALL_END', -> $2 ] # A reference to the *this* current object. This: [ - o "THIS", -> new Value new Literal 'this' - o "@", -> new Value new Literal 'this' + o 'THIS', -> new Value new Literal 'this' + o '@', -> new Value new Literal 'this' ] # A reference to a property on *this*. ThisProperty: [ - o "@ Identifier", -> new Value new Literal('this'), [new Accessor($2)], 'this' + o '@ Identifier', -> new Value new Literal('this'), [new Accessor($2)], 'this' ] # The array literal. Array: [ - o "[ ]", -> new Arr [] - o "[ ArgList OptComma ]", -> new Arr $2 + o '[ ]', -> new Arr [] + o '[ ArgList OptComma ]', -> new Arr $2 ] # The **ArgList** is both the list of objects passed into a function call, # as well as the contents of an array literal # (i.e. comma-separated expressions). Newlines work as well. ArgList: [ - o "Arg", -> [$1] - o "ArgList , Arg", -> $1.concat $3 - o "ArgList OptComma TERMINATOR Arg", -> $1.concat $4 - o "INDENT ArgList OptComma OUTDENT", -> $2 - o "ArgList OptComma INDENT ArgList OptComma OUTDENT", -> $1.concat $4 + o 'Arg', -> [$1] + o 'ArgList , Arg', -> $1.concat $3 + o 'ArgList OptComma TERMINATOR Arg', -> $1.concat $4 + o 'INDENT ArgList OptComma OUTDENT', -> $2 + o 'ArgList OptComma INDENT ArgList OptComma OUTDENT', -> $1.concat $4 ] # Valid arguments are Expressions or Splats. Arg: [ - o "Expression" - o "Splat" + o 'Expression' + o 'Splat' ] # Just simple, comma-separated, required arguments (no fancy syntax). We need # this to be separate from the **ArgList** for use in **Switch** blocks, where # having the newlines wouldn't make sense. SimpleArgs: [ - o "Expression" - o "SimpleArgs , Expression", -> [].concat $1, $3 + o 'Expression' + o 'SimpleArgs , Expression', -> [].concat $1, $3 ] # The variants of *try/catch/finally* exception handling blocks. Try: [ - o "TRY Block", -> new Try $2 - o "TRY Block Catch", -> new Try $2, $3[0], $3[1] - o "TRY Block FINALLY Block", -> new Try $2, null, null, $4 - o "TRY Block Catch FINALLY Block", -> new Try $2, $3[0], $3[1], $5 + o 'TRY Block', -> new Try $2 + o 'TRY Block Catch', -> new Try $2, $3[0], $3[1] + o 'TRY Block FINALLY Block', -> new Try $2, null, null, $4 + o 'TRY Block Catch FINALLY Block', -> new Try $2, $3[0], $3[1], $5 ] # A catch clause names its error and runs a block of code. Catch: [ - o "CATCH Identifier Block", -> [$2, $3] + o 'CATCH Identifier Block', -> [$2, $3] ] # Throw an exception object. Throw: [ - o "THROW Expression", -> new Throw $2 + o 'THROW Expression', -> new Throw $2 ] # Parenthetical expressions. Note that the **Parenthetical** is a **Value**, @@ -394,29 +390,29 @@ grammar = # where only values are accepted, wrapping it in parentheses will always do # the trick. Parenthetical: [ - o "( Expression )", -> new Parens $2 + o '( Expression )', -> new Parens $2 ] # The condition portion of a while loop. WhileSource: [ - o "WHILE Expression", -> new While $2 - o "WHILE Expression WHEN Expression", -> new While $2, guard: $4 - o "UNTIL Expression", -> new While $2, invert: true - o "UNTIL Expression WHEN Expression", -> new While $2, invert: true, guard: $4 + o 'WHILE Expression', -> new While $2 + o 'WHILE Expression WHEN Expression', -> new While $2, guard: $4 + o 'UNTIL Expression', -> new While $2, invert: true + o 'UNTIL Expression WHEN Expression', -> new While $2, invert: true, guard: $4 ] # The while loop can either be normal, with a block of expressions to execute, # or postfix, with a single expression. There is no do..while. While: [ - o "WhileSource Block", -> $1.addBody $2 - o "Statement WhileSource", -> $2.addBody Expressions.wrap [$1] - o "Expression WhileSource", -> $2.addBody Expressions.wrap [$1] - o "Loop", -> $1 + o 'WhileSource Block', -> $1.addBody $2 + o 'Statement WhileSource', -> $2.addBody Expressions.wrap [$1] + o 'Expression WhileSource', -> $2.addBody Expressions.wrap [$1] + o 'Loop', -> $1 ] Loop: [ - o "LOOP Block", -> new While(new Literal 'true').addBody $2 - o "LOOP Expression", -> new While(new Literal 'true').addBody Expressions.wrap [$2] + o 'LOOP Block', -> new While(new Literal 'true').addBody $2 + o 'LOOP Expression', -> new While(new Literal 'true').addBody Expressions.wrap [$2] ] # Array, object, and range comprehensions, at the most generic level. @@ -469,41 +465,45 @@ grammar = ] Switch: [ - o "SWITCH Expression INDENT Whens OUTDENT", -> new Switch $2, $4 - o "SWITCH Expression INDENT Whens ELSE Block OUTDENT", -> new Switch $2, $4, $6 - o "SWITCH INDENT Whens OUTDENT", -> new Switch null, $3 - o "SWITCH INDENT Whens ELSE Block OUTDENT", -> new Switch null, $3, $5 + o 'SWITCH Expression INDENT Whens OUTDENT', -> new Switch $2, $4 + o 'SWITCH Expression INDENT Whens ELSE Block OUTDENT', -> new Switch $2, $4, $6 + o 'SWITCH INDENT Whens OUTDENT', -> new Switch null, $3 + o 'SWITCH INDENT Whens ELSE Block OUTDENT', -> new Switch null, $3, $5 ] Whens: [ - o "When" - o "Whens When", -> $1.concat $2 + o 'When' + o 'Whens When', -> $1.concat $2 ] # An individual **When** clause, with action. When: [ - o "LEADING_WHEN SimpleArgs Block", -> [[$2, $3]] - o "LEADING_WHEN SimpleArgs Block TERMINATOR", -> [[$2, $3]] + o 'LEADING_WHEN SimpleArgs Block', -> [[$2, $3]] + o 'LEADING_WHEN SimpleArgs Block TERMINATOR', -> [[$2, $3]] ] # The most basic form of *if* is a condition and an action. The following # if-related rules are broken up along these lines in order to avoid # ambiguity. IfBlock: [ - o "IF Expression Block", -> new If $2, $3 - o "UNLESS Expression Block", -> new If $2, $3, invert: true - o "IfBlock ELSE IF Expression Block", -> $1.addElse new If $4, $5 - o "IfBlock ELSE Block", -> $1.addElse $3 + o 'IF Expression Block', -> new If $2, $3 + o 'UNLESS Expression Block', -> new If $2, $3, invert: true + o 'IfBlock ELSE IF Expression Block', -> $1.addElse new If $4, $5 + o 'IfBlock ELSE Block', -> $1.addElse $3 ] # The full complement of *if* expressions, including postfix one-liner # *if* and *unless*. If: [ - o "IfBlock" - o "Statement POST_IF Expression", -> new If $3, Expressions.wrap([$1]), statement: true - o "Expression POST_IF Expression", -> new If $3, Expressions.wrap([$1]), statement: true - o "Statement POST_UNLESS Expression", -> new If $3, Expressions.wrap([$1]), statement: true, invert: true - o "Expression POST_UNLESS Expression", -> new If $3, Expressions.wrap([$1]), statement: true, invert: true + o 'IfBlock' + o 'Statement POST_IF Expression', -> + new If $3, Expressions.wrap([$1]), statement: true + o 'Expression POST_IF Expression', -> + new If $3, Expressions.wrap([$1]), statement: true + o 'Statement POST_UNLESS Expression', -> + new If $3, Expressions.wrap([$1]), statement: true, invert: true + o 'Expression POST_UNLESS Expression', -> + new If $3, Expressions.wrap([$1]), statement: true, invert: true ] # Arithmetic and logical operators, working on one or more operands. @@ -522,6 +522,9 @@ grammar = o 'SimpleAssignable --', -> new Op '--', $1, null, true o 'SimpleAssignable ++', -> new Op '++', $1, null, true + # [The existential operator](http://jashkenas.github.com/coffee-script/#existence). + o 'Expression ?', -> new Existence $1 + o 'Expression + Expression', -> new Op '+' , $1, $3 o 'Expression - Expression', -> new Op '-' , $1, $3 @@ -535,8 +538,10 @@ grammar = else new Op $2, $1, $3 - o 'SimpleAssignable COMPOUND_ASSIGN Expression', -> new Assign $1, $3, $2 - o 'SimpleAssignable COMPOUND_ASSIGN INDENT Expression OUTDENT', -> new Assign $1, $4, $2 + o 'SimpleAssignable COMPOUND_ASSIGN + Expression', -> new Assign $1, $3, $2 + o 'SimpleAssignable COMPOUND_ASSIGN + INDENT Expression OUTDENT', -> new Assign $1, $4, $2 ]