From 67f2347685b450eb5ae0a1d0ead73c5e6dce0273 Mon Sep 17 00:00:00 2001 From: Thomas Parslow Date: Sun, 21 Jul 2013 19:48:36 +0100 Subject: [PATCH] Added yieldfrom keyword --- lib/coffee-script/grammar.js | 11 +- lib/coffee-script/lexer.js | 2 +- lib/coffee-script/nodes.js | 44 +++-- lib/coffee-script/parser.js | 358 ++++++++++++++++++----------------- src/grammar.coffee | 11 +- src/lexer.coffee | 2 +- src/nodes.coffee | 25 ++- 7 files changed, 249 insertions(+), 204 deletions(-) diff --git a/lib/coffee-script/grammar.js b/lib/coffee-script/grammar.js index 567e14d144..996834e597 100644 --- a/lib/coffee-script/grammar.js +++ b/lib/coffee-script/grammar.js @@ -33,7 +33,7 @@ ], Line: [o('Expression'), o('Statement')], Statement: [ - o('Return'), o('Comment'), o('STATEMENT', function() { + o('Return'), o('YieldFrom'), o('Comment'), o('STATEMENT', function() { return new Literal($1); }) ], @@ -106,6 +106,13 @@ return new Yield; }) ], + YieldFrom: [ + o('YIELDFROM Expression', function() { + return new YieldFrom($2); + }), o('YIELDFROM', function() { + return new YieldFrom; + }) + ], Comment: [ o('HERECOMMENT', function() { return new Comment($1); @@ -576,7 +583,7 @@ ] }; - operators = [['left', '.', '?.', '::'], ['left', 'CALL_START', 'CALL_END'], ['nonassoc', '++', '--'], ['left', '?'], ['right', 'UNARY'], ['left', 'MATH'], ['left', '+', '-'], ['left', 'SHIFT'], ['left', 'RELATION'], ['left', 'COMPARE'], ['left', 'LOGIC'], ['nonassoc', 'INDENT', 'OUTDENT'], ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN', 'YIELD', 'THROW', 'EXTENDS'], ['right', 'FORIN', 'FOROF', 'BY', 'WHEN'], ['right', 'IF', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'SUPER', 'CLASS'], ['right', 'POST_IF']]; + operators = [['left', '.', '?.', '::'], ['left', 'CALL_START', 'CALL_END'], ['nonassoc', '++', '--'], ['left', '?'], ['right', 'UNARY'], ['left', 'MATH'], ['left', '+', '-'], ['left', 'SHIFT'], ['left', 'RELATION'], ['left', 'COMPARE'], ['left', 'LOGIC'], ['nonassoc', 'INDENT', 'OUTDENT'], ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN', 'YIELD', 'YIELDFROM', 'THROW', 'EXTENDS'], ['right', 'FORIN', 'FOROF', 'BY', 'WHEN'], ['right', 'IF', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'SUPER', 'CLASS'], ['right', 'POST_IF']]; tokens = []; diff --git a/lib/coffee-script/lexer.js b/lib/coffee-script/lexer.js index 6c1a648b97..4673a7d37c 100644 --- a/lib/coffee-script/lexer.js +++ b/lib/coffee-script/lexer.js @@ -687,7 +687,7 @@ JS_KEYWORDS = ['true', 'false', 'null', 'this', 'new', 'delete', 'typeof', 'in', 'instanceof', 'return', 'yield', 'throw', 'break', 'continue', 'debugger', 'if', 'else', 'switch', 'for', 'while', 'do', 'try', 'catch', 'finally', 'class', 'extends', 'super']; - COFFEE_KEYWORDS = ['undefined', 'then', 'unless', 'until', 'loop', 'of', 'by', 'when']; + COFFEE_KEYWORDS = ['undefined', 'then', 'unless', 'until', 'loop', 'of', 'by', 'when', 'yieldfrom']; COFFEE_ALIAS_MAP = { and: '&&', diff --git a/lib/coffee-script/nodes.js b/lib/coffee-script/nodes.js index ec2be44b63..248afa1068 100644 --- a/lib/coffee-script/nodes.js +++ b/lib/coffee-script/nodes.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript 1.3.3 (function() { - var Access, Arr, Assign, Base, Block, Call, Class, Closure, Code, Comment, Existence, Extends, For, IDENTIFIER, IDENTIFIER_STR, IS_STRING, If, In, Index, LEVEL_ACCESS, LEVEL_COND, LEVEL_LIST, LEVEL_OP, LEVEL_PAREN, LEVEL_TOP, Literal, METHOD_DEF, NEGATE, NO, Obj, Op, Param, Parens, RESERVED, Range, Return, SIMPLENUM, STRICT_PROSCRIBED, Scope, Slice, Splat, Switch, TAB, THIS, Throw, Try, UTILITIES, Value, While, YES, Yield, compact, del, ends, extend, flatten, last, merge, multident, some, starts, unfoldSoak, utility, _ref, _ref1, + var Access, Arr, Assign, Base, Block, Call, Class, Closure, Code, Comment, Existence, Extends, For, IDENTIFIER, IDENTIFIER_STR, IS_STRING, If, In, Index, LEVEL_ACCESS, LEVEL_COND, LEVEL_LIST, LEVEL_OP, LEVEL_PAREN, LEVEL_TOP, Literal, METHOD_DEF, NEGATE, NO, Obj, Op, Param, Parens, RESERVED, Range, Return, SIMPLENUM, STRICT_PROSCRIBED, Scope, Slice, Splat, Switch, TAB, THIS, Throw, Try, UTILITIES, Value, While, YES, Yield, YieldFrom, compact, del, ends, extend, flatten, last, merge, multident, some, starts, unfoldSoak, utility, _ref, _ref1, __hasProp = {}.hasOwnProperty, __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }; @@ -594,27 +594,41 @@ Yield.prototype.children = ['expression']; - Yield.prototype.isStatement = NO; + Yield.prototype.compileNode = function(o) { + return "yield" + [this.expression ? " " + (this.expression.compile(o, LEVEL_PAREN)) : void 0]; + }; - Yield.prototype.makeReturn = THIS; + return Yield; - Yield.prototype.jumps = NO; + })(Base); - Yield.prototype.compile = function(o, level) { - var expr, _ref2; - expr = (_ref2 = this.expression) != null ? _ref2.makeReturn() : void 0; - if (expr && !(expr instanceof Return)) { - return expr.compile(o, level); - } else { - return Yield.__super__.compile.call(this, o, level); + exports.YieldFrom = YieldFrom = (function(_super) { + + __extends(YieldFrom, _super); + + function YieldFrom(expr) { + if (expr && !expr.unwrap().isUndefined) { + this.expression = expr; } - }; + } - Yield.prototype.compileNode = function(o) { - return "yield" + [this.expression ? " " + (this.expression.compile(o, LEVEL_PAREN)) : void 0]; + YieldFrom.prototype.children = ['expression']; + + YieldFrom.prototype.compileNode = function(o) { + var code, refvar, resvar, sendvar; + sendvar = o.scope.freeVariable('send'); + resvar = o.scope.freeVariable('result'); + refvar = o.scope.freeVariable('ref'); + code = "var " + refvar + " = " + [this.expression ? " " + (this.expression.compile(o, LEVEL_PAREN)) : void 0] + ";\n"; + code += "" + this.tab + "var " + sendvar + ", " + resvar + " = {};\n"; + code += "" + this.tab + "while(!" + resvar + ".done) {\n"; + code += "" + (this.tab + TAB) + resvar + " = " + refvar + ".send(" + sendvar + ");\n"; + code += "" + (this.tab + TAB) + sendvar + " = yield " + resvar + ".value;\n"; + code += "" + this.tab + "}"; + return code; }; - return Yield; + return YieldFrom; })(Base); diff --git a/lib/coffee-script/parser.js b/lib/coffee-script/parser.js index 4266a9b949..7e5e84ba09 100755 --- a/lib/coffee-script/parser.js +++ b/lib/coffee-script/parser.js @@ -74,9 +74,9 @@ var parser = (function(){ var parser = {trace: function trace() { }, yy: {}, -symbols_: {"error":2,"Root":3,"Body":4,"Block":5,"TERMINATOR":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Comment":11,"STATEMENT":12,"Value":13,"Yield":14,"Invocation":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Class":24,"Throw":25,"INDENT":26,"OUTDENT":27,"Identifier":28,"IDENTIFIER":29,"AlphaNumeric":30,"NUMBER":31,"STRING":32,"Literal":33,"JS":34,"REGEX":35,"DEBUGGER":36,"UNDEFINED":37,"NULL":38,"BOOL":39,"Assignable":40,"=":41,"AssignObj":42,"ObjAssignable":43,":":44,"ThisProperty":45,"RETURN":46,"YIELD":47,"HERECOMMENT":48,"PARAM_START":49,"ParamList":50,"PARAM_END":51,"FuncGlyph":52,"->":53,"=>":54,"OptComma":55,",":56,"Param":57,"ParamVar":58,"...":59,"Array":60,"Object":61,"Splat":62,"SimpleAssignable":63,"Accessor":64,"Parenthetical":65,"Range":66,"This":67,".":68,"?.":69,"::":70,"Index":71,"INDEX_START":72,"IndexValue":73,"INDEX_END":74,"INDEX_SOAK":75,"Slice":76,"{":77,"AssignList":78,"}":79,"CLASS":80,"EXTENDS":81,"OptFuncExist":82,"Arguments":83,"SUPER":84,"FUNC_EXIST":85,"CALL_START":86,"CALL_END":87,"ArgList":88,"THIS":89,"@":90,"[":91,"]":92,"RangeDots":93,"..":94,"Arg":95,"SimpleArgs":96,"TRY":97,"Catch":98,"FINALLY":99,"CATCH":100,"THROW":101,"(":102,")":103,"WhileSource":104,"WHILE":105,"WHEN":106,"UNTIL":107,"Loop":108,"LOOP":109,"ForBody":110,"FOR":111,"ForStart":112,"ForSource":113,"ForVariables":114,"OWN":115,"ForValue":116,"FORIN":117,"FOROF":118,"BY":119,"SWITCH":120,"Whens":121,"ELSE":122,"When":123,"LEADING_WHEN":124,"IfBlock":125,"IF":126,"POST_IF":127,"UNARY":128,"-":129,"+":130,"--":131,"++":132,"?":133,"MATH":134,"SHIFT":135,"COMPARE":136,"LOGIC":137,"RELATION":138,"COMPOUND_ASSIGN":139,"$accept":0,"$end":1}, -terminals_: {2:"error",6:"TERMINATOR",12:"STATEMENT",26:"INDENT",27:"OUTDENT",29:"IDENTIFIER",31:"NUMBER",32:"STRING",34:"JS",35:"REGEX",36:"DEBUGGER",37:"UNDEFINED",38:"NULL",39:"BOOL",41:"=",44:":",46:"RETURN",47:"YIELD",48:"HERECOMMENT",49:"PARAM_START",51:"PARAM_END",53:"->",54:"=>",56:",",59:"...",68:".",69:"?.",70:"::",72:"INDEX_START",74:"INDEX_END",75:"INDEX_SOAK",77:"{",79:"}",80:"CLASS",81:"EXTENDS",84:"SUPER",85:"FUNC_EXIST",86:"CALL_START",87:"CALL_END",89:"THIS",90:"@",91:"[",92:"]",94:"..",97:"TRY",99:"FINALLY",100:"CATCH",101:"THROW",102:"(",103:")",105:"WHILE",106:"WHEN",107:"UNTIL",109:"LOOP",111:"FOR",115:"OWN",117:"FORIN",118:"FOROF",119:"BY",120:"SWITCH",122:"ELSE",124:"LEADING_WHEN",126:"IF",127:"POST_IF",128:"UNARY",129:"-",130:"+",131:"--",132:"++",133:"?",134:"MATH",135:"SHIFT",136:"COMPARE",137:"LOGIC",138:"RELATION",139:"COMPOUND_ASSIGN"}, -productions_: [0,[3,0],[3,1],[3,2],[4,1],[4,3],[4,2],[7,1],[7,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],[5,2],[5,3],[28,1],[30,1],[30,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[18,3],[18,4],[18,5],[42,1],[42,3],[42,5],[42,1],[43,1],[43,1],[43,1],[10,2],[10,1],[14,2],[14,1],[11,1],[16,5],[16,2],[52,1],[52,1],[55,0],[55,1],[50,0],[50,1],[50,3],[50,4],[50,6],[57,1],[57,2],[57,3],[58,1],[58,1],[58,1],[58,1],[62,2],[63,1],[63,2],[63,2],[63,1],[40,1],[40,1],[40,1],[13,1],[13,1],[13,1],[13,1],[13,1],[64,2],[64,2],[64,2],[64,1],[64,1],[71,3],[71,2],[73,1],[73,1],[61,4],[78,0],[78,1],[78,3],[78,4],[78,6],[24,1],[24,2],[24,3],[24,4],[24,2],[24,3],[24,4],[24,5],[15,3],[15,3],[15,1],[15,2],[82,0],[82,1],[83,2],[83,4],[67,1],[67,1],[45,2],[60,2],[60,4],[93,1],[93,1],[66,5],[76,3],[76,2],[76,2],[76,1],[88,1],[88,3],[88,4],[88,4],[88,6],[95,1],[95,1],[96,1],[96,3],[20,2],[20,3],[20,4],[20,5],[98,3],[25,2],[65,3],[65,5],[104,2],[104,4],[104,2],[104,4],[21,2],[21,2],[21,2],[21,1],[108,2],[108,2],[22,2],[22,2],[22,2],[110,2],[110,2],[112,2],[112,3],[116,1],[116,1],[116,1],[116,1],[114,1],[114,3],[113,2],[113,2],[113,4],[113,4],[113,4],[113,6],[113,6],[23,5],[23,7],[23,4],[23,6],[121,1],[121,2],[123,3],[123,4],[125,3],[125,5],[19,1],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,5],[17,3]], +symbols_: {"error":2,"Root":3,"Body":4,"Block":5,"TERMINATOR":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"YieldFrom":11,"Comment":12,"STATEMENT":13,"Value":14,"Yield":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Class":25,"Throw":26,"INDENT":27,"OUTDENT":28,"Identifier":29,"IDENTIFIER":30,"AlphaNumeric":31,"NUMBER":32,"STRING":33,"Literal":34,"JS":35,"REGEX":36,"DEBUGGER":37,"UNDEFINED":38,"NULL":39,"BOOL":40,"Assignable":41,"=":42,"AssignObj":43,"ObjAssignable":44,":":45,"ThisProperty":46,"RETURN":47,"YIELD":48,"YIELDFROM":49,"HERECOMMENT":50,"PARAM_START":51,"ParamList":52,"PARAM_END":53,"FuncGlyph":54,"->":55,"=>":56,"OptComma":57,",":58,"Param":59,"ParamVar":60,"...":61,"Array":62,"Object":63,"Splat":64,"SimpleAssignable":65,"Accessor":66,"Parenthetical":67,"Range":68,"This":69,".":70,"?.":71,"::":72,"Index":73,"INDEX_START":74,"IndexValue":75,"INDEX_END":76,"INDEX_SOAK":77,"Slice":78,"{":79,"AssignList":80,"}":81,"CLASS":82,"EXTENDS":83,"OptFuncExist":84,"Arguments":85,"SUPER":86,"FUNC_EXIST":87,"CALL_START":88,"CALL_END":89,"ArgList":90,"THIS":91,"@":92,"[":93,"]":94,"RangeDots":95,"..":96,"Arg":97,"SimpleArgs":98,"TRY":99,"Catch":100,"FINALLY":101,"CATCH":102,"THROW":103,"(":104,")":105,"WhileSource":106,"WHILE":107,"WHEN":108,"UNTIL":109,"Loop":110,"LOOP":111,"ForBody":112,"FOR":113,"ForStart":114,"ForSource":115,"ForVariables":116,"OWN":117,"ForValue":118,"FORIN":119,"FOROF":120,"BY":121,"SWITCH":122,"Whens":123,"ELSE":124,"When":125,"LEADING_WHEN":126,"IfBlock":127,"IF":128,"POST_IF":129,"UNARY":130,"-":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",6:"TERMINATOR",13:"STATEMENT",27:"INDENT",28:"OUTDENT",30:"IDENTIFIER",32:"NUMBER",33:"STRING",35:"JS",36:"REGEX",37:"DEBUGGER",38:"UNDEFINED",39:"NULL",40:"BOOL",42:"=",45:":",47:"RETURN",48:"YIELD",49:"YIELDFROM",50:"HERECOMMENT",51:"PARAM_START",53:"PARAM_END",55:"->",56:"=>",58:",",61:"...",70:".",71:"?.",72:"::",74:"INDEX_START",76:"INDEX_END",77:"INDEX_SOAK",79:"{",81:"}",82:"CLASS",83:"EXTENDS",86:"SUPER",87:"FUNC_EXIST",88:"CALL_START",89:"CALL_END",91:"THIS",92:"@",93:"[",94:"]",96:"..",99:"TRY",101:"FINALLY",102:"CATCH",103:"THROW",104:"(",105:")",107:"WHILE",108:"WHEN",109:"UNTIL",111:"LOOP",113:"FOR",117:"OWN",119:"FORIN",120:"FOROF",121:"BY",122:"SWITCH",124:"ELSE",126:"LEADING_WHEN",128:"IF",129:"POST_IF",130:"UNARY",131:"-",132:"+",133:"--",134:"++",135:"?",136:"MATH",137:"SHIFT",138:"COMPARE",139:"LOGIC",140:"RELATION",141:"COMPOUND_ASSIGN"}, +productions_: [0,[3,0],[3,1],[3,2],[4,1],[4,3],[4,2],[7,1],[7,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],[5,2],[5,3],[29,1],[31,1],[31,1],[34,1],[34,1],[34,1],[34,1],[34,1],[34,1],[34,1],[19,3],[19,4],[19,5],[43,1],[43,3],[43,5],[43,1],[44,1],[44,1],[44,1],[10,2],[10,1],[15,2],[15,1],[11,2],[11,1],[12,1],[17,5],[17,2],[54,1],[54,1],[57,0],[57,1],[52,0],[52,1],[52,3],[52,4],[52,6],[59,1],[59,2],[59,3],[60,1],[60,1],[60,1],[60,1],[64,2],[65,1],[65,2],[65,2],[65,1],[41,1],[41,1],[41,1],[14,1],[14,1],[14,1],[14,1],[14,1],[66,2],[66,2],[66,2],[66,1],[66,1],[73,3],[73,2],[75,1],[75,1],[63,4],[80,0],[80,1],[80,3],[80,4],[80,6],[25,1],[25,2],[25,3],[25,4],[25,2],[25,3],[25,4],[25,5],[16,3],[16,3],[16,1],[16,2],[84,0],[84,1],[85,2],[85,4],[69,1],[69,1],[46,2],[62,2],[62,4],[95,1],[95,1],[68,5],[78,3],[78,2],[78,2],[78,1],[90,1],[90,3],[90,4],[90,4],[90,6],[97,1],[97,1],[98,1],[98,3],[21,2],[21,3],[21,4],[21,5],[100,3],[26,2],[67,3],[67,5],[106,2],[106,4],[106,2],[106,4],[22,2],[22,2],[22,2],[22,1],[110,2],[110,2],[23,2],[23,2],[23,2],[112,2],[112,2],[114,2],[114,3],[118,1],[118,1],[118,1],[118,1],[116,1],[116,3],[115,2],[115,2],[115,4],[115,4],[115,4],[115,6],[115,6],[24,5],[24,7],[24,4],[24,6],[123,1],[123,2],[125,3],[125,4],[127,3],[127,5],[20,1],[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],[18,3]], performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate /* action[1] */, $$ /* vstack */, _$ /* lstack */ /**/) { /* this == yyval */ @@ -103,9 +103,9 @@ case 9:this.$ = $$[$0]; break; case 10:this.$ = $$[$0]; break; -case 11:this.$ = new yy.Literal($$[$0]); +case 11:this.$ = $$[$0]; break; -case 12:this.$ = $$[$0]; +case 12:this.$ = new yy.Literal($$[$0]); break; case 13:this.$ = $$[$0]; break; @@ -131,43 +131,43 @@ case 23:this.$ = $$[$0]; break; case 24:this.$ = $$[$0]; break; -case 25:this.$ = new yy.Block; +case 25:this.$ = $$[$0]; break; -case 26:this.$ = $$[$0-1]; +case 26:this.$ = new yy.Block; break; -case 27:this.$ = new yy.Literal($$[$0]); +case 27:this.$ = $$[$0-1]; break; case 28:this.$ = new yy.Literal($$[$0]); break; case 29:this.$ = new yy.Literal($$[$0]); break; -case 30:this.$ = $$[$0]; +case 30:this.$ = new yy.Literal($$[$0]); break; -case 31:this.$ = new yy.Literal($$[$0]); +case 31:this.$ = $$[$0]; break; case 32:this.$ = new yy.Literal($$[$0]); break; case 33:this.$ = new yy.Literal($$[$0]); break; -case 34:this.$ = new yy.Undefined; +case 34:this.$ = new yy.Literal($$[$0]); break; -case 35:this.$ = new yy.Null; +case 35:this.$ = new yy.Undefined; break; -case 36:this.$ = new yy.Bool($$[$0]); +case 36:this.$ = new yy.Null; break; -case 37:this.$ = new yy.Assign($$[$0-2], $$[$0]); +case 37:this.$ = new yy.Bool($$[$0]); break; -case 38:this.$ = new yy.Assign($$[$0-3], $$[$0]); +case 38:this.$ = new yy.Assign($$[$0-2], $$[$0]); break; -case 39:this.$ = new yy.Assign($$[$0-4], $$[$0-1]); +case 39:this.$ = new yy.Assign($$[$0-3], $$[$0]); break; -case 40:this.$ = new yy.Value($$[$0]); +case 40:this.$ = new yy.Assign($$[$0-4], $$[$0-1]); break; -case 41:this.$ = new yy.Assign(new yy.Value($$[$0-2]), $$[$0], 'object'); +case 41:this.$ = new yy.Value($$[$0]); break; -case 42:this.$ = new yy.Assign(new yy.Value($$[$0-4]), $$[$0-1], 'object'); +case 42:this.$ = new yy.Assign(new yy.Value($$[$0-2]), $$[$0], 'object'); break; -case 43:this.$ = $$[$0]; +case 43:this.$ = new yy.Assign(new yy.Value($$[$0-4]), $$[$0-1], 'object'); break; case 44:this.$ = $$[$0]; break; @@ -175,67 +175,67 @@ case 45:this.$ = $$[$0]; break; case 46:this.$ = $$[$0]; break; -case 47:this.$ = new yy.Return($$[$0]); +case 47:this.$ = $$[$0]; break; -case 48:this.$ = new yy.Return; +case 48:this.$ = new yy.Return($$[$0]); break; -case 49:this.$ = new yy.Yield($$[$0]); +case 49:this.$ = new yy.Return; break; -case 50:this.$ = new yy.Yield; +case 50:this.$ = new yy.Yield($$[$0]); break; -case 51:this.$ = new yy.Comment($$[$0]); +case 51:this.$ = new yy.Yield; break; -case 52:this.$ = new yy.Code($$[$0-3], $$[$0], $$[$0-1]); +case 52:this.$ = new yy.YieldFrom($$[$0]); break; -case 53:this.$ = new yy.Code([], $$[$0], $$[$0-1]); +case 53:this.$ = new yy.YieldFrom; break; -case 54:this.$ = 'func'; +case 54:this.$ = new yy.Comment($$[$0]); break; -case 55:this.$ = 'boundfunc'; +case 55:this.$ = new yy.Code($$[$0-3], $$[$0], $$[$0-1]); break; -case 56:this.$ = $$[$0]; +case 56:this.$ = new yy.Code([], $$[$0], $$[$0-1]); break; -case 57:this.$ = $$[$0]; +case 57:this.$ = 'func'; break; -case 58:this.$ = []; +case 58:this.$ = 'boundfunc'; break; -case 59:this.$ = [$$[$0]]; +case 59:this.$ = $$[$0]; break; -case 60:this.$ = $$[$0-2].concat($$[$0]); +case 60:this.$ = $$[$0]; break; -case 61:this.$ = $$[$0-3].concat($$[$0]); +case 61:this.$ = []; break; -case 62:this.$ = $$[$0-5].concat($$[$0-2]); +case 62:this.$ = [$$[$0]]; break; -case 63:this.$ = new yy.Param($$[$0]); +case 63:this.$ = $$[$0-2].concat($$[$0]); break; -case 64:this.$ = new yy.Param($$[$0-1], null, true); +case 64:this.$ = $$[$0-3].concat($$[$0]); break; -case 65:this.$ = new yy.Param($$[$0-2], $$[$0]); +case 65:this.$ = $$[$0-5].concat($$[$0-2]); break; -case 66:this.$ = $$[$0]; +case 66:this.$ = new yy.Param($$[$0]); break; -case 67:this.$ = $$[$0]; +case 67:this.$ = new yy.Param($$[$0-1], null, true); break; -case 68:this.$ = $$[$0]; +case 68:this.$ = new yy.Param($$[$0-2], $$[$0]); break; case 69:this.$ = $$[$0]; break; -case 70:this.$ = new yy.Splat($$[$0-1]); +case 70:this.$ = $$[$0]; break; -case 71:this.$ = new yy.Value($$[$0]); +case 71:this.$ = $$[$0]; break; -case 72:this.$ = $$[$0-1].add($$[$0]); +case 72:this.$ = $$[$0]; break; -case 73:this.$ = new yy.Value($$[$0-1], [].concat($$[$0])); +case 73:this.$ = new yy.Splat($$[$0-1]); break; -case 74:this.$ = $$[$0]; +case 74:this.$ = new yy.Value($$[$0]); break; -case 75:this.$ = $$[$0]; +case 75:this.$ = $$[$0-1].add($$[$0]); break; -case 76:this.$ = new yy.Value($$[$0]); +case 76:this.$ = new yy.Value($$[$0-1], [].concat($$[$0])); break; -case 77:this.$ = new yy.Value($$[$0]); +case 77:this.$ = $$[$0]; break; case 78:this.$ = $$[$0]; break; @@ -243,299 +243,305 @@ case 79:this.$ = new yy.Value($$[$0]); break; case 80:this.$ = new yy.Value($$[$0]); break; -case 81:this.$ = new yy.Value($$[$0]); +case 81:this.$ = $$[$0]; break; -case 82:this.$ = $$[$0]; +case 82:this.$ = new yy.Value($$[$0]); break; -case 83:this.$ = new yy.Access($$[$0]); +case 83:this.$ = new yy.Value($$[$0]); break; -case 84:this.$ = new yy.Access($$[$0], 'soak'); +case 84:this.$ = new yy.Value($$[$0]); break; -case 85:this.$ = [new yy.Access(new yy.Literal('prototype')), new yy.Access($$[$0])]; +case 85:this.$ = $$[$0]; break; -case 86:this.$ = new yy.Access(new yy.Literal('prototype')); +case 86:this.$ = new yy.Access($$[$0]); break; -case 87:this.$ = $$[$0]; +case 87:this.$ = new yy.Access($$[$0], 'soak'); break; -case 88:this.$ = $$[$0-1]; +case 88:this.$ = [new yy.Access(new yy.Literal('prototype')), new yy.Access($$[$0])]; break; -case 89:this.$ = yy.extend($$[$0], { +case 89:this.$ = new yy.Access(new yy.Literal('prototype')); +break; +case 90:this.$ = $$[$0]; +break; +case 91:this.$ = $$[$0-1]; +break; +case 92:this.$ = yy.extend($$[$0], { soak: true }); break; -case 90:this.$ = new yy.Index($$[$0]); +case 93:this.$ = new yy.Index($$[$0]); break; -case 91:this.$ = new yy.Slice($$[$0]); +case 94:this.$ = new yy.Slice($$[$0]); break; -case 92:this.$ = new yy.Obj($$[$0-2], $$[$0-3].generated); +case 95:this.$ = new yy.Obj($$[$0-2], $$[$0-3].generated); break; -case 93:this.$ = []; +case 96:this.$ = []; break; -case 94:this.$ = [$$[$0]]; +case 97:this.$ = [$$[$0]]; break; -case 95:this.$ = $$[$0-2].concat($$[$0]); +case 98:this.$ = $$[$0-2].concat($$[$0]); break; -case 96:this.$ = $$[$0-3].concat($$[$0]); +case 99:this.$ = $$[$0-3].concat($$[$0]); break; -case 97:this.$ = $$[$0-5].concat($$[$0-2]); +case 100:this.$ = $$[$0-5].concat($$[$0-2]); break; -case 98:this.$ = new yy.Class; +case 101:this.$ = new yy.Class; break; -case 99:this.$ = new yy.Class(null, null, $$[$0]); +case 102:this.$ = new yy.Class(null, null, $$[$0]); break; -case 100:this.$ = new yy.Class(null, $$[$0]); +case 103:this.$ = new yy.Class(null, $$[$0]); break; -case 101:this.$ = new yy.Class(null, $$[$0-1], $$[$0]); +case 104:this.$ = new yy.Class(null, $$[$0-1], $$[$0]); break; -case 102:this.$ = new yy.Class($$[$0]); +case 105:this.$ = new yy.Class($$[$0]); break; -case 103:this.$ = new yy.Class($$[$0-1], null, $$[$0]); +case 106:this.$ = new yy.Class($$[$0-1], null, $$[$0]); break; -case 104:this.$ = new yy.Class($$[$0-2], $$[$0]); +case 107:this.$ = new yy.Class($$[$0-2], $$[$0]); break; -case 105:this.$ = new yy.Class($$[$0-3], $$[$0-1], $$[$0]); +case 108:this.$ = new yy.Class($$[$0-3], $$[$0-1], $$[$0]); break; -case 106:this.$ = new yy.Call($$[$0-2], $$[$0], $$[$0-1]); +case 109:this.$ = new yy.Call($$[$0-2], $$[$0], $$[$0-1]); break; -case 107:this.$ = new yy.Call($$[$0-2], $$[$0], $$[$0-1]); +case 110:this.$ = new yy.Call($$[$0-2], $$[$0], $$[$0-1]); break; -case 108:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); +case 111:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); break; -case 109:this.$ = new yy.Call('super', $$[$0]); +case 112:this.$ = new yy.Call('super', $$[$0]); break; -case 110:this.$ = false; +case 113:this.$ = false; break; -case 111:this.$ = true; +case 114:this.$ = true; break; -case 112:this.$ = []; +case 115:this.$ = []; break; -case 113:this.$ = $$[$0-2]; +case 116:this.$ = $$[$0-2]; break; -case 114:this.$ = new yy.Value(new yy.Literal('this')); +case 117:this.$ = new yy.Value(new yy.Literal('this')); break; -case 115:this.$ = new yy.Value(new yy.Literal('this')); +case 118:this.$ = new yy.Value(new yy.Literal('this')); break; -case 116:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Access($$[$0])], 'this'); +case 119:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Access($$[$0])], 'this'); break; -case 117:this.$ = new yy.Arr([]); +case 120:this.$ = new yy.Arr([]); break; -case 118:this.$ = new yy.Arr($$[$0-2]); +case 121:this.$ = new yy.Arr($$[$0-2]); break; -case 119:this.$ = 'inclusive'; +case 122:this.$ = 'inclusive'; break; -case 120:this.$ = 'exclusive'; +case 123:this.$ = 'exclusive'; break; -case 121:this.$ = new yy.Range($$[$0-3], $$[$0-1], $$[$0-2]); +case 124:this.$ = new yy.Range($$[$0-3], $$[$0-1], $$[$0-2]); break; -case 122:this.$ = new yy.Range($$[$0-2], $$[$0], $$[$0-1]); +case 125:this.$ = new yy.Range($$[$0-2], $$[$0], $$[$0-1]); break; -case 123:this.$ = new yy.Range($$[$0-1], null, $$[$0]); +case 126:this.$ = new yy.Range($$[$0-1], null, $$[$0]); break; -case 124:this.$ = new yy.Range(null, $$[$0], $$[$0-1]); +case 127:this.$ = new yy.Range(null, $$[$0], $$[$0-1]); break; -case 125:this.$ = new yy.Range(null, null, $$[$0]); +case 128:this.$ = new yy.Range(null, null, $$[$0]); break; -case 126:this.$ = [$$[$0]]; +case 129:this.$ = [$$[$0]]; break; -case 127:this.$ = $$[$0-2].concat($$[$0]); +case 130:this.$ = $$[$0-2].concat($$[$0]); break; -case 128:this.$ = $$[$0-3].concat($$[$0]); +case 131:this.$ = $$[$0-3].concat($$[$0]); break; -case 129:this.$ = $$[$0-2]; +case 132:this.$ = $$[$0-2]; break; -case 130:this.$ = $$[$0-5].concat($$[$0-2]); +case 133:this.$ = $$[$0-5].concat($$[$0-2]); break; -case 131:this.$ = $$[$0]; +case 134:this.$ = $$[$0]; break; -case 132:this.$ = $$[$0]; +case 135:this.$ = $$[$0]; break; -case 133:this.$ = $$[$0]; +case 136:this.$ = $$[$0]; break; -case 134:this.$ = [].concat($$[$0-2], $$[$0]); +case 137:this.$ = [].concat($$[$0-2], $$[$0]); break; -case 135:this.$ = new yy.Try($$[$0]); +case 138:this.$ = new yy.Try($$[$0]); break; -case 136:this.$ = new yy.Try($$[$0-1], $$[$0][0], $$[$0][1]); +case 139:this.$ = new yy.Try($$[$0-1], $$[$0][0], $$[$0][1]); break; -case 137:this.$ = new yy.Try($$[$0-2], null, null, $$[$0]); +case 140:this.$ = new yy.Try($$[$0-2], null, null, $$[$0]); break; -case 138:this.$ = new yy.Try($$[$0-3], $$[$0-2][0], $$[$0-2][1], $$[$0]); +case 141:this.$ = new yy.Try($$[$0-3], $$[$0-2][0], $$[$0-2][1], $$[$0]); break; -case 139:this.$ = [$$[$0-1], $$[$0]]; +case 142:this.$ = [$$[$0-1], $$[$0]]; break; -case 140:this.$ = new yy.Throw($$[$0]); +case 143:this.$ = new yy.Throw($$[$0]); break; -case 141:this.$ = new yy.Parens($$[$0-1]); +case 144:this.$ = new yy.Parens($$[$0-1]); break; -case 142:this.$ = new yy.Parens($$[$0-2]); +case 145:this.$ = new yy.Parens($$[$0-2]); break; -case 143:this.$ = new yy.While($$[$0]); +case 146:this.$ = new yy.While($$[$0]); break; -case 144:this.$ = new yy.While($$[$0-2], { +case 147:this.$ = new yy.While($$[$0-2], { guard: $$[$0] }); break; -case 145:this.$ = new yy.While($$[$0], { +case 148:this.$ = new yy.While($$[$0], { invert: true }); break; -case 146:this.$ = new yy.While($$[$0-2], { +case 149:this.$ = new yy.While($$[$0-2], { invert: true, guard: $$[$0] }); break; -case 147:this.$ = $$[$0-1].addBody($$[$0]); +case 150:this.$ = $$[$0-1].addBody($$[$0]); break; -case 148:this.$ = $$[$0].addBody(yy.Block.wrap([$$[$0-1]])); +case 151:this.$ = $$[$0].addBody(yy.Block.wrap([$$[$0-1]])); break; -case 149:this.$ = $$[$0].addBody(yy.Block.wrap([$$[$0-1]])); +case 152:this.$ = $$[$0].addBody(yy.Block.wrap([$$[$0-1]])); break; -case 150:this.$ = $$[$0]; +case 153:this.$ = $$[$0]; break; -case 151:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0]); +case 154:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0]); break; -case 152:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Block.wrap([$$[$0]])); +case 155:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Block.wrap([$$[$0]])); break; -case 153:this.$ = new yy.For($$[$0-1], $$[$0]); +case 156:this.$ = new yy.For($$[$0-1], $$[$0]); break; -case 154:this.$ = new yy.For($$[$0-1], $$[$0]); +case 157:this.$ = new yy.For($$[$0-1], $$[$0]); break; -case 155:this.$ = new yy.For($$[$0], $$[$0-1]); +case 158:this.$ = new yy.For($$[$0], $$[$0-1]); break; -case 156:this.$ = { +case 159:this.$ = { source: new yy.Value($$[$0]) }; break; -case 157:this.$ = (function () { +case 160:this.$ = (function () { $$[$0].own = $$[$0-1].own; $$[$0].name = $$[$0-1][0]; $$[$0].index = $$[$0-1][1]; return $$[$0]; }()); break; -case 158:this.$ = $$[$0]; +case 161:this.$ = $$[$0]; break; -case 159:this.$ = (function () { +case 162:this.$ = (function () { $$[$0].own = true; return $$[$0]; }()); break; -case 160:this.$ = $$[$0]; +case 163:this.$ = $$[$0]; break; -case 161:this.$ = $$[$0]; +case 164:this.$ = $$[$0]; break; -case 162:this.$ = new yy.Value($$[$0]); +case 165:this.$ = new yy.Value($$[$0]); break; -case 163:this.$ = new yy.Value($$[$0]); +case 166:this.$ = new yy.Value($$[$0]); break; -case 164:this.$ = [$$[$0]]; +case 167:this.$ = [$$[$0]]; break; -case 165:this.$ = [$$[$0-2], $$[$0]]; +case 168:this.$ = [$$[$0-2], $$[$0]]; break; -case 166:this.$ = { +case 169:this.$ = { source: $$[$0] }; break; -case 167:this.$ = { +case 170:this.$ = { source: $$[$0], object: true }; break; -case 168:this.$ = { +case 171:this.$ = { source: $$[$0-2], guard: $$[$0] }; break; -case 169:this.$ = { +case 172:this.$ = { source: $$[$0-2], guard: $$[$0], object: true }; break; -case 170:this.$ = { +case 173:this.$ = { source: $$[$0-2], step: $$[$0] }; break; -case 171:this.$ = { +case 174:this.$ = { source: $$[$0-4], guard: $$[$0-2], step: $$[$0] }; break; -case 172:this.$ = { +case 175:this.$ = { source: $$[$0-4], step: $$[$0-2], guard: $$[$0] }; break; -case 173:this.$ = new yy.Switch($$[$0-3], $$[$0-1]); +case 176:this.$ = new yy.Switch($$[$0-3], $$[$0-1]); break; -case 174:this.$ = new yy.Switch($$[$0-5], $$[$0-3], $$[$0-1]); +case 177:this.$ = new yy.Switch($$[$0-5], $$[$0-3], $$[$0-1]); break; -case 175:this.$ = new yy.Switch(null, $$[$0-1]); +case 178:this.$ = new yy.Switch(null, $$[$0-1]); break; -case 176:this.$ = new yy.Switch(null, $$[$0-3], $$[$0-1]); +case 179:this.$ = new yy.Switch(null, $$[$0-3], $$[$0-1]); break; -case 177:this.$ = $$[$0]; +case 180:this.$ = $$[$0]; break; -case 178:this.$ = $$[$0-1].concat($$[$0]); +case 181:this.$ = $$[$0-1].concat($$[$0]); break; -case 179:this.$ = [[$$[$0-1], $$[$0]]]; +case 182:this.$ = [[$$[$0-1], $$[$0]]]; break; -case 180:this.$ = [[$$[$0-2], $$[$0-1]]]; +case 183:this.$ = [[$$[$0-2], $$[$0-1]]]; break; -case 181:this.$ = new yy.If($$[$0-1], $$[$0], { +case 184:this.$ = new yy.If($$[$0-1], $$[$0], { type: $$[$0-2] }); break; -case 182:this.$ = $$[$0-4].addElse(new yy.If($$[$0-1], $$[$0], { +case 185:this.$ = $$[$0-4].addElse(new yy.If($$[$0-1], $$[$0], { type: $$[$0-2] })); break; -case 183:this.$ = $$[$0]; +case 186:this.$ = $$[$0]; break; -case 184:this.$ = $$[$0-2].addElse($$[$0]); +case 187:this.$ = $$[$0-2].addElse($$[$0]); break; -case 185:this.$ = new yy.If($$[$0], yy.Block.wrap([$$[$0-2]]), { +case 188:this.$ = new yy.If($$[$0], yy.Block.wrap([$$[$0-2]]), { type: $$[$0-1], statement: true }); break; -case 186:this.$ = new yy.If($$[$0], yy.Block.wrap([$$[$0-2]]), { +case 189:this.$ = new yy.If($$[$0], yy.Block.wrap([$$[$0-2]]), { type: $$[$0-1], statement: true }); break; -case 187:this.$ = new yy.Op($$[$0-1], $$[$0]); +case 190:this.$ = new yy.Op($$[$0-1], $$[$0]); break; -case 188:this.$ = new yy.Op('-', $$[$0]); +case 191:this.$ = new yy.Op('-', $$[$0]); break; -case 189:this.$ = new yy.Op('+', $$[$0]); +case 192:this.$ = new yy.Op('+', $$[$0]); break; -case 190:this.$ = new yy.Op('--', $$[$0]); +case 193:this.$ = new yy.Op('--', $$[$0]); break; -case 191:this.$ = new yy.Op('++', $$[$0]); +case 194:this.$ = new yy.Op('++', $$[$0]); break; -case 192:this.$ = new yy.Op('--', $$[$0-1], null, true); +case 195:this.$ = new yy.Op('--', $$[$0-1], null, true); break; -case 193:this.$ = new yy.Op('++', $$[$0-1], null, true); +case 196:this.$ = new yy.Op('++', $$[$0-1], null, true); break; -case 194:this.$ = new yy.Existence($$[$0-1]); +case 197:this.$ = new yy.Existence($$[$0-1]); break; -case 195:this.$ = new yy.Op('+', $$[$0-2], $$[$0]); +case 198:this.$ = new yy.Op('+', $$[$0-2], $$[$0]); break; -case 196:this.$ = new yy.Op('-', $$[$0-2], $$[$0]); +case 199:this.$ = new yy.Op('-', $$[$0-2], $$[$0]); break; -case 197:this.$ = new yy.Op($$[$0-1], $$[$0-2], $$[$0]); +case 200:this.$ = new yy.Op($$[$0-1], $$[$0-2], $$[$0]); break; -case 198:this.$ = new yy.Op($$[$0-1], $$[$0-2], $$[$0]); +case 201:this.$ = new yy.Op($$[$0-1], $$[$0-2], $$[$0]); break; -case 199:this.$ = new yy.Op($$[$0-1], $$[$0-2], $$[$0]); +case 202:this.$ = new yy.Op($$[$0-1], $$[$0-2], $$[$0]); break; -case 200:this.$ = new yy.Op($$[$0-1], $$[$0-2], $$[$0]); +case 203:this.$ = new yy.Op($$[$0-1], $$[$0-2], $$[$0]); break; -case 201:this.$ = (function () { +case 204:this.$ = (function () { if ($$[$0-1].charAt(0) === '!') { return new yy.Op($$[$0-1].slice(1), $$[$0-2], $$[$0]).invert(); } else { @@ -543,16 +549,16 @@ case 201:this.$ = (function () { } }()); break; -case 202:this.$ = new yy.Assign($$[$0-2], $$[$0], $$[$0-1]); +case 205:this.$ = new yy.Assign($$[$0-2], $$[$0], $$[$0-1]); break; -case 203:this.$ = new yy.Assign($$[$0-4], $$[$0-1], $$[$0-3]); +case 206:this.$ = new yy.Assign($$[$0-4], $$[$0-1], $$[$0-3]); break; -case 204:this.$ = new yy.Extends($$[$0-2], $$[$0]); +case 207:this.$ = new yy.Extends($$[$0-2], $$[$0]); break; } }, -table: [{1:[2,1],3:1,4:2,5:3,7:4,8:6,9:7,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,5],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[3]},{1:[2,2],6:[1,76]},{6:[1,77]},{1:[2,4],6:[2,4],27:[2,4],103:[2,4]},{4:79,7:4,8:6,9:7,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,27:[1,78],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,7],6:[2,7],27:[2,7],103:[2,7],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,8],6:[2,8],27:[2,8],103:[2,8],104:92,105:[1,67],107:[1,68],110:93,111:[1,70],112:71,127:[1,91]},{1:[2,12],6:[2,12],26:[2,12],27:[2,12],51:[2,12],56:[2,12],59:[2,12],64:95,68:[1,97],69:[1,98],70:[1,99],71:100,72:[1,101],74:[2,12],75:[1,102],79:[2,12],82:94,85:[1,96],86:[2,110],87:[2,12],92:[2,12],94:[2,12],103:[2,12],105:[2,12],106:[2,12],107:[2,12],111:[2,12],119:[2,12],127:[2,12],129:[2,12],130:[2,12],133:[2,12],134:[2,12],135:[2,12],136:[2,12],137:[2,12],138:[2,12]},{1:[2,13],6:[2,13],26:[2,13],27:[2,13],51:[2,13],56:[2,13],59:[2,13],74:[2,13],79:[2,13],87:[2,13],92:[2,13],94:[2,13],103:[2,13],105:[2,13],106:[2,13],107:[2,13],111:[2,13],119:[2,13],127:[2,13],129:[2,13],130:[2,13],133:[2,13],134:[2,13],135:[2,13],136:[2,13],137:[2,13],138:[2,13]},{1:[2,14],6:[2,14],26:[2,14],27:[2,14],51:[2,14],56:[2,14],59:[2,14],64:104,68:[1,97],69:[1,98],70:[1,99],71:100,72:[1,101],74:[2,14],75:[1,102],79:[2,14],82:103,85:[1,96],86:[2,110],87:[2,14],92:[2,14],94:[2,14],103:[2,14],105:[2,14],106:[2,14],107:[2,14],111:[2,14],119:[2,14],127:[2,14],129:[2,14],130:[2,14],133:[2,14],134:[2,14],135:[2,14],136:[2,14],137:[2,14],138:[2,14]},{1:[2,15],6:[2,15],26:[2,15],27:[2,15],51:[2,15],56:[2,15],59:[2,15],74:[2,15],79:[2,15],87:[2,15],92:[2,15],94:[2,15],103:[2,15],105:[2,15],106:[2,15],107:[2,15],111:[2,15],119:[2,15],127:[2,15],129:[2,15],130:[2,15],133:[2,15],134:[2,15],135:[2,15],136:[2,15],137:[2,15],138:[2,15]},{1:[2,16],6:[2,16],26:[2,16],27:[2,16],51:[2,16],56:[2,16],59:[2,16],74:[2,16],79:[2,16],87:[2,16],92:[2,16],94:[2,16],103:[2,16],105:[2,16],106:[2,16],107:[2,16],111:[2,16],119:[2,16],127:[2,16],129:[2,16],130:[2,16],133:[2,16],134:[2,16],135:[2,16],136:[2,16],137:[2,16],138:[2,16]},{1:[2,17],6:[2,17],26:[2,17],27:[2,17],51:[2,17],56:[2,17],59:[2,17],74:[2,17],79:[2,17],87:[2,17],92:[2,17],94:[2,17],103:[2,17],105:[2,17],106:[2,17],107:[2,17],111:[2,17],119:[2,17],127:[2,17],129:[2,17],130:[2,17],133:[2,17],134:[2,17],135:[2,17],136:[2,17],137:[2,17],138:[2,17]},{1:[2,18],6:[2,18],26:[2,18],27:[2,18],51:[2,18],56:[2,18],59:[2,18],74:[2,18],79:[2,18],87:[2,18],92:[2,18],94:[2,18],103:[2,18],105:[2,18],106:[2,18],107:[2,18],111:[2,18],119:[2,18],127:[2,18],129:[2,18],130:[2,18],133:[2,18],134:[2,18],135:[2,18],136:[2,18],137:[2,18],138:[2,18]},{1:[2,19],6:[2,19],26:[2,19],27:[2,19],51:[2,19],56:[2,19],59:[2,19],74:[2,19],79:[2,19],87:[2,19],92:[2,19],94:[2,19],103:[2,19],105:[2,19],106:[2,19],107:[2,19],111:[2,19],119:[2,19],127:[2,19],129:[2,19],130:[2,19],133:[2,19],134:[2,19],135:[2,19],136:[2,19],137:[2,19],138:[2,19]},{1:[2,20],6:[2,20],26:[2,20],27:[2,20],51:[2,20],56:[2,20],59:[2,20],74:[2,20],79:[2,20],87:[2,20],92:[2,20],94:[2,20],103:[2,20],105:[2,20],106:[2,20],107:[2,20],111:[2,20],119:[2,20],127:[2,20],129:[2,20],130:[2,20],133:[2,20],134:[2,20],135:[2,20],136:[2,20],137:[2,20],138:[2,20]},{1:[2,21],6:[2,21],26:[2,21],27:[2,21],51:[2,21],56:[2,21],59:[2,21],74:[2,21],79:[2,21],87:[2,21],92:[2,21],94:[2,21],103:[2,21],105:[2,21],106:[2,21],107:[2,21],111:[2,21],119:[2,21],127:[2,21],129:[2,21],130:[2,21],133:[2,21],134:[2,21],135:[2,21],136:[2,21],137:[2,21],138:[2,21]},{1:[2,22],6:[2,22],26:[2,22],27:[2,22],51:[2,22],56:[2,22],59:[2,22],74:[2,22],79:[2,22],87:[2,22],92:[2,22],94:[2,22],103:[2,22],105:[2,22],106:[2,22],107:[2,22],111:[2,22],119:[2,22],127:[2,22],129:[2,22],130:[2,22],133:[2,22],134:[2,22],135:[2,22],136:[2,22],137:[2,22],138:[2,22]},{1:[2,23],6:[2,23],26:[2,23],27:[2,23],51:[2,23],56:[2,23],59:[2,23],74:[2,23],79:[2,23],87:[2,23],92:[2,23],94:[2,23],103:[2,23],105:[2,23],106:[2,23],107:[2,23],111:[2,23],119:[2,23],127:[2,23],129:[2,23],130:[2,23],133:[2,23],134:[2,23],135:[2,23],136:[2,23],137:[2,23],138:[2,23]},{1:[2,24],6:[2,24],26:[2,24],27:[2,24],51:[2,24],56:[2,24],59:[2,24],74:[2,24],79:[2,24],87:[2,24],92:[2,24],94:[2,24],103:[2,24],105:[2,24],106:[2,24],107:[2,24],111:[2,24],119:[2,24],127:[2,24],129:[2,24],130:[2,24],133:[2,24],134:[2,24],135:[2,24],136:[2,24],137:[2,24],138:[2,24]},{1:[2,9],6:[2,9],27:[2,9],103:[2,9],105:[2,9],107:[2,9],111:[2,9],127:[2,9]},{1:[2,10],6:[2,10],27:[2,10],103:[2,10],105:[2,10],107:[2,10],111:[2,10],127:[2,10]},{1:[2,11],6:[2,11],27:[2,11],103:[2,11],105:[2,11],107:[2,11],111:[2,11],127:[2,11]},{1:[2,78],6:[2,78],26:[2,78],27:[2,78],41:[1,105],51:[2,78],56:[2,78],59:[2,78],68:[2,78],69:[2,78],70:[2,78],72:[2,78],74:[2,78],75:[2,78],79:[2,78],85:[2,78],86:[2,78],87:[2,78],92:[2,78],94:[2,78],103:[2,78],105:[2,78],106:[2,78],107:[2,78],111:[2,78],119:[2,78],127:[2,78],129:[2,78],130:[2,78],133:[2,78],134:[2,78],135:[2,78],136:[2,78],137:[2,78],138:[2,78]},{1:[2,79],6:[2,79],26:[2,79],27:[2,79],51:[2,79],56:[2,79],59:[2,79],68:[2,79],69:[2,79],70:[2,79],72:[2,79],74:[2,79],75:[2,79],79:[2,79],85:[2,79],86:[2,79],87:[2,79],92:[2,79],94:[2,79],103:[2,79],105:[2,79],106:[2,79],107:[2,79],111:[2,79],119:[2,79],127:[2,79],129:[2,79],130:[2,79],133:[2,79],134:[2,79],135:[2,79],136:[2,79],137:[2,79],138:[2,79]},{1:[2,80],6:[2,80],26:[2,80],27:[2,80],51:[2,80],56:[2,80],59:[2,80],68:[2,80],69:[2,80],70:[2,80],72:[2,80],74:[2,80],75:[2,80],79:[2,80],85:[2,80],86:[2,80],87:[2,80],92:[2,80],94:[2,80],103:[2,80],105:[2,80],106:[2,80],107:[2,80],111:[2,80],119:[2,80],127:[2,80],129:[2,80],130:[2,80],133:[2,80],134:[2,80],135:[2,80],136:[2,80],137:[2,80],138:[2,80]},{1:[2,81],6:[2,81],26:[2,81],27:[2,81],51:[2,81],56:[2,81],59:[2,81],68:[2,81],69:[2,81],70:[2,81],72:[2,81],74:[2,81],75:[2,81],79:[2,81],85:[2,81],86:[2,81],87:[2,81],92:[2,81],94:[2,81],103:[2,81],105:[2,81],106:[2,81],107:[2,81],111:[2,81],119:[2,81],127:[2,81],129:[2,81],130:[2,81],133:[2,81],134:[2,81],135:[2,81],136:[2,81],137:[2,81],138:[2,81]},{1:[2,82],6:[2,82],26:[2,82],27:[2,82],51:[2,82],56:[2,82],59:[2,82],68:[2,82],69:[2,82],70:[2,82],72:[2,82],74:[2,82],75:[2,82],79:[2,82],85:[2,82],86:[2,82],87:[2,82],92:[2,82],94:[2,82],103:[2,82],105:[2,82],106:[2,82],107:[2,82],111:[2,82],119:[2,82],127:[2,82],129:[2,82],130:[2,82],133:[2,82],134:[2,82],135:[2,82],136:[2,82],137:[2,82],138:[2,82]},{1:[2,50],6:[2,50],8:106,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[2,50],27:[2,50],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],51:[2,50],52:32,53:[1,62],54:[1,63],56:[2,50],59:[2,50],60:49,61:50,63:38,65:26,66:27,67:28,74:[2,50],77:[1,72],79:[2,50],80:[1,45],84:[1,30],87:[2,50],89:[1,60],90:[1,61],91:[1,59],92:[2,50],94:[2,50],97:[1,40],101:[1,46],102:[1,58],103:[2,50],104:41,105:[2,50],106:[2,50],107:[2,50],108:42,109:[1,69],110:43,111:[2,50],112:71,119:[2,50],120:[1,44],125:39,126:[1,66],127:[2,50],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37],133:[2,50],134:[2,50],135:[2,50],136:[2,50],137:[2,50],138:[2,50]},{1:[2,108],6:[2,108],26:[2,108],27:[2,108],51:[2,108],56:[2,108],59:[2,108],68:[2,108],69:[2,108],70:[2,108],72:[2,108],74:[2,108],75:[2,108],79:[2,108],83:108,85:[2,108],86:[1,109],87:[2,108],92:[2,108],94:[2,108],103:[2,108],105:[2,108],106:[2,108],107:[2,108],111:[2,108],119:[2,108],127:[2,108],129:[2,108],130:[2,108],133:[2,108],134:[2,108],135:[2,108],136:[2,108],137:[2,108],138:[2,108]},{6:[2,58],26:[2,58],28:113,29:[1,75],45:114,50:110,51:[2,58],56:[2,58],57:111,58:112,60:115,61:116,77:[1,72],90:[1,117],91:[1,118]},{5:119,26:[1,5]},{8:120,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:121,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:122,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{13:124,15:125,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:126,45:65,60:49,61:50,63:123,65:26,66:27,67:28,77:[1,72],84:[1,30],89:[1,60],90:[1,61],91:[1,59],102:[1,58]},{13:124,15:125,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:126,45:65,60:49,61:50,63:127,65:26,66:27,67:28,77:[1,72],84:[1,30],89:[1,60],90:[1,61],91:[1,59],102:[1,58]},{1:[2,75],6:[2,75],26:[2,75],27:[2,75],41:[2,75],51:[2,75],56:[2,75],59:[2,75],68:[2,75],69:[2,75],70:[2,75],72:[2,75],74:[2,75],75:[2,75],79:[2,75],81:[1,131],85:[2,75],86:[2,75],87:[2,75],92:[2,75],94:[2,75],103:[2,75],105:[2,75],106:[2,75],107:[2,75],111:[2,75],119:[2,75],127:[2,75],129:[2,75],130:[2,75],131:[1,128],132:[1,129],133:[2,75],134:[2,75],135:[2,75],136:[2,75],137:[2,75],138:[2,75],139:[1,130]},{1:[2,183],6:[2,183],26:[2,183],27:[2,183],51:[2,183],56:[2,183],59:[2,183],74:[2,183],79:[2,183],87:[2,183],92:[2,183],94:[2,183],103:[2,183],105:[2,183],106:[2,183],107:[2,183],111:[2,183],119:[2,183],122:[1,132],127:[2,183],129:[2,183],130:[2,183],133:[2,183],134:[2,183],135:[2,183],136:[2,183],137:[2,183],138:[2,183]},{5:133,26:[1,5]},{5:134,26:[1,5]},{1:[2,150],6:[2,150],26:[2,150],27:[2,150],51:[2,150],56:[2,150],59:[2,150],74:[2,150],79:[2,150],87:[2,150],92:[2,150],94:[2,150],103:[2,150],105:[2,150],106:[2,150],107:[2,150],111:[2,150],119:[2,150],127:[2,150],129:[2,150],130:[2,150],133:[2,150],134:[2,150],135:[2,150],136:[2,150],137:[2,150],138:[2,150]},{5:135,26:[1,5]},{8:136,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,137],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,98],5:138,6:[2,98],13:124,15:125,26:[1,5],27:[2,98],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:126,45:65,51:[2,98],56:[2,98],59:[2,98],60:49,61:50,63:140,65:26,66:27,67:28,74:[2,98],77:[1,72],79:[2,98],81:[1,139],84:[1,30],87:[2,98],89:[1,60],90:[1,61],91:[1,59],92:[2,98],94:[2,98],102:[1,58],103:[2,98],105:[2,98],106:[2,98],107:[2,98],111:[2,98],119:[2,98],127:[2,98],129:[2,98],130:[2,98],133:[2,98],134:[2,98],135:[2,98],136:[2,98],137:[2,98],138:[2,98]},{8:141,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,48],6:[2,48],8:142,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,27:[2,48],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],103:[2,48],104:41,105:[2,48],107:[2,48],108:42,109:[1,69],110:43,111:[2,48],112:71,120:[1,44],125:39,126:[1,66],127:[2,48],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,51],6:[2,51],26:[2,51],27:[2,51],56:[2,51],79:[2,51],103:[2,51],105:[2,51],107:[2,51],111:[2,51],127:[2,51]},{1:[2,76],6:[2,76],26:[2,76],27:[2,76],41:[2,76],51:[2,76],56:[2,76],59:[2,76],68:[2,76],69:[2,76],70:[2,76],72:[2,76],74:[2,76],75:[2,76],79:[2,76],85:[2,76],86:[2,76],87:[2,76],92:[2,76],94:[2,76],103:[2,76],105:[2,76],106:[2,76],107:[2,76],111:[2,76],119:[2,76],127:[2,76],129:[2,76],130:[2,76],133:[2,76],134:[2,76],135:[2,76],136:[2,76],137:[2,76],138:[2,76]},{1:[2,77],6:[2,77],26:[2,77],27:[2,77],41:[2,77],51:[2,77],56:[2,77],59:[2,77],68:[2,77],69:[2,77],70:[2,77],72:[2,77],74:[2,77],75:[2,77],79:[2,77],85:[2,77],86:[2,77],87:[2,77],92:[2,77],94:[2,77],103:[2,77],105:[2,77],106:[2,77],107:[2,77],111:[2,77],119:[2,77],127:[2,77],129:[2,77],130:[2,77],133:[2,77],134:[2,77],135:[2,77],136:[2,77],137:[2,77],138:[2,77]},{1:[2,30],6:[2,30],26:[2,30],27:[2,30],51:[2,30],56:[2,30],59:[2,30],68:[2,30],69:[2,30],70:[2,30],72:[2,30],74:[2,30],75:[2,30],79:[2,30],85:[2,30],86:[2,30],87:[2,30],92:[2,30],94:[2,30],103:[2,30],105:[2,30],106:[2,30],107:[2,30],111:[2,30],119:[2,30],127:[2,30],129:[2,30],130:[2,30],133:[2,30],134:[2,30],135:[2,30],136:[2,30],137:[2,30],138:[2,30]},{1:[2,31],6:[2,31],26:[2,31],27:[2,31],51:[2,31],56:[2,31],59:[2,31],68:[2,31],69:[2,31],70:[2,31],72:[2,31],74:[2,31],75:[2,31],79:[2,31],85:[2,31],86:[2,31],87:[2,31],92:[2,31],94:[2,31],103:[2,31],105:[2,31],106:[2,31],107:[2,31],111:[2,31],119:[2,31],127:[2,31],129:[2,31],130:[2,31],133:[2,31],134:[2,31],135:[2,31],136:[2,31],137:[2,31],138:[2,31]},{1:[2,32],6:[2,32],26:[2,32],27:[2,32],51:[2,32],56:[2,32],59:[2,32],68:[2,32],69:[2,32],70:[2,32],72:[2,32],74:[2,32],75:[2,32],79:[2,32],85:[2,32],86:[2,32],87:[2,32],92:[2,32],94:[2,32],103:[2,32],105:[2,32],106:[2,32],107:[2,32],111:[2,32],119:[2,32],127:[2,32],129:[2,32],130:[2,32],133:[2,32],134:[2,32],135:[2,32],136:[2,32],137:[2,32],138:[2,32]},{1:[2,33],6:[2,33],26:[2,33],27:[2,33],51:[2,33],56:[2,33],59:[2,33],68:[2,33],69:[2,33],70:[2,33],72:[2,33],74:[2,33],75:[2,33],79:[2,33],85:[2,33],86:[2,33],87:[2,33],92:[2,33],94:[2,33],103:[2,33],105:[2,33],106:[2,33],107:[2,33],111:[2,33],119:[2,33],127:[2,33],129:[2,33],130:[2,33],133:[2,33],134:[2,33],135:[2,33],136:[2,33],137:[2,33],138:[2,33]},{1:[2,34],6:[2,34],26:[2,34],27:[2,34],51:[2,34],56:[2,34],59:[2,34],68:[2,34],69:[2,34],70:[2,34],72:[2,34],74:[2,34],75:[2,34],79:[2,34],85:[2,34],86:[2,34],87:[2,34],92:[2,34],94:[2,34],103:[2,34],105:[2,34],106:[2,34],107:[2,34],111:[2,34],119:[2,34],127:[2,34],129:[2,34],130:[2,34],133:[2,34],134:[2,34],135:[2,34],136:[2,34],137:[2,34],138:[2,34]},{1:[2,35],6:[2,35],26:[2,35],27:[2,35],51:[2,35],56:[2,35],59:[2,35],68:[2,35],69:[2,35],70:[2,35],72:[2,35],74:[2,35],75:[2,35],79:[2,35],85:[2,35],86:[2,35],87:[2,35],92:[2,35],94:[2,35],103:[2,35],105:[2,35],106:[2,35],107:[2,35],111:[2,35],119:[2,35],127:[2,35],129:[2,35],130:[2,35],133:[2,35],134:[2,35],135:[2,35],136:[2,35],137:[2,35],138:[2,35]},{1:[2,36],6:[2,36],26:[2,36],27:[2,36],51:[2,36],56:[2,36],59:[2,36],68:[2,36],69:[2,36],70:[2,36],72:[2,36],74:[2,36],75:[2,36],79:[2,36],85:[2,36],86:[2,36],87:[2,36],92:[2,36],94:[2,36],103:[2,36],105:[2,36],106:[2,36],107:[2,36],111:[2,36],119:[2,36],127:[2,36],129:[2,36],130:[2,36],133:[2,36],134:[2,36],135:[2,36],136:[2,36],137:[2,36],138:[2,36]},{4:143,7:4,8:6,9:7,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,144],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:145,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,149],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,62:150,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],88:147,89:[1,60],90:[1,61],91:[1,59],92:[1,146],95:148,97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,114],6:[2,114],26:[2,114],27:[2,114],51:[2,114],56:[2,114],59:[2,114],68:[2,114],69:[2,114],70:[2,114],72:[2,114],74:[2,114],75:[2,114],79:[2,114],85:[2,114],86:[2,114],87:[2,114],92:[2,114],94:[2,114],103:[2,114],105:[2,114],106:[2,114],107:[2,114],111:[2,114],119:[2,114],127:[2,114],129:[2,114],130:[2,114],133:[2,114],134:[2,114],135:[2,114],136:[2,114],137:[2,114],138:[2,114]},{1:[2,115],6:[2,115],26:[2,115],27:[2,115],28:151,29:[1,75],51:[2,115],56:[2,115],59:[2,115],68:[2,115],69:[2,115],70:[2,115],72:[2,115],74:[2,115],75:[2,115],79:[2,115],85:[2,115],86:[2,115],87:[2,115],92:[2,115],94:[2,115],103:[2,115],105:[2,115],106:[2,115],107:[2,115],111:[2,115],119:[2,115],127:[2,115],129:[2,115],130:[2,115],133:[2,115],134:[2,115],135:[2,115],136:[2,115],137:[2,115],138:[2,115]},{26:[2,54]},{26:[2,55]},{1:[2,71],6:[2,71],26:[2,71],27:[2,71],41:[2,71],51:[2,71],56:[2,71],59:[2,71],68:[2,71],69:[2,71],70:[2,71],72:[2,71],74:[2,71],75:[2,71],79:[2,71],81:[2,71],85:[2,71],86:[2,71],87:[2,71],92:[2,71],94:[2,71],103:[2,71],105:[2,71],106:[2,71],107:[2,71],111:[2,71],119:[2,71],127:[2,71],129:[2,71],130:[2,71],131:[2,71],132:[2,71],133:[2,71],134:[2,71],135:[2,71],136:[2,71],137:[2,71],138:[2,71],139:[2,71]},{1:[2,74],6:[2,74],26:[2,74],27:[2,74],41:[2,74],51:[2,74],56:[2,74],59:[2,74],68:[2,74],69:[2,74],70:[2,74],72:[2,74],74:[2,74],75:[2,74],79:[2,74],81:[2,74],85:[2,74],86:[2,74],87:[2,74],92:[2,74],94:[2,74],103:[2,74],105:[2,74],106:[2,74],107:[2,74],111:[2,74],119:[2,74],127:[2,74],129:[2,74],130:[2,74],131:[2,74],132:[2,74],133:[2,74],134:[2,74],135:[2,74],136:[2,74],137:[2,74],138:[2,74],139:[2,74]},{8:152,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:153,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:154,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{5:155,8:156,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,5],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{28:161,29:[1,75],45:162,60:163,61:164,66:157,77:[1,72],90:[1,117],91:[1,59],114:158,115:[1,159],116:160},{113:165,117:[1,166],118:[1,167]},{6:[2,93],11:171,26:[2,93],28:172,29:[1,75],30:173,31:[1,73],32:[1,74],42:169,43:170,45:174,48:[1,48],56:[2,93],78:168,79:[2,93],90:[1,117]},{1:[2,28],6:[2,28],26:[2,28],27:[2,28],44:[2,28],51:[2,28],56:[2,28],59:[2,28],68:[2,28],69:[2,28],70:[2,28],72:[2,28],74:[2,28],75:[2,28],79:[2,28],85:[2,28],86:[2,28],87:[2,28],92:[2,28],94:[2,28],103:[2,28],105:[2,28],106:[2,28],107:[2,28],111:[2,28],119:[2,28],127:[2,28],129:[2,28],130:[2,28],133:[2,28],134:[2,28],135:[2,28],136:[2,28],137:[2,28],138:[2,28]},{1:[2,29],6:[2,29],26:[2,29],27:[2,29],44:[2,29],51:[2,29],56:[2,29],59:[2,29],68:[2,29],69:[2,29],70:[2,29],72:[2,29],74:[2,29],75:[2,29],79:[2,29],85:[2,29],86:[2,29],87:[2,29],92:[2,29],94:[2,29],103:[2,29],105:[2,29],106:[2,29],107:[2,29],111:[2,29],119:[2,29],127:[2,29],129:[2,29],130:[2,29],133:[2,29],134:[2,29],135:[2,29],136:[2,29],137:[2,29],138:[2,29]},{1:[2,27],6:[2,27],26:[2,27],27:[2,27],41:[2,27],44:[2,27],51:[2,27],56:[2,27],59:[2,27],68:[2,27],69:[2,27],70:[2,27],72:[2,27],74:[2,27],75:[2,27],79:[2,27],81:[2,27],85:[2,27],86:[2,27],87:[2,27],92:[2,27],94:[2,27],103:[2,27],105:[2,27],106:[2,27],107:[2,27],111:[2,27],117:[2,27],118:[2,27],119:[2,27],127:[2,27],129:[2,27],130:[2,27],131:[2,27],132:[2,27],133:[2,27],134:[2,27],135:[2,27],136:[2,27],137:[2,27],138:[2,27],139:[2,27]},{1:[2,6],6:[2,6],7:175,8:6,9:7,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,27:[2,6],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],103:[2,6],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,3]},{1:[2,25],6:[2,25],26:[2,25],27:[2,25],51:[2,25],56:[2,25],59:[2,25],74:[2,25],79:[2,25],87:[2,25],92:[2,25],94:[2,25],99:[2,25],100:[2,25],103:[2,25],105:[2,25],106:[2,25],107:[2,25],111:[2,25],119:[2,25],122:[2,25],124:[2,25],127:[2,25],129:[2,25],130:[2,25],133:[2,25],134:[2,25],135:[2,25],136:[2,25],137:[2,25],138:[2,25]},{6:[1,76],27:[1,176]},{1:[2,194],6:[2,194],26:[2,194],27:[2,194],51:[2,194],56:[2,194],59:[2,194],74:[2,194],79:[2,194],87:[2,194],92:[2,194],94:[2,194],103:[2,194],105:[2,194],106:[2,194],107:[2,194],111:[2,194],119:[2,194],127:[2,194],129:[2,194],130:[2,194],133:[2,194],134:[2,194],135:[2,194],136:[2,194],137:[2,194],138:[2,194]},{8:177,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:178,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:179,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:180,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:181,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:182,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:183,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:184,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,149],6:[2,149],26:[2,149],27:[2,149],51:[2,149],56:[2,149],59:[2,149],74:[2,149],79:[2,149],87:[2,149],92:[2,149],94:[2,149],103:[2,149],105:[2,149],106:[2,149],107:[2,149],111:[2,149],119:[2,149],127:[2,149],129:[2,149],130:[2,149],133:[2,149],134:[2,149],135:[2,149],136:[2,149],137:[2,149],138:[2,149]},{1:[2,154],6:[2,154],26:[2,154],27:[2,154],51:[2,154],56:[2,154],59:[2,154],74:[2,154],79:[2,154],87:[2,154],92:[2,154],94:[2,154],103:[2,154],105:[2,154],106:[2,154],107:[2,154],111:[2,154],119:[2,154],127:[2,154],129:[2,154],130:[2,154],133:[2,154],134:[2,154],135:[2,154],136:[2,154],137:[2,154],138:[2,154]},{8:185,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,148],6:[2,148],26:[2,148],27:[2,148],51:[2,148],56:[2,148],59:[2,148],74:[2,148],79:[2,148],87:[2,148],92:[2,148],94:[2,148],103:[2,148],105:[2,148],106:[2,148],107:[2,148],111:[2,148],119:[2,148],127:[2,148],129:[2,148],130:[2,148],133:[2,148],134:[2,148],135:[2,148],136:[2,148],137:[2,148],138:[2,148]},{1:[2,153],6:[2,153],26:[2,153],27:[2,153],51:[2,153],56:[2,153],59:[2,153],74:[2,153],79:[2,153],87:[2,153],92:[2,153],94:[2,153],103:[2,153],105:[2,153],106:[2,153],107:[2,153],111:[2,153],119:[2,153],127:[2,153],129:[2,153],130:[2,153],133:[2,153],134:[2,153],135:[2,153],136:[2,153],137:[2,153],138:[2,153]},{83:186,86:[1,109]},{1:[2,72],6:[2,72],26:[2,72],27:[2,72],41:[2,72],51:[2,72],56:[2,72],59:[2,72],68:[2,72],69:[2,72],70:[2,72],72:[2,72],74:[2,72],75:[2,72],79:[2,72],81:[2,72],85:[2,72],86:[2,72],87:[2,72],92:[2,72],94:[2,72],103:[2,72],105:[2,72],106:[2,72],107:[2,72],111:[2,72],119:[2,72],127:[2,72],129:[2,72],130:[2,72],131:[2,72],132:[2,72],133:[2,72],134:[2,72],135:[2,72],136:[2,72],137:[2,72],138:[2,72],139:[2,72]},{86:[2,111]},{28:187,29:[1,75]},{28:188,29:[1,75]},{1:[2,86],6:[2,86],26:[2,86],27:[2,86],28:189,29:[1,75],41:[2,86],51:[2,86],56:[2,86],59:[2,86],68:[2,86],69:[2,86],70:[2,86],72:[2,86],74:[2,86],75:[2,86],79:[2,86],81:[2,86],85:[2,86],86:[2,86],87:[2,86],92:[2,86],94:[2,86],103:[2,86],105:[2,86],106:[2,86],107:[2,86],111:[2,86],119:[2,86],127:[2,86],129:[2,86],130:[2,86],131:[2,86],132:[2,86],133:[2,86],134:[2,86],135:[2,86],136:[2,86],137:[2,86],138:[2,86],139:[2,86]},{1:[2,87],6:[2,87],26:[2,87],27:[2,87],41:[2,87],51:[2,87],56:[2,87],59:[2,87],68:[2,87],69:[2,87],70:[2,87],72:[2,87],74:[2,87],75:[2,87],79:[2,87],81:[2,87],85:[2,87],86:[2,87],87:[2,87],92:[2,87],94:[2,87],103:[2,87],105:[2,87],106:[2,87],107:[2,87],111:[2,87],119:[2,87],127:[2,87],129:[2,87],130:[2,87],131:[2,87],132:[2,87],133:[2,87],134:[2,87],135:[2,87],136:[2,87],137:[2,87],138:[2,87],139:[2,87]},{8:191,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],59:[1,195],60:49,61:50,63:38,65:26,66:27,67:28,73:190,76:192,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],93:193,94:[1,194],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{71:196,72:[1,101],75:[1,102]},{83:197,86:[1,109]},{1:[2,73],6:[2,73],26:[2,73],27:[2,73],41:[2,73],51:[2,73],56:[2,73],59:[2,73],68:[2,73],69:[2,73],70:[2,73],72:[2,73],74:[2,73],75:[2,73],79:[2,73],81:[2,73],85:[2,73],86:[2,73],87:[2,73],92:[2,73],94:[2,73],103:[2,73],105:[2,73],106:[2,73],107:[2,73],111:[2,73],119:[2,73],127:[2,73],129:[2,73],130:[2,73],131:[2,73],132:[2,73],133:[2,73],134:[2,73],135:[2,73],136:[2,73],137:[2,73],138:[2,73],139:[2,73]},{6:[1,199],8:198,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,200],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,49],6:[2,49],26:[2,49],27:[2,49],51:[2,49],56:[2,49],59:[2,49],74:[2,49],79:[2,49],87:[2,49],92:[2,49],94:[2,49],103:[2,49],104:89,105:[2,49],106:[2,49],107:[2,49],110:90,111:[2,49],112:71,119:[2,49],127:[2,49],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{104:92,105:[1,67],107:[1,68],110:93,111:[1,70],112:71,127:[1,91]},{1:[2,109],6:[2,109],26:[2,109],27:[2,109],51:[2,109],56:[2,109],59:[2,109],68:[2,109],69:[2,109],70:[2,109],72:[2,109],74:[2,109],75:[2,109],79:[2,109],85:[2,109],86:[2,109],87:[2,109],92:[2,109],94:[2,109],103:[2,109],105:[2,109],106:[2,109],107:[2,109],111:[2,109],119:[2,109],127:[2,109],129:[2,109],130:[2,109],133:[2,109],134:[2,109],135:[2,109],136:[2,109],137:[2,109],138:[2,109]},{8:203,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,149],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,62:150,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],87:[1,201],88:202,89:[1,60],90:[1,61],91:[1,59],95:148,97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{6:[2,56],26:[2,56],51:[1,204],55:206,56:[1,205]},{6:[2,59],26:[2,59],27:[2,59],51:[2,59],56:[2,59]},{6:[2,63],26:[2,63],27:[2,63],41:[1,208],51:[2,63],56:[2,63],59:[1,207]},{6:[2,66],26:[2,66],27:[2,66],41:[2,66],51:[2,66],56:[2,66],59:[2,66]},{6:[2,67],26:[2,67],27:[2,67],41:[2,67],51:[2,67],56:[2,67],59:[2,67]},{6:[2,68],26:[2,68],27:[2,68],41:[2,68],51:[2,68],56:[2,68],59:[2,68]},{6:[2,69],26:[2,69],27:[2,69],41:[2,69],51:[2,69],56:[2,69],59:[2,69]},{28:151,29:[1,75]},{8:203,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,149],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,62:150,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],88:147,89:[1,60],90:[1,61],91:[1,59],92:[1,146],95:148,97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,53],6:[2,53],26:[2,53],27:[2,53],51:[2,53],56:[2,53],59:[2,53],74:[2,53],79:[2,53],87:[2,53],92:[2,53],94:[2,53],103:[2,53],105:[2,53],106:[2,53],107:[2,53],111:[2,53],119:[2,53],127:[2,53],129:[2,53],130:[2,53],133:[2,53],134:[2,53],135:[2,53],136:[2,53],137:[2,53],138:[2,53]},{1:[2,187],6:[2,187],26:[2,187],27:[2,187],51:[2,187],56:[2,187],59:[2,187],74:[2,187],79:[2,187],87:[2,187],92:[2,187],94:[2,187],103:[2,187],104:89,105:[2,187],106:[2,187],107:[2,187],110:90,111:[2,187],112:71,119:[2,187],127:[2,187],129:[2,187],130:[2,187],133:[1,80],134:[2,187],135:[2,187],136:[2,187],137:[2,187],138:[2,187]},{1:[2,188],6:[2,188],26:[2,188],27:[2,188],51:[2,188],56:[2,188],59:[2,188],74:[2,188],79:[2,188],87:[2,188],92:[2,188],94:[2,188],103:[2,188],104:89,105:[2,188],106:[2,188],107:[2,188],110:90,111:[2,188],112:71,119:[2,188],127:[2,188],129:[2,188],130:[2,188],133:[1,80],134:[2,188],135:[2,188],136:[2,188],137:[2,188],138:[2,188]},{1:[2,189],6:[2,189],26:[2,189],27:[2,189],51:[2,189],56:[2,189],59:[2,189],74:[2,189],79:[2,189],87:[2,189],92:[2,189],94:[2,189],103:[2,189],104:89,105:[2,189],106:[2,189],107:[2,189],110:90,111:[2,189],112:71,119:[2,189],127:[2,189],129:[2,189],130:[2,189],133:[1,80],134:[2,189],135:[2,189],136:[2,189],137:[2,189],138:[2,189]},{1:[2,190],6:[2,190],26:[2,190],27:[2,190],51:[2,190],56:[2,190],59:[2,190],68:[2,75],69:[2,75],70:[2,75],72:[2,75],74:[2,190],75:[2,75],79:[2,190],85:[2,75],86:[2,75],87:[2,190],92:[2,190],94:[2,190],103:[2,190],105:[2,190],106:[2,190],107:[2,190],111:[2,190],119:[2,190],127:[2,190],129:[2,190],130:[2,190],133:[2,190],134:[2,190],135:[2,190],136:[2,190],137:[2,190],138:[2,190]},{64:95,68:[1,97],69:[1,98],70:[1,99],71:100,72:[1,101],75:[1,102],82:94,85:[1,96],86:[2,110]},{64:104,68:[1,97],69:[1,98],70:[1,99],71:100,72:[1,101],75:[1,102],82:103,85:[1,96],86:[2,110]},{68:[2,78],69:[2,78],70:[2,78],72:[2,78],75:[2,78],85:[2,78],86:[2,78]},{1:[2,191],6:[2,191],26:[2,191],27:[2,191],51:[2,191],56:[2,191],59:[2,191],68:[2,75],69:[2,75],70:[2,75],72:[2,75],74:[2,191],75:[2,75],79:[2,191],85:[2,75],86:[2,75],87:[2,191],92:[2,191],94:[2,191],103:[2,191],105:[2,191],106:[2,191],107:[2,191],111:[2,191],119:[2,191],127:[2,191],129:[2,191],130:[2,191],133:[2,191],134:[2,191],135:[2,191],136:[2,191],137:[2,191],138:[2,191]},{1:[2,192],6:[2,192],26:[2,192],27:[2,192],51:[2,192],56:[2,192],59:[2,192],74:[2,192],79:[2,192],87:[2,192],92:[2,192],94:[2,192],103:[2,192],105:[2,192],106:[2,192],107:[2,192],111:[2,192],119:[2,192],127:[2,192],129:[2,192],130:[2,192],133:[2,192],134:[2,192],135:[2,192],136:[2,192],137:[2,192],138:[2,192]},{1:[2,193],6:[2,193],26:[2,193],27:[2,193],51:[2,193],56:[2,193],59:[2,193],74:[2,193],79:[2,193],87:[2,193],92:[2,193],94:[2,193],103:[2,193],105:[2,193],106:[2,193],107:[2,193],111:[2,193],119:[2,193],127:[2,193],129:[2,193],130:[2,193],133:[2,193],134:[2,193],135:[2,193],136:[2,193],137:[2,193],138:[2,193]},{8:209,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,210],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:211,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{5:212,26:[1,5],126:[1,213]},{1:[2,135],6:[2,135],26:[2,135],27:[2,135],51:[2,135],56:[2,135],59:[2,135],74:[2,135],79:[2,135],87:[2,135],92:[2,135],94:[2,135],98:214,99:[1,215],100:[1,216],103:[2,135],105:[2,135],106:[2,135],107:[2,135],111:[2,135],119:[2,135],127:[2,135],129:[2,135],130:[2,135],133:[2,135],134:[2,135],135:[2,135],136:[2,135],137:[2,135],138:[2,135]},{1:[2,147],6:[2,147],26:[2,147],27:[2,147],51:[2,147],56:[2,147],59:[2,147],74:[2,147],79:[2,147],87:[2,147],92:[2,147],94:[2,147],103:[2,147],105:[2,147],106:[2,147],107:[2,147],111:[2,147],119:[2,147],127:[2,147],129:[2,147],130:[2,147],133:[2,147],134:[2,147],135:[2,147],136:[2,147],137:[2,147],138:[2,147]},{1:[2,155],6:[2,155],26:[2,155],27:[2,155],51:[2,155],56:[2,155],59:[2,155],74:[2,155],79:[2,155],87:[2,155],92:[2,155],94:[2,155],103:[2,155],105:[2,155],106:[2,155],107:[2,155],111:[2,155],119:[2,155],127:[2,155],129:[2,155],130:[2,155],133:[2,155],134:[2,155],135:[2,155],136:[2,155],137:[2,155],138:[2,155]},{26:[1,217],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{121:218,123:219,124:[1,220]},{1:[2,99],6:[2,99],26:[2,99],27:[2,99],51:[2,99],56:[2,99],59:[2,99],74:[2,99],79:[2,99],87:[2,99],92:[2,99],94:[2,99],103:[2,99],105:[2,99],106:[2,99],107:[2,99],111:[2,99],119:[2,99],127:[2,99],129:[2,99],130:[2,99],133:[2,99],134:[2,99],135:[2,99],136:[2,99],137:[2,99],138:[2,99]},{8:221,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,102],5:222,6:[2,102],26:[1,5],27:[2,102],51:[2,102],56:[2,102],59:[2,102],68:[2,75],69:[2,75],70:[2,75],72:[2,75],74:[2,102],75:[2,75],79:[2,102],81:[1,223],85:[2,75],86:[2,75],87:[2,102],92:[2,102],94:[2,102],103:[2,102],105:[2,102],106:[2,102],107:[2,102],111:[2,102],119:[2,102],127:[2,102],129:[2,102],130:[2,102],133:[2,102],134:[2,102],135:[2,102],136:[2,102],137:[2,102],138:[2,102]},{1:[2,140],6:[2,140],26:[2,140],27:[2,140],51:[2,140],56:[2,140],59:[2,140],74:[2,140],79:[2,140],87:[2,140],92:[2,140],94:[2,140],103:[2,140],104:89,105:[2,140],106:[2,140],107:[2,140],110:90,111:[2,140],112:71,119:[2,140],127:[2,140],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,47],6:[2,47],27:[2,47],103:[2,47],104:89,105:[2,47],107:[2,47],110:90,111:[2,47],112:71,127:[2,47],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{6:[1,76],103:[1,224]},{4:225,7:4,8:6,9:7,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{6:[2,131],26:[2,131],56:[2,131],59:[1,227],92:[2,131],93:226,94:[1,194],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,117],6:[2,117],26:[2,117],27:[2,117],41:[2,117],51:[2,117],56:[2,117],59:[2,117],68:[2,117],69:[2,117],70:[2,117],72:[2,117],74:[2,117],75:[2,117],79:[2,117],85:[2,117],86:[2,117],87:[2,117],92:[2,117],94:[2,117],103:[2,117],105:[2,117],106:[2,117],107:[2,117],111:[2,117],117:[2,117],118:[2,117],119:[2,117],127:[2,117],129:[2,117],130:[2,117],133:[2,117],134:[2,117],135:[2,117],136:[2,117],137:[2,117],138:[2,117]},{6:[2,56],26:[2,56],55:228,56:[1,229],92:[2,56]},{6:[2,126],26:[2,126],27:[2,126],56:[2,126],87:[2,126],92:[2,126]},{8:203,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,149],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,62:150,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],88:230,89:[1,60],90:[1,61],91:[1,59],95:148,97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{6:[2,132],26:[2,132],27:[2,132],56:[2,132],87:[2,132],92:[2,132]},{1:[2,116],6:[2,116],26:[2,116],27:[2,116],41:[2,116],44:[2,116],51:[2,116],56:[2,116],59:[2,116],68:[2,116],69:[2,116],70:[2,116],72:[2,116],74:[2,116],75:[2,116],79:[2,116],81:[2,116],85:[2,116],86:[2,116],87:[2,116],92:[2,116],94:[2,116],103:[2,116],105:[2,116],106:[2,116],107:[2,116],111:[2,116],117:[2,116],118:[2,116],119:[2,116],127:[2,116],129:[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]},{5:231,26:[1,5],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,143],6:[2,143],26:[2,143],27:[2,143],51:[2,143],56:[2,143],59:[2,143],74:[2,143],79:[2,143],87:[2,143],92:[2,143],94:[2,143],103:[2,143],104:89,105:[1,67],106:[1,232],107:[1,68],110:90,111:[1,70],112:71,119:[2,143],127:[2,143],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,145],6:[2,145],26:[2,145],27:[2,145],51:[2,145],56:[2,145],59:[2,145],74:[2,145],79:[2,145],87:[2,145],92:[2,145],94:[2,145],103:[2,145],104:89,105:[1,67],106:[1,233],107:[1,68],110:90,111:[1,70],112:71,119:[2,145],127:[2,145],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,151],6:[2,151],26:[2,151],27:[2,151],51:[2,151],56:[2,151],59:[2,151],74:[2,151],79:[2,151],87:[2,151],92:[2,151],94:[2,151],103:[2,151],105:[2,151],106:[2,151],107:[2,151],111:[2,151],119:[2,151],127:[2,151],129:[2,151],130:[2,151],133:[2,151],134:[2,151],135:[2,151],136:[2,151],137:[2,151],138:[2,151]},{1:[2,152],6:[2,152],26:[2,152],27:[2,152],51:[2,152],56:[2,152],59:[2,152],74:[2,152],79:[2,152],87:[2,152],92:[2,152],94:[2,152],103:[2,152],104:89,105:[1,67],106:[2,152],107:[1,68],110:90,111:[1,70],112:71,119:[2,152],127:[2,152],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,156],6:[2,156],26:[2,156],27:[2,156],51:[2,156],56:[2,156],59:[2,156],74:[2,156],79:[2,156],87:[2,156],92:[2,156],94:[2,156],103:[2,156],105:[2,156],106:[2,156],107:[2,156],111:[2,156],119:[2,156],127:[2,156],129:[2,156],130:[2,156],133:[2,156],134:[2,156],135:[2,156],136:[2,156],137:[2,156],138:[2,156]},{117:[2,158],118:[2,158]},{28:161,29:[1,75],45:162,60:163,61:164,77:[1,72],90:[1,117],91:[1,118],114:234,116:160},{56:[1,235],117:[2,164],118:[2,164]},{56:[2,160],117:[2,160],118:[2,160]},{56:[2,161],117:[2,161],118:[2,161]},{56:[2,162],117:[2,162],118:[2,162]},{56:[2,163],117:[2,163],118:[2,163]},{1:[2,157],6:[2,157],26:[2,157],27:[2,157],51:[2,157],56:[2,157],59:[2,157],74:[2,157],79:[2,157],87:[2,157],92:[2,157],94:[2,157],103:[2,157],105:[2,157],106:[2,157],107:[2,157],111:[2,157],119:[2,157],127:[2,157],129:[2,157],130:[2,157],133:[2,157],134:[2,157],135:[2,157],136:[2,157],137:[2,157],138:[2,157]},{8:236,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:237,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{6:[2,56],26:[2,56],55:238,56:[1,239],79:[2,56]},{6:[2,94],26:[2,94],27:[2,94],56:[2,94],79:[2,94]},{6:[2,40],26:[2,40],27:[2,40],44:[1,240],56:[2,40],79:[2,40]},{6:[2,43],26:[2,43],27:[2,43],56:[2,43],79:[2,43]},{6:[2,44],26:[2,44],27:[2,44],44:[2,44],56:[2,44],79:[2,44]},{6:[2,45],26:[2,45],27:[2,45],44:[2,45],56:[2,45],79:[2,45]},{6:[2,46],26:[2,46],27:[2,46],44:[2,46],56:[2,46],79:[2,46]},{1:[2,5],6:[2,5],27:[2,5],103:[2,5]},{1:[2,26],6:[2,26],26:[2,26],27:[2,26],51:[2,26],56:[2,26],59:[2,26],74:[2,26],79:[2,26],87:[2,26],92:[2,26],94:[2,26],99:[2,26],100:[2,26],103:[2,26],105:[2,26],106:[2,26],107:[2,26],111:[2,26],119:[2,26],122:[2,26],124:[2,26],127:[2,26],129:[2,26],130:[2,26],133:[2,26],134:[2,26],135:[2,26],136:[2,26],137:[2,26],138:[2,26]},{1:[2,195],6:[2,195],26:[2,195],27:[2,195],51:[2,195],56:[2,195],59:[2,195],74:[2,195],79:[2,195],87:[2,195],92:[2,195],94:[2,195],103:[2,195],104:89,105:[2,195],106:[2,195],107:[2,195],110:90,111:[2,195],112:71,119:[2,195],127:[2,195],129:[2,195],130:[2,195],133:[1,80],134:[1,83],135:[2,195],136:[2,195],137:[2,195],138:[2,195]},{1:[2,196],6:[2,196],26:[2,196],27:[2,196],51:[2,196],56:[2,196],59:[2,196],74:[2,196],79:[2,196],87:[2,196],92:[2,196],94:[2,196],103:[2,196],104:89,105:[2,196],106:[2,196],107:[2,196],110:90,111:[2,196],112:71,119:[2,196],127:[2,196],129:[2,196],130:[2,196],133:[1,80],134:[1,83],135:[2,196],136:[2,196],137:[2,196],138:[2,196]},{1:[2,197],6:[2,197],26:[2,197],27:[2,197],51:[2,197],56:[2,197],59:[2,197],74:[2,197],79:[2,197],87:[2,197],92:[2,197],94:[2,197],103:[2,197],104:89,105:[2,197],106:[2,197],107:[2,197],110:90,111:[2,197],112:71,119:[2,197],127:[2,197],129:[2,197],130:[2,197],133:[1,80],134:[2,197],135:[2,197],136:[2,197],137:[2,197],138:[2,197]},{1:[2,198],6:[2,198],26:[2,198],27:[2,198],51:[2,198],56:[2,198],59:[2,198],74:[2,198],79:[2,198],87:[2,198],92:[2,198],94:[2,198],103:[2,198],104:89,105:[2,198],106:[2,198],107:[2,198],110:90,111:[2,198],112:71,119:[2,198],127:[2,198],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[2,198],136:[2,198],137:[2,198],138:[2,198]},{1:[2,199],6:[2,199],26:[2,199],27:[2,199],51:[2,199],56:[2,199],59:[2,199],74:[2,199],79:[2,199],87:[2,199],92:[2,199],94:[2,199],103:[2,199],104:89,105:[2,199],106:[2,199],107:[2,199],110:90,111:[2,199],112:71,119:[2,199],127:[2,199],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[2,199],137:[2,199],138:[1,87]},{1:[2,200],6:[2,200],26:[2,200],27:[2,200],51:[2,200],56:[2,200],59:[2,200],74:[2,200],79:[2,200],87:[2,200],92:[2,200],94:[2,200],103:[2,200],104:89,105:[2,200],106:[2,200],107:[2,200],110:90,111:[2,200],112:71,119:[2,200],127:[2,200],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[2,200],138:[1,87]},{1:[2,201],6:[2,201],26:[2,201],27:[2,201],51:[2,201],56:[2,201],59:[2,201],74:[2,201],79:[2,201],87:[2,201],92:[2,201],94:[2,201],103:[2,201],104:89,105:[2,201],106:[2,201],107:[2,201],110:90,111:[2,201],112:71,119:[2,201],127:[2,201],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[2,201],137:[2,201],138:[2,201]},{1:[2,186],6:[2,186],26:[2,186],27:[2,186],51:[2,186],56:[2,186],59:[2,186],74:[2,186],79:[2,186],87:[2,186],92:[2,186],94:[2,186],103:[2,186],104:89,105:[1,67],106:[2,186],107:[1,68],110:90,111:[1,70],112:71,119:[2,186],127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,185],6:[2,185],26:[2,185],27:[2,185],51:[2,185],56:[2,185],59:[2,185],74:[2,185],79:[2,185],87:[2,185],92:[2,185],94:[2,185],103:[2,185],104:89,105:[1,67],106:[2,185],107:[1,68],110:90,111:[1,70],112:71,119:[2,185],127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,106],6:[2,106],26:[2,106],27:[2,106],51:[2,106],56:[2,106],59:[2,106],68:[2,106],69:[2,106],70:[2,106],72:[2,106],74:[2,106],75:[2,106],79:[2,106],85:[2,106],86:[2,106],87:[2,106],92:[2,106],94:[2,106],103:[2,106],105:[2,106],106:[2,106],107:[2,106],111:[2,106],119:[2,106],127:[2,106],129:[2,106],130:[2,106],133:[2,106],134:[2,106],135:[2,106],136:[2,106],137:[2,106],138:[2,106]},{1:[2,83],6:[2,83],26:[2,83],27:[2,83],41:[2,83],51:[2,83],56:[2,83],59:[2,83],68:[2,83],69:[2,83],70:[2,83],72:[2,83],74:[2,83],75:[2,83],79:[2,83],81:[2,83],85:[2,83],86:[2,83],87:[2,83],92:[2,83],94:[2,83],103:[2,83],105:[2,83],106:[2,83],107:[2,83],111:[2,83],119:[2,83],127:[2,83],129:[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]},{1:[2,84],6:[2,84],26:[2,84],27:[2,84],41:[2,84],51:[2,84],56:[2,84],59:[2,84],68:[2,84],69:[2,84],70:[2,84],72:[2,84],74:[2,84],75:[2,84],79:[2,84],81:[2,84],85:[2,84],86:[2,84],87:[2,84],92:[2,84],94:[2,84],103:[2,84],105:[2,84],106:[2,84],107:[2,84],111:[2,84],119:[2,84],127:[2,84],129:[2,84],130:[2,84],131:[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]},{1:[2,85],6:[2,85],26:[2,85],27:[2,85],41:[2,85],51:[2,85],56:[2,85],59:[2,85],68:[2,85],69:[2,85],70:[2,85],72:[2,85],74:[2,85],75:[2,85],79:[2,85],81:[2,85],85:[2,85],86:[2,85],87:[2,85],92:[2,85],94:[2,85],103:[2,85],105:[2,85],106:[2,85],107:[2,85],111:[2,85],119:[2,85],127:[2,85],129:[2,85],130:[2,85],131:[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]},{74:[1,241]},{59:[1,195],74:[2,90],93:242,94:[1,194],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{74:[2,91]},{8:243,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,74:[2,125],77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{12:[2,119],29:[2,119],31:[2,119],32:[2,119],34:[2,119],35:[2,119],36:[2,119],37:[2,119],38:[2,119],39:[2,119],46:[2,119],47:[2,119],48:[2,119],49:[2,119],53:[2,119],54:[2,119],74:[2,119],77:[2,119],80:[2,119],84:[2,119],89:[2,119],90:[2,119],91:[2,119],97:[2,119],101:[2,119],102:[2,119],105:[2,119],107:[2,119],109:[2,119],111:[2,119],120:[2,119],126:[2,119],128:[2,119],129:[2,119],130:[2,119],131:[2,119],132:[2,119]},{12:[2,120],29:[2,120],31:[2,120],32:[2,120],34:[2,120],35:[2,120],36:[2,120],37:[2,120],38:[2,120],39:[2,120],46:[2,120],47:[2,120],48:[2,120],49:[2,120],53:[2,120],54:[2,120],74:[2,120],77:[2,120],80:[2,120],84:[2,120],89:[2,120],90:[2,120],91:[2,120],97:[2,120],101:[2,120],102:[2,120],105:[2,120],107:[2,120],109:[2,120],111:[2,120],120:[2,120],126:[2,120],128:[2,120],129:[2,120],130:[2,120],131:[2,120],132:[2,120]},{1:[2,89],6:[2,89],26:[2,89],27:[2,89],41:[2,89],51:[2,89],56:[2,89],59:[2,89],68:[2,89],69:[2,89],70:[2,89],72:[2,89],74:[2,89],75:[2,89],79:[2,89],81:[2,89],85:[2,89],86:[2,89],87:[2,89],92:[2,89],94:[2,89],103:[2,89],105:[2,89],106:[2,89],107:[2,89],111:[2,89],119:[2,89],127:[2,89],129:[2,89],130:[2,89],131:[2,89],132:[2,89],133:[2,89],134:[2,89],135:[2,89],136:[2,89],137:[2,89],138:[2,89],139:[2,89]},{1:[2,107],6:[2,107],26:[2,107],27:[2,107],51:[2,107],56:[2,107],59:[2,107],68:[2,107],69:[2,107],70:[2,107],72:[2,107],74:[2,107],75:[2,107],79:[2,107],85:[2,107],86:[2,107],87:[2,107],92:[2,107],94:[2,107],103:[2,107],105:[2,107],106:[2,107],107:[2,107],111:[2,107],119:[2,107],127:[2,107],129:[2,107],130:[2,107],133:[2,107],134:[2,107],135:[2,107],136:[2,107],137:[2,107],138:[2,107]},{1:[2,37],6:[2,37],26:[2,37],27:[2,37],51:[2,37],56:[2,37],59:[2,37],74:[2,37],79:[2,37],87:[2,37],92:[2,37],94:[2,37],103:[2,37],104:89,105:[2,37],106:[2,37],107:[2,37],110:90,111:[2,37],112:71,119:[2,37],127:[2,37],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{8:244,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:245,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,112],6:[2,112],26:[2,112],27:[2,112],51:[2,112],56:[2,112],59:[2,112],68:[2,112],69:[2,112],70:[2,112],72:[2,112],74:[2,112],75:[2,112],79:[2,112],85:[2,112],86:[2,112],87:[2,112],92:[2,112],94:[2,112],103:[2,112],105:[2,112],106:[2,112],107:[2,112],111:[2,112],119:[2,112],127:[2,112],129:[2,112],130:[2,112],133:[2,112],134:[2,112],135:[2,112],136:[2,112],137:[2,112],138:[2,112]},{6:[2,56],26:[2,56],55:246,56:[1,229],87:[2,56]},{6:[2,131],26:[2,131],27:[2,131],56:[2,131],59:[1,247],87:[2,131],92:[2,131],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{52:248,53:[1,62],54:[1,63]},{6:[2,57],26:[2,57],27:[2,57],28:113,29:[1,75],45:114,57:249,58:112,60:115,61:116,77:[1,72],90:[1,117],91:[1,118]},{6:[1,250],26:[1,251]},{6:[2,64],26:[2,64],27:[2,64],51:[2,64],56:[2,64]},{8:252,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,202],6:[2,202],26:[2,202],27:[2,202],51:[2,202],56:[2,202],59:[2,202],74:[2,202],79:[2,202],87:[2,202],92:[2,202],94:[2,202],103:[2,202],104:89,105:[2,202],106:[2,202],107:[2,202],110:90,111:[2,202],112:71,119:[2,202],127:[2,202],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{8:253,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,204],6:[2,204],26:[2,204],27:[2,204],51:[2,204],56:[2,204],59:[2,204],74:[2,204],79:[2,204],87:[2,204],92:[2,204],94:[2,204],103:[2,204],104:89,105:[2,204],106:[2,204],107:[2,204],110:90,111:[2,204],112:71,119:[2,204],127:[2,204],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,184],6:[2,184],26:[2,184],27:[2,184],51:[2,184],56:[2,184],59:[2,184],74:[2,184],79:[2,184],87:[2,184],92:[2,184],94:[2,184],103:[2,184],105:[2,184],106:[2,184],107:[2,184],111:[2,184],119:[2,184],127:[2,184],129:[2,184],130:[2,184],133:[2,184],134:[2,184],135:[2,184],136:[2,184],137:[2,184],138:[2,184]},{8:254,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,136],6:[2,136],26:[2,136],27:[2,136],51:[2,136],56:[2,136],59:[2,136],74:[2,136],79:[2,136],87:[2,136],92:[2,136],94:[2,136],99:[1,255],103:[2,136],105:[2,136],106:[2,136],107:[2,136],111:[2,136],119:[2,136],127:[2,136],129:[2,136],130:[2,136],133:[2,136],134:[2,136],135:[2,136],136:[2,136],137:[2,136],138:[2,136]},{5:256,26:[1,5]},{28:257,29:[1,75]},{121:258,123:219,124:[1,220]},{27:[1,259],122:[1,260],123:261,124:[1,220]},{27:[2,177],122:[2,177],124:[2,177]},{8:263,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],96:262,97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,100],5:264,6:[2,100],26:[1,5],27:[2,100],51:[2,100],56:[2,100],59:[2,100],74:[2,100],79:[2,100],87:[2,100],92:[2,100],94:[2,100],103:[2,100],104:89,105:[1,67],106:[2,100],107:[1,68],110:90,111:[1,70],112:71,119:[2,100],127:[2,100],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,103],6:[2,103],26:[2,103],27:[2,103],51:[2,103],56:[2,103],59:[2,103],74:[2,103],79:[2,103],87:[2,103],92:[2,103],94:[2,103],103:[2,103],105:[2,103],106:[2,103],107:[2,103],111:[2,103],119:[2,103],127:[2,103],129:[2,103],130:[2,103],133:[2,103],134:[2,103],135:[2,103],136:[2,103],137:[2,103],138:[2,103]},{8:265,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,141],6:[2,141],26:[2,141],27:[2,141],51:[2,141],56:[2,141],59:[2,141],68:[2,141],69:[2,141],70:[2,141],72:[2,141],74:[2,141],75:[2,141],79:[2,141],85:[2,141],86:[2,141],87:[2,141],92:[2,141],94:[2,141],103:[2,141],105:[2,141],106:[2,141],107:[2,141],111:[2,141],119:[2,141],127:[2,141],129:[2,141],130:[2,141],133:[2,141],134:[2,141],135:[2,141],136:[2,141],137:[2,141],138:[2,141]},{6:[1,76],27:[1,266]},{8:267,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{6:[2,70],12:[2,120],26:[2,70],29:[2,120],31:[2,120],32:[2,120],34:[2,120],35:[2,120],36:[2,120],37:[2,120],38:[2,120],39:[2,120],46:[2,120],47:[2,120],48:[2,120],49:[2,120],53:[2,120],54:[2,120],56:[2,70],77:[2,120],80:[2,120],84:[2,120],89:[2,120],90:[2,120],91:[2,120],92:[2,70],97:[2,120],101:[2,120],102:[2,120],105:[2,120],107:[2,120],109:[2,120],111:[2,120],120:[2,120],126:[2,120],128:[2,120],129:[2,120],130:[2,120],131:[2,120],132:[2,120]},{6:[1,269],26:[1,270],92:[1,268]},{6:[2,57],8:203,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[2,57],27:[2,57],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,62:150,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],87:[2,57],89:[1,60],90:[1,61],91:[1,59],92:[2,57],95:271,97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{6:[2,56],26:[2,56],27:[2,56],55:272,56:[1,229]},{1:[2,181],6:[2,181],26:[2,181],27:[2,181],51:[2,181],56:[2,181],59:[2,181],74:[2,181],79:[2,181],87:[2,181],92:[2,181],94:[2,181],103:[2,181],105:[2,181],106:[2,181],107:[2,181],111:[2,181],119:[2,181],122:[2,181],127:[2,181],129:[2,181],130:[2,181],133:[2,181],134:[2,181],135:[2,181],136:[2,181],137:[2,181],138:[2,181]},{8:273,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:274,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{117:[2,159],118:[2,159]},{28:161,29:[1,75],45:162,60:163,61:164,77:[1,72],90:[1,117],91:[1,118],116:275},{1:[2,166],6:[2,166],26:[2,166],27:[2,166],51:[2,166],56:[2,166],59:[2,166],74:[2,166],79:[2,166],87:[2,166],92:[2,166],94:[2,166],103:[2,166],104:89,105:[2,166],106:[1,276],107:[2,166],110:90,111:[2,166],112:71,119:[1,277],127:[2,166],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,167],6:[2,167],26:[2,167],27:[2,167],51:[2,167],56:[2,167],59:[2,167],74:[2,167],79:[2,167],87:[2,167],92:[2,167],94:[2,167],103:[2,167],104:89,105:[2,167],106:[1,278],107:[2,167],110:90,111:[2,167],112:71,119:[2,167],127:[2,167],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{6:[1,280],26:[1,281],79:[1,279]},{6:[2,57],11:171,26:[2,57],27:[2,57],28:172,29:[1,75],30:173,31:[1,73],32:[1,74],42:282,43:170,45:174,48:[1,48],79:[2,57],90:[1,117]},{8:283,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,284],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,88],6:[2,88],26:[2,88],27:[2,88],41:[2,88],51:[2,88],56:[2,88],59:[2,88],68:[2,88],69:[2,88],70:[2,88],72:[2,88],74:[2,88],75:[2,88],79:[2,88],81:[2,88],85:[2,88],86:[2,88],87:[2,88],92:[2,88],94:[2,88],103:[2,88],105:[2,88],106:[2,88],107:[2,88],111:[2,88],119:[2,88],127:[2,88],129:[2,88],130:[2,88],131:[2,88],132:[2,88],133:[2,88],134:[2,88],135:[2,88],136:[2,88],137:[2,88],138:[2,88],139:[2,88]},{8:285,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,74:[2,123],77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{74:[2,124],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,38],6:[2,38],26:[2,38],27:[2,38],51:[2,38],56:[2,38],59:[2,38],74:[2,38],79:[2,38],87:[2,38],92:[2,38],94:[2,38],103:[2,38],104:89,105:[2,38],106:[2,38],107:[2,38],110:90,111:[2,38],112:71,119:[2,38],127:[2,38],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{27:[1,286],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{6:[1,269],26:[1,270],87:[1,287]},{6:[2,70],26:[2,70],27:[2,70],56:[2,70],87:[2,70],92:[2,70]},{5:288,26:[1,5]},{6:[2,60],26:[2,60],27:[2,60],51:[2,60],56:[2,60]},{28:113,29:[1,75],45:114,57:289,58:112,60:115,61:116,77:[1,72],90:[1,117],91:[1,118]},{6:[2,58],26:[2,58],27:[2,58],28:113,29:[1,75],45:114,50:290,56:[2,58],57:111,58:112,60:115,61:116,77:[1,72],90:[1,117],91:[1,118]},{6:[2,65],26:[2,65],27:[2,65],51:[2,65],56:[2,65],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{27:[1,291],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{5:292,26:[1,5],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{5:293,26:[1,5]},{1:[2,137],6:[2,137],26:[2,137],27:[2,137],51:[2,137],56:[2,137],59:[2,137],74:[2,137],79:[2,137],87:[2,137],92:[2,137],94:[2,137],103:[2,137],105:[2,137],106:[2,137],107:[2,137],111:[2,137],119:[2,137],127:[2,137],129:[2,137],130:[2,137],133:[2,137],134:[2,137],135:[2,137],136:[2,137],137:[2,137],138:[2,137]},{5:294,26:[1,5]},{27:[1,295],122:[1,296],123:261,124:[1,220]},{1:[2,175],6:[2,175],26:[2,175],27:[2,175],51:[2,175],56:[2,175],59:[2,175],74:[2,175],79:[2,175],87:[2,175],92:[2,175],94:[2,175],103:[2,175],105:[2,175],106:[2,175],107:[2,175],111:[2,175],119:[2,175],127:[2,175],129:[2,175],130:[2,175],133:[2,175],134:[2,175],135:[2,175],136:[2,175],137:[2,175],138:[2,175]},{5:297,26:[1,5]},{27:[2,178],122:[2,178],124:[2,178]},{5:298,26:[1,5],56:[1,299]},{26:[2,133],56:[2,133],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,101],6:[2,101],26:[2,101],27:[2,101],51:[2,101],56:[2,101],59:[2,101],74:[2,101],79:[2,101],87:[2,101],92:[2,101],94:[2,101],103:[2,101],105:[2,101],106:[2,101],107:[2,101],111:[2,101],119:[2,101],127:[2,101],129:[2,101],130:[2,101],133:[2,101],134:[2,101],135:[2,101],136:[2,101],137:[2,101],138:[2,101]},{1:[2,104],5:300,6:[2,104],26:[1,5],27:[2,104],51:[2,104],56:[2,104],59:[2,104],74:[2,104],79:[2,104],87:[2,104],92:[2,104],94:[2,104],103:[2,104],104:89,105:[1,67],106:[2,104],107:[1,68],110:90,111:[1,70],112:71,119:[2,104],127:[2,104],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{103:[1,301]},{92:[1,302],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,118],6:[2,118],26:[2,118],27:[2,118],41:[2,118],51:[2,118],56:[2,118],59:[2,118],68:[2,118],69:[2,118],70:[2,118],72:[2,118],74:[2,118],75:[2,118],79:[2,118],85:[2,118],86:[2,118],87:[2,118],92:[2,118],94:[2,118],103:[2,118],105:[2,118],106:[2,118],107:[2,118],111:[2,118],117:[2,118],118:[2,118],119:[2,118],127:[2,118],129:[2,118],130:[2,118],133:[2,118],134:[2,118],135:[2,118],136:[2,118],137:[2,118],138:[2,118]},{8:203,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,62:150,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],95:303,97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:203,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,26:[1,149],28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,62:150,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],88:304,89:[1,60],90:[1,61],91:[1,59],95:148,97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{6:[2,127],26:[2,127],27:[2,127],56:[2,127],87:[2,127],92:[2,127]},{6:[1,269],26:[1,270],27:[1,305]},{1:[2,144],6:[2,144],26:[2,144],27:[2,144],51:[2,144],56:[2,144],59:[2,144],74:[2,144],79:[2,144],87:[2,144],92:[2,144],94:[2,144],103:[2,144],104:89,105:[1,67],106:[2,144],107:[1,68],110:90,111:[1,70],112:71,119:[2,144],127:[2,144],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,146],6:[2,146],26:[2,146],27:[2,146],51:[2,146],56:[2,146],59:[2,146],74:[2,146],79:[2,146],87:[2,146],92:[2,146],94:[2,146],103:[2,146],104:89,105:[1,67],106:[2,146],107:[1,68],110:90,111:[1,70],112:71,119:[2,146],127:[2,146],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{117:[2,165],118:[2,165]},{8:306,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:307,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:308,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,92],6:[2,92],26:[2,92],27:[2,92],41:[2,92],51:[2,92],56:[2,92],59:[2,92],68:[2,92],69:[2,92],70:[2,92],72:[2,92],74:[2,92],75:[2,92],79:[2,92],85:[2,92],86:[2,92],87:[2,92],92:[2,92],94:[2,92],103:[2,92],105:[2,92],106:[2,92],107:[2,92],111:[2,92],117:[2,92],118:[2,92],119:[2,92],127:[2,92],129:[2,92],130:[2,92],133:[2,92],134:[2,92],135:[2,92],136:[2,92],137:[2,92],138:[2,92]},{11:171,28:172,29:[1,75],30:173,31:[1,73],32:[1,74],42:309,43:170,45:174,48:[1,48],90:[1,117]},{6:[2,93],11:171,26:[2,93],27:[2,93],28:172,29:[1,75],30:173,31:[1,73],32:[1,74],42:169,43:170,45:174,48:[1,48],56:[2,93],78:310,90:[1,117]},{6:[2,95],26:[2,95],27:[2,95],56:[2,95],79:[2,95]},{6:[2,41],26:[2,41],27:[2,41],56:[2,41],79:[2,41],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{8:311,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{74:[2,122],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,39],6:[2,39],26:[2,39],27:[2,39],51:[2,39],56:[2,39],59:[2,39],74:[2,39],79:[2,39],87:[2,39],92:[2,39],94:[2,39],103:[2,39],105:[2,39],106:[2,39],107:[2,39],111:[2,39],119:[2,39],127:[2,39],129:[2,39],130:[2,39],133:[2,39],134:[2,39],135:[2,39],136:[2,39],137:[2,39],138:[2,39]},{1:[2,113],6:[2,113],26:[2,113],27:[2,113],51:[2,113],56:[2,113],59:[2,113],68:[2,113],69:[2,113],70:[2,113],72:[2,113],74:[2,113],75:[2,113],79:[2,113],85:[2,113],86:[2,113],87:[2,113],92:[2,113],94:[2,113],103:[2,113],105:[2,113],106:[2,113],107:[2,113],111:[2,113],119:[2,113],127:[2,113],129:[2,113],130:[2,113],133:[2,113],134:[2,113],135:[2,113],136:[2,113],137:[2,113],138:[2,113]},{1:[2,52],6:[2,52],26:[2,52],27:[2,52],51:[2,52],56:[2,52],59:[2,52],74:[2,52],79:[2,52],87:[2,52],92:[2,52],94:[2,52],103:[2,52],105:[2,52],106:[2,52],107:[2,52],111:[2,52],119:[2,52],127:[2,52],129:[2,52],130:[2,52],133:[2,52],134:[2,52],135:[2,52],136:[2,52],137:[2,52],138:[2,52]},{6:[2,61],26:[2,61],27:[2,61],51:[2,61],56:[2,61]},{6:[2,56],26:[2,56],27:[2,56],55:312,56:[1,205]},{1:[2,203],6:[2,203],26:[2,203],27:[2,203],51:[2,203],56:[2,203],59:[2,203],74:[2,203],79:[2,203],87:[2,203],92:[2,203],94:[2,203],103:[2,203],105:[2,203],106:[2,203],107:[2,203],111:[2,203],119:[2,203],127:[2,203],129:[2,203],130:[2,203],133:[2,203],134:[2,203],135:[2,203],136:[2,203],137:[2,203],138:[2,203]},{1:[2,182],6:[2,182],26:[2,182],27:[2,182],51:[2,182],56:[2,182],59:[2,182],74:[2,182],79:[2,182],87:[2,182],92:[2,182],94:[2,182],103:[2,182],105:[2,182],106:[2,182],107:[2,182],111:[2,182],119:[2,182],122:[2,182],127:[2,182],129:[2,182],130:[2,182],133:[2,182],134:[2,182],135:[2,182],136:[2,182],137:[2,182],138:[2,182]},{1:[2,138],6:[2,138],26:[2,138],27:[2,138],51:[2,138],56:[2,138],59:[2,138],74:[2,138],79:[2,138],87:[2,138],92:[2,138],94:[2,138],103:[2,138],105:[2,138],106:[2,138],107:[2,138],111:[2,138],119:[2,138],127:[2,138],129:[2,138],130:[2,138],133:[2,138],134:[2,138],135:[2,138],136:[2,138],137:[2,138],138:[2,138]},{1:[2,139],6:[2,139],26:[2,139],27:[2,139],51:[2,139],56:[2,139],59:[2,139],74:[2,139],79:[2,139],87:[2,139],92:[2,139],94:[2,139],99:[2,139],103:[2,139],105:[2,139],106:[2,139],107:[2,139],111:[2,139],119:[2,139],127:[2,139],129:[2,139],130:[2,139],133:[2,139],134:[2,139],135:[2,139],136:[2,139],137:[2,139],138:[2,139]},{1:[2,173],6:[2,173],26:[2,173],27:[2,173],51:[2,173],56:[2,173],59:[2,173],74:[2,173],79:[2,173],87:[2,173],92:[2,173],94:[2,173],103:[2,173],105:[2,173],106:[2,173],107:[2,173],111:[2,173],119:[2,173],127:[2,173],129:[2,173],130:[2,173],133:[2,173],134:[2,173],135:[2,173],136:[2,173],137:[2,173],138:[2,173]},{5:313,26:[1,5]},{27:[1,314]},{6:[1,315],27:[2,179],122:[2,179],124:[2,179]},{8:316,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{1:[2,105],6:[2,105],26:[2,105],27:[2,105],51:[2,105],56:[2,105],59:[2,105],74:[2,105],79:[2,105],87:[2,105],92:[2,105],94:[2,105],103:[2,105],105:[2,105],106:[2,105],107:[2,105],111:[2,105],119:[2,105],127:[2,105],129:[2,105],130:[2,105],133:[2,105],134:[2,105],135:[2,105],136:[2,105],137:[2,105],138:[2,105]},{1:[2,142],6:[2,142],26:[2,142],27:[2,142],51:[2,142],56:[2,142],59:[2,142],68:[2,142],69:[2,142],70:[2,142],72:[2,142],74:[2,142],75:[2,142],79:[2,142],85:[2,142],86:[2,142],87:[2,142],92:[2,142],94:[2,142],103:[2,142],105:[2,142],106:[2,142],107:[2,142],111:[2,142],119:[2,142],127:[2,142],129:[2,142],130:[2,142],133:[2,142],134:[2,142],135:[2,142],136:[2,142],137:[2,142],138:[2,142]},{1:[2,121],6:[2,121],26:[2,121],27:[2,121],51:[2,121],56:[2,121],59:[2,121],68:[2,121],69:[2,121],70:[2,121],72:[2,121],74:[2,121],75:[2,121],79:[2,121],85:[2,121],86:[2,121],87:[2,121],92:[2,121],94:[2,121],103:[2,121],105:[2,121],106:[2,121],107:[2,121],111:[2,121],119:[2,121],127:[2,121],129:[2,121],130:[2,121],133:[2,121],134:[2,121],135:[2,121],136:[2,121],137:[2,121],138:[2,121]},{6:[2,128],26:[2,128],27:[2,128],56:[2,128],87:[2,128],92:[2,128]},{6:[2,56],26:[2,56],27:[2,56],55:317,56:[1,229]},{6:[2,129],26:[2,129],27:[2,129],56:[2,129],87:[2,129],92:[2,129]},{1:[2,168],6:[2,168],26:[2,168],27:[2,168],51:[2,168],56:[2,168],59:[2,168],74:[2,168],79:[2,168],87:[2,168],92:[2,168],94:[2,168],103:[2,168],104:89,105:[2,168],106:[2,168],107:[2,168],110:90,111:[2,168],112:71,119:[1,318],127:[2,168],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,170],6:[2,170],26:[2,170],27:[2,170],51:[2,170],56:[2,170],59:[2,170],74:[2,170],79:[2,170],87:[2,170],92:[2,170],94:[2,170],103:[2,170],104:89,105:[2,170],106:[1,319],107:[2,170],110:90,111:[2,170],112:71,119:[2,170],127:[2,170],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,169],6:[2,169],26:[2,169],27:[2,169],51:[2,169],56:[2,169],59:[2,169],74:[2,169],79:[2,169],87:[2,169],92:[2,169],94:[2,169],103:[2,169],104:89,105:[2,169],106:[2,169],107:[2,169],110:90,111:[2,169],112:71,119:[2,169],127:[2,169],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{6:[2,96],26:[2,96],27:[2,96],56:[2,96],79:[2,96]},{6:[2,56],26:[2,56],27:[2,56],55:320,56:[1,239]},{27:[1,321],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{6:[1,250],26:[1,251],27:[1,322]},{27:[1,323]},{1:[2,176],6:[2,176],26:[2,176],27:[2,176],51:[2,176],56:[2,176],59:[2,176],74:[2,176],79:[2,176],87:[2,176],92:[2,176],94:[2,176],103:[2,176],105:[2,176],106:[2,176],107:[2,176],111:[2,176],119:[2,176],127:[2,176],129:[2,176],130:[2,176],133:[2,176],134:[2,176],135:[2,176],136:[2,176],137:[2,176],138:[2,176]},{27:[2,180],122:[2,180],124:[2,180]},{26:[2,134],56:[2,134],104:89,105:[1,67],107:[1,68],110:90,111:[1,70],112:71,127:[1,88],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{6:[1,269],26:[1,270],27:[1,324]},{8:325,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{8:326,9:107,10:21,11:22,12:[1,23],13:8,14:9,15:10,16:11,17:12,18:13,19:14,20:15,21:16,22:17,23:18,24:19,25:20,28:64,29:[1,75],30:51,31:[1,73],32:[1,74],33:25,34:[1,52],35:[1,53],36:[1,54],37:[1,55],38:[1,56],39:[1,57],40:24,45:65,46:[1,47],47:[1,29],48:[1,48],49:[1,31],52:32,53:[1,62],54:[1,63],60:49,61:50,63:38,65:26,66:27,67:28,77:[1,72],80:[1,45],84:[1,30],89:[1,60],90:[1,61],91:[1,59],97:[1,40],101:[1,46],102:[1,58],104:41,105:[1,67],107:[1,68],108:42,109:[1,69],110:43,111:[1,70],112:71,120:[1,44],125:39,126:[1,66],128:[1,33],129:[1,34],130:[1,35],131:[1,36],132:[1,37]},{6:[1,280],26:[1,281],27:[1,327]},{6:[2,42],26:[2,42],27:[2,42],56:[2,42],79:[2,42]},{6:[2,62],26:[2,62],27:[2,62],51:[2,62],56:[2,62]},{1:[2,174],6:[2,174],26:[2,174],27:[2,174],51:[2,174],56:[2,174],59:[2,174],74:[2,174],79:[2,174],87:[2,174],92:[2,174],94:[2,174],103:[2,174],105:[2,174],106:[2,174],107:[2,174],111:[2,174],119:[2,174],127:[2,174],129:[2,174],130:[2,174],133:[2,174],134:[2,174],135:[2,174],136:[2,174],137:[2,174],138:[2,174]},{6:[2,130],26:[2,130],27:[2,130],56:[2,130],87:[2,130],92:[2,130]},{1:[2,171],6:[2,171],26:[2,171],27:[2,171],51:[2,171],56:[2,171],59:[2,171],74:[2,171],79:[2,171],87:[2,171],92:[2,171],94:[2,171],103:[2,171],104:89,105:[2,171],106:[2,171],107:[2,171],110:90,111:[2,171],112:71,119:[2,171],127:[2,171],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{1:[2,172],6:[2,172],26:[2,172],27:[2,172],51:[2,172],56:[2,172],59:[2,172],74:[2,172],79:[2,172],87:[2,172],92:[2,172],94:[2,172],103:[2,172],104:89,105:[2,172],106:[2,172],107:[2,172],110:90,111:[2,172],112:71,119:[2,172],127:[2,172],129:[1,82],130:[1,81],133:[1,80],134:[1,83],135:[1,84],136:[1,85],137:[1,86],138:[1,87]},{6:[2,97],26:[2,97],27:[2,97],56:[2,97],79:[2,97]}], -defaultActions: {62:[2,54],63:[2,55],77:[2,3],96:[2,111],192:[2,91]}, +table: [{1:[2,1],3:1,4:2,5:3,7:4,8:6,9:7,10:21,11:22,12:23,13:[1,24],14:8,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:[1,5],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[3]},{1:[2,2],6:[1,78]},{6:[1,79]},{1:[2,4],6:[2,4],28:[2,4],105:[2,4]},{4:81,7:4,8:6,9:7,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,28:[1,80],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,7],6:[2,7],28:[2,7],105:[2,7],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,8],6:[2,8],28:[2,8],105:[2,8],106:94,107:[1,69],109:[1,70],112:95,113:[1,72],114:73,129:[1,93]},{1:[2,13],6:[2,13],27:[2,13],28:[2,13],53:[2,13],58:[2,13],61:[2,13],66:97,70:[1,99],71:[1,100],72:[1,101],73:102,74:[1,103],76:[2,13],77:[1,104],81:[2,13],84:96,87:[1,98],88:[2,113],89:[2,13],94:[2,13],96:[2,13],105:[2,13],107:[2,13],108:[2,13],109:[2,13],113:[2,13],121:[2,13],129:[2,13],131:[2,13],132:[2,13],135:[2,13],136:[2,13],137:[2,13],138:[2,13],139:[2,13],140:[2,13]},{1:[2,14],6:[2,14],27:[2,14],28:[2,14],53:[2,14],58:[2,14],61:[2,14],76:[2,14],81:[2,14],89:[2,14],94:[2,14],96:[2,14],105:[2,14],107:[2,14],108:[2,14],109:[2,14],113:[2,14],121:[2,14],129:[2,14],131:[2,14],132:[2,14],135:[2,14],136:[2,14],137:[2,14],138:[2,14],139:[2,14],140:[2,14]},{1:[2,15],6:[2,15],27:[2,15],28:[2,15],53:[2,15],58:[2,15],61:[2,15],66:106,70:[1,99],71:[1,100],72:[1,101],73:102,74:[1,103],76:[2,15],77:[1,104],81:[2,15],84:105,87:[1,98],88:[2,113],89:[2,15],94:[2,15],96:[2,15],105:[2,15],107:[2,15],108:[2,15],109:[2,15],113:[2,15],121:[2,15],129:[2,15],131:[2,15],132:[2,15],135:[2,15],136:[2,15],137:[2,15],138:[2,15],139:[2,15],140:[2,15]},{1:[2,16],6:[2,16],27:[2,16],28:[2,16],53:[2,16],58:[2,16],61:[2,16],76:[2,16],81:[2,16],89:[2,16],94:[2,16],96:[2,16],105:[2,16],107:[2,16],108:[2,16],109:[2,16],113:[2,16],121:[2,16],129:[2,16],131:[2,16],132:[2,16],135:[2,16],136:[2,16],137:[2,16],138:[2,16],139:[2,16],140:[2,16]},{1:[2,17],6:[2,17],27:[2,17],28:[2,17],53:[2,17],58:[2,17],61:[2,17],76:[2,17],81:[2,17],89:[2,17],94:[2,17],96:[2,17],105:[2,17],107:[2,17],108:[2,17],109:[2,17],113:[2,17],121:[2,17],129:[2,17],131:[2,17],132:[2,17],135:[2,17],136:[2,17],137:[2,17],138:[2,17],139:[2,17],140:[2,17]},{1:[2,18],6:[2,18],27:[2,18],28:[2,18],53:[2,18],58:[2,18],61:[2,18],76:[2,18],81:[2,18],89:[2,18],94:[2,18],96:[2,18],105:[2,18],107:[2,18],108:[2,18],109:[2,18],113:[2,18],121:[2,18],129:[2,18],131:[2,18],132:[2,18],135:[2,18],136:[2,18],137:[2,18],138:[2,18],139:[2,18],140:[2,18]},{1:[2,19],6:[2,19],27:[2,19],28:[2,19],53:[2,19],58:[2,19],61:[2,19],76:[2,19],81:[2,19],89:[2,19],94:[2,19],96:[2,19],105:[2,19],107:[2,19],108:[2,19],109:[2,19],113:[2,19],121:[2,19],129:[2,19],131:[2,19],132:[2,19],135:[2,19],136:[2,19],137:[2,19],138:[2,19],139:[2,19],140:[2,19]},{1:[2,20],6:[2,20],27:[2,20],28:[2,20],53:[2,20],58:[2,20],61:[2,20],76:[2,20],81:[2,20],89:[2,20],94:[2,20],96:[2,20],105:[2,20],107:[2,20],108:[2,20],109:[2,20],113:[2,20],121:[2,20],129:[2,20],131:[2,20],132:[2,20],135:[2,20],136:[2,20],137:[2,20],138:[2,20],139:[2,20],140:[2,20]},{1:[2,21],6:[2,21],27:[2,21],28:[2,21],53:[2,21],58:[2,21],61:[2,21],76:[2,21],81:[2,21],89:[2,21],94:[2,21],96:[2,21],105:[2,21],107:[2,21],108:[2,21],109:[2,21],113:[2,21],121:[2,21],129:[2,21],131:[2,21],132:[2,21],135:[2,21],136:[2,21],137:[2,21],138:[2,21],139:[2,21],140:[2,21]},{1:[2,22],6:[2,22],27:[2,22],28:[2,22],53:[2,22],58:[2,22],61:[2,22],76:[2,22],81:[2,22],89:[2,22],94:[2,22],96:[2,22],105:[2,22],107:[2,22],108:[2,22],109:[2,22],113:[2,22],121:[2,22],129:[2,22],131:[2,22],132:[2,22],135:[2,22],136:[2,22],137:[2,22],138:[2,22],139:[2,22],140:[2,22]},{1:[2,23],6:[2,23],27:[2,23],28:[2,23],53:[2,23],58:[2,23],61:[2,23],76:[2,23],81:[2,23],89:[2,23],94:[2,23],96:[2,23],105:[2,23],107:[2,23],108:[2,23],109:[2,23],113:[2,23],121:[2,23],129:[2,23],131:[2,23],132:[2,23],135:[2,23],136:[2,23],137:[2,23],138:[2,23],139:[2,23],140:[2,23]},{1:[2,24],6:[2,24],27:[2,24],28:[2,24],53:[2,24],58:[2,24],61:[2,24],76:[2,24],81:[2,24],89:[2,24],94:[2,24],96:[2,24],105:[2,24],107:[2,24],108:[2,24],109:[2,24],113:[2,24],121:[2,24],129:[2,24],131:[2,24],132:[2,24],135:[2,24],136:[2,24],137:[2,24],138:[2,24],139:[2,24],140:[2,24]},{1:[2,25],6:[2,25],27:[2,25],28:[2,25],53:[2,25],58:[2,25],61:[2,25],76:[2,25],81:[2,25],89:[2,25],94:[2,25],96:[2,25],105:[2,25],107:[2,25],108:[2,25],109:[2,25],113:[2,25],121:[2,25],129:[2,25],131:[2,25],132:[2,25],135:[2,25],136:[2,25],137:[2,25],138:[2,25],139:[2,25],140:[2,25]},{1:[2,9],6:[2,9],28:[2,9],105:[2,9],107:[2,9],109:[2,9],113:[2,9],129:[2,9]},{1:[2,10],6:[2,10],28:[2,10],105:[2,10],107:[2,10],109:[2,10],113:[2,10],129:[2,10]},{1:[2,11],6:[2,11],28:[2,11],105:[2,11],107:[2,11],109:[2,11],113:[2,11],129:[2,11]},{1:[2,12],6:[2,12],28:[2,12],105:[2,12],107:[2,12],109:[2,12],113:[2,12],129:[2,12]},{1:[2,81],6:[2,81],27:[2,81],28:[2,81],42:[1,107],53:[2,81],58:[2,81],61:[2,81],70:[2,81],71:[2,81],72:[2,81],74:[2,81],76:[2,81],77:[2,81],81:[2,81],87:[2,81],88:[2,81],89:[2,81],94:[2,81],96:[2,81],105:[2,81],107:[2,81],108:[2,81],109:[2,81],113:[2,81],121:[2,81],129:[2,81],131:[2,81],132:[2,81],135:[2,81],136:[2,81],137:[2,81],138:[2,81],139:[2,81],140:[2,81]},{1:[2,82],6:[2,82],27:[2,82],28:[2,82],53:[2,82],58:[2,82],61:[2,82],70:[2,82],71:[2,82],72:[2,82],74:[2,82],76:[2,82],77:[2,82],81:[2,82],87:[2,82],88:[2,82],89:[2,82],94:[2,82],96:[2,82],105:[2,82],107:[2,82],108:[2,82],109:[2,82],113:[2,82],121:[2,82],129:[2,82],131:[2,82],132:[2,82],135:[2,82],136:[2,82],137:[2,82],138:[2,82],139:[2,82],140:[2,82]},{1:[2,83],6:[2,83],27:[2,83],28:[2,83],53:[2,83],58:[2,83],61:[2,83],70:[2,83],71:[2,83],72:[2,83],74:[2,83],76:[2,83],77:[2,83],81:[2,83],87:[2,83],88:[2,83],89:[2,83],94:[2,83],96:[2,83],105:[2,83],107:[2,83],108:[2,83],109:[2,83],113:[2,83],121:[2,83],129:[2,83],131:[2,83],132:[2,83],135:[2,83],136:[2,83],137:[2,83],138:[2,83],139:[2,83],140:[2,83]},{1:[2,84],6:[2,84],27:[2,84],28:[2,84],53:[2,84],58:[2,84],61:[2,84],70:[2,84],71:[2,84],72:[2,84],74:[2,84],76:[2,84],77:[2,84],81:[2,84],87:[2,84],88:[2,84],89:[2,84],94:[2,84],96:[2,84],105:[2,84],107:[2,84],108:[2,84],109:[2,84],113:[2,84],121:[2,84],129:[2,84],131:[2,84],132:[2,84],135:[2,84],136:[2,84],137:[2,84],138:[2,84],139:[2,84],140:[2,84]},{1:[2,85],6:[2,85],27:[2,85],28:[2,85],53:[2,85],58:[2,85],61:[2,85],70:[2,85],71:[2,85],72:[2,85],74:[2,85],76:[2,85],77:[2,85],81:[2,85],87:[2,85],88:[2,85],89:[2,85],94:[2,85],96:[2,85],105:[2,85],107:[2,85],108:[2,85],109:[2,85],113:[2,85],121:[2,85],129:[2,85],131:[2,85],132:[2,85],135:[2,85],136:[2,85],137:[2,85],138:[2,85],139:[2,85],140:[2,85]},{1:[2,51],6:[2,51],8:108,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[2,51],28:[2,51],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],53:[2,51],54:33,55:[1,64],56:[1,65],58:[2,51],61:[2,51],62:51,63:52,65:39,67:27,68:28,69:29,76:[2,51],79:[1,74],81:[2,51],82:[1,46],86:[1,31],89:[2,51],91:[1,62],92:[1,63],93:[1,61],94:[2,51],96:[2,51],99:[1,41],103:[1,47],104:[1,60],105:[2,51],106:42,107:[2,51],108:[2,51],109:[2,51],110:43,111:[1,71],112:44,113:[2,51],114:73,121:[2,51],122:[1,45],127:40,128:[1,68],129:[2,51],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38],135:[2,51],136:[2,51],137:[2,51],138:[2,51],139:[2,51],140:[2,51]},{1:[2,111],6:[2,111],27:[2,111],28:[2,111],53:[2,111],58:[2,111],61:[2,111],70:[2,111],71:[2,111],72:[2,111],74:[2,111],76:[2,111],77:[2,111],81:[2,111],85:110,87:[2,111],88:[1,111],89:[2,111],94:[2,111],96:[2,111],105:[2,111],107:[2,111],108:[2,111],109:[2,111],113:[2,111],121:[2,111],129:[2,111],131:[2,111],132:[2,111],135:[2,111],136:[2,111],137:[2,111],138:[2,111],139:[2,111],140:[2,111]},{6:[2,61],27:[2,61],29:115,30:[1,77],46:116,52:112,53:[2,61],58:[2,61],59:113,60:114,62:117,63:118,79:[1,74],92:[1,119],93:[1,120]},{5:121,27:[1,5]},{8:122,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:123,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:124,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{14:126,16:127,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:128,46:67,62:51,63:52,65:125,67:27,68:28,69:29,79:[1,74],86:[1,31],91:[1,62],92:[1,63],93:[1,61],104:[1,60]},{14:126,16:127,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:128,46:67,62:51,63:52,65:129,67:27,68:28,69:29,79:[1,74],86:[1,31],91:[1,62],92:[1,63],93:[1,61],104:[1,60]},{1:[2,78],6:[2,78],27:[2,78],28:[2,78],42:[2,78],53:[2,78],58:[2,78],61:[2,78],70:[2,78],71:[2,78],72:[2,78],74:[2,78],76:[2,78],77:[2,78],81:[2,78],83:[1,133],87:[2,78],88:[2,78],89:[2,78],94:[2,78],96:[2,78],105:[2,78],107:[2,78],108:[2,78],109:[2,78],113:[2,78],121:[2,78],129:[2,78],131:[2,78],132:[2,78],133:[1,130],134:[1,131],135:[2,78],136:[2,78],137:[2,78],138:[2,78],139:[2,78],140:[2,78],141:[1,132]},{1:[2,186],6:[2,186],27:[2,186],28:[2,186],53:[2,186],58:[2,186],61:[2,186],76:[2,186],81:[2,186],89:[2,186],94:[2,186],96:[2,186],105:[2,186],107:[2,186],108:[2,186],109:[2,186],113:[2,186],121:[2,186],124:[1,134],129:[2,186],131:[2,186],132:[2,186],135:[2,186],136:[2,186],137:[2,186],138:[2,186],139:[2,186],140:[2,186]},{5:135,27:[1,5]},{5:136,27:[1,5]},{1:[2,153],6:[2,153],27:[2,153],28:[2,153],53:[2,153],58:[2,153],61:[2,153],76:[2,153],81:[2,153],89:[2,153],94:[2,153],96:[2,153],105:[2,153],107:[2,153],108:[2,153],109:[2,153],113:[2,153],121:[2,153],129:[2,153],131:[2,153],132:[2,153],135:[2,153],136:[2,153],137:[2,153],138:[2,153],139:[2,153],140:[2,153]},{5:137,27:[1,5]},{8:138,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,139],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,101],5:140,6:[2,101],14:126,16:127,27:[1,5],28:[2,101],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:128,46:67,53:[2,101],58:[2,101],61:[2,101],62:51,63:52,65:142,67:27,68:28,69:29,76:[2,101],79:[1,74],81:[2,101],83:[1,141],86:[1,31],89:[2,101],91:[1,62],92:[1,63],93:[1,61],94:[2,101],96:[2,101],104:[1,60],105:[2,101],107:[2,101],108:[2,101],109:[2,101],113:[2,101],121:[2,101],129:[2,101],131:[2,101],132:[2,101],135:[2,101],136:[2,101],137:[2,101],138:[2,101],139:[2,101],140:[2,101]},{8:143,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,49],6:[2,49],8:144,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,28:[2,49],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],105:[2,49],106:42,107:[2,49],109:[2,49],110:43,111:[1,71],112:44,113:[2,49],114:73,122:[1,45],127:40,128:[1,68],129:[2,49],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,53],6:[2,53],8:145,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,28:[2,53],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],105:[2,53],106:42,107:[2,53],109:[2,53],110:43,111:[1,71],112:44,113:[2,53],114:73,122:[1,45],127:40,128:[1,68],129:[2,53],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,54],6:[2,54],27:[2,54],28:[2,54],58:[2,54],81:[2,54],105:[2,54],107:[2,54],109:[2,54],113:[2,54],129:[2,54]},{1:[2,79],6:[2,79],27:[2,79],28:[2,79],42:[2,79],53:[2,79],58:[2,79],61:[2,79],70:[2,79],71:[2,79],72:[2,79],74:[2,79],76:[2,79],77:[2,79],81:[2,79],87:[2,79],88:[2,79],89:[2,79],94:[2,79],96:[2,79],105:[2,79],107:[2,79],108:[2,79],109:[2,79],113:[2,79],121:[2,79],129:[2,79],131:[2,79],132:[2,79],135:[2,79],136:[2,79],137:[2,79],138:[2,79],139:[2,79],140:[2,79]},{1:[2,80],6:[2,80],27:[2,80],28:[2,80],42:[2,80],53:[2,80],58:[2,80],61:[2,80],70:[2,80],71:[2,80],72:[2,80],74:[2,80],76:[2,80],77:[2,80],81:[2,80],87:[2,80],88:[2,80],89:[2,80],94:[2,80],96:[2,80],105:[2,80],107:[2,80],108:[2,80],109:[2,80],113:[2,80],121:[2,80],129:[2,80],131:[2,80],132:[2,80],135:[2,80],136:[2,80],137:[2,80],138:[2,80],139:[2,80],140:[2,80]},{1:[2,31],6:[2,31],27:[2,31],28:[2,31],53:[2,31],58:[2,31],61:[2,31],70:[2,31],71:[2,31],72:[2,31],74:[2,31],76:[2,31],77:[2,31],81:[2,31],87:[2,31],88:[2,31],89:[2,31],94:[2,31],96:[2,31],105:[2,31],107:[2,31],108:[2,31],109:[2,31],113:[2,31],121:[2,31],129:[2,31],131:[2,31],132:[2,31],135:[2,31],136:[2,31],137:[2,31],138:[2,31],139:[2,31],140:[2,31]},{1:[2,32],6:[2,32],27:[2,32],28:[2,32],53:[2,32],58:[2,32],61:[2,32],70:[2,32],71:[2,32],72:[2,32],74:[2,32],76:[2,32],77:[2,32],81:[2,32],87:[2,32],88:[2,32],89:[2,32],94:[2,32],96:[2,32],105:[2,32],107:[2,32],108:[2,32],109:[2,32],113:[2,32],121:[2,32],129:[2,32],131:[2,32],132:[2,32],135:[2,32],136:[2,32],137:[2,32],138:[2,32],139:[2,32],140:[2,32]},{1:[2,33],6:[2,33],27:[2,33],28:[2,33],53:[2,33],58:[2,33],61:[2,33],70:[2,33],71:[2,33],72:[2,33],74:[2,33],76:[2,33],77:[2,33],81:[2,33],87:[2,33],88:[2,33],89:[2,33],94:[2,33],96:[2,33],105:[2,33],107:[2,33],108:[2,33],109:[2,33],113:[2,33],121:[2,33],129:[2,33],131:[2,33],132:[2,33],135:[2,33],136:[2,33],137:[2,33],138:[2,33],139:[2,33],140:[2,33]},{1:[2,34],6:[2,34],27:[2,34],28:[2,34],53:[2,34],58:[2,34],61:[2,34],70:[2,34],71:[2,34],72:[2,34],74:[2,34],76:[2,34],77:[2,34],81:[2,34],87:[2,34],88:[2,34],89:[2,34],94:[2,34],96:[2,34],105:[2,34],107:[2,34],108:[2,34],109:[2,34],113:[2,34],121:[2,34],129:[2,34],131:[2,34],132:[2,34],135:[2,34],136:[2,34],137:[2,34],138:[2,34],139:[2,34],140:[2,34]},{1:[2,35],6:[2,35],27:[2,35],28:[2,35],53:[2,35],58:[2,35],61:[2,35],70:[2,35],71:[2,35],72:[2,35],74:[2,35],76:[2,35],77:[2,35],81:[2,35],87:[2,35],88:[2,35],89:[2,35],94:[2,35],96:[2,35],105:[2,35],107:[2,35],108:[2,35],109:[2,35],113:[2,35],121:[2,35],129:[2,35],131:[2,35],132:[2,35],135:[2,35],136:[2,35],137:[2,35],138:[2,35],139:[2,35],140:[2,35]},{1:[2,36],6:[2,36],27:[2,36],28:[2,36],53:[2,36],58:[2,36],61:[2,36],70:[2,36],71:[2,36],72:[2,36],74:[2,36],76:[2,36],77:[2,36],81:[2,36],87:[2,36],88:[2,36],89:[2,36],94:[2,36],96:[2,36],105:[2,36],107:[2,36],108:[2,36],109:[2,36],113:[2,36],121:[2,36],129:[2,36],131:[2,36],132:[2,36],135:[2,36],136:[2,36],137:[2,36],138:[2,36],139:[2,36],140:[2,36]},{1:[2,37],6:[2,37],27:[2,37],28:[2,37],53:[2,37],58:[2,37],61:[2,37],70:[2,37],71:[2,37],72:[2,37],74:[2,37],76:[2,37],77:[2,37],81:[2,37],87:[2,37],88:[2,37],89:[2,37],94:[2,37],96:[2,37],105:[2,37],107:[2,37],108:[2,37],109:[2,37],113:[2,37],121:[2,37],129:[2,37],131:[2,37],132:[2,37],135:[2,37],136:[2,37],137:[2,37],138:[2,37],139:[2,37],140:[2,37]},{4:146,7:4,8:6,9:7,10:21,11:22,12:23,13:[1,24],14:8,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:[1,147],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:148,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,152],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,64:153,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],90:150,91:[1,62],92:[1,63],93:[1,61],94:[1,149],97:151,99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,117],6:[2,117],27:[2,117],28:[2,117],53:[2,117],58:[2,117],61:[2,117],70:[2,117],71:[2,117],72:[2,117],74:[2,117],76:[2,117],77:[2,117],81:[2,117],87:[2,117],88:[2,117],89:[2,117],94:[2,117],96:[2,117],105:[2,117],107:[2,117],108:[2,117],109:[2,117],113:[2,117],121:[2,117],129:[2,117],131:[2,117],132:[2,117],135:[2,117],136:[2,117],137:[2,117],138:[2,117],139:[2,117],140:[2,117]},{1:[2,118],6:[2,118],27:[2,118],28:[2,118],29:154,30:[1,77],53:[2,118],58:[2,118],61:[2,118],70:[2,118],71:[2,118],72:[2,118],74:[2,118],76:[2,118],77:[2,118],81:[2,118],87:[2,118],88:[2,118],89:[2,118],94:[2,118],96:[2,118],105:[2,118],107:[2,118],108:[2,118],109:[2,118],113:[2,118],121:[2,118],129:[2,118],131:[2,118],132:[2,118],135:[2,118],136:[2,118],137:[2,118],138:[2,118],139:[2,118],140:[2,118]},{27:[2,57]},{27:[2,58]},{1:[2,74],6:[2,74],27:[2,74],28:[2,74],42:[2,74],53:[2,74],58:[2,74],61:[2,74],70:[2,74],71:[2,74],72:[2,74],74:[2,74],76:[2,74],77:[2,74],81:[2,74],83:[2,74],87:[2,74],88:[2,74],89:[2,74],94:[2,74],96:[2,74],105:[2,74],107:[2,74],108:[2,74],109:[2,74],113:[2,74],121:[2,74],129:[2,74],131:[2,74],132:[2,74],133:[2,74],134:[2,74],135:[2,74],136:[2,74],137:[2,74],138:[2,74],139:[2,74],140:[2,74],141:[2,74]},{1:[2,77],6:[2,77],27:[2,77],28:[2,77],42:[2,77],53:[2,77],58:[2,77],61:[2,77],70:[2,77],71:[2,77],72:[2,77],74:[2,77],76:[2,77],77:[2,77],81:[2,77],83:[2,77],87:[2,77],88:[2,77],89:[2,77],94:[2,77],96:[2,77],105:[2,77],107:[2,77],108:[2,77],109:[2,77],113:[2,77],121:[2,77],129:[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],141:[2,77]},{8:155,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:156,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:157,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{5:158,8:159,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,5],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{29:164,30:[1,77],46:165,62:166,63:167,68:160,79:[1,74],92:[1,119],93:[1,61],116:161,117:[1,162],118:163},{115:168,119:[1,169],120:[1,170]},{6:[2,96],12:174,27:[2,96],29:175,30:[1,77],31:176,32:[1,75],33:[1,76],43:172,44:173,46:177,50:[1,50],58:[2,96],80:171,81:[2,96],92:[1,119]},{1:[2,29],6:[2,29],27:[2,29],28:[2,29],45:[2,29],53:[2,29],58:[2,29],61:[2,29],70:[2,29],71:[2,29],72:[2,29],74:[2,29],76:[2,29],77:[2,29],81:[2,29],87:[2,29],88:[2,29],89:[2,29],94:[2,29],96:[2,29],105:[2,29],107:[2,29],108:[2,29],109:[2,29],113:[2,29],121:[2,29],129:[2,29],131:[2,29],132:[2,29],135:[2,29],136:[2,29],137:[2,29],138:[2,29],139:[2,29],140:[2,29]},{1:[2,30],6:[2,30],27:[2,30],28:[2,30],45:[2,30],53:[2,30],58:[2,30],61:[2,30],70:[2,30],71:[2,30],72:[2,30],74:[2,30],76:[2,30],77:[2,30],81:[2,30],87:[2,30],88:[2,30],89:[2,30],94:[2,30],96:[2,30],105:[2,30],107:[2,30],108:[2,30],109:[2,30],113:[2,30],121:[2,30],129:[2,30],131:[2,30],132:[2,30],135:[2,30],136:[2,30],137:[2,30],138:[2,30],139:[2,30],140:[2,30]},{1:[2,28],6:[2,28],27:[2,28],28:[2,28],42:[2,28],45:[2,28],53:[2,28],58:[2,28],61:[2,28],70:[2,28],71:[2,28],72:[2,28],74:[2,28],76:[2,28],77:[2,28],81:[2,28],83:[2,28],87:[2,28],88:[2,28],89:[2,28],94:[2,28],96:[2,28],105:[2,28],107:[2,28],108:[2,28],109:[2,28],113:[2,28],119:[2,28],120:[2,28],121:[2,28],129:[2,28],131:[2,28],132:[2,28],133:[2,28],134:[2,28],135:[2,28],136:[2,28],137:[2,28],138:[2,28],139:[2,28],140:[2,28],141:[2,28]},{1:[2,6],6:[2,6],7:178,8:6,9:7,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,28:[2,6],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],105:[2,6],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,3]},{1:[2,26],6:[2,26],27:[2,26],28:[2,26],53:[2,26],58:[2,26],61:[2,26],76:[2,26],81:[2,26],89:[2,26],94:[2,26],96:[2,26],101:[2,26],102:[2,26],105:[2,26],107:[2,26],108:[2,26],109:[2,26],113:[2,26],121:[2,26],124:[2,26],126:[2,26],129:[2,26],131:[2,26],132:[2,26],135:[2,26],136:[2,26],137:[2,26],138:[2,26],139:[2,26],140:[2,26]},{6:[1,78],28:[1,179]},{1:[2,197],6:[2,197],27:[2,197],28:[2,197],53:[2,197],58:[2,197],61:[2,197],76:[2,197],81:[2,197],89:[2,197],94:[2,197],96:[2,197],105:[2,197],107:[2,197],108:[2,197],109:[2,197],113:[2,197],121:[2,197],129:[2,197],131:[2,197],132:[2,197],135:[2,197],136:[2,197],137:[2,197],138:[2,197],139:[2,197],140:[2,197]},{8:180,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:181,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:182,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:183,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:184,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:185,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:186,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:187,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,152],6:[2,152],27:[2,152],28:[2,152],53:[2,152],58:[2,152],61:[2,152],76:[2,152],81:[2,152],89:[2,152],94:[2,152],96:[2,152],105:[2,152],107:[2,152],108:[2,152],109:[2,152],113:[2,152],121:[2,152],129:[2,152],131:[2,152],132:[2,152],135:[2,152],136:[2,152],137:[2,152],138:[2,152],139:[2,152],140:[2,152]},{1:[2,157],6:[2,157],27:[2,157],28:[2,157],53:[2,157],58:[2,157],61:[2,157],76:[2,157],81:[2,157],89:[2,157],94:[2,157],96:[2,157],105:[2,157],107:[2,157],108:[2,157],109:[2,157],113:[2,157],121:[2,157],129:[2,157],131:[2,157],132:[2,157],135:[2,157],136:[2,157],137:[2,157],138:[2,157],139:[2,157],140:[2,157]},{8:188,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,151],6:[2,151],27:[2,151],28:[2,151],53:[2,151],58:[2,151],61:[2,151],76:[2,151],81:[2,151],89:[2,151],94:[2,151],96:[2,151],105:[2,151],107:[2,151],108:[2,151],109:[2,151],113:[2,151],121:[2,151],129:[2,151],131:[2,151],132:[2,151],135:[2,151],136:[2,151],137:[2,151],138:[2,151],139:[2,151],140:[2,151]},{1:[2,156],6:[2,156],27:[2,156],28:[2,156],53:[2,156],58:[2,156],61:[2,156],76:[2,156],81:[2,156],89:[2,156],94:[2,156],96:[2,156],105:[2,156],107:[2,156],108:[2,156],109:[2,156],113:[2,156],121:[2,156],129:[2,156],131:[2,156],132:[2,156],135:[2,156],136:[2,156],137:[2,156],138:[2,156],139:[2,156],140:[2,156]},{85:189,88:[1,111]},{1:[2,75],6:[2,75],27:[2,75],28:[2,75],42:[2,75],53:[2,75],58:[2,75],61:[2,75],70:[2,75],71:[2,75],72:[2,75],74:[2,75],76:[2,75],77:[2,75],81:[2,75],83:[2,75],87:[2,75],88:[2,75],89:[2,75],94:[2,75],96:[2,75],105:[2,75],107:[2,75],108:[2,75],109:[2,75],113:[2,75],121:[2,75],129:[2,75],131:[2,75],132:[2,75],133:[2,75],134:[2,75],135:[2,75],136:[2,75],137:[2,75],138:[2,75],139:[2,75],140:[2,75],141:[2,75]},{88:[2,114]},{29:190,30:[1,77]},{29:191,30:[1,77]},{1:[2,89],6:[2,89],27:[2,89],28:[2,89],29:192,30:[1,77],42:[2,89],53:[2,89],58:[2,89],61:[2,89],70:[2,89],71:[2,89],72:[2,89],74:[2,89],76:[2,89],77:[2,89],81:[2,89],83:[2,89],87:[2,89],88:[2,89],89:[2,89],94:[2,89],96:[2,89],105:[2,89],107:[2,89],108:[2,89],109:[2,89],113:[2,89],121:[2,89],129:[2,89],131:[2,89],132:[2,89],133:[2,89],134:[2,89],135:[2,89],136:[2,89],137:[2,89],138:[2,89],139:[2,89],140:[2,89],141:[2,89]},{1:[2,90],6:[2,90],27:[2,90],28:[2,90],42:[2,90],53:[2,90],58:[2,90],61:[2,90],70:[2,90],71:[2,90],72:[2,90],74:[2,90],76:[2,90],77:[2,90],81:[2,90],83:[2,90],87:[2,90],88:[2,90],89:[2,90],94:[2,90],96:[2,90],105:[2,90],107:[2,90],108:[2,90],109:[2,90],113:[2,90],121:[2,90],129:[2,90],131:[2,90],132:[2,90],133:[2,90],134:[2,90],135:[2,90],136:[2,90],137:[2,90],138:[2,90],139:[2,90],140:[2,90],141:[2,90]},{8:194,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],61:[1,198],62:51,63:52,65:39,67:27,68:28,69:29,75:193,78:195,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],95:196,96:[1,197],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{73:199,74:[1,103],77:[1,104]},{85:200,88:[1,111]},{1:[2,76],6:[2,76],27:[2,76],28:[2,76],42:[2,76],53:[2,76],58:[2,76],61:[2,76],70:[2,76],71:[2,76],72:[2,76],74:[2,76],76:[2,76],77:[2,76],81:[2,76],83:[2,76],87:[2,76],88:[2,76],89:[2,76],94:[2,76],96:[2,76],105:[2,76],107:[2,76],108:[2,76],109:[2,76],113:[2,76],121:[2,76],129:[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],141:[2,76]},{6:[1,202],8:201,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,203],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,50],6:[2,50],27:[2,50],28:[2,50],53:[2,50],58:[2,50],61:[2,50],76:[2,50],81:[2,50],89:[2,50],94:[2,50],96:[2,50],105:[2,50],106:91,107:[2,50],108:[2,50],109:[2,50],112:92,113:[2,50],114:73,121:[2,50],129:[2,50],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{106:94,107:[1,69],109:[1,70],112:95,113:[1,72],114:73,129:[1,93]},{1:[2,112],6:[2,112],27:[2,112],28:[2,112],53:[2,112],58:[2,112],61:[2,112],70:[2,112],71:[2,112],72:[2,112],74:[2,112],76:[2,112],77:[2,112],81:[2,112],87:[2,112],88:[2,112],89:[2,112],94:[2,112],96:[2,112],105:[2,112],107:[2,112],108:[2,112],109:[2,112],113:[2,112],121:[2,112],129:[2,112],131:[2,112],132:[2,112],135:[2,112],136:[2,112],137:[2,112],138:[2,112],139:[2,112],140:[2,112]},{8:206,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,152],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,64:153,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],89:[1,204],90:205,91:[1,62],92:[1,63],93:[1,61],97:151,99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{6:[2,59],27:[2,59],53:[1,207],57:209,58:[1,208]},{6:[2,62],27:[2,62],28:[2,62],53:[2,62],58:[2,62]},{6:[2,66],27:[2,66],28:[2,66],42:[1,211],53:[2,66],58:[2,66],61:[1,210]},{6:[2,69],27:[2,69],28:[2,69],42:[2,69],53:[2,69],58:[2,69],61:[2,69]},{6:[2,70],27:[2,70],28:[2,70],42:[2,70],53:[2,70],58:[2,70],61:[2,70]},{6:[2,71],27:[2,71],28:[2,71],42:[2,71],53:[2,71],58:[2,71],61:[2,71]},{6:[2,72],27:[2,72],28:[2,72],42:[2,72],53:[2,72],58:[2,72],61:[2,72]},{29:154,30:[1,77]},{8:206,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,152],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,64:153,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],90:150,91:[1,62],92:[1,63],93:[1,61],94:[1,149],97:151,99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,56],6:[2,56],27:[2,56],28:[2,56],53:[2,56],58:[2,56],61:[2,56],76:[2,56],81:[2,56],89:[2,56],94:[2,56],96:[2,56],105:[2,56],107:[2,56],108:[2,56],109:[2,56],113:[2,56],121:[2,56],129:[2,56],131:[2,56],132:[2,56],135:[2,56],136:[2,56],137:[2,56],138:[2,56],139:[2,56],140:[2,56]},{1:[2,190],6:[2,190],27:[2,190],28:[2,190],53:[2,190],58:[2,190],61:[2,190],76:[2,190],81:[2,190],89:[2,190],94:[2,190],96:[2,190],105:[2,190],106:91,107:[2,190],108:[2,190],109:[2,190],112:92,113:[2,190],114:73,121:[2,190],129:[2,190],131:[2,190],132:[2,190],135:[1,82],136:[2,190],137:[2,190],138:[2,190],139:[2,190],140:[2,190]},{1:[2,191],6:[2,191],27:[2,191],28:[2,191],53:[2,191],58:[2,191],61:[2,191],76:[2,191],81:[2,191],89:[2,191],94:[2,191],96:[2,191],105:[2,191],106:91,107:[2,191],108:[2,191],109:[2,191],112:92,113:[2,191],114:73,121:[2,191],129:[2,191],131:[2,191],132:[2,191],135:[1,82],136:[2,191],137:[2,191],138:[2,191],139:[2,191],140:[2,191]},{1:[2,192],6:[2,192],27:[2,192],28:[2,192],53:[2,192],58:[2,192],61:[2,192],76:[2,192],81:[2,192],89:[2,192],94:[2,192],96:[2,192],105:[2,192],106:91,107:[2,192],108:[2,192],109:[2,192],112:92,113:[2,192],114:73,121:[2,192],129:[2,192],131:[2,192],132:[2,192],135:[1,82],136:[2,192],137:[2,192],138:[2,192],139:[2,192],140:[2,192]},{1:[2,193],6:[2,193],27:[2,193],28:[2,193],53:[2,193],58:[2,193],61:[2,193],70:[2,78],71:[2,78],72:[2,78],74:[2,78],76:[2,193],77:[2,78],81:[2,193],87:[2,78],88:[2,78],89:[2,193],94:[2,193],96:[2,193],105:[2,193],107:[2,193],108:[2,193],109:[2,193],113:[2,193],121:[2,193],129:[2,193],131:[2,193],132:[2,193],135:[2,193],136:[2,193],137:[2,193],138:[2,193],139:[2,193],140:[2,193]},{66:97,70:[1,99],71:[1,100],72:[1,101],73:102,74:[1,103],77:[1,104],84:96,87:[1,98],88:[2,113]},{66:106,70:[1,99],71:[1,100],72:[1,101],73:102,74:[1,103],77:[1,104],84:105,87:[1,98],88:[2,113]},{70:[2,81],71:[2,81],72:[2,81],74:[2,81],77:[2,81],87:[2,81],88:[2,81]},{1:[2,194],6:[2,194],27:[2,194],28:[2,194],53:[2,194],58:[2,194],61:[2,194],70:[2,78],71:[2,78],72:[2,78],74:[2,78],76:[2,194],77:[2,78],81:[2,194],87:[2,78],88:[2,78],89:[2,194],94:[2,194],96:[2,194],105:[2,194],107:[2,194],108:[2,194],109:[2,194],113:[2,194],121:[2,194],129:[2,194],131:[2,194],132:[2,194],135:[2,194],136:[2,194],137:[2,194],138:[2,194],139:[2,194],140:[2,194]},{1:[2,195],6:[2,195],27:[2,195],28:[2,195],53:[2,195],58:[2,195],61:[2,195],76:[2,195],81:[2,195],89:[2,195],94:[2,195],96:[2,195],105:[2,195],107:[2,195],108:[2,195],109:[2,195],113:[2,195],121:[2,195],129:[2,195],131:[2,195],132:[2,195],135:[2,195],136:[2,195],137:[2,195],138:[2,195],139:[2,195],140:[2,195]},{1:[2,196],6:[2,196],27:[2,196],28:[2,196],53:[2,196],58:[2,196],61:[2,196],76:[2,196],81:[2,196],89:[2,196],94:[2,196],96:[2,196],105:[2,196],107:[2,196],108:[2,196],109:[2,196],113:[2,196],121:[2,196],129:[2,196],131:[2,196],132:[2,196],135:[2,196],136:[2,196],137:[2,196],138:[2,196],139:[2,196],140:[2,196]},{8:212,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,213],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:214,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{5:215,27:[1,5],128:[1,216]},{1:[2,138],6:[2,138],27:[2,138],28:[2,138],53:[2,138],58:[2,138],61:[2,138],76:[2,138],81:[2,138],89:[2,138],94:[2,138],96:[2,138],100:217,101:[1,218],102:[1,219],105:[2,138],107:[2,138],108:[2,138],109:[2,138],113:[2,138],121:[2,138],129:[2,138],131:[2,138],132:[2,138],135:[2,138],136:[2,138],137:[2,138],138:[2,138],139:[2,138],140:[2,138]},{1:[2,150],6:[2,150],27:[2,150],28:[2,150],53:[2,150],58:[2,150],61:[2,150],76:[2,150],81:[2,150],89:[2,150],94:[2,150],96:[2,150],105:[2,150],107:[2,150],108:[2,150],109:[2,150],113:[2,150],121:[2,150],129:[2,150],131:[2,150],132:[2,150],135:[2,150],136:[2,150],137:[2,150],138:[2,150],139:[2,150],140:[2,150]},{1:[2,158],6:[2,158],27:[2,158],28:[2,158],53:[2,158],58:[2,158],61:[2,158],76:[2,158],81:[2,158],89:[2,158],94:[2,158],96:[2,158],105:[2,158],107:[2,158],108:[2,158],109:[2,158],113:[2,158],121:[2,158],129:[2,158],131:[2,158],132:[2,158],135:[2,158],136:[2,158],137:[2,158],138:[2,158],139:[2,158],140:[2,158]},{27:[1,220],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{123:221,125:222,126:[1,223]},{1:[2,102],6:[2,102],27:[2,102],28:[2,102],53:[2,102],58:[2,102],61:[2,102],76:[2,102],81:[2,102],89:[2,102],94:[2,102],96:[2,102],105:[2,102],107:[2,102],108:[2,102],109:[2,102],113:[2,102],121:[2,102],129:[2,102],131:[2,102],132:[2,102],135:[2,102],136:[2,102],137:[2,102],138:[2,102],139:[2,102],140:[2,102]},{8:224,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,105],5:225,6:[2,105],27:[1,5],28:[2,105],53:[2,105],58:[2,105],61:[2,105],70:[2,78],71:[2,78],72:[2,78],74:[2,78],76:[2,105],77:[2,78],81:[2,105],83:[1,226],87:[2,78],88:[2,78],89:[2,105],94:[2,105],96:[2,105],105:[2,105],107:[2,105],108:[2,105],109:[2,105],113:[2,105],121:[2,105],129:[2,105],131:[2,105],132:[2,105],135:[2,105],136:[2,105],137:[2,105],138:[2,105],139:[2,105],140:[2,105]},{1:[2,143],6:[2,143],27:[2,143],28:[2,143],53:[2,143],58:[2,143],61:[2,143],76:[2,143],81:[2,143],89:[2,143],94:[2,143],96:[2,143],105:[2,143],106:91,107:[2,143],108:[2,143],109:[2,143],112:92,113:[2,143],114:73,121:[2,143],129:[2,143],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,48],6:[2,48],28:[2,48],105:[2,48],106:91,107:[2,48],109:[2,48],112:92,113:[2,48],114:73,129:[2,48],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,52],6:[2,52],28:[2,52],105:[2,52],106:91,107:[2,52],109:[2,52],112:92,113:[2,52],114:73,129:[2,52],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{6:[1,78],105:[1,227]},{4:228,7:4,8:6,9:7,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{6:[2,134],27:[2,134],58:[2,134],61:[1,230],94:[2,134],95:229,96:[1,197],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,120],6:[2,120],27:[2,120],28:[2,120],42:[2,120],53:[2,120],58:[2,120],61:[2,120],70:[2,120],71:[2,120],72:[2,120],74:[2,120],76:[2,120],77:[2,120],81:[2,120],87:[2,120],88:[2,120],89:[2,120],94:[2,120],96:[2,120],105:[2,120],107:[2,120],108:[2,120],109:[2,120],113:[2,120],119:[2,120],120:[2,120],121:[2,120],129:[2,120],131:[2,120],132:[2,120],135:[2,120],136:[2,120],137:[2,120],138:[2,120],139:[2,120],140:[2,120]},{6:[2,59],27:[2,59],57:231,58:[1,232],94:[2,59]},{6:[2,129],27:[2,129],28:[2,129],58:[2,129],89:[2,129],94:[2,129]},{8:206,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,152],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,64:153,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],90:233,91:[1,62],92:[1,63],93:[1,61],97:151,99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{6:[2,135],27:[2,135],28:[2,135],58:[2,135],89:[2,135],94:[2,135]},{1:[2,119],6:[2,119],27:[2,119],28:[2,119],42:[2,119],45:[2,119],53:[2,119],58:[2,119],61:[2,119],70:[2,119],71:[2,119],72:[2,119],74:[2,119],76:[2,119],77:[2,119],81:[2,119],83:[2,119],87:[2,119],88:[2,119],89:[2,119],94:[2,119],96:[2,119],105:[2,119],107:[2,119],108:[2,119],109:[2,119],113:[2,119],119:[2,119],120:[2,119],121:[2,119],129:[2,119],131:[2,119],132:[2,119],133:[2,119],134:[2,119],135:[2,119],136:[2,119],137:[2,119],138:[2,119],139:[2,119],140:[2,119],141:[2,119]},{5:234,27:[1,5],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,146],6:[2,146],27:[2,146],28:[2,146],53:[2,146],58:[2,146],61:[2,146],76:[2,146],81:[2,146],89:[2,146],94:[2,146],96:[2,146],105:[2,146],106:91,107:[1,69],108:[1,235],109:[1,70],112:92,113:[1,72],114:73,121:[2,146],129:[2,146],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,148],6:[2,148],27:[2,148],28:[2,148],53:[2,148],58:[2,148],61:[2,148],76:[2,148],81:[2,148],89:[2,148],94:[2,148],96:[2,148],105:[2,148],106:91,107:[1,69],108:[1,236],109:[1,70],112:92,113:[1,72],114:73,121:[2,148],129:[2,148],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,154],6:[2,154],27:[2,154],28:[2,154],53:[2,154],58:[2,154],61:[2,154],76:[2,154],81:[2,154],89:[2,154],94:[2,154],96:[2,154],105:[2,154],107:[2,154],108:[2,154],109:[2,154],113:[2,154],121:[2,154],129:[2,154],131:[2,154],132:[2,154],135:[2,154],136:[2,154],137:[2,154],138:[2,154],139:[2,154],140:[2,154]},{1:[2,155],6:[2,155],27:[2,155],28:[2,155],53:[2,155],58:[2,155],61:[2,155],76:[2,155],81:[2,155],89:[2,155],94:[2,155],96:[2,155],105:[2,155],106:91,107:[1,69],108:[2,155],109:[1,70],112:92,113:[1,72],114:73,121:[2,155],129:[2,155],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,159],6:[2,159],27:[2,159],28:[2,159],53:[2,159],58:[2,159],61:[2,159],76:[2,159],81:[2,159],89:[2,159],94:[2,159],96:[2,159],105:[2,159],107:[2,159],108:[2,159],109:[2,159],113:[2,159],121:[2,159],129:[2,159],131:[2,159],132:[2,159],135:[2,159],136:[2,159],137:[2,159],138:[2,159],139:[2,159],140:[2,159]},{119:[2,161],120:[2,161]},{29:164,30:[1,77],46:165,62:166,63:167,79:[1,74],92:[1,119],93:[1,120],116:237,118:163},{58:[1,238],119:[2,167],120:[2,167]},{58:[2,163],119:[2,163],120:[2,163]},{58:[2,164],119:[2,164],120:[2,164]},{58:[2,165],119:[2,165],120:[2,165]},{58:[2,166],119:[2,166],120:[2,166]},{1:[2,160],6:[2,160],27:[2,160],28:[2,160],53:[2,160],58:[2,160],61:[2,160],76:[2,160],81:[2,160],89:[2,160],94:[2,160],96:[2,160],105:[2,160],107:[2,160],108:[2,160],109:[2,160],113:[2,160],121:[2,160],129:[2,160],131:[2,160],132:[2,160],135:[2,160],136:[2,160],137:[2,160],138:[2,160],139:[2,160],140:[2,160]},{8:239,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:240,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{6:[2,59],27:[2,59],57:241,58:[1,242],81:[2,59]},{6:[2,97],27:[2,97],28:[2,97],58:[2,97],81:[2,97]},{6:[2,41],27:[2,41],28:[2,41],45:[1,243],58:[2,41],81:[2,41]},{6:[2,44],27:[2,44],28:[2,44],58:[2,44],81:[2,44]},{6:[2,45],27:[2,45],28:[2,45],45:[2,45],58:[2,45],81:[2,45]},{6:[2,46],27:[2,46],28:[2,46],45:[2,46],58:[2,46],81:[2,46]},{6:[2,47],27:[2,47],28:[2,47],45:[2,47],58:[2,47],81:[2,47]},{1:[2,5],6:[2,5],28:[2,5],105:[2,5]},{1:[2,27],6:[2,27],27:[2,27],28:[2,27],53:[2,27],58:[2,27],61:[2,27],76:[2,27],81:[2,27],89:[2,27],94:[2,27],96:[2,27],101:[2,27],102:[2,27],105:[2,27],107:[2,27],108:[2,27],109:[2,27],113:[2,27],121:[2,27],124:[2,27],126:[2,27],129:[2,27],131:[2,27],132:[2,27],135:[2,27],136:[2,27],137:[2,27],138:[2,27],139:[2,27],140:[2,27]},{1:[2,198],6:[2,198],27:[2,198],28:[2,198],53:[2,198],58:[2,198],61:[2,198],76:[2,198],81:[2,198],89:[2,198],94:[2,198],96:[2,198],105:[2,198],106:91,107:[2,198],108:[2,198],109:[2,198],112:92,113:[2,198],114:73,121:[2,198],129:[2,198],131:[2,198],132:[2,198],135:[1,82],136:[1,85],137:[2,198],138:[2,198],139:[2,198],140:[2,198]},{1:[2,199],6:[2,199],27:[2,199],28:[2,199],53:[2,199],58:[2,199],61:[2,199],76:[2,199],81:[2,199],89:[2,199],94:[2,199],96:[2,199],105:[2,199],106:91,107:[2,199],108:[2,199],109:[2,199],112:92,113:[2,199],114:73,121:[2,199],129:[2,199],131:[2,199],132:[2,199],135:[1,82],136:[1,85],137:[2,199],138:[2,199],139:[2,199],140:[2,199]},{1:[2,200],6:[2,200],27:[2,200],28:[2,200],53:[2,200],58:[2,200],61:[2,200],76:[2,200],81:[2,200],89:[2,200],94:[2,200],96:[2,200],105:[2,200],106:91,107:[2,200],108:[2,200],109:[2,200],112:92,113:[2,200],114:73,121:[2,200],129:[2,200],131:[2,200],132:[2,200],135:[1,82],136:[2,200],137:[2,200],138:[2,200],139:[2,200],140:[2,200]},{1:[2,201],6:[2,201],27:[2,201],28:[2,201],53:[2,201],58:[2,201],61:[2,201],76:[2,201],81:[2,201],89:[2,201],94:[2,201],96:[2,201],105:[2,201],106:91,107:[2,201],108:[2,201],109:[2,201],112:92,113:[2,201],114:73,121:[2,201],129:[2,201],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[2,201],138:[2,201],139:[2,201],140:[2,201]},{1:[2,202],6:[2,202],27:[2,202],28:[2,202],53:[2,202],58:[2,202],61:[2,202],76:[2,202],81:[2,202],89:[2,202],94:[2,202],96:[2,202],105:[2,202],106:91,107:[2,202],108:[2,202],109:[2,202],112:92,113:[2,202],114:73,121:[2,202],129:[2,202],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[2,202],139:[2,202],140:[1,89]},{1:[2,203],6:[2,203],27:[2,203],28:[2,203],53:[2,203],58:[2,203],61:[2,203],76:[2,203],81:[2,203],89:[2,203],94:[2,203],96:[2,203],105:[2,203],106:91,107:[2,203],108:[2,203],109:[2,203],112:92,113:[2,203],114:73,121:[2,203],129:[2,203],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[2,203],140:[1,89]},{1:[2,204],6:[2,204],27:[2,204],28:[2,204],53:[2,204],58:[2,204],61:[2,204],76:[2,204],81:[2,204],89:[2,204],94:[2,204],96:[2,204],105:[2,204],106:91,107:[2,204],108:[2,204],109:[2,204],112:92,113:[2,204],114:73,121:[2,204],129:[2,204],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[2,204],139:[2,204],140:[2,204]},{1:[2,189],6:[2,189],27:[2,189],28:[2,189],53:[2,189],58:[2,189],61:[2,189],76:[2,189],81:[2,189],89:[2,189],94:[2,189],96:[2,189],105:[2,189],106:91,107:[1,69],108:[2,189],109:[1,70],112:92,113:[1,72],114:73,121:[2,189],129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,188],6:[2,188],27:[2,188],28:[2,188],53:[2,188],58:[2,188],61:[2,188],76:[2,188],81:[2,188],89:[2,188],94:[2,188],96:[2,188],105:[2,188],106:91,107:[1,69],108:[2,188],109:[1,70],112:92,113:[1,72],114:73,121:[2,188],129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,109],6:[2,109],27:[2,109],28:[2,109],53:[2,109],58:[2,109],61:[2,109],70:[2,109],71:[2,109],72:[2,109],74:[2,109],76:[2,109],77:[2,109],81:[2,109],87:[2,109],88:[2,109],89:[2,109],94:[2,109],96:[2,109],105:[2,109],107:[2,109],108:[2,109],109:[2,109],113:[2,109],121:[2,109],129:[2,109],131:[2,109],132:[2,109],135:[2,109],136:[2,109],137:[2,109],138:[2,109],139:[2,109],140:[2,109]},{1:[2,86],6:[2,86],27:[2,86],28:[2,86],42:[2,86],53:[2,86],58:[2,86],61:[2,86],70:[2,86],71:[2,86],72:[2,86],74:[2,86],76:[2,86],77:[2,86],81:[2,86],83:[2,86],87:[2,86],88:[2,86],89:[2,86],94:[2,86],96:[2,86],105:[2,86],107:[2,86],108:[2,86],109:[2,86],113:[2,86],121:[2,86],129:[2,86],131:[2,86],132:[2,86],133:[2,86],134:[2,86],135:[2,86],136:[2,86],137:[2,86],138:[2,86],139:[2,86],140:[2,86],141:[2,86]},{1:[2,87],6:[2,87],27:[2,87],28:[2,87],42:[2,87],53:[2,87],58:[2,87],61:[2,87],70:[2,87],71:[2,87],72:[2,87],74:[2,87],76:[2,87],77:[2,87],81:[2,87],83:[2,87],87:[2,87],88:[2,87],89:[2,87],94:[2,87],96:[2,87],105:[2,87],107:[2,87],108:[2,87],109:[2,87],113:[2,87],121:[2,87],129:[2,87],131:[2,87],132:[2,87],133:[2,87],134:[2,87],135:[2,87],136:[2,87],137:[2,87],138:[2,87],139:[2,87],140:[2,87],141:[2,87]},{1:[2,88],6:[2,88],27:[2,88],28:[2,88],42:[2,88],53:[2,88],58:[2,88],61:[2,88],70:[2,88],71:[2,88],72:[2,88],74:[2,88],76:[2,88],77:[2,88],81:[2,88],83:[2,88],87:[2,88],88:[2,88],89:[2,88],94:[2,88],96:[2,88],105:[2,88],107:[2,88],108:[2,88],109:[2,88],113:[2,88],121:[2,88],129:[2,88],131:[2,88],132:[2,88],133:[2,88],134:[2,88],135:[2,88],136:[2,88],137:[2,88],138:[2,88],139:[2,88],140:[2,88],141:[2,88]},{76:[1,244]},{61:[1,198],76:[2,93],95:245,96:[1,197],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{76:[2,94]},{8:246,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,76:[2,128],79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{13:[2,122],30:[2,122],32:[2,122],33:[2,122],35:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:[2,122],47:[2,122],48:[2,122],49:[2,122],50:[2,122],51:[2,122],55:[2,122],56:[2,122],76:[2,122],79:[2,122],82:[2,122],86:[2,122],91:[2,122],92:[2,122],93:[2,122],99:[2,122],103:[2,122],104:[2,122],107:[2,122],109:[2,122],111:[2,122],113:[2,122],122:[2,122],128:[2,122],130:[2,122],131:[2,122],132:[2,122],133:[2,122],134:[2,122]},{13:[2,123],30:[2,123],32:[2,123],33:[2,123],35:[2,123],36:[2,123],37:[2,123],38:[2,123],39:[2,123],40:[2,123],47:[2,123],48:[2,123],49:[2,123],50:[2,123],51:[2,123],55:[2,123],56:[2,123],76:[2,123],79:[2,123],82:[2,123],86:[2,123],91:[2,123],92:[2,123],93:[2,123],99:[2,123],103:[2,123],104:[2,123],107:[2,123],109:[2,123],111:[2,123],113:[2,123],122:[2,123],128:[2,123],130:[2,123],131:[2,123],132:[2,123],133:[2,123],134:[2,123]},{1:[2,92],6:[2,92],27:[2,92],28:[2,92],42:[2,92],53:[2,92],58:[2,92],61:[2,92],70:[2,92],71:[2,92],72:[2,92],74:[2,92],76:[2,92],77:[2,92],81:[2,92],83:[2,92],87:[2,92],88:[2,92],89:[2,92],94:[2,92],96:[2,92],105:[2,92],107:[2,92],108:[2,92],109:[2,92],113:[2,92],121:[2,92],129:[2,92],131:[2,92],132:[2,92],133:[2,92],134:[2,92],135:[2,92],136:[2,92],137:[2,92],138:[2,92],139:[2,92],140:[2,92],141:[2,92]},{1:[2,110],6:[2,110],27:[2,110],28:[2,110],53:[2,110],58:[2,110],61:[2,110],70:[2,110],71:[2,110],72:[2,110],74:[2,110],76:[2,110],77:[2,110],81:[2,110],87:[2,110],88:[2,110],89:[2,110],94:[2,110],96:[2,110],105:[2,110],107:[2,110],108:[2,110],109:[2,110],113:[2,110],121:[2,110],129:[2,110],131:[2,110],132:[2,110],135:[2,110],136:[2,110],137:[2,110],138:[2,110],139:[2,110],140:[2,110]},{1:[2,38],6:[2,38],27:[2,38],28:[2,38],53:[2,38],58:[2,38],61:[2,38],76:[2,38],81:[2,38],89:[2,38],94:[2,38],96:[2,38],105:[2,38],106:91,107:[2,38],108:[2,38],109:[2,38],112:92,113:[2,38],114:73,121:[2,38],129:[2,38],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{8:247,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:248,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,115],6:[2,115],27:[2,115],28:[2,115],53:[2,115],58:[2,115],61:[2,115],70:[2,115],71:[2,115],72:[2,115],74:[2,115],76:[2,115],77:[2,115],81:[2,115],87:[2,115],88:[2,115],89:[2,115],94:[2,115],96:[2,115],105:[2,115],107:[2,115],108:[2,115],109:[2,115],113:[2,115],121:[2,115],129:[2,115],131:[2,115],132:[2,115],135:[2,115],136:[2,115],137:[2,115],138:[2,115],139:[2,115],140:[2,115]},{6:[2,59],27:[2,59],57:249,58:[1,232],89:[2,59]},{6:[2,134],27:[2,134],28:[2,134],58:[2,134],61:[1,250],89:[2,134],94:[2,134],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{54:251,55:[1,64],56:[1,65]},{6:[2,60],27:[2,60],28:[2,60],29:115,30:[1,77],46:116,59:252,60:114,62:117,63:118,79:[1,74],92:[1,119],93:[1,120]},{6:[1,253],27:[1,254]},{6:[2,67],27:[2,67],28:[2,67],53:[2,67],58:[2,67]},{8:255,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,205],6:[2,205],27:[2,205],28:[2,205],53:[2,205],58:[2,205],61:[2,205],76:[2,205],81:[2,205],89:[2,205],94:[2,205],96:[2,205],105:[2,205],106:91,107:[2,205],108:[2,205],109:[2,205],112:92,113:[2,205],114:73,121:[2,205],129:[2,205],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{8:256,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,207],6:[2,207],27:[2,207],28:[2,207],53:[2,207],58:[2,207],61:[2,207],76:[2,207],81:[2,207],89:[2,207],94:[2,207],96:[2,207],105:[2,207],106:91,107:[2,207],108:[2,207],109:[2,207],112:92,113:[2,207],114:73,121:[2,207],129:[2,207],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,187],6:[2,187],27:[2,187],28:[2,187],53:[2,187],58:[2,187],61:[2,187],76:[2,187],81:[2,187],89:[2,187],94:[2,187],96:[2,187],105:[2,187],107:[2,187],108:[2,187],109:[2,187],113:[2,187],121:[2,187],129:[2,187],131:[2,187],132:[2,187],135:[2,187],136:[2,187],137:[2,187],138:[2,187],139:[2,187],140:[2,187]},{8:257,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,139],6:[2,139],27:[2,139],28:[2,139],53:[2,139],58:[2,139],61:[2,139],76:[2,139],81:[2,139],89:[2,139],94:[2,139],96:[2,139],101:[1,258],105:[2,139],107:[2,139],108:[2,139],109:[2,139],113:[2,139],121:[2,139],129:[2,139],131:[2,139],132:[2,139],135:[2,139],136:[2,139],137:[2,139],138:[2,139],139:[2,139],140:[2,139]},{5:259,27:[1,5]},{29:260,30:[1,77]},{123:261,125:222,126:[1,223]},{28:[1,262],124:[1,263],125:264,126:[1,223]},{28:[2,180],124:[2,180],126:[2,180]},{8:266,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],98:265,99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,103],5:267,6:[2,103],27:[1,5],28:[2,103],53:[2,103],58:[2,103],61:[2,103],76:[2,103],81:[2,103],89:[2,103],94:[2,103],96:[2,103],105:[2,103],106:91,107:[1,69],108:[2,103],109:[1,70],112:92,113:[1,72],114:73,121:[2,103],129:[2,103],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,106],6:[2,106],27:[2,106],28:[2,106],53:[2,106],58:[2,106],61:[2,106],76:[2,106],81:[2,106],89:[2,106],94:[2,106],96:[2,106],105:[2,106],107:[2,106],108:[2,106],109:[2,106],113:[2,106],121:[2,106],129:[2,106],131:[2,106],132:[2,106],135:[2,106],136:[2,106],137:[2,106],138:[2,106],139:[2,106],140:[2,106]},{8:268,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,144],6:[2,144],27:[2,144],28:[2,144],53:[2,144],58:[2,144],61:[2,144],70:[2,144],71:[2,144],72:[2,144],74:[2,144],76:[2,144],77:[2,144],81:[2,144],87:[2,144],88:[2,144],89:[2,144],94:[2,144],96:[2,144],105:[2,144],107:[2,144],108:[2,144],109:[2,144],113:[2,144],121:[2,144],129:[2,144],131:[2,144],132:[2,144],135:[2,144],136:[2,144],137:[2,144],138:[2,144],139:[2,144],140:[2,144]},{6:[1,78],28:[1,269]},{8:270,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{6:[2,73],13:[2,123],27:[2,73],30:[2,123],32:[2,123],33:[2,123],35:[2,123],36:[2,123],37:[2,123],38:[2,123],39:[2,123],40:[2,123],47:[2,123],48:[2,123],49:[2,123],50:[2,123],51:[2,123],55:[2,123],56:[2,123],58:[2,73],79:[2,123],82:[2,123],86:[2,123],91:[2,123],92:[2,123],93:[2,123],94:[2,73],99:[2,123],103:[2,123],104:[2,123],107:[2,123],109:[2,123],111:[2,123],113:[2,123],122:[2,123],128:[2,123],130:[2,123],131:[2,123],132:[2,123],133:[2,123],134:[2,123]},{6:[1,272],27:[1,273],94:[1,271]},{6:[2,60],8:206,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[2,60],28:[2,60],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,64:153,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],89:[2,60],91:[1,62],92:[1,63],93:[1,61],94:[2,60],97:274,99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{6:[2,59],27:[2,59],28:[2,59],57:275,58:[1,232]},{1:[2,184],6:[2,184],27:[2,184],28:[2,184],53:[2,184],58:[2,184],61:[2,184],76:[2,184],81:[2,184],89:[2,184],94:[2,184],96:[2,184],105:[2,184],107:[2,184],108:[2,184],109:[2,184],113:[2,184],121:[2,184],124:[2,184],129:[2,184],131:[2,184],132:[2,184],135:[2,184],136:[2,184],137:[2,184],138:[2,184],139:[2,184],140:[2,184]},{8:276,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:277,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{119:[2,162],120:[2,162]},{29:164,30:[1,77],46:165,62:166,63:167,79:[1,74],92:[1,119],93:[1,120],118:278},{1:[2,169],6:[2,169],27:[2,169],28:[2,169],53:[2,169],58:[2,169],61:[2,169],76:[2,169],81:[2,169],89:[2,169],94:[2,169],96:[2,169],105:[2,169],106:91,107:[2,169],108:[1,279],109:[2,169],112:92,113:[2,169],114:73,121:[1,280],129:[2,169],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,170],6:[2,170],27:[2,170],28:[2,170],53:[2,170],58:[2,170],61:[2,170],76:[2,170],81:[2,170],89:[2,170],94:[2,170],96:[2,170],105:[2,170],106:91,107:[2,170],108:[1,281],109:[2,170],112:92,113:[2,170],114:73,121:[2,170],129:[2,170],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{6:[1,283],27:[1,284],81:[1,282]},{6:[2,60],12:174,27:[2,60],28:[2,60],29:175,30:[1,77],31:176,32:[1,75],33:[1,76],43:285,44:173,46:177,50:[1,50],81:[2,60],92:[1,119]},{8:286,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,287],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,91],6:[2,91],27:[2,91],28:[2,91],42:[2,91],53:[2,91],58:[2,91],61:[2,91],70:[2,91],71:[2,91],72:[2,91],74:[2,91],76:[2,91],77:[2,91],81:[2,91],83:[2,91],87:[2,91],88:[2,91],89:[2,91],94:[2,91],96:[2,91],105:[2,91],107:[2,91],108:[2,91],109:[2,91],113:[2,91],121:[2,91],129:[2,91],131:[2,91],132:[2,91],133:[2,91],134:[2,91],135:[2,91],136:[2,91],137:[2,91],138:[2,91],139:[2,91],140:[2,91],141:[2,91]},{8:288,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,76:[2,126],79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{76:[2,127],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,39],6:[2,39],27:[2,39],28:[2,39],53:[2,39],58:[2,39],61:[2,39],76:[2,39],81:[2,39],89:[2,39],94:[2,39],96:[2,39],105:[2,39],106:91,107:[2,39],108:[2,39],109:[2,39],112:92,113:[2,39],114:73,121:[2,39],129:[2,39],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{28:[1,289],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{6:[1,272],27:[1,273],89:[1,290]},{6:[2,73],27:[2,73],28:[2,73],58:[2,73],89:[2,73],94:[2,73]},{5:291,27:[1,5]},{6:[2,63],27:[2,63],28:[2,63],53:[2,63],58:[2,63]},{29:115,30:[1,77],46:116,59:292,60:114,62:117,63:118,79:[1,74],92:[1,119],93:[1,120]},{6:[2,61],27:[2,61],28:[2,61],29:115,30:[1,77],46:116,52:293,58:[2,61],59:113,60:114,62:117,63:118,79:[1,74],92:[1,119],93:[1,120]},{6:[2,68],27:[2,68],28:[2,68],53:[2,68],58:[2,68],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{28:[1,294],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{5:295,27:[1,5],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{5:296,27:[1,5]},{1:[2,140],6:[2,140],27:[2,140],28:[2,140],53:[2,140],58:[2,140],61:[2,140],76:[2,140],81:[2,140],89:[2,140],94:[2,140],96:[2,140],105:[2,140],107:[2,140],108:[2,140],109:[2,140],113:[2,140],121:[2,140],129:[2,140],131:[2,140],132:[2,140],135:[2,140],136:[2,140],137:[2,140],138:[2,140],139:[2,140],140:[2,140]},{5:297,27:[1,5]},{28:[1,298],124:[1,299],125:264,126:[1,223]},{1:[2,178],6:[2,178],27:[2,178],28:[2,178],53:[2,178],58:[2,178],61:[2,178],76:[2,178],81:[2,178],89:[2,178],94:[2,178],96:[2,178],105:[2,178],107:[2,178],108:[2,178],109:[2,178],113:[2,178],121:[2,178],129:[2,178],131:[2,178],132:[2,178],135:[2,178],136:[2,178],137:[2,178],138:[2,178],139:[2,178],140:[2,178]},{5:300,27:[1,5]},{28:[2,181],124:[2,181],126:[2,181]},{5:301,27:[1,5],58:[1,302]},{27:[2,136],58:[2,136],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,104],6:[2,104],27:[2,104],28:[2,104],53:[2,104],58:[2,104],61:[2,104],76:[2,104],81:[2,104],89:[2,104],94:[2,104],96:[2,104],105:[2,104],107:[2,104],108:[2,104],109:[2,104],113:[2,104],121:[2,104],129:[2,104],131:[2,104],132:[2,104],135:[2,104],136:[2,104],137:[2,104],138:[2,104],139:[2,104],140:[2,104]},{1:[2,107],5:303,6:[2,107],27:[1,5],28:[2,107],53:[2,107],58:[2,107],61:[2,107],76:[2,107],81:[2,107],89:[2,107],94:[2,107],96:[2,107],105:[2,107],106:91,107:[1,69],108:[2,107],109:[1,70],112:92,113:[1,72],114:73,121:[2,107],129:[2,107],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{105:[1,304]},{94:[1,305],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,121],6:[2,121],27:[2,121],28:[2,121],42:[2,121],53:[2,121],58:[2,121],61:[2,121],70:[2,121],71:[2,121],72:[2,121],74:[2,121],76:[2,121],77:[2,121],81:[2,121],87:[2,121],88:[2,121],89:[2,121],94:[2,121],96:[2,121],105:[2,121],107:[2,121],108:[2,121],109:[2,121],113:[2,121],119:[2,121],120:[2,121],121:[2,121],129:[2,121],131:[2,121],132:[2,121],135:[2,121],136:[2,121],137:[2,121],138:[2,121],139:[2,121],140:[2,121]},{8:206,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,64:153,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],97:306,99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:206,9:109,10:21,11:22,12:23,13:[1,24],14:8,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:[1,152],29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,64:153,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],90:307,91:[1,62],92:[1,63],93:[1,61],97:151,99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{6:[2,130],27:[2,130],28:[2,130],58:[2,130],89:[2,130],94:[2,130]},{6:[1,272],27:[1,273],28:[1,308]},{1:[2,147],6:[2,147],27:[2,147],28:[2,147],53:[2,147],58:[2,147],61:[2,147],76:[2,147],81:[2,147],89:[2,147],94:[2,147],96:[2,147],105:[2,147],106:91,107:[1,69],108:[2,147],109:[1,70],112:92,113:[1,72],114:73,121:[2,147],129:[2,147],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,149],6:[2,149],27:[2,149],28:[2,149],53:[2,149],58:[2,149],61:[2,149],76:[2,149],81:[2,149],89:[2,149],94:[2,149],96:[2,149],105:[2,149],106:91,107:[1,69],108:[2,149],109:[1,70],112:92,113:[1,72],114:73,121:[2,149],129:[2,149],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{119:[2,168],120:[2,168]},{8:309,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:310,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:311,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,95],6:[2,95],27:[2,95],28:[2,95],42:[2,95],53:[2,95],58:[2,95],61:[2,95],70:[2,95],71:[2,95],72:[2,95],74:[2,95],76:[2,95],77:[2,95],81:[2,95],87:[2,95],88:[2,95],89:[2,95],94:[2,95],96:[2,95],105:[2,95],107:[2,95],108:[2,95],109:[2,95],113:[2,95],119:[2,95],120:[2,95],121:[2,95],129:[2,95],131:[2,95],132:[2,95],135:[2,95],136:[2,95],137:[2,95],138:[2,95],139:[2,95],140:[2,95]},{12:174,29:175,30:[1,77],31:176,32:[1,75],33:[1,76],43:312,44:173,46:177,50:[1,50],92:[1,119]},{6:[2,96],12:174,27:[2,96],28:[2,96],29:175,30:[1,77],31:176,32:[1,75],33:[1,76],43:172,44:173,46:177,50:[1,50],58:[2,96],80:313,92:[1,119]},{6:[2,98],27:[2,98],28:[2,98],58:[2,98],81:[2,98]},{6:[2,42],27:[2,42],28:[2,42],58:[2,42],81:[2,42],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{8:314,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{76:[2,125],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,40],6:[2,40],27:[2,40],28:[2,40],53:[2,40],58:[2,40],61:[2,40],76:[2,40],81:[2,40],89:[2,40],94:[2,40],96:[2,40],105:[2,40],107:[2,40],108:[2,40],109:[2,40],113:[2,40],121:[2,40],129:[2,40],131:[2,40],132:[2,40],135:[2,40],136:[2,40],137:[2,40],138:[2,40],139:[2,40],140:[2,40]},{1:[2,116],6:[2,116],27:[2,116],28:[2,116],53:[2,116],58:[2,116],61:[2,116],70:[2,116],71:[2,116],72:[2,116],74:[2,116],76:[2,116],77:[2,116],81:[2,116],87:[2,116],88:[2,116],89:[2,116],94:[2,116],96:[2,116],105:[2,116],107:[2,116],108:[2,116],109:[2,116],113:[2,116],121:[2,116],129:[2,116],131:[2,116],132:[2,116],135:[2,116],136:[2,116],137:[2,116],138:[2,116],139:[2,116],140:[2,116]},{1:[2,55],6:[2,55],27:[2,55],28:[2,55],53:[2,55],58:[2,55],61:[2,55],76:[2,55],81:[2,55],89:[2,55],94:[2,55],96:[2,55],105:[2,55],107:[2,55],108:[2,55],109:[2,55],113:[2,55],121:[2,55],129:[2,55],131:[2,55],132:[2,55],135:[2,55],136:[2,55],137:[2,55],138:[2,55],139:[2,55],140:[2,55]},{6:[2,64],27:[2,64],28:[2,64],53:[2,64],58:[2,64]},{6:[2,59],27:[2,59],28:[2,59],57:315,58:[1,208]},{1:[2,206],6:[2,206],27:[2,206],28:[2,206],53:[2,206],58:[2,206],61:[2,206],76:[2,206],81:[2,206],89:[2,206],94:[2,206],96:[2,206],105:[2,206],107:[2,206],108:[2,206],109:[2,206],113:[2,206],121:[2,206],129:[2,206],131:[2,206],132:[2,206],135:[2,206],136:[2,206],137:[2,206],138:[2,206],139:[2,206],140:[2,206]},{1:[2,185],6:[2,185],27:[2,185],28:[2,185],53:[2,185],58:[2,185],61:[2,185],76:[2,185],81:[2,185],89:[2,185],94:[2,185],96:[2,185],105:[2,185],107:[2,185],108:[2,185],109:[2,185],113:[2,185],121:[2,185],124:[2,185],129:[2,185],131:[2,185],132:[2,185],135:[2,185],136:[2,185],137:[2,185],138:[2,185],139:[2,185],140:[2,185]},{1:[2,141],6:[2,141],27:[2,141],28:[2,141],53:[2,141],58:[2,141],61:[2,141],76:[2,141],81:[2,141],89:[2,141],94:[2,141],96:[2,141],105:[2,141],107:[2,141],108:[2,141],109:[2,141],113:[2,141],121:[2,141],129:[2,141],131:[2,141],132:[2,141],135:[2,141],136:[2,141],137:[2,141],138:[2,141],139:[2,141],140:[2,141]},{1:[2,142],6:[2,142],27:[2,142],28:[2,142],53:[2,142],58:[2,142],61:[2,142],76:[2,142],81:[2,142],89:[2,142],94:[2,142],96:[2,142],101:[2,142],105:[2,142],107:[2,142],108:[2,142],109:[2,142],113:[2,142],121:[2,142],129:[2,142],131:[2,142],132:[2,142],135:[2,142],136:[2,142],137:[2,142],138:[2,142],139:[2,142],140:[2,142]},{1:[2,176],6:[2,176],27:[2,176],28:[2,176],53:[2,176],58:[2,176],61:[2,176],76:[2,176],81:[2,176],89:[2,176],94:[2,176],96:[2,176],105:[2,176],107:[2,176],108:[2,176],109:[2,176],113:[2,176],121:[2,176],129:[2,176],131:[2,176],132:[2,176],135:[2,176],136:[2,176],137:[2,176],138:[2,176],139:[2,176],140:[2,176]},{5:316,27:[1,5]},{28:[1,317]},{6:[1,318],28:[2,182],124:[2,182],126:[2,182]},{8:319,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{1:[2,108],6:[2,108],27:[2,108],28:[2,108],53:[2,108],58:[2,108],61:[2,108],76:[2,108],81:[2,108],89:[2,108],94:[2,108],96:[2,108],105:[2,108],107:[2,108],108:[2,108],109:[2,108],113:[2,108],121:[2,108],129:[2,108],131:[2,108],132:[2,108],135:[2,108],136:[2,108],137:[2,108],138:[2,108],139:[2,108],140:[2,108]},{1:[2,145],6:[2,145],27:[2,145],28:[2,145],53:[2,145],58:[2,145],61:[2,145],70:[2,145],71:[2,145],72:[2,145],74:[2,145],76:[2,145],77:[2,145],81:[2,145],87:[2,145],88:[2,145],89:[2,145],94:[2,145],96:[2,145],105:[2,145],107:[2,145],108:[2,145],109:[2,145],113:[2,145],121:[2,145],129:[2,145],131:[2,145],132:[2,145],135:[2,145],136:[2,145],137:[2,145],138:[2,145],139:[2,145],140:[2,145]},{1:[2,124],6:[2,124],27:[2,124],28:[2,124],53:[2,124],58:[2,124],61:[2,124],70:[2,124],71:[2,124],72:[2,124],74:[2,124],76:[2,124],77:[2,124],81:[2,124],87:[2,124],88:[2,124],89:[2,124],94:[2,124],96:[2,124],105:[2,124],107:[2,124],108:[2,124],109:[2,124],113:[2,124],121:[2,124],129:[2,124],131:[2,124],132:[2,124],135:[2,124],136:[2,124],137:[2,124],138:[2,124],139:[2,124],140:[2,124]},{6:[2,131],27:[2,131],28:[2,131],58:[2,131],89:[2,131],94:[2,131]},{6:[2,59],27:[2,59],28:[2,59],57:320,58:[1,232]},{6:[2,132],27:[2,132],28:[2,132],58:[2,132],89:[2,132],94:[2,132]},{1:[2,171],6:[2,171],27:[2,171],28:[2,171],53:[2,171],58:[2,171],61:[2,171],76:[2,171],81:[2,171],89:[2,171],94:[2,171],96:[2,171],105:[2,171],106:91,107:[2,171],108:[2,171],109:[2,171],112:92,113:[2,171],114:73,121:[1,321],129:[2,171],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,173],6:[2,173],27:[2,173],28:[2,173],53:[2,173],58:[2,173],61:[2,173],76:[2,173],81:[2,173],89:[2,173],94:[2,173],96:[2,173],105:[2,173],106:91,107:[2,173],108:[1,322],109:[2,173],112:92,113:[2,173],114:73,121:[2,173],129:[2,173],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,172],6:[2,172],27:[2,172],28:[2,172],53:[2,172],58:[2,172],61:[2,172],76:[2,172],81:[2,172],89:[2,172],94:[2,172],96:[2,172],105:[2,172],106:91,107:[2,172],108:[2,172],109:[2,172],112:92,113:[2,172],114:73,121:[2,172],129:[2,172],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{6:[2,99],27:[2,99],28:[2,99],58:[2,99],81:[2,99]},{6:[2,59],27:[2,59],28:[2,59],57:323,58:[1,242]},{28:[1,324],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{6:[1,253],27:[1,254],28:[1,325]},{28:[1,326]},{1:[2,179],6:[2,179],27:[2,179],28:[2,179],53:[2,179],58:[2,179],61:[2,179],76:[2,179],81:[2,179],89:[2,179],94:[2,179],96:[2,179],105:[2,179],107:[2,179],108:[2,179],109:[2,179],113:[2,179],121:[2,179],129:[2,179],131:[2,179],132:[2,179],135:[2,179],136:[2,179],137:[2,179],138:[2,179],139:[2,179],140:[2,179]},{28:[2,183],124:[2,183],126:[2,183]},{27:[2,137],58:[2,137],106:91,107:[1,69],109:[1,70],112:92,113:[1,72],114:73,129:[1,90],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{6:[1,272],27:[1,273],28:[1,327]},{8:328,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{8:329,9:109,10:21,11:22,12:23,13:[1,24],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:19,26:20,29:66,30:[1,77],31:53,32:[1,75],33:[1,76],34:26,35:[1,54],36:[1,55],37:[1,56],38:[1,57],39:[1,58],40:[1,59],41:25,46:67,47:[1,48],48:[1,30],49:[1,49],50:[1,50],51:[1,32],54:33,55:[1,64],56:[1,65],62:51,63:52,65:39,67:27,68:28,69:29,79:[1,74],82:[1,46],86:[1,31],91:[1,62],92:[1,63],93:[1,61],99:[1,41],103:[1,47],104:[1,60],106:42,107:[1,69],109:[1,70],110:43,111:[1,71],112:44,113:[1,72],114:73,122:[1,45],127:40,128:[1,68],130:[1,34],131:[1,35],132:[1,36],133:[1,37],134:[1,38]},{6:[1,283],27:[1,284],28:[1,330]},{6:[2,43],27:[2,43],28:[2,43],58:[2,43],81:[2,43]},{6:[2,65],27:[2,65],28:[2,65],53:[2,65],58:[2,65]},{1:[2,177],6:[2,177],27:[2,177],28:[2,177],53:[2,177],58:[2,177],61:[2,177],76:[2,177],81:[2,177],89:[2,177],94:[2,177],96:[2,177],105:[2,177],107:[2,177],108:[2,177],109:[2,177],113:[2,177],121:[2,177],129:[2,177],131:[2,177],132:[2,177],135:[2,177],136:[2,177],137:[2,177],138:[2,177],139:[2,177],140:[2,177]},{6:[2,133],27:[2,133],28:[2,133],58:[2,133],89:[2,133],94:[2,133]},{1:[2,174],6:[2,174],27:[2,174],28:[2,174],53:[2,174],58:[2,174],61:[2,174],76:[2,174],81:[2,174],89:[2,174],94:[2,174],96:[2,174],105:[2,174],106:91,107:[2,174],108:[2,174],109:[2,174],112:92,113:[2,174],114:73,121:[2,174],129:[2,174],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{1:[2,175],6:[2,175],27:[2,175],28:[2,175],53:[2,175],58:[2,175],61:[2,175],76:[2,175],81:[2,175],89:[2,175],94:[2,175],96:[2,175],105:[2,175],106:91,107:[2,175],108:[2,175],109:[2,175],112:92,113:[2,175],114:73,121:[2,175],129:[2,175],131:[1,84],132:[1,83],135:[1,82],136:[1,85],137:[1,86],138:[1,87],139:[1,88],140:[1,89]},{6:[2,100],27:[2,100],28:[2,100],58:[2,100],81:[2,100]}], +defaultActions: {64:[2,57],65:[2,58],79:[2,3],98:[2,114],195:[2,94]}, parseError: function parseError(str, hash) { if (hash.recoverable) { this.trace(str); diff --git a/src/grammar.coffee b/src/grammar.coffee index 7a053bbdec..721f53725d 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -77,6 +77,7 @@ grammar = # Pure statements which cannot be expressions. Statement: [ o 'Return' + o 'YieldFrom' o 'Comment' o 'STATEMENT', -> new Literal $1 ] @@ -162,12 +163,18 @@ grammar = o 'RETURN', -> new Return ] - # A yield statement from a generator function body. + # A yield keyword from a generator function body. Yield: [ o 'YIELD Expression', -> new Yield $2 o 'YIELD', -> new Yield ] + # A yieldfrom statement from a generator function body. + YieldFrom: [ + o 'YIELDFROM Expression', -> new YieldFrom $2 + o 'YIELDFROM', -> new YieldFrom + ] + # A block comment. Comment: [ o 'HERECOMMENT', -> new Comment $1 @@ -576,7 +583,7 @@ operators = [ ['left', 'COMPARE'] ['left', 'LOGIC'] ['nonassoc', 'INDENT', 'OUTDENT'] - ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN', 'YIELD', 'THROW', 'EXTENDS'] + ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN', 'YIELD', 'YIELDFROM', 'THROW', 'EXTENDS'] ['right', 'FORIN', 'FOROF', 'BY', 'WHEN'] ['right', 'IF', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'SUPER', 'CLASS'] ['right', 'POST_IF'] diff --git a/src/lexer.coffee b/src/lexer.coffee index 99213a3d05..8c3b279bdd 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -556,7 +556,7 @@ JS_KEYWORDS = [ ] # CoffeeScript-only keywords. -COFFEE_KEYWORDS = ['undefined', 'then', 'unless', 'until', 'loop', 'of', 'by', 'when'] +COFFEE_KEYWORDS = ['undefined', 'then', 'unless', 'until', 'loop', 'of', 'by', 'when', 'yieldfrom'] COFFEE_ALIAS_MAP = and : '&&' diff --git a/src/nodes.coffee b/src/nodes.coffee index 78d3d7e261..9e76d40447 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -381,16 +381,27 @@ exports.Yield = class Yield extends Base children: ['expression'] - isStatement: NO - makeReturn: THIS - jumps: NO + compileNode: (o) -> + "yield#{[" #{@expression.compile o, LEVEL_PAREN}" if @expression]}" - compile: (o, level) -> - expr = @expression?.makeReturn() - if expr and expr not instanceof Return then expr.compile o, level else super o, level +exports.YieldFrom = class YieldFrom extends Base + constructor: (expr) -> + @expression = expr if expr and not expr.unwrap().isUndefined + + children: ['expression'] compileNode: (o) -> - "yield#{[" #{@expression.compile o, LEVEL_PAREN}" if @expression]}" + sendvar = o.scope.freeVariable 'send' + resvar = o.scope.freeVariable 'result' + refvar = o.scope.freeVariable 'ref' + + code = "var #{refvar} = #{[" #{@expression.compile o, LEVEL_PAREN}" if @expression]};\n" + code += "#{@tab}var #{sendvar}, #{resvar} = {};\n" + code += "#{@tab}while(!#{resvar}.done) {\n" + code += "#{@tab + TAB}#{resvar} = #{refvar}.send(#{sendvar});\n" + code += "#{@tab + TAB}#{sendvar} = yield #{resvar}.value;\n" + code += "#{@tab}}" + return code #### Value