diff --git a/lib/ast.js b/lib/ast.js index 52de448a5..5847b8015 100644 --- a/lib/ast.js +++ b/lib/ast.js @@ -1,4 +1,4 @@ -var Node, Negatable, Block, Atom, Literal, Var, Key, Index, Slice, Chain, Call, List, Obj, Prop, Arr, Unary, Binary, Assign, Import, In, Existence, Fun, Class, Super, Parens, Splat, Jump, Throw, Return, While, For, Try, Switch, Case, If, Label, JS, Util, Vars, DECLS, ref$, UTILS, LEVEL_TOP, LEVEL_PAREN, LEVEL_LIST, LEVEL_COND, LEVEL_OP, LEVEL_CALL, PREC, TAB, ID, SIMPLENUM, slice$ = [].slice, toString$ = {}.toString; +var Node, Negatable, Block, Atom, Literal, Var, Key, Index, Slice, Chain, Call, List, Obj, Prop, Arr, Unary, Binary, Assign, Import, In, Existence, Fun, Class, Super, Parens, Splat, Jump, Throw, Return, While, For, Try, Switch, Case, If, Label, Cascade, JS, Util, Vars, DECLS, ref$, UTILS, LEVEL_TOP, LEVEL_PAREN, LEVEL_LIST, LEVEL_COND, LEVEL_OP, LEVEL_CALL, PREC, TAB, ID, SIMPLENUM, slice$ = [].slice, toString$ = {}.toString; (Node = function(){ throw Error('unimplemented'); }).prototype = { @@ -503,18 +503,12 @@ exports.Literal = Literal = (function(superclass){ return this$; } function ctor$(){} ctor$.prototype = prototype; prototype.isEmpty = function(){ - switch (this.value) { - case 'void': - case 'null': - return true; - } + var ref$; + return (ref$ = this.value) == 'void' || ref$ == 'null'; }; prototype.isCallable = function(){ - switch (this.value) { - case 'this': - case 'eval': - return true; - } + var ref$; + return (ref$ = this.value) == 'this' || ref$ == 'eval' || ref$ == '..'; }; prototype.isString = function(){ return 0 <= '\'"'.indexOf((this.value + "").charAt()); @@ -577,6 +571,11 @@ exports.Literal = Literal = (function(superclass){ case '*': this.carp('stray star'); break; + case '..': + if (!(val = o.cascadee)) { + this.carp('stray cascadee'); + } + break; case 'debugger': if (level) { return "(function(){\n" + TAB + o.indent + "debugger;\n" + o.indent + "}())"; @@ -3584,6 +3583,27 @@ exports.Label = Label = (function(superclass){ }; return Label; }(Node)); +exports.Cascade = Cascade = (function(superclass){ + var prototype = extend$((import$(Cascade, superclass).displayName = 'Cascade', Cascade), superclass).prototype, constructor = Cascade; + function Cascade(target, block){ + this.target = target; + this.block = block; + } + prototype.children = ['target', 'block']; + prototype.terminator = ''; + prototype.compileNode = function(o){ + var ref, t, b; + this.temps = [ref = o.scope.temporary('x')]; + t = ref + ' = ' + this.target.compile(o, LEVEL_LIST); + b = this.block.compile((o.cascadee = ref, o)); + if (o.level) { + return "(" + t + ", " + b + ")"; + } else { + return t + ";\n" + b; + } + }; + return Cascade; +}(Node)); exports.JS = JS = (function(superclass){ var prototype = extend$((import$(JS, superclass).displayName = 'JS', JS), superclass).prototype, constructor = JS; function JS(code, literal, comment){ @@ -3751,15 +3771,17 @@ ref$.assign = function(name, value){ }); }; ref$.temporary = function(name){ - var i, temp, ref$; + var ref$; name || (name = 'ref'); - i = 0; - do { - temp = (name.length > 1 - ? name + (i++ || '') - : (i++ + parseInt(name, 36)).toString(36)) + "$"; - } while ((ref$ = this.variables[temp + "."]) != 'reuse' && ref$ != void 8); - return this.add(temp, 'var'); + while ((ref$ = this.variables[name + "$."]) != 'reuse' && ref$ != void 8) { + name = name.length < 2 && name < 'z' + ? String.fromCharCode(name.charCodeAt() + 1) + : name.replace(/\d*$/, fn$); + } + return this.add(name + '$', 'var'); + function fn$(it){ + return ++it; + } }; ref$.free = function(name){ return this.add(name, 'reuse'); diff --git a/lib/grammar.js b/lib/grammar.js index 00da72e5e..bc129e92f 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -151,7 +151,9 @@ bnf = { }), o('Lines NEWLINE') ], Line: [ - o('Expression'), o('PARAM( ArgList OptComma )PARAM <- Expression', function(){ + o('Expression'), o('Expression Block', function(){ + return new Cascade($1, $2); + }), o('PARAM( ArgList OptComma )PARAM <- Expression', function(){ return Call.back($2, $6, $5.charAt(1) === '~', $5.length === 3); }), o('COMMENT', function(){ return L(JS($1, true, true)); diff --git a/lib/lexer.js b/lib/lexer.js index 646ebff6b..b49e3cf34 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -638,6 +638,9 @@ exports.doLiteral = function(code, index){ tag = 'NEWLINE'; this.wantBy = false; break; + case '..': + tag = 'LITERAL'; + break; case '.': if (this.last[0] === '(') { createItFunc(); @@ -861,6 +864,15 @@ exports.doLiteral = function(code, index){ } tag = 'UNARY'; break; + case '&': + if (!able(this.tokens)) { + tag = 'LITERAL'; + break; + } + // fallthrough + case '|': + tag = 'BITWISE'; + break; case '~': if (this.dotcat(val)) { return 1; @@ -880,12 +892,9 @@ exports.doLiteral = function(code, index){ this.parameters(tag = up || '<-'); break; case '::': - up = 'prototype'; - // fallthrough - case '..': this.adi(); + val = 'prototype'; tag = 'ID'; - val = up || 'constructor'; break; default: switch (val.charAt(0)) { diff --git a/lib/parser.js b/lib/parser.js index 65b5c1389..6d49ce237 100644 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,7 +2,7 @@ exports.parser = {trace: function trace() { }, yy: {}, symbols_: {"error":2,"Chain":3,"ID":4,"Parenthetical":5,"List":6,"STRNUM":7,"LITERAL":8,"DOT":9,"Key":10,"CALL(":11,"ArgList":12,"OptComma":13,")CALL":14,"?":15,"LET":16,"Block":17,"WITH":18,"Expression":19,"[":20,"LoopHeads":21,"]":22,"{":23,"}":24,"(":25,"BIOP":26,")":27,"BIOPR":28,"BIOPBP":29,"BIOPP":30,"PARAM(":31,")PARAM":32,"UNARY":33,"CREMENT":34,"BACKTICK":35,"TO":36,"BY":37,"Properties":38,"LABEL":39,"KeyBase":40,"Arg":41,",":42,"NEWLINE":43,"INDENT":44,"DEDENT":45,"...":46,"Lines":47,"Line":48,"<-":49,"COMMENT":50,"WHERE":51,"CLONEPORT":52,"ASSIGN":53,"IMPORT":54,"+-":55,"CLONE":56,"COMPARE":57,"LOGIC":58,"MATH":59,"POWER":60,"SHIFT":61,"BITWISE":62,"CONCAT":63,"COMPOSE":64,"RELATION":65,"PIPE":66,"BACKPIPE":67,"!?":68,"->":69,"FUNCTION":70,"IF":71,"Else":72,"POST_IF":73,"LoopHead":74,"DO":75,"WHILE":76,"HURL":77,"JUMP":78,"SWITCH":79,"Exprs":80,"Cases":81,"DEFAULT":82,"ELSE":83,"TRY":84,"CATCH":85,"FINALLY":86,"CLASS":87,"OptExtends":88,"OptImplements":89,"EXTENDS":90,"DECL":91,"KeyValue":92,"Property":93,":":94,"Body":95,"FOR":96,"IN":97,"CASE":98,"OF":99,"OWN":100,"FROM":101,"IMPLEMENTS":102,"Root":103,"$accept":0,"$end":1}, terminals_: {2:"error",4:"ID",7:"STRNUM",8:"LITERAL",9:"DOT",11:"CALL(",14:")CALL",15:"?",16:"LET",18:"WITH",20:"[",22:"]",23:"{",24:"}",25:"(",26:"BIOP",27:")",28:"BIOPR",29:"BIOPBP",30:"BIOPP",31:"PARAM(",32:")PARAM",33:"UNARY",34:"CREMENT",35:"BACKTICK",36:"TO",37:"BY",39:"LABEL",42:",",43:"NEWLINE",44:"INDENT",45:"DEDENT",46:"...",49:"<-",50:"COMMENT",51:"WHERE",52:"CLONEPORT",53:"ASSIGN",54:"IMPORT",55:"+-",56:"CLONE",57:"COMPARE",58:"LOGIC",59:"MATH",60:"POWER",61:"SHIFT",62:"BITWISE",63:"CONCAT",64:"COMPOSE",65:"RELATION",66:"PIPE",67:"BACKPIPE",68:"!?",69:"->",70:"FUNCTION",71:"IF",73:"POST_IF",75:"DO",76:"WHILE",77:"HURL",78:"JUMP",79:"SWITCH",82:"DEFAULT",83:"ELSE",84:"TRY",85:"CATCH",86:"FINALLY",87:"CLASS",90:"EXTENDS",91:"DECL",94:":",96:"FOR",97:"IN",98:"CASE",99:"OF",100:"OWN",101:"FROM",102:"IMPLEMENTS"}, -productions_: [0,[3,1],[3,1],[3,1],[3,1],[3,1],[3,3],[3,3],[3,5],[3,2],[3,6],[3,3],[3,4],[3,7],[3,3],[3,4],[3,4],[3,3],[3,4],[3,4],[3,3],[3,7],[3,3],[3,7],[3,3],[3,3],[3,5],[3,6],[3,6],[3,5],[3,7],[3,7],[3,6],[3,6],[3,5],[6,4],[6,4],[6,5],[6,5],[10,1],[10,1],[40,1],[40,1],[12,0],[12,1],[12,3],[12,4],[12,6],[41,1],[41,2],[41,1],[13,0],[13,1],[47,0],[47,1],[47,3],[47,2],[48,1],[48,6],[48,1],[48,1],[17,3],[19,6],[19,3],[19,3],[19,5],[19,1],[19,3],[19,6],[19,3],[19,6],[19,2],[19,2],[19,3],[19,3],[19,3],[19,2],[19,2],[19,2],[19,5],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,2],[19,6],[19,6],[19,4],[19,3],[19,3],[19,4],[19,2],[19,5],[19,1],[19,1],[19,2],[19,3],[19,5],[19,5],[19,2],[19,4],[19,4],[19,2],[19,2],[19,4],[19,6],[19,4],[19,5],[19,4],[19,3],[19,2],[19,2],[19,5],[80,1],[80,3],[92,1],[92,1],[92,3],[92,3],[92,5],[92,5],[93,3],[93,6],[93,1],[93,3],[93,3],[93,2],[93,2],[93,2],[93,1],[38,0],[38,1],[38,3],[38,4],[38,4],[5,3],[95,1],[95,1],[95,3],[72,0],[72,2],[72,5],[74,4],[74,6],[74,6],[74,8],[74,4],[74,6],[74,6],[74,8],[74,5],[74,7],[74,7],[74,9],[74,6],[74,8],[74,8],[74,10],[74,10],[74,2],[74,4],[74,4],[74,6],[21,1],[21,2],[81,3],[81,4],[88,2],[88,0],[89,2],[89,0],[103,1]], +productions_: [0,[3,1],[3,1],[3,1],[3,1],[3,1],[3,3],[3,3],[3,5],[3,2],[3,6],[3,3],[3,4],[3,7],[3,3],[3,4],[3,4],[3,3],[3,4],[3,4],[3,3],[3,7],[3,3],[3,7],[3,3],[3,3],[3,5],[3,6],[3,6],[3,5],[3,7],[3,7],[3,6],[3,6],[3,5],[6,4],[6,4],[6,5],[6,5],[10,1],[10,1],[40,1],[40,1],[12,0],[12,1],[12,3],[12,4],[12,6],[41,1],[41,2],[41,1],[13,0],[13,1],[47,0],[47,1],[47,3],[47,2],[48,1],[48,2],[48,6],[48,1],[48,1],[17,3],[19,6],[19,3],[19,3],[19,5],[19,1],[19,3],[19,6],[19,3],[19,6],[19,2],[19,2],[19,3],[19,3],[19,3],[19,2],[19,2],[19,2],[19,5],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,2],[19,6],[19,6],[19,4],[19,3],[19,3],[19,4],[19,2],[19,5],[19,1],[19,1],[19,2],[19,3],[19,5],[19,5],[19,2],[19,4],[19,4],[19,2],[19,2],[19,4],[19,6],[19,4],[19,5],[19,4],[19,3],[19,2],[19,2],[19,5],[80,1],[80,3],[92,1],[92,1],[92,3],[92,3],[92,5],[92,5],[93,3],[93,6],[93,1],[93,3],[93,3],[93,2],[93,2],[93,2],[93,1],[38,0],[38,1],[38,3],[38,4],[38,4],[5,3],[95,1],[95,1],[95,3],[72,0],[72,2],[72,5],[74,4],[74,6],[74,6],[74,8],[74,4],[74,6],[74,6],[74,8],[74,5],[74,7],[74,7],[74,9],[74,6],[74,8],[74,8],[74,10],[74,10],[74,2],[74,4],[74,4],[74,6],[21,1],[21,2],[81,3],[81,4],[88,2],[88,0],[89,2],[89,0],[103,1]], performAction: function anonymous(yytext,yyleng,yylineno,yy,yystate,$$) { var $0 = $$.length - 1; @@ -134,51 +134,52 @@ case 54:this.$ = yy.Block($$[$0]); break; case 55:this.$ = $$[$0-2].add($$[$0]); break; -case 58:this.$ = yy.Call.back($$[$0-4], $$[$0], $$[$0-1].charAt(1) === '~', $$[$0-1].length === 3); +case 58:this.$ = new yy.Cascade($$[$0-1], $$[$0]); break; -case 59:this.$ = yy.L(yylineno, yy.JS($$[$0], true, true)); +case 59:this.$ = yy.Call.back($$[$0-4], $$[$0], $$[$0-1].charAt(1) === '~', $$[$0-1].length === 3); break; -case 60:this.$ = yy.L(yylineno, yy.Throw(yy.JS("Error('unimplemented')"))); +case 60:this.$ = yy.L(yylineno, yy.JS($$[$0], true, true)); break; -case 61:this.$ = $$[$0-1].chomp(); +case 61:this.$ = yy.L(yylineno, yy.Throw(yy.JS("Error('unimplemented')"))); break; -case 62:this.$ = yy.Chain(yy.Call['let']($$[$0-2], yy.Block([$$[$0-5]]))); +case 62:this.$ = $$[$0-1].chomp(); break; -case 63:this.$ = yy.Import(yy.Unary('^^', $$[$0-2], { +case 63:this.$ = yy.Chain(yy.Call['let']($$[$0-2], yy.Block([$$[$0-5]]))); +break; +case 64:this.$ = yy.Import(yy.Unary('^^', $$[$0-2], { prec: 'yy.UNARY' }), $$[$0], false); break; -case 64:this.$ = yy.Import(yy.Unary('^^', $$[$0-2], { +case 65:this.$ = yy.Import(yy.Unary('^^', $$[$0-2], { prec: 'yy.UNARY' }), $$[$0].unwrap(), false); break; -case 65:this.$ = $$[$0-2].add(yy.Call([$$[$0-4], $$[$0]])); +case 66:this.$ = $$[$0-2].add(yy.Call([$$[$0-4], $$[$0]])); break; -case 66:this.$ = $$[$0].unwrap(); +case 67:this.$ = $$[$0].unwrap(); break; -case 67:this.$ = yy.Assign($$[$0-2].unwrap(), $$[$0], $$[$0-1]); +case 68:this.$ = yy.Assign($$[$0-2].unwrap(), $$[$0], $$[$0-1]); break; -case 68:this.$ = yy.Assign($$[$0-5].unwrap(), yy.Arr.maybe($$[$0-2]), $$[$0-4]); +case 69:this.$ = yy.Assign($$[$0-5].unwrap(), yy.Arr.maybe($$[$0-2]), $$[$0-4]); break; -case 69:this.$ = yy.Import($$[$0-2], $$[$0], $$[$0-1] === '<<<<'); +case 70:this.$ = yy.Import($$[$0-2], $$[$0], $$[$0-1] === '<<<<'); break; -case 70:this.$ = yy.Import($$[$0-5], yy.Arr.maybe($$[$0-2]), $$[$0-4] === '<<<<'); +case 71:this.$ = yy.Import($$[$0-5], yy.Arr.maybe($$[$0-2]), $$[$0-4] === '<<<<'); break; -case 71:this.$ = yy.Unary($$[$0-1], $$[$0].unwrap()); +case 72:this.$ = yy.Unary($$[$0-1], $$[$0].unwrap()); break; -case 72:this.$ = yy.Unary($$[$0], $$[$0-1].unwrap(), true); +case 73:this.$ = yy.Unary($$[$0], $$[$0-1].unwrap(), true); break; -case 73: case 74: -case 75:this.$ = yy.Assign($$[$0].unwrap(), [$$[$0-2]], $$[$0-1]); +case 75: +case 76:this.$ = yy.Assign($$[$0].unwrap(), [$$[$0-2]], $$[$0-1]); break; -case 76: case 77: -case 78:this.$ = yy.Unary($$[$0-1], $$[$0]); +case 78: +case 79:this.$ = yy.Unary($$[$0-1], $$[$0]); break; -case 79:this.$ = yy.Unary($$[$0-4], yy.Arr.maybe($$[$0-2])); +case 80:this.$ = yy.Unary($$[$0-4], yy.Arr.maybe($$[$0-2])); break; -case 80: case 81: case 82: case 83: @@ -186,151 +187,152 @@ case 84: case 85: case 86: case 87: -case 88:this.$ = yy.Binary($$[$0-1], $$[$0-2], $$[$0]); +case 88: +case 89:this.$ = yy.Binary($$[$0-1], $$[$0-2], $$[$0]); break; -case 89:this.$ = '!' === $$[$0-1].charAt(0) +case 90:this.$ = '!' === $$[$0-1].charAt(0) ? yy.Binary($$[$0-1].slice(1), $$[$0-2], $$[$0]).invert() : yy.Binary($$[$0-1], $$[$0-2], $$[$0]); break; -case 90:this.$ = yy.Block($$[$0-2]).pipe($$[$0], $$[$0-1]); +case 91:this.$ = yy.Block($$[$0-2]).pipe($$[$0], $$[$0-1]); break; -case 91:this.$ = yy.Block($$[$0-2]).pipe([$$[$0]], $$[$0-1]); +case 92:this.$ = yy.Block($$[$0-2]).pipe([$$[$0]], $$[$0-1]); break; -case 92:this.$ = yy.Existence($$[$0-1].unwrap(), true); +case 93:this.$ = yy.Existence($$[$0-1].unwrap(), true); break; -case 93:this.$ = yy.L(yylineno, yy.Fun($$[$0-4], $$[$0], $$[$0-1].charAt(0) === '~', $$[$0-1].length === 3)); +case 94:this.$ = yy.L(yylineno, yy.Fun($$[$0-4], $$[$0], $$[$0-1].charAt(0) === '~', $$[$0-1].length === 3)); break; -case 94:this.$ = yy.L(yylineno, yy.Fun($$[$0-3], $$[$0]).named($$[$0-5])); +case 95:this.$ = yy.L(yylineno, yy.Fun($$[$0-3], $$[$0]).named($$[$0-5])); break; -case 95:this.$ = yy.If($$[$0-2], $$[$0-1], $$[$0-3] === 'unless').addElse($$[$0]); +case 96:this.$ = yy.If($$[$0-2], $$[$0-1], $$[$0-3] === 'unless').addElse($$[$0]); break; -case 96:this.$ = yy.If($$[$0], $$[$0-2], $$[$0-1] === 'unless'); +case 97:this.$ = yy.If($$[$0], $$[$0-2], $$[$0-1] === 'unless'); break; -case 97:this.$ = $$[$0-2].addBody($$[$0-1]).addElse($$[$0]); +case 98:this.$ = $$[$0-2].addBody($$[$0-1]).addElse($$[$0]); break; -case 98:this.$ = new yy.While($$[$0], $$[$0-1] === 'until', true).addBody($$[$0-2]); +case 99:this.$ = new yy.While($$[$0], $$[$0-1] === 'until', true).addBody($$[$0-2]); break; -case 99:this.$ = yy.Jump[$$[$0-1]]($$[$0]); +case 100:this.$ = yy.Jump[$$[$0-1]]($$[$0]); break; -case 100:this.$ = yy.Jump[$$[$0-4]](yy.Arr.maybe($$[$0-2])); +case 101:this.$ = yy.Jump[$$[$0-4]](yy.Arr.maybe($$[$0-2])); break; -case 101:this.$ = yy.L(yylineno, yy.Jump[$$[$0]]()); +case 102:this.$ = yy.L(yylineno, yy.Jump[$$[$0]]()); break; -case 102:this.$ = yy.L(yylineno, new yy.Jump($$[$0])); +case 103:this.$ = yy.L(yylineno, new yy.Jump($$[$0])); break; -case 103:this.$ = yy.L(yylineno, new yy.Jump($$[$0-1], $$[$0])); +case 104:this.$ = yy.L(yylineno, new yy.Jump($$[$0-1], $$[$0])); break; -case 104:this.$ = new yy.Switch($$[$0-2], $$[$0-1], $$[$0]); +case 105:this.$ = new yy.Switch($$[$0-2], $$[$0-1], $$[$0]); break; -case 105: -case 106:this.$ = new yy.Switch($$[$0-4], $$[$0-3], $$[$0-2], $$[$0]); +case 106: +case 107:this.$ = new yy.Switch($$[$0-4], $$[$0-3], $$[$0-2], $$[$0]); break; -case 107:this.$ = new yy.Switch($$[$0-1], null, $$[$0]); +case 108:this.$ = new yy.Switch($$[$0-1], null, $$[$0]); break; -case 108: -case 109:this.$ = new yy.Switch($$[$0-3], null, $$[$0-2], $$[$0]); +case 109: +case 110:this.$ = new yy.Switch($$[$0-3], null, $$[$0-2], $$[$0]); break; -case 110:this.$ = new yy.Switch($$[$0-1], null, [], $$[$0]); +case 111:this.$ = new yy.Switch($$[$0-1], null, [], $$[$0]); break; -case 111:this.$ = new yy.Try($$[$0]); +case 112:this.$ = new yy.Try($$[$0]); break; -case 112:this.$ = new yy.Try($$[$0-2], $$[$0-1], $$[$0]); +case 113:this.$ = new yy.Try($$[$0-2], $$[$0-1], $$[$0]); break; -case 113:this.$ = new yy.Try($$[$0-4], $$[$0-3], $$[$0-2], $$[$0]); +case 114:this.$ = new yy.Try($$[$0-4], $$[$0-3], $$[$0-2], $$[$0]); break; -case 114:this.$ = new yy.Try($$[$0-2], null, null, $$[$0]); +case 115:this.$ = new yy.Try($$[$0-2], null, null, $$[$0]); break; -case 115:this.$ = new yy.Class({ +case 116:this.$ = new yy.Class({ title: $$[$0-3].unwrap(), sup: $$[$0-2], mixins: $$[$0-1], body: $$[$0] }); break; -case 116:this.$ = new yy.Class({ +case 117:this.$ = new yy.Class({ sup: $$[$0-2], mixins: $$[$0-1], body: $$[$0] }); break; -case 117:this.$ = yy.Util.Extends($$[$0-2].unwrap(), $$[$0]); +case 118:this.$ = yy.Util.Extends($$[$0-2].unwrap(), $$[$0]); break; -case 118: -case 119:this.$ = new yy.Label($$[$0-1], $$[$0]); +case 119: +case 120:this.$ = new yy.Label($$[$0-1], $$[$0]); break; -case 120:this.$ = yy.Decl($$[$0-4], $$[$0-2], yylineno + 1); +case 121:this.$ = yy.Decl($$[$0-4], $$[$0-2], yylineno + 1); break; -case 121:this.$ = [$$[$0]]; +case 122:this.$ = [$$[$0]]; break; -case 122:this.$ = $$[$0-2].concat($$[$0]); +case 123:this.$ = $$[$0-2].concat($$[$0]); break; -case 124:this.$ = yy.Prop(yy.L(yylineno, yy.Key($$[$0], $$[$0] != 'arguments' && $$[$0] != 'eval')), yy.L(yylineno, yy.Literal($$[$0]))); +case 125:this.$ = yy.Prop(yy.L(yylineno, yy.Key($$[$0], $$[$0] != 'arguments' && $$[$0] != 'eval')), yy.L(yylineno, yy.Literal($$[$0]))); break; -case 125:this.$ = yy.Prop($$[$0], yy.Chain($$[$0-2], [yy.Index($$[$0], $$[$0-1])])); +case 126:this.$ = yy.Prop($$[$0], yy.Chain($$[$0-2], [yy.Index($$[$0], $$[$0-1])])); break; -case 126:this.$ = yy.Prop($$[$0], yy.Chain(yy.L(yylineno, yy.Literal($$[$0-2])), [yy.Index($$[$0], $$[$0-1])])); +case 127:this.$ = yy.Prop($$[$0], yy.Chain(yy.L(yylineno, yy.Literal($$[$0-2])), [yy.Index($$[$0], $$[$0-1])])); break; -case 127:this.$ = yy.Prop(yy.L(yylineno, yy.Key($$[$0])), yy.L(yylineno, yy.Obj($$[$0-3]).named($$[$0]))); +case 128:this.$ = yy.Prop(yy.L(yylineno, yy.Key($$[$0])), yy.L(yylineno, yy.Obj($$[$0-3]).named($$[$0]))); break; -case 128:this.$ = yy.Prop(yy.L(yylineno, yy.Key($$[$0])), yy.L(yylineno, yy.Arr($$[$0-3]).named($$[$0]))); +case 129:this.$ = yy.Prop(yy.L(yylineno, yy.Key($$[$0])), yy.L(yylineno, yy.Arr($$[$0-3]).named($$[$0]))); break; -case 129:this.$ = yy.Prop($$[$0-2], $$[$0]); +case 130:this.$ = yy.Prop($$[$0-2], $$[$0]); break; -case 130:this.$ = yy.Prop($$[$0-5], yy.Arr.maybe($$[$0-2])); +case 131:this.$ = yy.Prop($$[$0-5], yy.Arr.maybe($$[$0-2])); break; -case 132:this.$ = yy.Binary($$[$0-1], $$[$0-2], $$[$0]); +case 133:this.$ = yy.Binary($$[$0-1], $$[$0-2], $$[$0]); break; -case 133:this.$ = yy.Binary($$[$0-1], $$[$0-2], $$[$0], true); +case 134:this.$ = yy.Binary($$[$0-1], $$[$0-2], $$[$0], true); break; -case 134:this.$ = yy.Prop($$[$0].maybeKey(), yy.L(yylineno, yy.Literal($$[$0-1] === '+'))); +case 135:this.$ = yy.Prop($$[$0].maybeKey(), yy.L(yylineno, yy.Literal($$[$0-1] === '+'))); break; -case 135:this.$ = yy.Prop(yy.L(yylineno, yy.Key($$[$0], true)), yy.L(yylineno, yy.Literal($$[$0-1] === '+'))); +case 136:this.$ = yy.Prop(yy.L(yylineno, yy.Key($$[$0], true)), yy.L(yylineno, yy.Literal($$[$0-1] === '+'))); break; -case 136:this.$ = yy.Splat($$[$0]); +case 137:this.$ = yy.Splat($$[$0]); break; -case 137:this.$ = yy.L(yylineno, yy.JS($$[$0], true, true)); +case 138:this.$ = yy.L(yylineno, yy.JS($$[$0], true, true)); break; -case 138:this.$ = []; +case 139:this.$ = []; break; -case 139:this.$ = [$$[$0]]; +case 140:this.$ = [$$[$0]]; break; -case 140:this.$ = $$[$0-2].concat($$[$0]); +case 141:this.$ = $$[$0-2].concat($$[$0]); break; -case 141:this.$ = $$[$0-3].concat($$[$0]); +case 142:this.$ = $$[$0-3].concat($$[$0]); break; -case 142:this.$ = $$[$0-2]; +case 143:this.$ = $$[$0-2]; break; -case 143:this.$ = yy.Parens($$[$0-1].chomp().unwrap(), false, $$[$0-2] === '"'); +case 144:this.$ = yy.Parens($$[$0-1].chomp().unwrap(), false, $$[$0-2] === '"'); break; -case 146:this.$ = $$[$0-2].add($$[$0]); +case 147:this.$ = $$[$0-2].add($$[$0]); break; -case 147:this.$ = null; +case 148:this.$ = null; break; -case 148:this.$ = $$[$0]; +case 149:this.$ = $$[$0]; break; -case 149:this.$ = yy.If($$[$0-2], $$[$0-1], $$[$0-3] === 'unless').addElse($$[$0]); +case 150:this.$ = yy.If($$[$0-2], $$[$0-1], $$[$0-3] === 'unless').addElse($$[$0]); break; -case 150:this.$ = new yy.For({ +case 151:this.$ = new yy.For({ item: $$[$0-2].unwrap(), index: $$[$0-1], source: $$[$0] }); break; -case 151:this.$ = new yy.For({ +case 152:this.$ = new yy.For({ item: $$[$0-4].unwrap(), index: $$[$0-3], source: $$[$0-2], guard: $$[$0] }); break; -case 152:this.$ = new yy.For({ +case 153:this.$ = new yy.For({ item: $$[$0-4].unwrap(), index: $$[$0-3], source: $$[$0-2], step: $$[$0] }); break; -case 153:this.$ = new yy.For({ +case 154:this.$ = new yy.For({ item: $$[$0-6].unwrap(), index: $$[$0-5], source: $$[$0-4], @@ -338,27 +340,27 @@ case 153:this.$ = new yy.For({ guard: $$[$0] }); break; -case 154:this.$ = new yy.For({ +case 155:this.$ = new yy.For({ object: true, index: $$[$0-2], source: $$[$0] }); break; -case 155:this.$ = new yy.For({ +case 156:this.$ = new yy.For({ object: true, index: $$[$0-4], source: $$[$0-2], guard: $$[$0] }); break; -case 156:this.$ = new yy.For({ +case 157:this.$ = new yy.For({ object: true, index: $$[$0-4], item: $$[$0-2].unwrap(), source: $$[$0] }); break; -case 157:this.$ = new yy.For({ +case 158:this.$ = new yy.For({ object: true, index: $$[$0-6], item: $$[$0-4].unwrap(), @@ -366,14 +368,14 @@ case 157:this.$ = new yy.For({ guard: $$[$0] }); break; -case 158:this.$ = new yy.For({ +case 159:this.$ = new yy.For({ object: true, own: true, index: $$[$0-2], source: $$[$0] }); break; -case 159:this.$ = new yy.For({ +case 160:this.$ = new yy.For({ object: true, own: true, index: $$[$0-4], @@ -381,7 +383,7 @@ case 159:this.$ = new yy.For({ guard: $$[$01] }); break; -case 160:this.$ = new yy.For({ +case 161:this.$ = new yy.For({ object: true, own: true, index: $$[$0-4], @@ -389,7 +391,7 @@ case 160:this.$ = new yy.For({ source: $$[$0] }); break; -case 161:this.$ = new yy.For({ +case 162:this.$ = new yy.For({ object: true, own: true, index: $$[$0-6], @@ -398,14 +400,14 @@ case 161:this.$ = new yy.For({ guard: $$[$0-1] }); break; -case 162:this.$ = new yy.For({ +case 163:this.$ = new yy.For({ index: $$[$0-4], from: $$[$0-2], op: $$[$0-1], to: $$[$0] }); break; -case 163:this.$ = new yy.For({ +case 164:this.$ = new yy.For({ index: $$[$0-6], from: $$[$0-4], op: $$[$0-3], @@ -413,7 +415,7 @@ case 163:this.$ = new yy.For({ guard: $$[$0] }); break; -case 164:this.$ = new yy.For({ +case 165:this.$ = new yy.For({ index: $$[$0-6], from: $$[$0-4], op: $$[$0-3], @@ -421,7 +423,7 @@ case 164:this.$ = new yy.For({ step: $$[$0] }); break; -case 165:this.$ = new yy.For({ +case 166:this.$ = new yy.For({ index: $$[$0-8], from: $$[$0-6], op: $$[$0-5], @@ -430,7 +432,7 @@ case 165:this.$ = new yy.For({ guard: $$[$0] }); break; -case 166:this.$ = new yy.For({ +case 167:this.$ = new yy.For({ index: $$[$0-8], from: $$[$0-6], op: $$[$0-5], @@ -439,35 +441,35 @@ case 166:this.$ = new yy.For({ step: $$[$0] }); break; -case 167:this.$ = new yy.While($$[$0], $$[$0-1] === 'until'); +case 168:this.$ = new yy.While($$[$0], $$[$0-1] === 'until'); break; -case 168:this.$ = new yy.While($$[$0-2], $$[$0-3] === 'until').addGuard($$[$0]); +case 169:this.$ = new yy.While($$[$0-2], $$[$0-3] === 'until').addGuard($$[$0]); break; -case 169:this.$ = new yy.While($$[$0-2], $$[$0-3] === 'until', $$[$0]); +case 170:this.$ = new yy.While($$[$0-2], $$[$0-3] === 'until', $$[$0]); break; -case 170:this.$ = new yy.While($$[$0-4], $$[$0-5] === 'until', $$[$0-2]).addGuard($$[$0]); +case 171:this.$ = new yy.While($$[$0-4], $$[$0-5] === 'until', $$[$0-2]).addGuard($$[$0]); break; -case 171:this.$ = [$$[$0]]; +case 172:this.$ = [$$[$0]]; break; -case 172:this.$ = $$[$0-1].concat($$[$0]); +case 173:this.$ = $$[$0-1].concat($$[$0]); break; -case 173:this.$ = [new yy.Case($$[$0-1], $$[$0])]; +case 174:this.$ = [new yy.Case($$[$0-1], $$[$0])]; break; -case 174:this.$ = $$[$0-3].concat(new yy.Case($$[$0-1], $$[$0])); +case 175:this.$ = $$[$0-3].concat(new yy.Case($$[$0-1], $$[$0])); break; -case 175:this.$ = $$[$0]; +case 176:this.$ = $$[$0]; break; -case 176:this.$ = null; +case 177:this.$ = null; break; -case 177:this.$ = $$[$0]; +case 178:this.$ = $$[$0]; break; -case 178:this.$ = null; +case 179:this.$ = null; break; -case 179:return this.$ +case 180:return this.$ } }, -table: [{1:[2,53],3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:4,18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,53],44:[1,6],46:[1,10],47:3,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],95:2,96:[1,37],103:1},{1:[3]},{1:[2,179]},{1:[2,144],27:[2,144],43:[1,39]},{1:[2,145],27:[2,145],43:[1,40]},{1:[2,54],27:[2,54],43:[2,54],45:[2,54]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,53],45:[2,53],46:[1,10],47:41,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,57],27:[2,57],35:[1,43],43:[2,57],45:[2,57],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:58,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],32:[2,43],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,59],27:[2,59],43:[2,59],45:[2,59]},{1:[2,60],27:[2,60],43:[2,60],45:[2,60]},{1:[2,66],9:[1,68],11:[1,69],14:[2,66],15:[1,70],22:[2,66],24:[2,66],26:[2,66],27:[2,66],28:[2,66],32:[2,66],34:[1,65],35:[2,66],36:[2,66],37:[2,66],42:[2,66],43:[2,66],44:[2,66],45:[2,66],51:[2,66],52:[1,63],53:[1,64],54:[2,66],55:[2,66],57:[2,66],58:[2,66],59:[2,66],60:[2,66],61:[2,66],62:[2,66],63:[2,66],64:[2,66],65:[2,66],66:[2,66],67:[2,66],68:[1,66],73:[2,66],76:[2,66],90:[1,67],96:[2,66],98:[2,66],102:[2,66]},{3:71,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:73,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],44:[1,74],53:[1,72],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:76,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],53:[1,75],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:78,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],53:[1,77],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{11:[1,79]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:80,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:81,44:[1,6]},{17:82,44:[1,6]},{1:[2,101],3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],14:[2,101],16:[1,32],18:[1,33],19:83,20:[1,34],22:[2,101],23:[1,35],24:[2,101],25:[1,36],26:[2,101],27:[2,101],28:[2,101],31:[1,62],32:[2,101],33:[1,13],34:[1,12],35:[2,101],36:[2,101],37:[2,101],39:[1,25],42:[2,101],43:[2,101],44:[1,84],45:[2,101],51:[2,101],54:[2,101],55:[1,14],56:[1,15],57:[2,101],58:[2,101],59:[2,101],60:[2,101],61:[2,101],62:[2,101],63:[2,101],64:[2,101],65:[2,101],66:[2,101],67:[2,101],70:[1,16],71:[1,17],73:[2,101],74:18,75:[1,19],76:[2,101],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[2,101],98:[2,101],102:[2,101]},{1:[2,102],4:[1,85],14:[2,102],22:[2,102],24:[2,102],26:[2,102],27:[2,102],28:[2,102],32:[2,102],35:[2,102],36:[2,102],37:[2,102],42:[2,102],43:[2,102],44:[2,102],45:[2,102],51:[2,102],54:[2,102],55:[2,102],57:[2,102],58:[2,102],59:[2,102],60:[2,102],61:[2,102],62:[2,102],63:[2,102],64:[2,102],65:[2,102],66:[2,102],67:[2,102],73:[2,102],76:[2,102],96:[2,102],98:[2,102],102:[2,102]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:88,18:[1,33],19:89,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],44:[1,6],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],80:86,81:87,84:[1,23],87:[1,24],91:[1,26],96:[1,37],98:[1,90]},{17:91,44:[1,6]},{3:92,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36],44:[2,176],88:93,90:[1,94],102:[2,176]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:96,18:[1,33],19:95,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],44:[1,6],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{44:[1,97]},{1:[2,1],9:[2,1],11:[2,1],14:[2,1],15:[2,1],22:[2,1],24:[2,1],26:[2,1],27:[2,1],28:[2,1],32:[2,1],34:[2,1],35:[2,1],36:[2,1],37:[2,1],42:[2,1],43:[2,1],44:[2,1],45:[2,1],51:[2,1],52:[2,1],53:[2,1],54:[2,1],55:[2,1],57:[2,1],58:[2,1],59:[2,1],60:[2,1],61:[2,1],62:[2,1],63:[2,1],64:[2,1],65:[2,1],66:[2,1],67:[2,1],68:[2,1],73:[2,1],76:[2,1],90:[2,1],96:[2,1],98:[2,1],99:[2,1],102:[2,1]},{1:[2,2],9:[2,2],11:[2,2],14:[2,2],15:[2,2],22:[2,2],24:[2,2],26:[2,2],27:[2,2],28:[2,2],32:[2,2],34:[2,2],35:[2,2],36:[2,2],37:[2,2],42:[2,2],43:[2,2],44:[2,2],45:[2,2],51:[2,2],52:[2,2],53:[2,2],54:[2,2],55:[2,2],57:[2,2],58:[2,2],59:[2,2],60:[2,2],61:[2,2],62:[2,2],63:[2,2],64:[2,2],65:[2,2],66:[2,2],67:[2,2],68:[2,2],73:[2,2],76:[2,2],90:[2,2],96:[2,2],97:[2,2],98:[2,2],99:[2,2],102:[2,2]},{1:[2,3],9:[2,3],11:[2,3],14:[2,3],15:[2,3],22:[2,3],24:[2,3],26:[2,3],27:[2,3],28:[2,3],32:[2,3],34:[2,3],35:[2,3],36:[2,3],37:[2,3],42:[2,3],43:[2,3],44:[2,3],45:[2,3],51:[2,3],52:[2,3],53:[2,3],54:[2,3],55:[2,3],57:[2,3],58:[2,3],59:[2,3],60:[2,3],61:[2,3],62:[2,3],63:[2,3],64:[2,3],65:[2,3],66:[2,3],67:[2,3],68:[2,3],73:[2,3],76:[2,3],90:[2,3],96:[2,3],97:[2,3],98:[2,3],99:[2,3],102:[2,3]},{1:[2,4],9:[2,4],11:[2,4],14:[2,4],15:[2,4],22:[2,4],24:[2,4],26:[2,4],27:[2,4],28:[2,4],32:[2,4],34:[2,4],35:[2,4],36:[2,4],37:[2,4],42:[2,4],43:[2,4],44:[2,4],45:[2,4],51:[2,4],52:[2,4],53:[2,4],54:[2,4],55:[2,4],57:[2,4],58:[2,4],59:[2,4],60:[2,4],61:[2,4],62:[2,4],63:[2,4],64:[2,4],65:[2,4],66:[2,4],67:[2,4],68:[2,4],73:[2,4],76:[2,4],90:[2,4],96:[2,4],97:[2,4],98:[2,4],99:[2,4],102:[2,4]},{1:[2,5],9:[2,5],11:[2,5],14:[2,5],15:[2,5],22:[2,5],24:[2,5],26:[2,5],27:[2,5],28:[2,5],32:[2,5],34:[2,5],35:[2,5],36:[2,5],37:[2,5],42:[2,5],43:[2,5],44:[2,5],45:[2,5],51:[2,5],52:[2,5],53:[2,5],54:[2,5],55:[2,5],57:[2,5],58:[2,5],59:[2,5],60:[2,5],61:[2,5],62:[2,5],63:[2,5],64:[2,5],65:[2,5],66:[2,5],67:[2,5],68:[2,5],73:[2,5],76:[2,5],90:[2,5],96:[2,5],97:[2,5],98:[2,5],99:[2,5],102:[2,5]},{11:[1,98]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:99,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:101,16:[1,32],18:[1,33],19:100,20:[1,34],22:[2,43],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{4:[1,115],5:112,7:[1,116],8:[1,113],10:106,20:[1,102],23:[1,114],24:[2,138],25:[1,117],38:103,40:111,42:[2,138],43:[2,138],44:[1,105],46:[1,109],50:[1,110],55:[1,108],92:107,93:104},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:4,18:[1,33],19:119,20:[1,34],23:[1,35],25:[1,36],26:[1,118],27:[2,53],28:[1,120],29:[1,121],30:[1,122],31:[1,123],33:[1,124],34:[1,125],35:[1,126],39:[1,25],43:[2,53],44:[1,6],46:[1,10],47:3,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],95:127,96:[1,37]},{3:128,4:[1,129],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36],100:[1,130]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:131,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,56],3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],27:[2,56],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,56],45:[2,56],46:[1,10],48:132,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,53],3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],27:[2,53],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,53],46:[1,10],47:133,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{43:[1,39],45:[1,134]},{11:[1,135]},{3:136,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:137,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],44:[1,138],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:139,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:140,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:141,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:142,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:143,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:144,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:145,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:146,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:147,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:148,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:149,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:150,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:151,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:152,32:[2,51],42:[1,153],43:[2,51],44:[2,51]},{14:[2,44],22:[2,44],32:[2,44],42:[2,44],43:[2,44],44:[2,44],45:[2,44]},{14:[2,48],22:[2,48],32:[2,48],35:[1,43],42:[2,48],43:[2,48],44:[2,48],45:[2,48],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],14:[2,50],16:[1,32],18:[1,33],19:154,20:[1,34],22:[2,50],23:[1,35],25:[1,36],31:[1,62],32:[2,50],33:[1,13],34:[1,12],39:[1,25],42:[2,50],43:[2,50],44:[2,50],45:[2,50],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:155,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],32:[2,43],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:157,18:[1,33],19:156,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],44:[1,6],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:158,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],44:[1,159],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,72],14:[2,72],22:[2,72],24:[2,72],26:[2,72],27:[2,72],28:[2,72],32:[2,72],35:[2,72],36:[2,72],37:[2,72],42:[2,72],43:[2,72],44:[2,72],45:[2,72],51:[2,72],54:[2,72],55:[2,72],57:[2,72],58:[2,72],59:[2,72],60:[2,72],61:[2,72],62:[2,72],63:[2,72],64:[2,72],65:[2,72],66:[2,72],67:[2,72],73:[2,72],76:[2,72],96:[2,72],98:[2,72],102:[2,72]},{1:[2,92],14:[2,92],22:[2,92],24:[2,92],26:[2,92],27:[2,92],28:[2,92],32:[2,92],35:[2,92],36:[2,92],37:[2,92],42:[2,92],43:[2,92],44:[2,92],45:[2,92],51:[2,92],54:[2,92],55:[2,92],57:[2,92],58:[2,92],59:[2,92],60:[2,92],61:[2,92],62:[2,92],63:[2,92],64:[2,92],65:[2,92],66:[2,92],67:[2,92],73:[2,92],76:[2,92],96:[2,92],98:[2,92],102:[2,92]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:160,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{4:[1,115],5:112,6:162,7:[1,116],10:161,20:[1,163],23:[1,164],25:[1,117],40:111},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:165,14:[2,43],16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,9],9:[2,9],11:[2,9],14:[2,9],15:[2,9],22:[2,9],24:[2,9],26:[2,9],27:[2,9],28:[2,9],32:[2,9],34:[2,9],35:[2,9],36:[2,9],37:[2,9],42:[2,9],43:[2,9],44:[2,9],45:[2,9],51:[2,9],52:[2,9],53:[2,9],54:[2,9],55:[2,9],57:[2,9],58:[2,9],59:[2,9],60:[2,9],61:[2,9],62:[2,9],63:[2,9],64:[2,9],65:[2,9],66:[2,9],67:[2,9],68:[2,9],73:[2,9],76:[2,9],90:[2,9],96:[2,9],97:[2,9],98:[2,9],99:[2,9],102:[2,9]},{1:[2,71],9:[1,68],11:[1,69],14:[2,71],15:[1,70],22:[2,71],24:[2,71],26:[2,71],27:[2,71],28:[2,71],32:[2,71],35:[2,71],36:[2,71],37:[2,71],42:[2,71],43:[2,71],44:[2,71],45:[2,71],51:[2,71],54:[2,71],55:[2,71],57:[2,71],58:[2,71],59:[2,71],60:[2,71],61:[2,71],62:[2,71],63:[2,71],64:[2,71],65:[2,71],66:[2,71],67:[2,71],73:[2,71],76:[2,71],96:[2,71],98:[2,71],102:[2,71]},{3:166,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{1:[2,76],14:[2,76],22:[2,76],24:[2,76],26:[2,76],27:[2,76],28:[2,76],32:[2,76],35:[1,43],36:[2,76],37:[2,76],42:[2,76],43:[2,76],44:[2,76],45:[2,76],51:[2,76],54:[2,76],55:[2,76],57:[2,76],58:[2,76],59:[2,76],60:[1,49],61:[2,76],62:[2,76],63:[2,76],64:[1,53],65:[2,76],66:[2,76],67:[2,76],73:[2,76],76:[2,76],96:[2,76],98:[2,76],102:[2,76]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:167,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:168,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{1:[2,77],14:[2,77],22:[2,77],24:[2,77],26:[2,77],27:[2,77],28:[2,77],32:[2,77],35:[1,43],36:[2,77],37:[2,77],42:[2,77],43:[2,77],44:[2,77],45:[2,77],51:[2,77],54:[2,77],55:[2,77],57:[2,77],58:[2,77],59:[2,77],60:[1,49],61:[2,77],62:[2,77],63:[2,77],64:[1,53],65:[2,77],66:[2,77],67:[2,77],73:[2,77],76:[2,77],96:[2,77],98:[2,77],102:[2,77]},{3:169,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{1:[2,78],14:[2,78],22:[2,78],24:[2,78],26:[2,78],27:[2,78],28:[2,78],32:[2,78],35:[1,43],36:[2,78],37:[2,78],42:[2,78],43:[2,78],44:[2,78],45:[2,78],51:[2,78],54:[2,78],55:[2,78],57:[2,78],58:[2,78],59:[2,78],60:[1,49],61:[2,78],62:[2,78],63:[2,78],64:[1,53],65:[2,78],66:[2,78],67:[2,78],73:[2,78],76:[2,78],96:[2,78],98:[2,78],102:[2,78]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:170,14:[2,43],16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:171,35:[1,43],44:[1,6],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{1:[2,147],14:[2,147],22:[2,147],24:[2,147],26:[2,147],27:[2,147],28:[2,147],32:[2,147],35:[2,147],36:[2,147],37:[2,147],42:[2,147],43:[2,147],44:[2,147],45:[2,147],51:[2,147],54:[2,147],55:[2,147],57:[2,147],58:[2,147],59:[2,147],60:[2,147],61:[2,147],62:[2,147],63:[2,147],64:[2,147],65:[2,147],66:[2,147],67:[2,147],72:172,73:[2,147],76:[2,147],83:[1,173],96:[2,147],98:[2,147],102:[2,147]},{76:[1,174]},{1:[2,99],14:[2,99],22:[2,99],24:[2,99],26:[2,99],27:[2,99],28:[2,99],32:[2,99],35:[1,43],36:[2,99],37:[2,99],42:[2,99],43:[2,99],44:[2,99],45:[2,99],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[2,99],73:[2,99],76:[2,99],96:[2,99],98:[2,99],102:[2,99]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:175,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,103],14:[2,103],22:[2,103],24:[2,103],26:[2,103],27:[2,103],28:[2,103],32:[2,103],35:[2,103],36:[2,103],37:[2,103],42:[2,103],43:[2,103],44:[2,103],45:[2,103],51:[2,103],54:[2,103],55:[2,103],57:[2,103],58:[2,103],59:[2,103],60:[2,103],61:[2,103],62:[2,103],63:[2,103],64:[2,103],65:[2,103],66:[2,103],67:[2,103],73:[2,103],76:[2,103],96:[2,103],98:[2,103],102:[2,103]},{42:[1,177],81:176,98:[1,90]},{1:[2,107],14:[2,107],22:[2,107],24:[2,107],26:[2,107],27:[2,107],28:[2,107],32:[2,107],35:[2,107],36:[2,107],37:[2,107],42:[2,107],43:[2,107],44:[2,107],45:[2,107],51:[2,107],54:[2,107],55:[2,107],57:[2,107],58:[2,107],59:[2,107],60:[2,107],61:[2,107],62:[2,107],63:[2,107],64:[2,107],65:[2,107],66:[2,107],67:[2,107],73:[2,107],76:[2,107],82:[1,178],83:[1,179],96:[2,107],98:[1,180],102:[2,107]},{1:[2,110],14:[2,110],22:[2,110],24:[2,110],26:[2,110],27:[2,110],28:[2,110],32:[2,110],35:[2,110],36:[2,110],37:[2,110],42:[2,110],43:[2,110],44:[2,110],45:[2,110],51:[2,110],54:[2,110],55:[2,110],57:[2,110],58:[2,110],59:[2,110],60:[2,110],61:[2,110],62:[2,110],63:[2,110],64:[2,110],65:[2,110],66:[2,110],67:[2,110],73:[2,110],76:[2,110],96:[2,110],98:[2,110],102:[2,110]},{35:[1,43],42:[2,121],44:[2,121],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],98:[2,121]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:89,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],80:181,84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,111],14:[2,111],22:[2,111],24:[2,111],26:[2,111],27:[2,111],28:[2,111],32:[2,111],35:[2,111],36:[2,111],37:[2,111],42:[2,111],43:[2,111],44:[2,111],45:[2,111],51:[2,111],54:[2,111],55:[2,111],57:[2,111],58:[2,111],59:[2,111],60:[2,111],61:[2,111],62:[2,111],63:[2,111],64:[2,111],65:[2,111],66:[2,111],67:[2,111],73:[2,111],76:[2,111],85:[1,182],86:[1,183],96:[2,111],98:[2,111],102:[2,111]},{9:[1,68],11:[1,69],15:[1,70],44:[2,176],88:184,90:[1,94],102:[2,176]},{44:[2,178],89:185,102:[1,186]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:187,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,118],14:[2,118],22:[2,118],24:[2,118],26:[2,118],27:[2,118],28:[2,118],32:[2,118],35:[1,43],36:[2,118],37:[2,118],42:[2,118],43:[2,118],44:[2,118],45:[2,118],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[2,118],73:[2,118],76:[2,118],96:[2,118],98:[2,118],102:[2,118]},{1:[2,119],14:[2,119],22:[2,119],24:[2,119],26:[2,119],27:[2,119],28:[2,119],32:[2,119],35:[2,119],36:[2,119],37:[2,119],42:[2,119],43:[2,119],44:[2,119],45:[2,119],51:[2,119],54:[2,119],55:[2,119],57:[2,119],58:[2,119],59:[2,119],60:[2,119],61:[2,119],62:[2,119],63:[2,119],64:[2,119],65:[2,119],66:[2,119],67:[2,119],73:[2,119],76:[2,119],96:[2,119],98:[2,119],102:[2,119]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:188,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:189,14:[2,43],16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:190,35:[1,43],44:[1,6],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{21:191,22:[2,48],35:[1,43],36:[1,192],42:[2,48],43:[2,48],44:[2,48],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],74:193,76:[1,38],96:[1,37]},{13:194,22:[2,51],42:[1,153],43:[2,51],44:[2,51]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:195,16:[1,32],18:[1,33],19:60,20:[1,34],22:[2,43],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:196,24:[2,51],42:[1,197],43:[2,51]},{24:[2,139],42:[2,139],43:[2,139],45:[2,139]},{4:[1,115],5:112,7:[1,116],8:[1,113],10:106,20:[1,199],23:[1,114],25:[1,117],38:198,40:111,42:[2,138],43:[2,138],44:[1,105],45:[2,138],46:[1,109],50:[1,110],55:[1,108],92:107,93:104},{9:[1,201],24:[2,123],42:[2,123],43:[2,123],45:[2,123],53:[2,123],58:[2,123],94:[1,200]},{24:[2,131],42:[2,131],43:[2,131],45:[2,131],53:[1,203],58:[1,202]},{4:[1,115],5:112,7:[1,116],8:[1,205],10:204,25:[1,117],40:111},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:206,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{24:[2,137],42:[2,137],43:[2,137],45:[2,137]},{1:[2,39],9:[2,39],11:[2,39],14:[2,39],15:[2,39],22:[2,39],24:[2,39],26:[2,39],27:[2,39],28:[2,39],32:[2,39],34:[2,39],35:[2,39],36:[2,39],37:[2,39],42:[2,39],43:[2,39],44:[2,39],45:[2,39],51:[2,39],52:[2,39],53:[2,39],54:[2,39],55:[2,39],57:[2,39],58:[2,39],59:[2,39],60:[2,39],61:[2,39],62:[2,39],63:[2,39],64:[2,39],65:[2,39],66:[2,39],67:[2,39],68:[2,39],73:[2,39],76:[2,39],90:[2,39],94:[2,39],96:[2,39],97:[2,39],98:[2,39],99:[2,39],102:[2,39]},{1:[2,40],9:[2,40],11:[2,40],14:[2,40],15:[2,40],22:[2,40],24:[2,40],26:[2,40],27:[2,40],28:[2,40],32:[2,40],34:[2,40],35:[2,40],36:[2,40],37:[2,40],42:[2,40],43:[2,40],44:[2,40],45:[2,40],51:[2,40],52:[2,40],53:[2,40],54:[2,40],55:[2,40],57:[2,40],58:[2,40],59:[2,40],60:[2,40],61:[2,40],62:[2,40],63:[2,40],64:[2,40],65:[2,40],66:[2,40],67:[2,40],68:[2,40],73:[2,40],76:[2,40],90:[2,40],94:[2,40],96:[2,40],97:[2,40],98:[2,40],99:[2,40],102:[2,40]},{9:[1,207],24:[2,124],42:[2,124],43:[2,124],45:[2,124],53:[2,124],58:[2,124]},{4:[1,115],5:112,7:[1,116],8:[1,113],10:106,20:[1,199],23:[1,114],24:[2,138],25:[1,117],38:208,40:111,42:[2,138],43:[2,138],44:[1,105],46:[1,109],50:[1,110],55:[1,108],92:107,93:104},{1:[2,41],9:[2,41],11:[2,41],14:[2,41],15:[2,41],22:[2,41],24:[2,41],26:[2,41],27:[2,41],28:[2,41],32:[2,41],34:[2,41],35:[2,41],36:[2,41],37:[2,41],42:[2,41],43:[2,41],44:[2,41],45:[2,41],51:[2,41],52:[2,41],53:[2,41],54:[2,41],55:[2,41],57:[2,41],58:[2,41],59:[2,41],60:[2,41],61:[2,41],62:[2,41],63:[2,41],64:[2,41],65:[2,41],66:[2,41],67:[2,41],68:[2,41],73:[2,41],76:[2,41],90:[2,41],94:[2,41],96:[2,41],97:[2,41],98:[2,41],99:[2,41],102:[2,41]},{1:[2,42],9:[2,42],11:[2,42],14:[2,42],15:[2,42],22:[2,42],24:[2,42],26:[2,42],27:[2,42],28:[2,42],32:[2,42],34:[2,42],35:[2,42],36:[2,42],37:[2,42],42:[2,42],43:[2,42],44:[2,42],45:[2,42],51:[2,42],52:[2,42],53:[2,42],54:[2,42],55:[2,42],57:[2,42],58:[2,42],59:[2,42],60:[2,42],61:[2,42],62:[2,42],63:[2,42],64:[2,42],65:[2,42],66:[2,42],67:[2,42],68:[2,42],73:[2,42],76:[2,42],90:[2,42],94:[2,42],96:[2,42],97:[2,42],98:[2,42],99:[2,42],102:[2,42]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:4,18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],27:[2,53],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,53],44:[1,6],46:[1,10],47:3,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],95:127,96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:210,20:[1,34],23:[1,35],25:[1,36],27:[1,209],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{26:[1,211],27:[2,57],28:[1,212],35:[1,213],43:[2,57],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:215,20:[1,34],23:[1,35],25:[1,36],27:[1,214],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{11:[1,217],27:[1,216]},{27:[1,218]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:219,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],32:[2,43],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:73,20:[1,34],23:[1,35],25:[1,36],27:[1,220],31:[1,62],33:[1,13],34:[1,12],39:[1,25],44:[1,74],53:[1,72],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:71,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36],27:[1,221]},{3:222,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{27:[1,223]},{9:[1,68],11:[1,69],15:[1,70],97:[1,224]},{9:[2,1],11:[2,1],15:[2,1],42:[1,226],97:[2,1],99:[1,225],101:[1,227]},{4:[1,228]},{22:[2,167],24:[2,167],35:[1,43],42:[1,230],44:[2,167],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,167],96:[2,167],98:[1,229]},{1:[2,55],27:[2,55],43:[2,55],45:[2,55]},{1:[2,146],27:[2,146],43:[1,39]},{1:[2,61],9:[2,61],11:[2,61],14:[2,61],15:[2,61],22:[2,61],24:[2,61],26:[2,61],27:[2,61],28:[2,61],32:[2,61],34:[2,61],35:[2,61],36:[2,61],37:[2,61],42:[2,61],43:[2,61],44:[2,61],45:[2,61],51:[2,61],52:[2,61],53:[2,61],54:[2,61],55:[2,61],57:[2,61],58:[2,61],59:[2,61],60:[2,61],61:[2,61],62:[2,61],63:[2,61],64:[2,61],65:[2,61],66:[2,61],67:[2,61],68:[2,61],73:[2,61],76:[2,61],82:[2,61],83:[2,61],85:[2,61],86:[2,61],90:[2,61],96:[2,61],97:[2,61],98:[2,61],99:[2,61],102:[2,61]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:231,14:[2,43],16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{9:[1,68],11:[1,69],15:[1,70],35:[1,232]},{1:[2,69],14:[2,69],22:[2,69],24:[2,69],26:[2,69],27:[2,69],28:[2,69],32:[2,69],35:[1,43],36:[2,69],37:[2,69],42:[2,69],43:[2,69],44:[2,69],45:[2,69],51:[2,69],54:[2,69],55:[1,45],57:[2,69],58:[2,69],59:[1,48],60:[1,49],61:[2,69],62:[2,69],63:[2,69],64:[1,53],65:[2,69],66:[2,69],67:[2,69],73:[2,69],76:[2,69],96:[2,69],98:[2,69],102:[2,69]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:233,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,80],14:[2,80],22:[2,80],24:[2,80],26:[2,80],27:[2,80],28:[2,80],32:[2,80],35:[1,43],36:[2,80],37:[2,80],42:[2,80],43:[2,80],44:[2,80],45:[2,80],51:[2,80],54:[2,80],55:[2,80],57:[2,80],58:[2,80],59:[1,48],60:[1,49],61:[2,80],62:[2,80],63:[2,80],64:[1,53],65:[2,80],66:[2,80],67:[2,80],73:[2,80],76:[2,80],96:[2,80],98:[2,80],102:[2,80]},{1:[2,81],14:[2,81],22:[2,81],24:[2,81],26:[2,81],27:[2,81],28:[2,81],32:[2,81],35:[1,43],36:[2,81],37:[2,81],42:[2,81],43:[2,81],44:[2,81],45:[2,81],51:[2,81],54:[1,44],55:[1,45],57:[1,46],58:[2,81],59:[1,48],60:[1,49],61:[1,50],62:[2,81],63:[1,52],64:[1,53],65:[1,54],66:[2,81],67:[2,81],73:[2,81],76:[2,81],96:[2,81],98:[2,81],102:[2,81]},{1:[2,82],14:[2,82],22:[2,82],24:[2,82],26:[2,82],27:[2,82],28:[2,82],32:[2,82],35:[1,43],36:[2,82],37:[2,82],42:[2,82],43:[2,82],44:[2,82],45:[2,82],51:[2,82],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[2,82],67:[2,82],73:[2,82],76:[2,82],96:[2,82],98:[2,82],102:[2,82]},{1:[2,83],14:[2,83],22:[2,83],24:[2,83],26:[2,83],27:[2,83],28:[2,83],32:[2,83],35:[1,43],36:[2,83],37:[2,83],42:[2,83],43:[2,83],44:[2,83],45:[2,83],51:[2,83],54:[2,83],55:[2,83],57:[2,83],58:[2,83],59:[2,83],60:[1,49],61:[2,83],62:[2,83],63:[2,83],64:[1,53],65:[2,83],66:[2,83],67:[2,83],73:[2,83],76:[2,83],96:[2,83],98:[2,83],102:[2,83]},{1:[2,84],14:[2,84],22:[2,84],24:[2,84],26:[2,84],27:[2,84],28:[2,84],32:[2,84],35:[1,43],36:[2,84],37:[2,84],42:[2,84],43:[2,84],44:[2,84],45:[2,84],51:[2,84],54:[2,84],55:[2,84],57:[2,84],58:[2,84],59:[2,84],60:[1,49],61:[2,84],62:[2,84],63:[2,84],64:[1,53],65:[2,84],66:[2,84],67:[2,84],73:[2,84],76:[2,84],96:[2,84],98:[2,84],102:[2,84]},{1:[2,85],14:[2,85],22:[2,85],24:[2,85],26:[2,85],27:[2,85],28:[2,85],32:[2,85],35:[1,43],36:[2,85],37:[2,85],42:[2,85],43:[2,85],44:[2,85],45:[2,85],51:[2,85],54:[2,85],55:[1,45],57:[2,85],58:[2,85],59:[1,48],60:[1,49],61:[2,85],62:[2,85],63:[2,85],64:[1,53],65:[2,85],66:[2,85],67:[2,85],73:[2,85],76:[2,85],96:[2,85],98:[2,85],102:[2,85]},{1:[2,86],14:[2,86],22:[2,86],24:[2,86],26:[2,86],27:[2,86],28:[2,86],32:[2,86],35:[1,43],36:[2,86],37:[2,86],42:[2,86],43:[2,86],44:[2,86],45:[2,86],51:[2,86],54:[1,44],55:[1,45],57:[1,46],58:[2,86],59:[1,48],60:[1,49],61:[1,50],62:[2,86],63:[1,52],64:[1,53],65:[1,54],66:[2,86],67:[2,86],73:[2,86],76:[2,86],96:[2,86],98:[2,86],102:[2,86]},{1:[2,87],14:[2,87],22:[2,87],24:[2,87],26:[2,87],27:[2,87],28:[2,87],32:[2,87],35:[1,43],36:[2,87],37:[2,87],42:[2,87],43:[2,87],44:[2,87],45:[2,87],51:[2,87],54:[1,44],55:[1,45],57:[2,87],58:[2,87],59:[1,48],60:[1,49],61:[1,50],62:[2,87],63:[1,52],64:[1,53],65:[2,87],66:[2,87],67:[2,87],73:[2,87],76:[2,87],96:[2,87],98:[2,87],102:[2,87]},{1:[2,88],14:[2,88],22:[2,88],24:[2,88],26:[2,88],27:[2,88],28:[2,88],32:[2,88],35:[1,43],36:[2,88],37:[2,88],42:[2,88],43:[2,88],44:[2,88],45:[2,88],51:[2,88],54:[2,88],55:[2,88],57:[2,88],58:[2,88],59:[2,88],60:[2,88],61:[2,88],62:[2,88],63:[2,88],64:[1,53],65:[2,88],66:[2,88],67:[2,88],73:[2,88],76:[2,88],96:[2,88],98:[2,88],102:[2,88]},{1:[2,89],14:[2,89],22:[2,89],24:[2,89],26:[2,89],27:[2,89],28:[2,89],32:[2,89],35:[1,43],36:[2,89],37:[2,89],42:[2,89],43:[2,89],44:[2,89],45:[2,89],51:[2,89],54:[1,44],55:[1,45],57:[2,89],58:[2,89],59:[1,48],60:[1,49],61:[1,50],62:[2,89],63:[1,52],64:[1,53],65:[2,89],66:[2,89],67:[2,89],73:[2,89],76:[2,89],96:[2,89],98:[2,89],102:[2,89]},{1:[2,90],14:[2,90],22:[2,90],24:[2,90],26:[2,90],27:[2,90],28:[2,90],32:[2,90],35:[1,43],36:[2,90],37:[2,90],42:[2,90],43:[2,90],44:[2,90],45:[2,90],51:[2,90],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[2,90],67:[2,90],73:[2,90],76:[2,90],96:[2,90],98:[2,90],102:[2,90]},{1:[2,91],14:[2,91],22:[2,91],24:[2,91],26:[2,91],27:[2,91],28:[2,91],32:[2,91],35:[1,43],36:[2,91],37:[2,91],42:[2,91],43:[2,91],44:[2,91],45:[2,91],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[2,91],76:[2,91],96:[2,91],98:[2,91],102:[2,91]},{1:[2,96],14:[2,96],22:[2,96],24:[2,96],26:[2,96],27:[2,96],28:[2,96],32:[2,96],35:[1,43],36:[2,96],37:[2,96],42:[2,96],43:[2,96],44:[2,96],45:[2,96],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[2,96],76:[2,96],96:[2,96],98:[2,96],102:[2,96]},{32:[1,234],43:[1,235],44:[1,236]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],14:[2,52],16:[1,32],18:[1,33],19:60,20:[1,34],22:[2,52],23:[1,35],25:[1,36],31:[1,62],32:[2,52],33:[1,13],34:[1,12],39:[1,25],41:237,43:[2,52],44:[2,52],45:[2,52],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{14:[2,49],22:[2,49],32:[2,49],35:[1,43],42:[2,49],43:[2,49],44:[2,49],45:[2,49],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{13:238,32:[2,51],42:[1,153],43:[2,51],44:[2,51]},{1:[2,63],14:[2,63],22:[2,63],24:[2,63],26:[2,63],27:[2,63],28:[2,63],32:[2,63],35:[1,43],36:[2,63],37:[2,63],42:[2,63],43:[2,63],44:[2,63],45:[2,63],51:[2,63],54:[2,63],55:[1,45],57:[2,63],58:[2,63],59:[1,48],60:[1,49],61:[2,63],62:[2,63],63:[2,63],64:[1,53],65:[2,63],66:[2,63],67:[2,63],73:[2,63],76:[2,63],96:[2,63],98:[2,63],102:[2,63]},{1:[2,64],14:[2,64],22:[2,64],24:[2,64],26:[2,64],27:[2,64],28:[2,64],32:[2,64],35:[2,64],36:[2,64],37:[2,64],42:[2,64],43:[2,64],44:[2,64],45:[2,64],51:[2,64],54:[2,64],55:[2,64],57:[2,64],58:[2,64],59:[2,64],60:[2,64],61:[2,64],62:[2,64],63:[2,64],64:[2,64],65:[2,64],66:[2,64],67:[2,64],73:[2,64],76:[2,64],96:[2,64],98:[2,64],102:[2,64]},{1:[2,67],14:[2,67],22:[2,67],24:[2,67],26:[2,67],27:[2,67],28:[2,67],32:[2,67],35:[1,43],36:[2,67],37:[2,67],42:[2,67],43:[2,67],44:[2,67],45:[2,67],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[2,67],73:[2,67],76:[2,67],96:[2,67],98:[2,67],102:[2,67]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:239,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,117],14:[2,117],22:[2,117],24:[2,117],26:[2,117],27:[2,117],28:[2,117],32:[2,117],35:[1,43],36:[2,117],37:[2,117],42:[2,117],43:[2,117],44:[2,117],45:[2,117],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[2,117],73:[2,117],76:[2,117],96:[2,117],98:[2,117],102:[2,117]},{1:[2,6],9:[2,6],11:[2,6],14:[2,6],15:[2,6],22:[2,6],24:[2,6],26:[2,6],27:[2,6],28:[2,6],32:[2,6],34:[2,6],35:[2,6],36:[2,6],37:[2,6],42:[2,6],43:[2,6],44:[2,6],45:[2,6],51:[2,6],52:[2,6],53:[2,6],54:[2,6],55:[2,6],57:[2,6],58:[2,6],59:[2,6],60:[2,6],61:[2,6],62:[2,6],63:[2,6],64:[2,6],65:[2,6],66:[2,6],67:[2,6],68:[2,6],73:[2,6],76:[2,6],90:[2,6],96:[2,6],97:[2,6],98:[2,6],99:[2,6],102:[2,6]},{1:[2,7],9:[2,7],11:[2,7],14:[2,7],15:[2,7],22:[2,7],24:[2,7],26:[2,7],27:[2,7],28:[2,7],32:[2,7],34:[2,7],35:[2,7],36:[2,7],37:[2,7],42:[2,7],43:[2,7],44:[2,7],45:[2,7],51:[2,7],52:[2,7],53:[2,7],54:[2,7],55:[2,7],57:[2,7],58:[2,7],59:[2,7],60:[2,7],61:[2,7],62:[2,7],63:[2,7],64:[2,7],65:[2,7],66:[2,7],67:[2,7],68:[2,7],73:[2,7],76:[2,7],90:[2,7],96:[2,7],97:[2,7],98:[2,7],99:[2,7],102:[2,7]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:101,16:[1,32],18:[1,33],19:240,20:[1,34],22:[2,43],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],36:[1,241],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{4:[1,115],5:112,7:[1,116],8:[1,113],10:106,20:[1,199],23:[1,114],24:[2,138],25:[1,117],38:103,40:111,42:[2,138],43:[2,138],44:[1,105],46:[1,109],50:[1,110],55:[1,108],92:107,93:104},{13:242,14:[2,51],42:[1,153],43:[2,51],44:[2,51]},{1:[2,73],9:[1,68],11:[1,69],14:[2,73],15:[1,70],22:[2,73],24:[2,73],26:[2,73],27:[2,73],28:[2,73],32:[2,73],35:[2,73],36:[2,73],37:[2,73],42:[2,73],43:[2,73],44:[2,73],45:[2,73],51:[2,73],54:[2,73],55:[2,73],57:[2,73],58:[2,73],59:[2,73],60:[2,73],61:[2,73],62:[2,73],63:[2,73],64:[2,73],65:[2,73],66:[2,73],67:[2,73],73:[2,73],76:[2,73],96:[2,73],98:[2,73],102:[2,73]},{13:243,42:[1,153],43:[2,51],44:[2,51],45:[2,51]},{1:[2,74],9:[1,68],11:[1,69],14:[2,74],15:[1,70],22:[2,74],24:[2,74],26:[2,74],27:[2,74],28:[2,74],32:[2,74],35:[2,74],36:[2,74],37:[2,74],42:[2,74],43:[2,74],44:[2,74],45:[2,74],51:[2,74],54:[2,74],55:[2,74],57:[2,74],58:[2,74],59:[2,74],60:[2,74],61:[2,74],62:[2,74],63:[2,74],64:[2,74],65:[2,74],66:[2,74],67:[2,74],73:[2,74],76:[2,74],96:[2,74],98:[2,74],102:[2,74]},{1:[2,75],9:[1,68],11:[1,69],14:[2,75],15:[1,70],22:[2,75],24:[2,75],26:[2,75],27:[2,75],28:[2,75],32:[2,75],35:[2,75],36:[2,75],37:[2,75],42:[2,75],43:[2,75],44:[2,75],45:[2,75],51:[2,75],54:[2,75],55:[2,75],57:[2,75],58:[2,75],59:[2,75],60:[2,75],61:[2,75],62:[2,75],63:[2,75],64:[2,75],65:[2,75],66:[2,75],67:[2,75],73:[2,75],76:[2,75],96:[2,75],98:[2,75],102:[2,75]},{13:244,14:[2,51],42:[1,153],43:[2,51],44:[2,51]},{1:[2,147],14:[2,147],22:[2,147],24:[2,147],26:[2,147],27:[2,147],28:[2,147],32:[2,147],35:[2,147],36:[2,147],37:[2,147],42:[2,147],43:[2,147],44:[2,147],45:[2,147],51:[2,147],54:[2,147],55:[2,147],57:[2,147],58:[2,147],59:[2,147],60:[2,147],61:[2,147],62:[2,147],63:[2,147],64:[2,147],65:[2,147],66:[2,147],67:[2,147],72:245,73:[2,147],76:[2,147],83:[1,173],96:[2,147],98:[2,147],102:[2,147]},{1:[2,97],14:[2,97],22:[2,97],24:[2,97],26:[2,97],27:[2,97],28:[2,97],32:[2,97],35:[2,97],36:[2,97],37:[2,97],42:[2,97],43:[2,97],44:[2,97],45:[2,97],51:[2,97],54:[2,97],55:[2,97],57:[2,97],58:[2,97],59:[2,97],60:[2,97],61:[2,97],62:[2,97],63:[2,97],64:[2,97],65:[2,97],66:[2,97],67:[2,97],73:[2,97],76:[2,97],96:[2,97],98:[2,97],102:[2,97]},{17:246,44:[1,6],71:[1,247]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:248,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:249,42:[1,153],43:[2,51],44:[2,51],45:[2,51]},{1:[2,104],14:[2,104],22:[2,104],24:[2,104],26:[2,104],27:[2,104],28:[2,104],32:[2,104],35:[2,104],36:[2,104],37:[2,104],42:[2,104],43:[2,104],44:[2,104],45:[2,104],51:[2,104],54:[2,104],55:[2,104],57:[2,104],58:[2,104],59:[2,104],60:[2,104],61:[2,104],62:[2,104],63:[2,104],64:[2,104],65:[2,104],66:[2,104],67:[2,104],73:[2,104],76:[2,104],82:[1,250],83:[1,251],96:[2,104],98:[1,180],102:[2,104]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:252,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:253,44:[1,6]},{17:254,44:[1,6]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:89,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],80:255,84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:256,42:[1,177],44:[1,6]},{17:257,44:[1,6]},{17:258,44:[1,6]},{44:[2,178],89:259,102:[1,186]},{17:260,44:[1,6]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:89,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],80:261,84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{35:[1,43],44:[2,175],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],102:[2,175]},{13:262,42:[1,153],43:[2,51],44:[2,51],45:[2,51]},{13:263,14:[2,51],42:[1,153],43:[2,51],44:[2,51]},{1:[2,11],9:[2,11],11:[2,11],14:[2,11],15:[2,11],22:[2,11],24:[2,11],26:[2,11],27:[2,11],28:[2,11],32:[2,11],34:[2,11],35:[2,11],36:[2,11],37:[2,11],42:[2,11],43:[2,11],44:[2,11],45:[2,11],51:[2,11],52:[2,11],53:[2,11],54:[2,11],55:[2,11],57:[2,11],58:[2,11],59:[2,11],60:[2,11],61:[2,11],62:[2,11],63:[2,11],64:[2,11],65:[2,11],66:[2,11],67:[2,11],68:[2,11],73:[2,11],76:[2,11],90:[2,11],96:[2,11],97:[2,11],98:[2,11],99:[2,11],102:[2,11]},{22:[1,264],74:265,76:[1,38],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:266,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,171],24:[2,171],76:[2,171],96:[2,171]},{22:[1,267],43:[1,235],44:[1,236]},{13:268,22:[2,51],42:[1,153],43:[2,51],44:[2,51]},{24:[1,269],43:[1,270]},{4:[1,115],5:112,7:[1,116],8:[1,113],10:106,20:[1,199],23:[1,114],24:[2,52],25:[1,117],40:111,43:[2,52],45:[2,52],46:[1,109],50:[1,110],55:[1,108],92:107,93:271},{13:272,42:[1,197],43:[2,51],45:[2,51]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:273,16:[1,32],18:[1,33],19:60,20:[1,34],22:[2,43],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:274,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],44:[1,275],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{4:[1,115],7:[1,116],40:276},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:277,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:278,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{24:[2,134],42:[2,134],43:[2,134],45:[2,134]},{24:[2,135],42:[2,135],43:[2,135],45:[2,135]},{24:[2,136],35:[1,43],42:[2,136],43:[2,136],45:[2,136],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{4:[1,115],7:[1,116],40:279},{13:280,24:[2,51],42:[1,197],43:[2,51]},{1:[2,14],9:[2,14],11:[2,14],14:[2,14],15:[2,14],22:[2,14],24:[2,14],26:[2,14],27:[2,14],28:[2,14],32:[2,14],34:[2,14],35:[2,14],36:[2,14],37:[2,14],42:[2,14],43:[2,14],44:[2,14],45:[2,14],51:[2,14],52:[2,14],53:[2,14],54:[2,14],55:[2,14],57:[2,14],58:[2,14],59:[2,14],60:[2,14],61:[2,14],62:[2,14],63:[2,14],64:[2,14],65:[2,14],66:[2,14],67:[2,14],68:[2,14],73:[2,14],76:[2,14],90:[2,14],96:[2,14],97:[2,14],98:[2,14],99:[2,14],102:[2,14]},{27:[1,281],35:[1,43],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{27:[1,282]},{27:[1,283]},{3:284,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{1:[2,17],9:[2,17],11:[2,17],14:[2,17],15:[2,17],22:[2,17],24:[2,17],26:[2,17],27:[2,17],28:[2,17],32:[2,17],34:[2,17],35:[2,17],36:[2,17],37:[2,17],42:[2,17],43:[2,17],44:[2,17],45:[2,17],51:[2,17],52:[2,17],53:[2,17],54:[2,17],55:[2,17],57:[2,17],58:[2,17],59:[2,17],60:[2,17],61:[2,17],62:[2,17],63:[2,17],64:[2,17],65:[2,17],66:[2,17],67:[2,17],68:[2,17],73:[2,17],76:[2,17],90:[2,17],96:[2,17],97:[2,17],98:[2,17],99:[2,17],102:[2,17]},{27:[1,285],35:[1,43],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{1:[2,20],9:[2,20],11:[2,20],14:[2,20],15:[2,20],22:[2,20],24:[2,20],26:[2,20],27:[2,20],28:[2,20],32:[2,20],34:[2,20],35:[2,20],36:[2,20],37:[2,20],42:[2,20],43:[2,20],44:[2,20],45:[2,20],51:[2,20],52:[2,20],53:[2,20],54:[2,20],55:[2,20],57:[2,20],58:[2,20],59:[2,20],60:[2,20],61:[2,20],62:[2,20],63:[2,20],64:[2,20],65:[2,20],66:[2,20],67:[2,20],68:[2,20],73:[2,20],76:[2,20],90:[2,20],96:[2,20],97:[2,20],98:[2,20],99:[2,20],102:[2,20]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:286,14:[2,43],16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,22],9:[2,22],11:[2,22],14:[2,22],15:[2,22],22:[2,22],24:[2,22],26:[2,22],27:[2,22],28:[2,22],32:[2,22],34:[2,22],35:[2,22],36:[2,22],37:[2,22],42:[2,22],43:[2,22],44:[2,22],45:[2,22],51:[2,22],52:[2,22],53:[2,22],54:[2,22],55:[2,22],57:[2,22],58:[2,22],59:[2,22],60:[2,22],61:[2,22],62:[2,22],63:[2,22],64:[2,22],65:[2,22],66:[2,22],67:[2,22],68:[2,22],73:[2,22],76:[2,22],90:[2,22],96:[2,22],97:[2,22],98:[2,22],99:[2,22],102:[2,22]},{13:287,32:[2,51],42:[1,153],43:[2,51],44:[2,51]},{1:[2,24],9:[2,24],11:[2,24],14:[2,24],15:[2,24],22:[2,24],24:[2,24],26:[2,24],27:[2,24],28:[2,24],32:[2,24],34:[2,24],35:[2,24],36:[2,24],37:[2,24],42:[2,24],43:[2,24],44:[2,24],45:[2,24],51:[2,24],52:[2,24],53:[2,24],54:[2,24],55:[2,24],57:[2,24],58:[2,24],59:[2,24],60:[2,24],61:[2,24],62:[2,24],63:[2,24],64:[2,24],65:[2,24],66:[2,24],67:[2,24],68:[2,24],73:[2,24],76:[2,24],90:[2,24],96:[2,24],97:[2,24],98:[2,24],99:[2,24],102:[2,24]},{1:[2,25],9:[2,25],11:[2,25],14:[2,25],15:[2,25],22:[2,25],24:[2,25],26:[2,25],27:[2,25],28:[2,25],32:[2,25],34:[2,25],35:[2,25],36:[2,25],37:[2,25],42:[2,25],43:[2,25],44:[2,25],45:[2,25],51:[2,25],52:[2,25],53:[2,25],54:[2,25],55:[2,25],57:[2,25],58:[2,25],59:[2,25],60:[2,25],61:[2,25],62:[2,25],63:[2,25],64:[2,25],65:[2,25],66:[2,25],67:[2,25],68:[2,25],73:[2,25],76:[2,25],90:[2,25],96:[2,25],97:[2,25],98:[2,25],99:[2,25],102:[2,25]},{9:[1,68],11:[1,69],15:[1,70],35:[1,288]},{1:[2,143],9:[2,143],11:[2,143],14:[2,143],15:[2,143],22:[2,143],24:[2,143],26:[2,143],27:[2,143],28:[2,143],32:[2,143],34:[2,143],35:[2,143],36:[2,143],37:[2,143],42:[2,143],43:[2,143],44:[2,143],45:[2,143],51:[2,143],52:[2,143],53:[2,143],54:[2,143],55:[2,143],57:[2,143],58:[2,143],59:[2,143],60:[2,143],61:[2,143],62:[2,143],63:[2,143],64:[2,143],65:[2,143],66:[2,143],67:[2,143],68:[2,143],73:[2,143],76:[2,143],90:[2,143],94:[2,143],96:[2,143],97:[2,143],98:[2,143],99:[2,143],102:[2,143]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:289,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:290,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:291,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:292,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{42:[1,294],99:[1,293]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:295,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:296,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:297,14:[2,51],42:[1,153],43:[2,51],44:[2,51]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:298,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:299,42:[1,153],43:[2,51],44:[2,51],45:[2,51]},{49:[1,300],69:[1,301]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:302,46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:303,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{14:[2,45],22:[2,45],32:[2,45],42:[2,45],43:[2,45],44:[2,45],45:[2,45]},{32:[1,304],43:[1,235],44:[1,236]},{13:305,42:[1,153],43:[2,51],44:[2,51],45:[2,51]},{22:[2,48],35:[1,43],36:[1,306],42:[2,48],43:[2,48],44:[2,48],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:307,20:[1,34],22:[1,308],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{14:[1,309],43:[1,235],44:[1,236]},{43:[1,235],44:[1,236],45:[1,310]},{14:[1,311],43:[1,235],44:[1,236]},{1:[2,95],14:[2,95],22:[2,95],24:[2,95],26:[2,95],27:[2,95],28:[2,95],32:[2,95],35:[2,95],36:[2,95],37:[2,95],42:[2,95],43:[2,95],44:[2,95],45:[2,95],51:[2,95],54:[2,95],55:[2,95],57:[2,95],58:[2,95],59:[2,95],60:[2,95],61:[2,95],62:[2,95],63:[2,95],64:[2,95],65:[2,95],66:[2,95],67:[2,95],73:[2,95],76:[2,95],96:[2,95],98:[2,95],102:[2,95]},{1:[2,148],14:[2,148],22:[2,148],24:[2,148],26:[2,148],27:[2,148],28:[2,148],32:[2,148],35:[2,148],36:[2,148],37:[2,148],42:[2,148],43:[2,148],44:[2,148],45:[2,148],51:[2,148],54:[2,148],55:[2,148],57:[2,148],58:[2,148],59:[2,148],60:[2,148],61:[2,148],62:[2,148],63:[2,148],64:[2,148],65:[2,148],66:[2,148],67:[2,148],73:[2,148],76:[2,148],96:[2,148],98:[2,148],102:[2,148]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:312,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,98],14:[2,98],22:[2,98],24:[2,98],26:[2,98],27:[2,98],28:[2,98],32:[2,98],35:[1,43],36:[2,98],37:[2,98],42:[2,98],43:[2,98],44:[2,98],45:[2,98],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[2,98],76:[2,98],96:[2,98],98:[2,98],102:[2,98]},{43:[1,235],44:[1,236],45:[1,313]},{17:314,44:[1,6]},{17:315,44:[1,6]},{35:[1,43],42:[2,122],44:[2,122],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],98:[2,122]},{1:[2,108],14:[2,108],22:[2,108],24:[2,108],26:[2,108],27:[2,108],28:[2,108],32:[2,108],35:[2,108],36:[2,108],37:[2,108],42:[2,108],43:[2,108],44:[2,108],45:[2,108],51:[2,108],54:[2,108],55:[2,108],57:[2,108],58:[2,108],59:[2,108],60:[2,108],61:[2,108],62:[2,108],63:[2,108],64:[2,108],65:[2,108],66:[2,108],67:[2,108],73:[2,108],76:[2,108],96:[2,108],98:[2,108],102:[2,108]},{1:[2,109],14:[2,109],22:[2,109],24:[2,109],26:[2,109],27:[2,109],28:[2,109],32:[2,109],35:[2,109],36:[2,109],37:[2,109],42:[2,109],43:[2,109],44:[2,109],45:[2,109],51:[2,109],54:[2,109],55:[2,109],57:[2,109],58:[2,109],59:[2,109],60:[2,109],61:[2,109],62:[2,109],63:[2,109],64:[2,109],65:[2,109],66:[2,109],67:[2,109],73:[2,109],76:[2,109],96:[2,109],98:[2,109],102:[2,109]},{17:316,42:[1,177],44:[1,6]},{1:[2,173],14:[2,173],22:[2,173],24:[2,173],26:[2,173],27:[2,173],28:[2,173],32:[2,173],35:[2,173],36:[2,173],37:[2,173],42:[2,173],43:[2,173],44:[2,173],45:[2,173],51:[2,173],54:[2,173],55:[2,173],57:[2,173],58:[2,173],59:[2,173],60:[2,173],61:[2,173],62:[2,173],63:[2,173],64:[2,173],65:[2,173],66:[2,173],67:[2,173],73:[2,173],76:[2,173],82:[2,173],83:[2,173],96:[2,173],98:[2,173],102:[2,173]},{1:[2,112],14:[2,112],22:[2,112],24:[2,112],26:[2,112],27:[2,112],28:[2,112],32:[2,112],35:[2,112],36:[2,112],37:[2,112],42:[2,112],43:[2,112],44:[2,112],45:[2,112],51:[2,112],54:[2,112],55:[2,112],57:[2,112],58:[2,112],59:[2,112],60:[2,112],61:[2,112],62:[2,112],63:[2,112],64:[2,112],65:[2,112],66:[2,112],67:[2,112],73:[2,112],76:[2,112],86:[1,317],96:[2,112],98:[2,112],102:[2,112]},{1:[2,114],14:[2,114],22:[2,114],24:[2,114],26:[2,114],27:[2,114],28:[2,114],32:[2,114],35:[2,114],36:[2,114],37:[2,114],42:[2,114],43:[2,114],44:[2,114],45:[2,114],51:[2,114],54:[2,114],55:[2,114],57:[2,114],58:[2,114],59:[2,114],60:[2,114],61:[2,114],62:[2,114],63:[2,114],64:[2,114],65:[2,114],66:[2,114],67:[2,114],73:[2,114],76:[2,114],96:[2,114],98:[2,114],102:[2,114]},{17:318,44:[1,6]},{1:[2,116],14:[2,116],22:[2,116],24:[2,116],26:[2,116],27:[2,116],28:[2,116],32:[2,116],35:[2,116],36:[2,116],37:[2,116],42:[2,116],43:[2,116],44:[2,116],45:[2,116],51:[2,116],54:[2,116],55:[2,116],57:[2,116],58:[2,116],59:[2,116],60:[2,116],61:[2,116],62:[2,116],63:[2,116],64:[2,116],65:[2,116],66:[2,116],67:[2,116],73:[2,116],76:[2,116],96:[2,116],98:[2,116],102:[2,116]},{42:[1,177],44:[2,177]},{43:[1,235],44:[1,236],45:[1,319]},{14:[1,320],43:[1,235],44:[1,236]},{1:[2,12],9:[2,12],11:[2,12],14:[2,12],15:[2,12],22:[2,12],24:[2,12],26:[2,12],27:[2,12],28:[2,12],32:[2,12],34:[2,12],35:[2,12],36:[2,12],37:[2,12],42:[2,12],43:[2,12],44:[2,12],45:[2,12],51:[2,12],52:[2,12],53:[2,12],54:[2,12],55:[2,12],57:[2,12],58:[2,12],59:[2,12],60:[2,12],61:[2,12],62:[2,12],63:[2,12],64:[2,12],65:[2,12],66:[2,12],67:[2,12],68:[2,12],73:[2,12],76:[2,12],90:[2,12],96:[2,12],97:[2,12],98:[2,12],99:[2,12],102:[2,12]},{22:[2,172],24:[2,172],76:[2,172],96:[2,172]},{22:[1,321],35:[1,43],37:[1,322],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{1:[2,35],9:[2,35],11:[2,35],14:[2,35],15:[2,35],22:[2,35],24:[2,35],26:[2,35],27:[2,35],28:[2,35],32:[2,35],34:[2,35],35:[2,35],36:[2,35],37:[2,35],39:[1,323],42:[2,35],43:[2,35],44:[2,35],45:[2,35],51:[2,35],52:[2,35],53:[2,35],54:[2,35],55:[2,35],57:[2,35],58:[2,35],59:[2,35],60:[2,35],61:[2,35],62:[2,35],63:[2,35],64:[2,35],65:[2,35],66:[2,35],67:[2,35],68:[2,35],73:[2,35],76:[2,35],90:[2,35],96:[2,35],97:[2,35],98:[2,35],99:[2,35],102:[2,35]},{22:[1,324],43:[1,235],44:[1,236]},{1:[2,36],9:[2,36],11:[2,36],14:[2,36],15:[2,36],22:[2,36],24:[2,36],26:[2,36],27:[2,36],28:[2,36],32:[2,36],34:[2,36],35:[2,36],36:[2,36],37:[2,36],39:[1,325],42:[2,36],43:[2,36],44:[2,36],45:[2,36],51:[2,36],52:[2,36],53:[2,36],54:[2,36],55:[2,36],57:[2,36],58:[2,36],59:[2,36],60:[2,36],61:[2,36],62:[2,36],63:[2,36],64:[2,36],65:[2,36],66:[2,36],67:[2,36],68:[2,36],73:[2,36],76:[2,36],90:[2,36],96:[2,36],97:[2,36],98:[2,36],99:[2,36],102:[2,36]},{4:[1,115],5:112,7:[1,116],8:[1,113],10:106,20:[1,199],23:[1,114],25:[1,117],40:111,46:[1,109],50:[1,110],55:[1,108],92:107,93:326},{24:[2,140],42:[2,140],43:[2,140],45:[2,140]},{43:[1,270],45:[1,327]},{13:328,22:[2,51],42:[1,153],43:[2,51],44:[2,51]},{24:[2,129],35:[1,43],42:[2,129],43:[2,129],45:[2,129],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:329,16:[1,32],18:[1,33],19:60,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],41:59,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,61],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{24:[2,125],42:[2,125],43:[2,125],45:[2,125],53:[2,125],58:[2,125]},{24:[2,132],35:[1,43],42:[2,132],43:[2,132],45:[2,132],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{24:[2,133],35:[1,43],42:[2,133],43:[2,133],45:[2,133],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{24:[2,126],42:[2,126],43:[2,126],45:[2,126],53:[2,126],58:[2,126]},{24:[1,330],43:[1,270]},{1:[2,15],9:[2,15],11:[2,15],14:[2,15],15:[2,15],22:[2,15],24:[2,15],26:[2,15],27:[2,15],28:[2,15],32:[2,15],34:[2,15],35:[2,15],36:[2,15],37:[2,15],42:[2,15],43:[2,15],44:[2,15],45:[2,15],51:[2,15],52:[2,15],53:[2,15],54:[2,15],55:[2,15],57:[2,15],58:[2,15],59:[2,15],60:[2,15],61:[2,15],62:[2,15],63:[2,15],64:[2,15],65:[2,15],66:[2,15],67:[2,15],68:[2,15],73:[2,15],76:[2,15],90:[2,15],96:[2,15],97:[2,15],98:[2,15],99:[2,15],102:[2,15]},{1:[2,16],9:[2,16],11:[2,16],14:[2,16],15:[2,16],22:[2,16],24:[2,16],26:[2,16],27:[2,16],28:[2,16],32:[2,16],34:[2,16],35:[2,16],36:[2,16],37:[2,16],42:[2,16],43:[2,16],44:[2,16],45:[2,16],51:[2,16],52:[2,16],53:[2,16],54:[2,16],55:[2,16],57:[2,16],58:[2,16],59:[2,16],60:[2,16],61:[2,16],62:[2,16],63:[2,16],64:[2,16],65:[2,16],66:[2,16],67:[2,16],68:[2,16],73:[2,16],76:[2,16],90:[2,16],96:[2,16],97:[2,16],98:[2,16],99:[2,16],102:[2,16]},{1:[2,19],9:[2,19],11:[2,19],14:[2,19],15:[2,19],22:[2,19],24:[2,19],26:[2,19],27:[2,19],28:[2,19],32:[2,19],34:[2,19],35:[2,19],36:[2,19],37:[2,19],42:[2,19],43:[2,19],44:[2,19],45:[2,19],51:[2,19],52:[2,19],53:[2,19],54:[2,19],55:[2,19],57:[2,19],58:[2,19],59:[2,19],60:[2,19],61:[2,19],62:[2,19],63:[2,19],64:[2,19],65:[2,19],66:[2,19],67:[2,19],68:[2,19],73:[2,19],76:[2,19],90:[2,19],96:[2,19],97:[2,19],98:[2,19],99:[2,19],102:[2,19]},{9:[1,68],11:[1,69],15:[1,70],35:[1,331]},{1:[2,18],9:[2,18],11:[2,18],14:[2,18],15:[2,18],22:[2,18],24:[2,18],26:[2,18],27:[2,18],28:[2,18],32:[2,18],34:[2,18],35:[2,18],36:[2,18],37:[2,18],42:[2,18],43:[2,18],44:[2,18],45:[2,18],51:[2,18],52:[2,18],53:[2,18],54:[2,18],55:[2,18],57:[2,18],58:[2,18],59:[2,18],60:[2,18],61:[2,18],62:[2,18],63:[2,18],64:[2,18],65:[2,18],66:[2,18],67:[2,18],68:[2,18],73:[2,18],76:[2,18],90:[2,18],96:[2,18],97:[2,18],98:[2,18],99:[2,18],102:[2,18]},{13:332,14:[2,51],42:[1,153],43:[2,51],44:[2,51]},{32:[1,333],43:[1,235],44:[1,236]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:335,20:[1,34],23:[1,35],25:[1,36],27:[1,334],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,150],24:[2,150],35:[1,43],37:[1,337],44:[2,150],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,150],96:[2,150],98:[1,336]},{22:[2,154],24:[2,154],35:[1,43],44:[2,154],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,154],96:[2,154],98:[1,338]},{9:[1,68],11:[1,69],15:[1,70],99:[1,339]},{35:[1,43],36:[1,340],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:341,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:342,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{22:[2,168],24:[2,168],35:[1,43],44:[2,168],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,168],96:[2,168]},{22:[2,169],24:[2,169],35:[1,43],44:[2,169],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,169],96:[2,169],98:[1,343]},{14:[1,344],43:[1,235],44:[1,236]},{1:[2,65],14:[2,65],22:[2,65],24:[2,65],26:[2,65],27:[2,65],28:[2,65],32:[2,65],35:[2,65],36:[2,65],37:[2,65],42:[2,65],43:[2,65],44:[2,65],45:[2,65],51:[2,65],54:[2,65],55:[2,65],57:[2,65],58:[2,65],59:[2,65],60:[2,65],61:[2,65],62:[2,65],63:[2,65],64:[2,65],65:[2,65],66:[2,65],67:[2,65],73:[2,65],76:[2,65],96:[2,65],98:[2,65],102:[2,65]},{43:[1,235],44:[1,236],45:[1,345]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:346,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:347,44:[1,6]},{14:[2,46],22:[2,46],32:[2,46],42:[2,46],43:[2,46],44:[2,46],45:[2,46]},{13:348,42:[1,153],43:[2,51],44:[2,51],45:[2,51]},{69:[1,301]},{43:[1,235],44:[1,236],45:[1,349]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:350,20:[1,34],22:[1,351],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[1,352],35:[1,43],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{1:[2,34],9:[2,34],11:[2,34],14:[2,34],15:[2,34],22:[2,34],24:[2,34],26:[2,34],27:[2,34],28:[2,34],32:[2,34],34:[2,34],35:[2,34],36:[2,34],37:[2,34],42:[2,34],43:[2,34],44:[2,34],45:[2,34],51:[2,34],52:[2,34],53:[2,34],54:[2,34],55:[2,34],57:[2,34],58:[2,34],59:[2,34],60:[2,34],61:[2,34],62:[2,34],63:[2,34],64:[2,34],65:[2,34],66:[2,34],67:[2,34],68:[2,34],73:[2,34],76:[2,34],90:[2,34],96:[2,34],97:[2,34],98:[2,34],99:[2,34],102:[2,34]},{1:[2,8],9:[2,8],11:[2,8],14:[2,8],15:[2,8],22:[2,8],24:[2,8],26:[2,8],27:[2,8],28:[2,8],32:[2,8],34:[2,8],35:[2,8],36:[2,8],37:[2,8],42:[2,8],43:[2,8],44:[2,8],45:[2,8],51:[2,8],52:[2,8],53:[2,8],54:[2,8],55:[2,8],57:[2,8],58:[2,8],59:[2,8],60:[2,8],61:[2,8],62:[2,8],63:[2,8],64:[2,8],65:[2,8],66:[2,8],67:[2,8],68:[2,8],73:[2,8],76:[2,8],90:[2,8],96:[2,8],97:[2,8],98:[2,8],99:[2,8],102:[2,8]},{1:[2,79],14:[2,79],22:[2,79],24:[2,79],26:[2,79],27:[2,79],28:[2,79],32:[2,79],35:[2,79],36:[2,79],37:[2,79],42:[2,79],43:[2,79],44:[2,79],45:[2,79],51:[2,79],54:[2,79],55:[2,79],57:[2,79],58:[2,79],59:[2,79],60:[2,79],61:[2,79],62:[2,79],63:[2,79],64:[2,79],65:[2,79],66:[2,79],67:[2,79],73:[2,79],76:[2,79],96:[2,79],98:[2,79],102:[2,79]},{17:353,44:[1,6]},{17:354,35:[1,43],44:[1,6],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{1:[2,100],14:[2,100],22:[2,100],24:[2,100],26:[2,100],27:[2,100],28:[2,100],32:[2,100],35:[2,100],36:[2,100],37:[2,100],42:[2,100],43:[2,100],44:[2,100],45:[2,100],51:[2,100],54:[2,100],55:[2,100],57:[2,100],58:[2,100],59:[2,100],60:[2,100],61:[2,100],62:[2,100],63:[2,100],64:[2,100],65:[2,100],66:[2,100],67:[2,100],73:[2,100],76:[2,100],96:[2,100],98:[2,100],102:[2,100]},{1:[2,105],14:[2,105],22:[2,105],24:[2,105],26:[2,105],27:[2,105],28:[2,105],32:[2,105],35:[2,105],36:[2,105],37:[2,105],42:[2,105],43:[2,105],44:[2,105],45:[2,105],51:[2,105],54:[2,105],55:[2,105],57:[2,105],58:[2,105],59:[2,105],60:[2,105],61:[2,105],62:[2,105],63:[2,105],64:[2,105],65:[2,105],66:[2,105],67:[2,105],73:[2,105],76:[2,105],96:[2,105],98:[2,105],102:[2,105]},{1:[2,106],14:[2,106],22:[2,106],24:[2,106],26:[2,106],27:[2,106],28:[2,106],32:[2,106],35:[2,106],36:[2,106],37:[2,106],42:[2,106],43:[2,106],44:[2,106],45:[2,106],51:[2,106],54:[2,106],55:[2,106],57:[2,106],58:[2,106],59:[2,106],60:[2,106],61:[2,106],62:[2,106],63:[2,106],64:[2,106],65:[2,106],66:[2,106],67:[2,106],73:[2,106],76:[2,106],96:[2,106],98:[2,106],102:[2,106]},{1:[2,174],14:[2,174],22:[2,174],24:[2,174],26:[2,174],27:[2,174],28:[2,174],32:[2,174],35:[2,174],36:[2,174],37:[2,174],42:[2,174],43:[2,174],44:[2,174],45:[2,174],51:[2,174],54:[2,174],55:[2,174],57:[2,174],58:[2,174],59:[2,174],60:[2,174],61:[2,174],62:[2,174],63:[2,174],64:[2,174],65:[2,174],66:[2,174],67:[2,174],73:[2,174],76:[2,174],82:[2,174],83:[2,174],96:[2,174],98:[2,174],102:[2,174]},{17:355,44:[1,6]},{1:[2,115],14:[2,115],22:[2,115],24:[2,115],26:[2,115],27:[2,115],28:[2,115],32:[2,115],35:[2,115],36:[2,115],37:[2,115],42:[2,115],43:[2,115],44:[2,115],45:[2,115],51:[2,115],54:[2,115],55:[2,115],57:[2,115],58:[2,115],59:[2,115],60:[2,115],61:[2,115],62:[2,115],63:[2,115],64:[2,115],65:[2,115],66:[2,115],67:[2,115],73:[2,115],76:[2,115],96:[2,115],98:[2,115],102:[2,115]},{1:[2,120],14:[2,120],22:[2,120],24:[2,120],26:[2,120],27:[2,120],28:[2,120],32:[2,120],35:[2,120],36:[2,120],37:[2,120],42:[2,120],43:[2,120],44:[2,120],45:[2,120],51:[2,120],54:[2,120],55:[2,120],57:[2,120],58:[2,120],59:[2,120],60:[2,120],61:[2,120],62:[2,120],63:[2,120],64:[2,120],65:[2,120],66:[2,120],67:[2,120],73:[2,120],76:[2,120],96:[2,120],98:[2,120],102:[2,120]},{17:356,44:[1,6]},{1:[2,29],9:[2,29],11:[2,29],14:[2,29],15:[2,29],22:[2,29],24:[2,29],26:[2,29],27:[2,29],28:[2,29],32:[2,29],34:[2,29],35:[2,29],36:[2,29],37:[2,29],42:[2,29],43:[2,29],44:[2,29],45:[2,29],51:[2,29],52:[2,29],53:[2,29],54:[2,29],55:[2,29],57:[2,29],58:[2,29],59:[2,29],60:[2,29],61:[2,29],62:[2,29],63:[2,29],64:[2,29],65:[2,29],66:[2,29],67:[2,29],68:[2,29],73:[2,29],76:[2,29],90:[2,29],96:[2,29],97:[2,29],98:[2,29],99:[2,29],102:[2,29]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:357,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,37],9:[2,37],11:[2,37],14:[2,37],15:[2,37],22:[2,37],24:[2,37],26:[2,37],27:[2,37],28:[2,37],32:[2,37],34:[2,37],35:[2,37],36:[2,37],37:[2,37],42:[2,37],43:[2,37],44:[2,37],45:[2,37],51:[2,37],52:[2,37],53:[2,37],54:[2,37],55:[2,37],57:[2,37],58:[2,37],59:[2,37],60:[2,37],61:[2,37],62:[2,37],63:[2,37],64:[2,37],65:[2,37],66:[2,37],67:[2,37],68:[2,37],73:[2,37],76:[2,37],90:[2,37],96:[2,37],97:[2,37],98:[2,37],99:[2,37],102:[2,37]},{21:358,39:[1,359],74:193,76:[1,38],96:[1,37]},{1:[2,38],9:[2,38],11:[2,38],14:[2,38],15:[2,38],22:[2,38],24:[2,38],26:[2,38],27:[2,38],28:[2,38],32:[2,38],34:[2,38],35:[2,38],36:[2,38],37:[2,38],42:[2,38],43:[2,38],44:[2,38],45:[2,38],51:[2,38],52:[2,38],53:[2,38],54:[2,38],55:[2,38],57:[2,38],58:[2,38],59:[2,38],60:[2,38],61:[2,38],62:[2,38],63:[2,38],64:[2,38],65:[2,38],66:[2,38],67:[2,38],68:[2,38],73:[2,38],76:[2,38],90:[2,38],96:[2,38],97:[2,38],98:[2,38],99:[2,38],102:[2,38]},{24:[2,141],42:[2,141],43:[2,141],45:[2,141]},{24:[2,142],42:[2,142],43:[2,142],45:[2,142]},{22:[1,360],43:[1,235],44:[1,236]},{13:361,42:[1,153],43:[2,51],44:[2,51],45:[2,51]},{39:[1,362]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:298,20:[1,34],23:[1,35],25:[1,36],27:[1,363],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{14:[1,364],43:[1,235],44:[1,236]},{30:[1,365],49:[1,300],69:[1,301]},{1:[2,26],9:[2,26],11:[2,26],14:[2,26],15:[2,26],22:[2,26],24:[2,26],26:[2,26],27:[2,26],28:[2,26],32:[2,26],34:[2,26],35:[2,26],36:[2,26],37:[2,26],42:[2,26],43:[2,26],44:[2,26],45:[2,26],51:[2,26],52:[2,26],53:[2,26],54:[2,26],55:[2,26],57:[2,26],58:[2,26],59:[2,26],60:[2,26],61:[2,26],62:[2,26],63:[2,26],64:[2,26],65:[2,26],66:[2,26],67:[2,26],68:[2,26],73:[2,26],76:[2,26],90:[2,26],96:[2,26],97:[2,26],98:[2,26],99:[2,26],102:[2,26]},{27:[1,366],35:[1,43],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:367,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:368,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:369,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:370,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:371,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,158],24:[2,158],35:[1,43],44:[2,158],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,158],96:[2,158],98:[1,372]},{9:[1,68],11:[1,69],15:[1,70],99:[1,373]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:374,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,62],14:[2,62],22:[2,62],24:[2,62],26:[2,62],27:[2,62],28:[2,62],32:[2,62],35:[2,62],36:[2,62],37:[2,62],42:[2,62],43:[2,62],44:[2,62],45:[2,62],51:[2,62],54:[2,62],55:[2,62],57:[2,62],58:[2,62],59:[2,62],60:[2,62],61:[2,62],62:[2,62],63:[2,62],64:[2,62],65:[2,62],66:[2,62],67:[2,62],73:[2,62],76:[2,62],96:[2,62],98:[2,62],102:[2,62]},{1:[2,70],14:[2,70],22:[2,70],24:[2,70],26:[2,70],27:[2,70],28:[2,70],32:[2,70],35:[2,70],36:[2,70],37:[2,70],42:[2,70],43:[2,70],44:[2,70],45:[2,70],51:[2,70],54:[2,70],55:[2,70],57:[2,70],58:[2,70],59:[2,70],60:[2,70],61:[2,70],62:[2,70],63:[2,70],64:[2,70],65:[2,70],66:[2,70],67:[2,70],73:[2,70],76:[2,70],96:[2,70],98:[2,70],102:[2,70]},{1:[2,58],27:[2,58],35:[1,43],43:[2,58],45:[2,58],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{1:[2,93],14:[2,93],22:[2,93],24:[2,93],26:[2,93],27:[2,93],28:[2,93],32:[2,93],35:[2,93],36:[2,93],37:[2,93],42:[2,93],43:[2,93],44:[2,93],45:[2,93],51:[2,93],54:[2,93],55:[2,93],57:[2,93],58:[2,93],59:[2,93],60:[2,93],61:[2,93],62:[2,93],63:[2,93],64:[2,93],65:[2,93],66:[2,93],67:[2,93],73:[2,93],76:[2,93],96:[2,93],98:[2,93],102:[2,93]},{43:[1,235],44:[1,236],45:[1,375]},{1:[2,68],14:[2,68],22:[2,68],24:[2,68],26:[2,68],27:[2,68],28:[2,68],32:[2,68],35:[2,68],36:[2,68],37:[2,68],42:[2,68],43:[2,68],44:[2,68],45:[2,68],51:[2,68],54:[2,68],55:[2,68],57:[2,68],58:[2,68],59:[2,68],60:[2,68],61:[2,68],62:[2,68],63:[2,68],64:[2,68],65:[2,68],66:[2,68],67:[2,68],73:[2,68],76:[2,68],96:[2,68],98:[2,68],102:[2,68]},{22:[1,376],35:[1,43],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{1:[2,32],9:[2,32],11:[2,32],14:[2,32],15:[2,32],22:[2,32],24:[2,32],26:[2,32],27:[2,32],28:[2,32],32:[2,32],34:[2,32],35:[2,32],36:[2,32],37:[2,32],42:[2,32],43:[2,32],44:[2,32],45:[2,32],51:[2,32],52:[2,32],53:[2,32],54:[2,32],55:[2,32],57:[2,32],58:[2,32],59:[2,32],60:[2,32],61:[2,32],62:[2,32],63:[2,32],64:[2,32],65:[2,32],66:[2,32],67:[2,32],68:[2,32],73:[2,32],76:[2,32],90:[2,32],96:[2,32],97:[2,32],98:[2,32],99:[2,32],102:[2,32]},{1:[2,33],9:[2,33],11:[2,33],14:[2,33],15:[2,33],22:[2,33],24:[2,33],26:[2,33],27:[2,33],28:[2,33],32:[2,33],34:[2,33],35:[2,33],36:[2,33],37:[2,33],42:[2,33],43:[2,33],44:[2,33],45:[2,33],51:[2,33],52:[2,33],53:[2,33],54:[2,33],55:[2,33],57:[2,33],58:[2,33],59:[2,33],60:[2,33],61:[2,33],62:[2,33],63:[2,33],64:[2,33],65:[2,33],66:[2,33],67:[2,33],68:[2,33],73:[2,33],76:[2,33],90:[2,33],96:[2,33],97:[2,33],98:[2,33],99:[2,33],102:[2,33]},{1:[2,94],14:[2,94],22:[2,94],24:[2,94],26:[2,94],27:[2,94],28:[2,94],32:[2,94],35:[2,94],36:[2,94],37:[2,94],42:[2,94],43:[2,94],44:[2,94],45:[2,94],51:[2,94],54:[2,94],55:[2,94],57:[2,94],58:[2,94],59:[2,94],60:[2,94],61:[2,94],62:[2,94],63:[2,94],64:[2,94],65:[2,94],66:[2,94],67:[2,94],73:[2,94],76:[2,94],96:[2,94],98:[2,94],102:[2,94]},{1:[2,147],14:[2,147],22:[2,147],24:[2,147],26:[2,147],27:[2,147],28:[2,147],32:[2,147],35:[2,147],36:[2,147],37:[2,147],42:[2,147],43:[2,147],44:[2,147],45:[2,147],51:[2,147],54:[2,147],55:[2,147],57:[2,147],58:[2,147],59:[2,147],60:[2,147],61:[2,147],62:[2,147],63:[2,147],64:[2,147],65:[2,147],66:[2,147],67:[2,147],72:377,73:[2,147],76:[2,147],83:[1,173],96:[2,147],98:[2,147],102:[2,147]},{1:[2,113],14:[2,113],22:[2,113],24:[2,113],26:[2,113],27:[2,113],28:[2,113],32:[2,113],35:[2,113],36:[2,113],37:[2,113],42:[2,113],43:[2,113],44:[2,113],45:[2,113],51:[2,113],54:[2,113],55:[2,113],57:[2,113],58:[2,113],59:[2,113],60:[2,113],61:[2,113],62:[2,113],63:[2,113],64:[2,113],65:[2,113],66:[2,113],67:[2,113],73:[2,113],76:[2,113],96:[2,113],98:[2,113],102:[2,113]},{1:[2,10],9:[2,10],11:[2,10],14:[2,10],15:[2,10],22:[2,10],24:[2,10],26:[2,10],27:[2,10],28:[2,10],32:[2,10],34:[2,10],35:[2,10],36:[2,10],37:[2,10],42:[2,10],43:[2,10],44:[2,10],45:[2,10],51:[2,10],52:[2,10],53:[2,10],54:[2,10],55:[2,10],57:[2,10],58:[2,10],59:[2,10],60:[2,10],61:[2,10],62:[2,10],63:[2,10],64:[2,10],65:[2,10],66:[2,10],67:[2,10],68:[2,10],73:[2,10],76:[2,10],90:[2,10],96:[2,10],97:[2,10],98:[2,10],99:[2,10],102:[2,10]},{22:[1,378],35:[1,43],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57]},{24:[1,379],74:265,76:[1,38],96:[1,37]},{24:[2,128],42:[2,128],43:[2,128],45:[2,128],53:[2,128],58:[2,128]},{39:[1,359]},{43:[1,235],44:[1,236],45:[1,380]},{24:[2,127],42:[2,127],43:[2,127],45:[2,127],53:[2,127],58:[2,127]},{1:[2,27],9:[2,27],11:[2,27],14:[2,27],15:[2,27],22:[2,27],24:[2,27],26:[2,27],27:[2,27],28:[2,27],32:[2,27],34:[2,27],35:[2,27],36:[2,27],37:[2,27],42:[2,27],43:[2,27],44:[2,27],45:[2,27],51:[2,27],52:[2,27],53:[2,27],54:[2,27],55:[2,27],57:[2,27],58:[2,27],59:[2,27],60:[2,27],61:[2,27],62:[2,27],63:[2,27],64:[2,27],65:[2,27],66:[2,27],67:[2,27],68:[2,27],73:[2,27],76:[2,27],90:[2,27],96:[2,27],97:[2,27],98:[2,27],99:[2,27],102:[2,27]},{27:[1,381]},{27:[1,382]},{1:[2,28],9:[2,28],11:[2,28],14:[2,28],15:[2,28],22:[2,28],24:[2,28],26:[2,28],27:[2,28],28:[2,28],32:[2,28],34:[2,28],35:[2,28],36:[2,28],37:[2,28],42:[2,28],43:[2,28],44:[2,28],45:[2,28],51:[2,28],52:[2,28],53:[2,28],54:[2,28],55:[2,28],57:[2,28],58:[2,28],59:[2,28],60:[2,28],61:[2,28],62:[2,28],63:[2,28],64:[2,28],65:[2,28],66:[2,28],67:[2,28],68:[2,28],73:[2,28],76:[2,28],90:[2,28],96:[2,28],97:[2,28],98:[2,28],99:[2,28],102:[2,28]},{22:[2,151],24:[2,151],35:[1,43],44:[2,151],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,151],96:[2,151]},{22:[2,152],24:[2,152],35:[1,43],44:[2,152],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,152],96:[2,152],98:[1,383]},{22:[2,155],24:[2,155],35:[1,43],44:[2,155],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,155],96:[2,155]},{22:[2,156],24:[2,156],35:[1,43],44:[2,156],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,156],96:[2,156],98:[1,384]},{22:[2,162],24:[2,162],35:[1,43],37:[1,386],44:[2,162],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,162],96:[2,162],98:[1,385]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:387,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:388,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,170],24:[2,170],35:[1,43],44:[2,170],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,170],96:[2,170]},{14:[2,47],22:[2,47],32:[2,47],42:[2,47],43:[2,47],44:[2,47],45:[2,47]},{1:[2,31],9:[2,31],11:[2,31],14:[2,31],15:[2,31],22:[2,31],24:[2,31],26:[2,31],27:[2,31],28:[2,31],32:[2,31],34:[2,31],35:[2,31],36:[2,31],37:[2,31],42:[2,31],43:[2,31],44:[2,31],45:[2,31],51:[2,31],52:[2,31],53:[2,31],54:[2,31],55:[2,31],57:[2,31],58:[2,31],59:[2,31],60:[2,31],61:[2,31],62:[2,31],63:[2,31],64:[2,31],65:[2,31],66:[2,31],67:[2,31],68:[2,31],73:[2,31],76:[2,31],90:[2,31],96:[2,31],97:[2,31],98:[2,31],99:[2,31],102:[2,31]},{1:[2,149],14:[2,149],22:[2,149],24:[2,149],26:[2,149],27:[2,149],28:[2,149],32:[2,149],35:[2,149],36:[2,149],37:[2,149],42:[2,149],43:[2,149],44:[2,149],45:[2,149],51:[2,149],54:[2,149],55:[2,149],57:[2,149],58:[2,149],59:[2,149],60:[2,149],61:[2,149],62:[2,149],63:[2,149],64:[2,149],65:[2,149],66:[2,149],67:[2,149],73:[2,149],76:[2,149],96:[2,149],98:[2,149],102:[2,149]},{1:[2,30],9:[2,30],11:[2,30],14:[2,30],15:[2,30],22:[2,30],24:[2,30],26:[2,30],27:[2,30],28:[2,30],32:[2,30],34:[2,30],35:[2,30],36:[2,30],37:[2,30],42:[2,30],43:[2,30],44:[2,30],45:[2,30],51:[2,30],52:[2,30],53:[2,30],54:[2,30],55:[2,30],57:[2,30],58:[2,30],59:[2,30],60:[2,30],61:[2,30],62:[2,30],63:[2,30],64:[2,30],65:[2,30],66:[2,30],67:[2,30],68:[2,30],73:[2,30],76:[2,30],90:[2,30],96:[2,30],97:[2,30],98:[2,30],99:[2,30],102:[2,30]},{1:[2,13],9:[2,13],11:[2,13],14:[2,13],15:[2,13],22:[2,13],24:[2,13],26:[2,13],27:[2,13],28:[2,13],32:[2,13],34:[2,13],35:[2,13],36:[2,13],37:[2,13],42:[2,13],43:[2,13],44:[2,13],45:[2,13],51:[2,13],52:[2,13],53:[2,13],54:[2,13],55:[2,13],57:[2,13],58:[2,13],59:[2,13],60:[2,13],61:[2,13],62:[2,13],63:[2,13],64:[2,13],65:[2,13],66:[2,13],67:[2,13],68:[2,13],73:[2,13],76:[2,13],90:[2,13],96:[2,13],97:[2,13],98:[2,13],99:[2,13],102:[2,13]},{24:[2,130],42:[2,130],43:[2,130],45:[2,130]},{1:[2,21],9:[2,21],11:[2,21],14:[2,21],15:[2,21],22:[2,21],24:[2,21],26:[2,21],27:[2,21],28:[2,21],32:[2,21],34:[2,21],35:[2,21],36:[2,21],37:[2,21],42:[2,21],43:[2,21],44:[2,21],45:[2,21],51:[2,21],52:[2,21],53:[2,21],54:[2,21],55:[2,21],57:[2,21],58:[2,21],59:[2,21],60:[2,21],61:[2,21],62:[2,21],63:[2,21],64:[2,21],65:[2,21],66:[2,21],67:[2,21],68:[2,21],73:[2,21],76:[2,21],90:[2,21],96:[2,21],97:[2,21],98:[2,21],99:[2,21],102:[2,21]},{1:[2,23],9:[2,23],11:[2,23],14:[2,23],15:[2,23],22:[2,23],24:[2,23],26:[2,23],27:[2,23],28:[2,23],32:[2,23],34:[2,23],35:[2,23],36:[2,23],37:[2,23],42:[2,23],43:[2,23],44:[2,23],45:[2,23],51:[2,23],52:[2,23],53:[2,23],54:[2,23],55:[2,23],57:[2,23],58:[2,23],59:[2,23],60:[2,23],61:[2,23],62:[2,23],63:[2,23],64:[2,23],65:[2,23],66:[2,23],67:[2,23],68:[2,23],73:[2,23],76:[2,23],90:[2,23],96:[2,23],97:[2,23],98:[2,23],99:[2,23],102:[2,23]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:389,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:390,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:391,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:392,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,159],24:[2,159],35:[1,43],44:[2,159],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,159],96:[2,159]},{22:[2,160],24:[2,160],35:[1,43],44:[2,160],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,160],96:[2,160],98:[1,393]},{22:[2,153],24:[2,153],35:[1,43],44:[2,153],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,153],96:[2,153]},{22:[2,157],24:[2,157],35:[1,43],44:[2,157],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,157],96:[2,157]},{22:[2,163],24:[2,163],35:[1,43],37:[1,394],44:[2,163],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,163],96:[2,163]},{22:[2,164],24:[2,164],35:[1,43],44:[2,164],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,164],96:[2,164],98:[1,395]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:396,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:397,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:398,20:[1,34],23:[1,35],25:[1,36],31:[1,62],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,161],24:[2,161],35:[1,43],44:[2,161],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,161],96:[2,161]},{22:[2,166],24:[2,166],35:[1,43],44:[2,166],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,166],96:[2,166]},{22:[2,165],24:[2,165],35:[1,43],44:[2,165],51:[1,42],54:[1,44],55:[1,45],57:[1,46],58:[1,47],59:[1,48],60:[1,49],61:[1,50],62:[1,51],63:[1,52],64:[1,53],65:[1,54],66:[1,55],67:[1,56],73:[1,57],76:[2,165],96:[2,165]}], -defaultActions: {2:[2,179]}, +table: [{1:[2,53],3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:4,18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,53],44:[1,6],46:[1,10],47:3,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],95:2,96:[1,37],103:1},{1:[3]},{1:[2,180]},{1:[2,145],27:[2,145],43:[1,39]},{1:[2,146],27:[2,146],43:[1,40]},{1:[2,54],27:[2,54],43:[2,54],45:[2,54]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,53],45:[2,53],46:[1,10],47:41,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,57],17:42,27:[2,57],35:[1,44],43:[2,57],44:[1,6],45:[2,57],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:59,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],32:[2,43],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,60],27:[2,60],43:[2,60],45:[2,60]},{1:[2,61],27:[2,61],43:[2,61],45:[2,61]},{1:[2,67],9:[1,69],11:[1,70],14:[2,67],15:[1,71],22:[2,67],24:[2,67],26:[2,67],27:[2,67],28:[2,67],32:[2,67],34:[1,66],35:[2,67],36:[2,67],37:[2,67],42:[2,67],43:[2,67],44:[2,67],45:[2,67],51:[2,67],52:[1,64],53:[1,65],54:[2,67],55:[2,67],57:[2,67],58:[2,67],59:[2,67],60:[2,67],61:[2,67],62:[2,67],63:[2,67],64:[2,67],65:[2,67],66:[2,67],67:[2,67],68:[1,67],73:[2,67],76:[2,67],90:[1,68],96:[2,67],98:[2,67],102:[2,67]},{3:72,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:74,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],44:[1,75],53:[1,73],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:77,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],53:[1,76],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:79,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],53:[1,78],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{11:[1,80]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:81,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:82,44:[1,6]},{17:83,44:[1,6]},{1:[2,102],3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],14:[2,102],16:[1,32],18:[1,33],19:84,20:[1,34],22:[2,102],23:[1,35],24:[2,102],25:[1,36],26:[2,102],27:[2,102],28:[2,102],31:[1,63],32:[2,102],33:[1,13],34:[1,12],35:[2,102],36:[2,102],37:[2,102],39:[1,25],42:[2,102],43:[2,102],44:[1,85],45:[2,102],51:[2,102],54:[2,102],55:[1,14],56:[1,15],57:[2,102],58:[2,102],59:[2,102],60:[2,102],61:[2,102],62:[2,102],63:[2,102],64:[2,102],65:[2,102],66:[2,102],67:[2,102],70:[1,16],71:[1,17],73:[2,102],74:18,75:[1,19],76:[2,102],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[2,102],98:[2,102],102:[2,102]},{1:[2,103],4:[1,86],14:[2,103],22:[2,103],24:[2,103],26:[2,103],27:[2,103],28:[2,103],32:[2,103],35:[2,103],36:[2,103],37:[2,103],42:[2,103],43:[2,103],44:[2,103],45:[2,103],51:[2,103],54:[2,103],55:[2,103],57:[2,103],58:[2,103],59:[2,103],60:[2,103],61:[2,103],62:[2,103],63:[2,103],64:[2,103],65:[2,103],66:[2,103],67:[2,103],73:[2,103],76:[2,103],96:[2,103],98:[2,103],102:[2,103]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:89,18:[1,33],19:90,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],44:[1,6],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],80:87,81:88,84:[1,23],87:[1,24],91:[1,26],96:[1,37],98:[1,91]},{17:92,44:[1,6]},{3:93,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36],44:[2,177],88:94,90:[1,95],102:[2,177]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:97,18:[1,33],19:96,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],44:[1,6],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{44:[1,98]},{1:[2,1],9:[2,1],11:[2,1],14:[2,1],15:[2,1],22:[2,1],24:[2,1],26:[2,1],27:[2,1],28:[2,1],32:[2,1],34:[2,1],35:[2,1],36:[2,1],37:[2,1],42:[2,1],43:[2,1],44:[2,1],45:[2,1],51:[2,1],52:[2,1],53:[2,1],54:[2,1],55:[2,1],57:[2,1],58:[2,1],59:[2,1],60:[2,1],61:[2,1],62:[2,1],63:[2,1],64:[2,1],65:[2,1],66:[2,1],67:[2,1],68:[2,1],73:[2,1],76:[2,1],90:[2,1],96:[2,1],98:[2,1],99:[2,1],102:[2,1]},{1:[2,2],9:[2,2],11:[2,2],14:[2,2],15:[2,2],22:[2,2],24:[2,2],26:[2,2],27:[2,2],28:[2,2],32:[2,2],34:[2,2],35:[2,2],36:[2,2],37:[2,2],42:[2,2],43:[2,2],44:[2,2],45:[2,2],51:[2,2],52:[2,2],53:[2,2],54:[2,2],55:[2,2],57:[2,2],58:[2,2],59:[2,2],60:[2,2],61:[2,2],62:[2,2],63:[2,2],64:[2,2],65:[2,2],66:[2,2],67:[2,2],68:[2,2],73:[2,2],76:[2,2],90:[2,2],96:[2,2],97:[2,2],98:[2,2],99:[2,2],102:[2,2]},{1:[2,3],9:[2,3],11:[2,3],14:[2,3],15:[2,3],22:[2,3],24:[2,3],26:[2,3],27:[2,3],28:[2,3],32:[2,3],34:[2,3],35:[2,3],36:[2,3],37:[2,3],42:[2,3],43:[2,3],44:[2,3],45:[2,3],51:[2,3],52:[2,3],53:[2,3],54:[2,3],55:[2,3],57:[2,3],58:[2,3],59:[2,3],60:[2,3],61:[2,3],62:[2,3],63:[2,3],64:[2,3],65:[2,3],66:[2,3],67:[2,3],68:[2,3],73:[2,3],76:[2,3],90:[2,3],96:[2,3],97:[2,3],98:[2,3],99:[2,3],102:[2,3]},{1:[2,4],9:[2,4],11:[2,4],14:[2,4],15:[2,4],22:[2,4],24:[2,4],26:[2,4],27:[2,4],28:[2,4],32:[2,4],34:[2,4],35:[2,4],36:[2,4],37:[2,4],42:[2,4],43:[2,4],44:[2,4],45:[2,4],51:[2,4],52:[2,4],53:[2,4],54:[2,4],55:[2,4],57:[2,4],58:[2,4],59:[2,4],60:[2,4],61:[2,4],62:[2,4],63:[2,4],64:[2,4],65:[2,4],66:[2,4],67:[2,4],68:[2,4],73:[2,4],76:[2,4],90:[2,4],96:[2,4],97:[2,4],98:[2,4],99:[2,4],102:[2,4]},{1:[2,5],9:[2,5],11:[2,5],14:[2,5],15:[2,5],22:[2,5],24:[2,5],26:[2,5],27:[2,5],28:[2,5],32:[2,5],34:[2,5],35:[2,5],36:[2,5],37:[2,5],42:[2,5],43:[2,5],44:[2,5],45:[2,5],51:[2,5],52:[2,5],53:[2,5],54:[2,5],55:[2,5],57:[2,5],58:[2,5],59:[2,5],60:[2,5],61:[2,5],62:[2,5],63:[2,5],64:[2,5],65:[2,5],66:[2,5],67:[2,5],68:[2,5],73:[2,5],76:[2,5],90:[2,5],96:[2,5],97:[2,5],98:[2,5],99:[2,5],102:[2,5]},{11:[1,99]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:100,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:102,16:[1,32],18:[1,33],19:101,20:[1,34],22:[2,43],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{4:[1,116],5:113,7:[1,117],8:[1,114],10:107,20:[1,103],23:[1,115],24:[2,139],25:[1,118],38:104,40:112,42:[2,139],43:[2,139],44:[1,106],46:[1,110],50:[1,111],55:[1,109],92:108,93:105},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:4,18:[1,33],19:120,20:[1,34],23:[1,35],25:[1,36],26:[1,119],27:[2,53],28:[1,121],29:[1,122],30:[1,123],31:[1,124],33:[1,125],34:[1,126],35:[1,127],39:[1,25],43:[2,53],44:[1,6],46:[1,10],47:3,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],95:128,96:[1,37]},{3:129,4:[1,130],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36],100:[1,131]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:132,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,56],3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],27:[2,56],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,56],45:[2,56],46:[1,10],48:133,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,53],3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],27:[2,53],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,53],46:[1,10],47:134,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{43:[1,39],45:[1,135]},{1:[2,58],27:[2,58],43:[2,58],45:[2,58]},{11:[1,136]},{3:137,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:138,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],44:[1,139],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:140,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:141,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:142,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:143,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:144,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:145,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:146,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:147,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:148,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:149,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:150,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:151,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:152,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:153,32:[2,51],42:[1,154],43:[2,51],44:[2,51]},{14:[2,44],22:[2,44],32:[2,44],42:[2,44],43:[2,44],44:[2,44],45:[2,44]},{14:[2,48],22:[2,48],32:[2,48],35:[1,44],42:[2,48],43:[2,48],44:[2,48],45:[2,48],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],14:[2,50],16:[1,32],18:[1,33],19:155,20:[1,34],22:[2,50],23:[1,35],25:[1,36],31:[1,63],32:[2,50],33:[1,13],34:[1,12],39:[1,25],42:[2,50],43:[2,50],44:[2,50],45:[2,50],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:156,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],32:[2,43],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:158,18:[1,33],19:157,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],44:[1,6],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:159,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],44:[1,160],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,73],14:[2,73],22:[2,73],24:[2,73],26:[2,73],27:[2,73],28:[2,73],32:[2,73],35:[2,73],36:[2,73],37:[2,73],42:[2,73],43:[2,73],44:[2,73],45:[2,73],51:[2,73],54:[2,73],55:[2,73],57:[2,73],58:[2,73],59:[2,73],60:[2,73],61:[2,73],62:[2,73],63:[2,73],64:[2,73],65:[2,73],66:[2,73],67:[2,73],73:[2,73],76:[2,73],96:[2,73],98:[2,73],102:[2,73]},{1:[2,93],14:[2,93],22:[2,93],24:[2,93],26:[2,93],27:[2,93],28:[2,93],32:[2,93],35:[2,93],36:[2,93],37:[2,93],42:[2,93],43:[2,93],44:[2,93],45:[2,93],51:[2,93],54:[2,93],55:[2,93],57:[2,93],58:[2,93],59:[2,93],60:[2,93],61:[2,93],62:[2,93],63:[2,93],64:[2,93],65:[2,93],66:[2,93],67:[2,93],73:[2,93],76:[2,93],96:[2,93],98:[2,93],102:[2,93]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:161,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{4:[1,116],5:113,6:163,7:[1,117],10:162,20:[1,164],23:[1,165],25:[1,118],40:112},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:166,14:[2,43],16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,9],9:[2,9],11:[2,9],14:[2,9],15:[2,9],22:[2,9],24:[2,9],26:[2,9],27:[2,9],28:[2,9],32:[2,9],34:[2,9],35:[2,9],36:[2,9],37:[2,9],42:[2,9],43:[2,9],44:[2,9],45:[2,9],51:[2,9],52:[2,9],53:[2,9],54:[2,9],55:[2,9],57:[2,9],58:[2,9],59:[2,9],60:[2,9],61:[2,9],62:[2,9],63:[2,9],64:[2,9],65:[2,9],66:[2,9],67:[2,9],68:[2,9],73:[2,9],76:[2,9],90:[2,9],96:[2,9],97:[2,9],98:[2,9],99:[2,9],102:[2,9]},{1:[2,72],9:[1,69],11:[1,70],14:[2,72],15:[1,71],22:[2,72],24:[2,72],26:[2,72],27:[2,72],28:[2,72],32:[2,72],35:[2,72],36:[2,72],37:[2,72],42:[2,72],43:[2,72],44:[2,72],45:[2,72],51:[2,72],54:[2,72],55:[2,72],57:[2,72],58:[2,72],59:[2,72],60:[2,72],61:[2,72],62:[2,72],63:[2,72],64:[2,72],65:[2,72],66:[2,72],67:[2,72],73:[2,72],76:[2,72],96:[2,72],98:[2,72],102:[2,72]},{3:167,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{1:[2,77],14:[2,77],22:[2,77],24:[2,77],26:[2,77],27:[2,77],28:[2,77],32:[2,77],35:[1,44],36:[2,77],37:[2,77],42:[2,77],43:[2,77],44:[2,77],45:[2,77],51:[2,77],54:[2,77],55:[2,77],57:[2,77],58:[2,77],59:[2,77],60:[1,50],61:[2,77],62:[2,77],63:[2,77],64:[1,54],65:[2,77],66:[2,77],67:[2,77],73:[2,77],76:[2,77],96:[2,77],98:[2,77],102:[2,77]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:168,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:169,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{1:[2,78],14:[2,78],22:[2,78],24:[2,78],26:[2,78],27:[2,78],28:[2,78],32:[2,78],35:[1,44],36:[2,78],37:[2,78],42:[2,78],43:[2,78],44:[2,78],45:[2,78],51:[2,78],54:[2,78],55:[2,78],57:[2,78],58:[2,78],59:[2,78],60:[1,50],61:[2,78],62:[2,78],63:[2,78],64:[1,54],65:[2,78],66:[2,78],67:[2,78],73:[2,78],76:[2,78],96:[2,78],98:[2,78],102:[2,78]},{3:170,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{1:[2,79],14:[2,79],22:[2,79],24:[2,79],26:[2,79],27:[2,79],28:[2,79],32:[2,79],35:[1,44],36:[2,79],37:[2,79],42:[2,79],43:[2,79],44:[2,79],45:[2,79],51:[2,79],54:[2,79],55:[2,79],57:[2,79],58:[2,79],59:[2,79],60:[1,50],61:[2,79],62:[2,79],63:[2,79],64:[1,54],65:[2,79],66:[2,79],67:[2,79],73:[2,79],76:[2,79],96:[2,79],98:[2,79],102:[2,79]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:171,14:[2,43],16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:172,35:[1,44],44:[1,6],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{1:[2,148],14:[2,148],22:[2,148],24:[2,148],26:[2,148],27:[2,148],28:[2,148],32:[2,148],35:[2,148],36:[2,148],37:[2,148],42:[2,148],43:[2,148],44:[2,148],45:[2,148],51:[2,148],54:[2,148],55:[2,148],57:[2,148],58:[2,148],59:[2,148],60:[2,148],61:[2,148],62:[2,148],63:[2,148],64:[2,148],65:[2,148],66:[2,148],67:[2,148],72:173,73:[2,148],76:[2,148],83:[1,174],96:[2,148],98:[2,148],102:[2,148]},{76:[1,175]},{1:[2,100],14:[2,100],22:[2,100],24:[2,100],26:[2,100],27:[2,100],28:[2,100],32:[2,100],35:[1,44],36:[2,100],37:[2,100],42:[2,100],43:[2,100],44:[2,100],45:[2,100],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[2,100],73:[2,100],76:[2,100],96:[2,100],98:[2,100],102:[2,100]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:176,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,104],14:[2,104],22:[2,104],24:[2,104],26:[2,104],27:[2,104],28:[2,104],32:[2,104],35:[2,104],36:[2,104],37:[2,104],42:[2,104],43:[2,104],44:[2,104],45:[2,104],51:[2,104],54:[2,104],55:[2,104],57:[2,104],58:[2,104],59:[2,104],60:[2,104],61:[2,104],62:[2,104],63:[2,104],64:[2,104],65:[2,104],66:[2,104],67:[2,104],73:[2,104],76:[2,104],96:[2,104],98:[2,104],102:[2,104]},{42:[1,178],81:177,98:[1,91]},{1:[2,108],14:[2,108],22:[2,108],24:[2,108],26:[2,108],27:[2,108],28:[2,108],32:[2,108],35:[2,108],36:[2,108],37:[2,108],42:[2,108],43:[2,108],44:[2,108],45:[2,108],51:[2,108],54:[2,108],55:[2,108],57:[2,108],58:[2,108],59:[2,108],60:[2,108],61:[2,108],62:[2,108],63:[2,108],64:[2,108],65:[2,108],66:[2,108],67:[2,108],73:[2,108],76:[2,108],82:[1,179],83:[1,180],96:[2,108],98:[1,181],102:[2,108]},{1:[2,111],14:[2,111],22:[2,111],24:[2,111],26:[2,111],27:[2,111],28:[2,111],32:[2,111],35:[2,111],36:[2,111],37:[2,111],42:[2,111],43:[2,111],44:[2,111],45:[2,111],51:[2,111],54:[2,111],55:[2,111],57:[2,111],58:[2,111],59:[2,111],60:[2,111],61:[2,111],62:[2,111],63:[2,111],64:[2,111],65:[2,111],66:[2,111],67:[2,111],73:[2,111],76:[2,111],96:[2,111],98:[2,111],102:[2,111]},{35:[1,44],42:[2,122],44:[2,122],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],98:[2,122]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:90,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],80:182,84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,112],14:[2,112],22:[2,112],24:[2,112],26:[2,112],27:[2,112],28:[2,112],32:[2,112],35:[2,112],36:[2,112],37:[2,112],42:[2,112],43:[2,112],44:[2,112],45:[2,112],51:[2,112],54:[2,112],55:[2,112],57:[2,112],58:[2,112],59:[2,112],60:[2,112],61:[2,112],62:[2,112],63:[2,112],64:[2,112],65:[2,112],66:[2,112],67:[2,112],73:[2,112],76:[2,112],85:[1,183],86:[1,184],96:[2,112],98:[2,112],102:[2,112]},{9:[1,69],11:[1,70],15:[1,71],44:[2,177],88:185,90:[1,95],102:[2,177]},{44:[2,179],89:186,102:[1,187]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:188,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,119],14:[2,119],22:[2,119],24:[2,119],26:[2,119],27:[2,119],28:[2,119],32:[2,119],35:[1,44],36:[2,119],37:[2,119],42:[2,119],43:[2,119],44:[2,119],45:[2,119],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[2,119],73:[2,119],76:[2,119],96:[2,119],98:[2,119],102:[2,119]},{1:[2,120],14:[2,120],22:[2,120],24:[2,120],26:[2,120],27:[2,120],28:[2,120],32:[2,120],35:[2,120],36:[2,120],37:[2,120],42:[2,120],43:[2,120],44:[2,120],45:[2,120],51:[2,120],54:[2,120],55:[2,120],57:[2,120],58:[2,120],59:[2,120],60:[2,120],61:[2,120],62:[2,120],63:[2,120],64:[2,120],65:[2,120],66:[2,120],67:[2,120],73:[2,120],76:[2,120],96:[2,120],98:[2,120],102:[2,120]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:189,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:190,14:[2,43],16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:191,35:[1,44],44:[1,6],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{21:192,22:[2,48],35:[1,44],36:[1,193],42:[2,48],43:[2,48],44:[2,48],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],74:194,76:[1,38],96:[1,37]},{13:195,22:[2,51],42:[1,154],43:[2,51],44:[2,51]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:196,16:[1,32],18:[1,33],19:61,20:[1,34],22:[2,43],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:197,24:[2,51],42:[1,198],43:[2,51]},{24:[2,140],42:[2,140],43:[2,140],45:[2,140]},{4:[1,116],5:113,7:[1,117],8:[1,114],10:107,20:[1,200],23:[1,115],25:[1,118],38:199,40:112,42:[2,139],43:[2,139],44:[1,106],45:[2,139],46:[1,110],50:[1,111],55:[1,109],92:108,93:105},{9:[1,202],24:[2,124],42:[2,124],43:[2,124],45:[2,124],53:[2,124],58:[2,124],94:[1,201]},{24:[2,132],42:[2,132],43:[2,132],45:[2,132],53:[1,204],58:[1,203]},{4:[1,116],5:113,7:[1,117],8:[1,206],10:205,25:[1,118],40:112},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:207,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{24:[2,138],42:[2,138],43:[2,138],45:[2,138]},{1:[2,39],9:[2,39],11:[2,39],14:[2,39],15:[2,39],22:[2,39],24:[2,39],26:[2,39],27:[2,39],28:[2,39],32:[2,39],34:[2,39],35:[2,39],36:[2,39],37:[2,39],42:[2,39],43:[2,39],44:[2,39],45:[2,39],51:[2,39],52:[2,39],53:[2,39],54:[2,39],55:[2,39],57:[2,39],58:[2,39],59:[2,39],60:[2,39],61:[2,39],62:[2,39],63:[2,39],64:[2,39],65:[2,39],66:[2,39],67:[2,39],68:[2,39],73:[2,39],76:[2,39],90:[2,39],94:[2,39],96:[2,39],97:[2,39],98:[2,39],99:[2,39],102:[2,39]},{1:[2,40],9:[2,40],11:[2,40],14:[2,40],15:[2,40],22:[2,40],24:[2,40],26:[2,40],27:[2,40],28:[2,40],32:[2,40],34:[2,40],35:[2,40],36:[2,40],37:[2,40],42:[2,40],43:[2,40],44:[2,40],45:[2,40],51:[2,40],52:[2,40],53:[2,40],54:[2,40],55:[2,40],57:[2,40],58:[2,40],59:[2,40],60:[2,40],61:[2,40],62:[2,40],63:[2,40],64:[2,40],65:[2,40],66:[2,40],67:[2,40],68:[2,40],73:[2,40],76:[2,40],90:[2,40],94:[2,40],96:[2,40],97:[2,40],98:[2,40],99:[2,40],102:[2,40]},{9:[1,208],24:[2,125],42:[2,125],43:[2,125],45:[2,125],53:[2,125],58:[2,125]},{4:[1,116],5:113,7:[1,117],8:[1,114],10:107,20:[1,200],23:[1,115],24:[2,139],25:[1,118],38:209,40:112,42:[2,139],43:[2,139],44:[1,106],46:[1,110],50:[1,111],55:[1,109],92:108,93:105},{1:[2,41],9:[2,41],11:[2,41],14:[2,41],15:[2,41],22:[2,41],24:[2,41],26:[2,41],27:[2,41],28:[2,41],32:[2,41],34:[2,41],35:[2,41],36:[2,41],37:[2,41],42:[2,41],43:[2,41],44:[2,41],45:[2,41],51:[2,41],52:[2,41],53:[2,41],54:[2,41],55:[2,41],57:[2,41],58:[2,41],59:[2,41],60:[2,41],61:[2,41],62:[2,41],63:[2,41],64:[2,41],65:[2,41],66:[2,41],67:[2,41],68:[2,41],73:[2,41],76:[2,41],90:[2,41],94:[2,41],96:[2,41],97:[2,41],98:[2,41],99:[2,41],102:[2,41]},{1:[2,42],9:[2,42],11:[2,42],14:[2,42],15:[2,42],22:[2,42],24:[2,42],26:[2,42],27:[2,42],28:[2,42],32:[2,42],34:[2,42],35:[2,42],36:[2,42],37:[2,42],42:[2,42],43:[2,42],44:[2,42],45:[2,42],51:[2,42],52:[2,42],53:[2,42],54:[2,42],55:[2,42],57:[2,42],58:[2,42],59:[2,42],60:[2,42],61:[2,42],62:[2,42],63:[2,42],64:[2,42],65:[2,42],66:[2,42],67:[2,42],68:[2,42],73:[2,42],76:[2,42],90:[2,42],94:[2,42],96:[2,42],97:[2,42],98:[2,42],99:[2,42],102:[2,42]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],17:4,18:[1,33],19:7,20:[1,34],23:[1,35],25:[1,36],27:[2,53],31:[1,8],33:[1,13],34:[1,12],39:[1,25],43:[2,53],44:[1,6],46:[1,10],47:3,48:5,50:[1,9],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],95:128,96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:211,20:[1,34],23:[1,35],25:[1,36],27:[1,210],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:42,26:[1,212],27:[2,57],28:[1,213],35:[1,214],43:[2,57],44:[1,6],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:216,20:[1,34],23:[1,35],25:[1,36],27:[1,215],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{11:[1,218],27:[1,217]},{27:[1,219]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:220,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],32:[2,43],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:74,20:[1,34],23:[1,35],25:[1,36],27:[1,221],31:[1,63],33:[1,13],34:[1,12],39:[1,25],44:[1,75],53:[1,73],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:72,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36],27:[1,222]},{3:223,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{27:[1,224]},{9:[1,69],11:[1,70],15:[1,71],97:[1,225]},{9:[2,1],11:[2,1],15:[2,1],42:[1,227],97:[2,1],99:[1,226],101:[1,228]},{4:[1,229]},{22:[2,168],24:[2,168],35:[1,44],42:[1,231],44:[2,168],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,168],96:[2,168],98:[1,230]},{1:[2,55],27:[2,55],43:[2,55],45:[2,55]},{1:[2,147],27:[2,147],43:[1,39]},{1:[2,62],9:[2,62],11:[2,62],14:[2,62],15:[2,62],22:[2,62],24:[2,62],26:[2,62],27:[2,62],28:[2,62],32:[2,62],34:[2,62],35:[2,62],36:[2,62],37:[2,62],42:[2,62],43:[2,62],44:[2,62],45:[2,62],51:[2,62],52:[2,62],53:[2,62],54:[2,62],55:[2,62],57:[2,62],58:[2,62],59:[2,62],60:[2,62],61:[2,62],62:[2,62],63:[2,62],64:[2,62],65:[2,62],66:[2,62],67:[2,62],68:[2,62],73:[2,62],76:[2,62],82:[2,62],83:[2,62],85:[2,62],86:[2,62],90:[2,62],96:[2,62],97:[2,62],98:[2,62],99:[2,62],102:[2,62]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:232,14:[2,43],16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{9:[1,69],11:[1,70],15:[1,71],35:[1,233]},{1:[2,70],14:[2,70],22:[2,70],24:[2,70],26:[2,70],27:[2,70],28:[2,70],32:[2,70],35:[1,44],36:[2,70],37:[2,70],42:[2,70],43:[2,70],44:[2,70],45:[2,70],51:[2,70],54:[2,70],55:[1,46],57:[2,70],58:[2,70],59:[1,49],60:[1,50],61:[2,70],62:[2,70],63:[2,70],64:[1,54],65:[2,70],66:[2,70],67:[2,70],73:[2,70],76:[2,70],96:[2,70],98:[2,70],102:[2,70]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:234,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,81],14:[2,81],22:[2,81],24:[2,81],26:[2,81],27:[2,81],28:[2,81],32:[2,81],35:[1,44],36:[2,81],37:[2,81],42:[2,81],43:[2,81],44:[2,81],45:[2,81],51:[2,81],54:[2,81],55:[2,81],57:[2,81],58:[2,81],59:[1,49],60:[1,50],61:[2,81],62:[2,81],63:[2,81],64:[1,54],65:[2,81],66:[2,81],67:[2,81],73:[2,81],76:[2,81],96:[2,81],98:[2,81],102:[2,81]},{1:[2,82],14:[2,82],22:[2,82],24:[2,82],26:[2,82],27:[2,82],28:[2,82],32:[2,82],35:[1,44],36:[2,82],37:[2,82],42:[2,82],43:[2,82],44:[2,82],45:[2,82],51:[2,82],54:[1,45],55:[1,46],57:[1,47],58:[2,82],59:[1,49],60:[1,50],61:[1,51],62:[2,82],63:[1,53],64:[1,54],65:[1,55],66:[2,82],67:[2,82],73:[2,82],76:[2,82],96:[2,82],98:[2,82],102:[2,82]},{1:[2,83],14:[2,83],22:[2,83],24:[2,83],26:[2,83],27:[2,83],28:[2,83],32:[2,83],35:[1,44],36:[2,83],37:[2,83],42:[2,83],43:[2,83],44:[2,83],45:[2,83],51:[2,83],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[2,83],67:[2,83],73:[2,83],76:[2,83],96:[2,83],98:[2,83],102:[2,83]},{1:[2,84],14:[2,84],22:[2,84],24:[2,84],26:[2,84],27:[2,84],28:[2,84],32:[2,84],35:[1,44],36:[2,84],37:[2,84],42:[2,84],43:[2,84],44:[2,84],45:[2,84],51:[2,84],54:[2,84],55:[2,84],57:[2,84],58:[2,84],59:[2,84],60:[1,50],61:[2,84],62:[2,84],63:[2,84],64:[1,54],65:[2,84],66:[2,84],67:[2,84],73:[2,84],76:[2,84],96:[2,84],98:[2,84],102:[2,84]},{1:[2,85],14:[2,85],22:[2,85],24:[2,85],26:[2,85],27:[2,85],28:[2,85],32:[2,85],35:[1,44],36:[2,85],37:[2,85],42:[2,85],43:[2,85],44:[2,85],45:[2,85],51:[2,85],54:[2,85],55:[2,85],57:[2,85],58:[2,85],59:[2,85],60:[1,50],61:[2,85],62:[2,85],63:[2,85],64:[1,54],65:[2,85],66:[2,85],67:[2,85],73:[2,85],76:[2,85],96:[2,85],98:[2,85],102:[2,85]},{1:[2,86],14:[2,86],22:[2,86],24:[2,86],26:[2,86],27:[2,86],28:[2,86],32:[2,86],35:[1,44],36:[2,86],37:[2,86],42:[2,86],43:[2,86],44:[2,86],45:[2,86],51:[2,86],54:[2,86],55:[1,46],57:[2,86],58:[2,86],59:[1,49],60:[1,50],61:[2,86],62:[2,86],63:[2,86],64:[1,54],65:[2,86],66:[2,86],67:[2,86],73:[2,86],76:[2,86],96:[2,86],98:[2,86],102:[2,86]},{1:[2,87],14:[2,87],22:[2,87],24:[2,87],26:[2,87],27:[2,87],28:[2,87],32:[2,87],35:[1,44],36:[2,87],37:[2,87],42:[2,87],43:[2,87],44:[2,87],45:[2,87],51:[2,87],54:[1,45],55:[1,46],57:[1,47],58:[2,87],59:[1,49],60:[1,50],61:[1,51],62:[2,87],63:[1,53],64:[1,54],65:[1,55],66:[2,87],67:[2,87],73:[2,87],76:[2,87],96:[2,87],98:[2,87],102:[2,87]},{1:[2,88],14:[2,88],22:[2,88],24:[2,88],26:[2,88],27:[2,88],28:[2,88],32:[2,88],35:[1,44],36:[2,88],37:[2,88],42:[2,88],43:[2,88],44:[2,88],45:[2,88],51:[2,88],54:[1,45],55:[1,46],57:[2,88],58:[2,88],59:[1,49],60:[1,50],61:[1,51],62:[2,88],63:[1,53],64:[1,54],65:[2,88],66:[2,88],67:[2,88],73:[2,88],76:[2,88],96:[2,88],98:[2,88],102:[2,88]},{1:[2,89],14:[2,89],22:[2,89],24:[2,89],26:[2,89],27:[2,89],28:[2,89],32:[2,89],35:[1,44],36:[2,89],37:[2,89],42:[2,89],43:[2,89],44:[2,89],45:[2,89],51:[2,89],54:[2,89],55:[2,89],57:[2,89],58:[2,89],59:[2,89],60:[2,89],61:[2,89],62:[2,89],63:[2,89],64:[1,54],65:[2,89],66:[2,89],67:[2,89],73:[2,89],76:[2,89],96:[2,89],98:[2,89],102:[2,89]},{1:[2,90],14:[2,90],22:[2,90],24:[2,90],26:[2,90],27:[2,90],28:[2,90],32:[2,90],35:[1,44],36:[2,90],37:[2,90],42:[2,90],43:[2,90],44:[2,90],45:[2,90],51:[2,90],54:[1,45],55:[1,46],57:[2,90],58:[2,90],59:[1,49],60:[1,50],61:[1,51],62:[2,90],63:[1,53],64:[1,54],65:[2,90],66:[2,90],67:[2,90],73:[2,90],76:[2,90],96:[2,90],98:[2,90],102:[2,90]},{1:[2,91],14:[2,91],22:[2,91],24:[2,91],26:[2,91],27:[2,91],28:[2,91],32:[2,91],35:[1,44],36:[2,91],37:[2,91],42:[2,91],43:[2,91],44:[2,91],45:[2,91],51:[2,91],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[2,91],67:[2,91],73:[2,91],76:[2,91],96:[2,91],98:[2,91],102:[2,91]},{1:[2,92],14:[2,92],22:[2,92],24:[2,92],26:[2,92],27:[2,92],28:[2,92],32:[2,92],35:[1,44],36:[2,92],37:[2,92],42:[2,92],43:[2,92],44:[2,92],45:[2,92],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[2,92],76:[2,92],96:[2,92],98:[2,92],102:[2,92]},{1:[2,97],14:[2,97],22:[2,97],24:[2,97],26:[2,97],27:[2,97],28:[2,97],32:[2,97],35:[1,44],36:[2,97],37:[2,97],42:[2,97],43:[2,97],44:[2,97],45:[2,97],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[2,97],76:[2,97],96:[2,97],98:[2,97],102:[2,97]},{32:[1,235],43:[1,236],44:[1,237]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],14:[2,52],16:[1,32],18:[1,33],19:61,20:[1,34],22:[2,52],23:[1,35],25:[1,36],31:[1,63],32:[2,52],33:[1,13],34:[1,12],39:[1,25],41:238,43:[2,52],44:[2,52],45:[2,52],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{14:[2,49],22:[2,49],32:[2,49],35:[1,44],42:[2,49],43:[2,49],44:[2,49],45:[2,49],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{13:239,32:[2,51],42:[1,154],43:[2,51],44:[2,51]},{1:[2,64],14:[2,64],22:[2,64],24:[2,64],26:[2,64],27:[2,64],28:[2,64],32:[2,64],35:[1,44],36:[2,64],37:[2,64],42:[2,64],43:[2,64],44:[2,64],45:[2,64],51:[2,64],54:[2,64],55:[1,46],57:[2,64],58:[2,64],59:[1,49],60:[1,50],61:[2,64],62:[2,64],63:[2,64],64:[1,54],65:[2,64],66:[2,64],67:[2,64],73:[2,64],76:[2,64],96:[2,64],98:[2,64],102:[2,64]},{1:[2,65],14:[2,65],22:[2,65],24:[2,65],26:[2,65],27:[2,65],28:[2,65],32:[2,65],35:[2,65],36:[2,65],37:[2,65],42:[2,65],43:[2,65],44:[2,65],45:[2,65],51:[2,65],54:[2,65],55:[2,65],57:[2,65],58:[2,65],59:[2,65],60:[2,65],61:[2,65],62:[2,65],63:[2,65],64:[2,65],65:[2,65],66:[2,65],67:[2,65],73:[2,65],76:[2,65],96:[2,65],98:[2,65],102:[2,65]},{1:[2,68],14:[2,68],22:[2,68],24:[2,68],26:[2,68],27:[2,68],28:[2,68],32:[2,68],35:[1,44],36:[2,68],37:[2,68],42:[2,68],43:[2,68],44:[2,68],45:[2,68],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[2,68],73:[2,68],76:[2,68],96:[2,68],98:[2,68],102:[2,68]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:240,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,118],14:[2,118],22:[2,118],24:[2,118],26:[2,118],27:[2,118],28:[2,118],32:[2,118],35:[1,44],36:[2,118],37:[2,118],42:[2,118],43:[2,118],44:[2,118],45:[2,118],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[2,118],73:[2,118],76:[2,118],96:[2,118],98:[2,118],102:[2,118]},{1:[2,6],9:[2,6],11:[2,6],14:[2,6],15:[2,6],22:[2,6],24:[2,6],26:[2,6],27:[2,6],28:[2,6],32:[2,6],34:[2,6],35:[2,6],36:[2,6],37:[2,6],42:[2,6],43:[2,6],44:[2,6],45:[2,6],51:[2,6],52:[2,6],53:[2,6],54:[2,6],55:[2,6],57:[2,6],58:[2,6],59:[2,6],60:[2,6],61:[2,6],62:[2,6],63:[2,6],64:[2,6],65:[2,6],66:[2,6],67:[2,6],68:[2,6],73:[2,6],76:[2,6],90:[2,6],96:[2,6],97:[2,6],98:[2,6],99:[2,6],102:[2,6]},{1:[2,7],9:[2,7],11:[2,7],14:[2,7],15:[2,7],22:[2,7],24:[2,7],26:[2,7],27:[2,7],28:[2,7],32:[2,7],34:[2,7],35:[2,7],36:[2,7],37:[2,7],42:[2,7],43:[2,7],44:[2,7],45:[2,7],51:[2,7],52:[2,7],53:[2,7],54:[2,7],55:[2,7],57:[2,7],58:[2,7],59:[2,7],60:[2,7],61:[2,7],62:[2,7],63:[2,7],64:[2,7],65:[2,7],66:[2,7],67:[2,7],68:[2,7],73:[2,7],76:[2,7],90:[2,7],96:[2,7],97:[2,7],98:[2,7],99:[2,7],102:[2,7]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:102,16:[1,32],18:[1,33],19:241,20:[1,34],22:[2,43],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],36:[1,242],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{4:[1,116],5:113,7:[1,117],8:[1,114],10:107,20:[1,200],23:[1,115],24:[2,139],25:[1,118],38:104,40:112,42:[2,139],43:[2,139],44:[1,106],46:[1,110],50:[1,111],55:[1,109],92:108,93:105},{13:243,14:[2,51],42:[1,154],43:[2,51],44:[2,51]},{1:[2,74],9:[1,69],11:[1,70],14:[2,74],15:[1,71],22:[2,74],24:[2,74],26:[2,74],27:[2,74],28:[2,74],32:[2,74],35:[2,74],36:[2,74],37:[2,74],42:[2,74],43:[2,74],44:[2,74],45:[2,74],51:[2,74],54:[2,74],55:[2,74],57:[2,74],58:[2,74],59:[2,74],60:[2,74],61:[2,74],62:[2,74],63:[2,74],64:[2,74],65:[2,74],66:[2,74],67:[2,74],73:[2,74],76:[2,74],96:[2,74],98:[2,74],102:[2,74]},{13:244,42:[1,154],43:[2,51],44:[2,51],45:[2,51]},{1:[2,75],9:[1,69],11:[1,70],14:[2,75],15:[1,71],22:[2,75],24:[2,75],26:[2,75],27:[2,75],28:[2,75],32:[2,75],35:[2,75],36:[2,75],37:[2,75],42:[2,75],43:[2,75],44:[2,75],45:[2,75],51:[2,75],54:[2,75],55:[2,75],57:[2,75],58:[2,75],59:[2,75],60:[2,75],61:[2,75],62:[2,75],63:[2,75],64:[2,75],65:[2,75],66:[2,75],67:[2,75],73:[2,75],76:[2,75],96:[2,75],98:[2,75],102:[2,75]},{1:[2,76],9:[1,69],11:[1,70],14:[2,76],15:[1,71],22:[2,76],24:[2,76],26:[2,76],27:[2,76],28:[2,76],32:[2,76],35:[2,76],36:[2,76],37:[2,76],42:[2,76],43:[2,76],44:[2,76],45:[2,76],51:[2,76],54:[2,76],55:[2,76],57:[2,76],58:[2,76],59:[2,76],60:[2,76],61:[2,76],62:[2,76],63:[2,76],64:[2,76],65:[2,76],66:[2,76],67:[2,76],73:[2,76],76:[2,76],96:[2,76],98:[2,76],102:[2,76]},{13:245,14:[2,51],42:[1,154],43:[2,51],44:[2,51]},{1:[2,148],14:[2,148],22:[2,148],24:[2,148],26:[2,148],27:[2,148],28:[2,148],32:[2,148],35:[2,148],36:[2,148],37:[2,148],42:[2,148],43:[2,148],44:[2,148],45:[2,148],51:[2,148],54:[2,148],55:[2,148],57:[2,148],58:[2,148],59:[2,148],60:[2,148],61:[2,148],62:[2,148],63:[2,148],64:[2,148],65:[2,148],66:[2,148],67:[2,148],72:246,73:[2,148],76:[2,148],83:[1,174],96:[2,148],98:[2,148],102:[2,148]},{1:[2,98],14:[2,98],22:[2,98],24:[2,98],26:[2,98],27:[2,98],28:[2,98],32:[2,98],35:[2,98],36:[2,98],37:[2,98],42:[2,98],43:[2,98],44:[2,98],45:[2,98],51:[2,98],54:[2,98],55:[2,98],57:[2,98],58:[2,98],59:[2,98],60:[2,98],61:[2,98],62:[2,98],63:[2,98],64:[2,98],65:[2,98],66:[2,98],67:[2,98],73:[2,98],76:[2,98],96:[2,98],98:[2,98],102:[2,98]},{17:247,44:[1,6],71:[1,248]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:249,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:250,42:[1,154],43:[2,51],44:[2,51],45:[2,51]},{1:[2,105],14:[2,105],22:[2,105],24:[2,105],26:[2,105],27:[2,105],28:[2,105],32:[2,105],35:[2,105],36:[2,105],37:[2,105],42:[2,105],43:[2,105],44:[2,105],45:[2,105],51:[2,105],54:[2,105],55:[2,105],57:[2,105],58:[2,105],59:[2,105],60:[2,105],61:[2,105],62:[2,105],63:[2,105],64:[2,105],65:[2,105],66:[2,105],67:[2,105],73:[2,105],76:[2,105],82:[1,251],83:[1,252],96:[2,105],98:[1,181],102:[2,105]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:253,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:254,44:[1,6]},{17:255,44:[1,6]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:90,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],80:256,84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:257,42:[1,178],44:[1,6]},{17:258,44:[1,6]},{17:259,44:[1,6]},{44:[2,179],89:260,102:[1,187]},{17:261,44:[1,6]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:90,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],80:262,84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{35:[1,44],44:[2,176],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],102:[2,176]},{13:263,42:[1,154],43:[2,51],44:[2,51],45:[2,51]},{13:264,14:[2,51],42:[1,154],43:[2,51],44:[2,51]},{1:[2,11],9:[2,11],11:[2,11],14:[2,11],15:[2,11],22:[2,11],24:[2,11],26:[2,11],27:[2,11],28:[2,11],32:[2,11],34:[2,11],35:[2,11],36:[2,11],37:[2,11],42:[2,11],43:[2,11],44:[2,11],45:[2,11],51:[2,11],52:[2,11],53:[2,11],54:[2,11],55:[2,11],57:[2,11],58:[2,11],59:[2,11],60:[2,11],61:[2,11],62:[2,11],63:[2,11],64:[2,11],65:[2,11],66:[2,11],67:[2,11],68:[2,11],73:[2,11],76:[2,11],90:[2,11],96:[2,11],97:[2,11],98:[2,11],99:[2,11],102:[2,11]},{22:[1,265],74:266,76:[1,38],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:267,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,172],24:[2,172],76:[2,172],96:[2,172]},{22:[1,268],43:[1,236],44:[1,237]},{13:269,22:[2,51],42:[1,154],43:[2,51],44:[2,51]},{24:[1,270],43:[1,271]},{4:[1,116],5:113,7:[1,117],8:[1,114],10:107,20:[1,200],23:[1,115],24:[2,52],25:[1,118],40:112,43:[2,52],45:[2,52],46:[1,110],50:[1,111],55:[1,109],92:108,93:272},{13:273,42:[1,198],43:[2,51],45:[2,51]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:274,16:[1,32],18:[1,33],19:61,20:[1,34],22:[2,43],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:275,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],44:[1,276],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{4:[1,116],7:[1,117],40:277},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:278,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:279,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{24:[2,135],42:[2,135],43:[2,135],45:[2,135]},{24:[2,136],42:[2,136],43:[2,136],45:[2,136]},{24:[2,137],35:[1,44],42:[2,137],43:[2,137],45:[2,137],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{4:[1,116],7:[1,117],40:280},{13:281,24:[2,51],42:[1,198],43:[2,51]},{1:[2,14],9:[2,14],11:[2,14],14:[2,14],15:[2,14],22:[2,14],24:[2,14],26:[2,14],27:[2,14],28:[2,14],32:[2,14],34:[2,14],35:[2,14],36:[2,14],37:[2,14],42:[2,14],43:[2,14],44:[2,14],45:[2,14],51:[2,14],52:[2,14],53:[2,14],54:[2,14],55:[2,14],57:[2,14],58:[2,14],59:[2,14],60:[2,14],61:[2,14],62:[2,14],63:[2,14],64:[2,14],65:[2,14],66:[2,14],67:[2,14],68:[2,14],73:[2,14],76:[2,14],90:[2,14],96:[2,14],97:[2,14],98:[2,14],99:[2,14],102:[2,14]},{27:[1,282],35:[1,44],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{27:[1,283]},{27:[1,284]},{3:285,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{1:[2,17],9:[2,17],11:[2,17],14:[2,17],15:[2,17],22:[2,17],24:[2,17],26:[2,17],27:[2,17],28:[2,17],32:[2,17],34:[2,17],35:[2,17],36:[2,17],37:[2,17],42:[2,17],43:[2,17],44:[2,17],45:[2,17],51:[2,17],52:[2,17],53:[2,17],54:[2,17],55:[2,17],57:[2,17],58:[2,17],59:[2,17],60:[2,17],61:[2,17],62:[2,17],63:[2,17],64:[2,17],65:[2,17],66:[2,17],67:[2,17],68:[2,17],73:[2,17],76:[2,17],90:[2,17],96:[2,17],97:[2,17],98:[2,17],99:[2,17],102:[2,17]},{27:[1,286],35:[1,44],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{1:[2,20],9:[2,20],11:[2,20],14:[2,20],15:[2,20],22:[2,20],24:[2,20],26:[2,20],27:[2,20],28:[2,20],32:[2,20],34:[2,20],35:[2,20],36:[2,20],37:[2,20],42:[2,20],43:[2,20],44:[2,20],45:[2,20],51:[2,20],52:[2,20],53:[2,20],54:[2,20],55:[2,20],57:[2,20],58:[2,20],59:[2,20],60:[2,20],61:[2,20],62:[2,20],63:[2,20],64:[2,20],65:[2,20],66:[2,20],67:[2,20],68:[2,20],73:[2,20],76:[2,20],90:[2,20],96:[2,20],97:[2,20],98:[2,20],99:[2,20],102:[2,20]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:287,14:[2,43],16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,22],9:[2,22],11:[2,22],14:[2,22],15:[2,22],22:[2,22],24:[2,22],26:[2,22],27:[2,22],28:[2,22],32:[2,22],34:[2,22],35:[2,22],36:[2,22],37:[2,22],42:[2,22],43:[2,22],44:[2,22],45:[2,22],51:[2,22],52:[2,22],53:[2,22],54:[2,22],55:[2,22],57:[2,22],58:[2,22],59:[2,22],60:[2,22],61:[2,22],62:[2,22],63:[2,22],64:[2,22],65:[2,22],66:[2,22],67:[2,22],68:[2,22],73:[2,22],76:[2,22],90:[2,22],96:[2,22],97:[2,22],98:[2,22],99:[2,22],102:[2,22]},{13:288,32:[2,51],42:[1,154],43:[2,51],44:[2,51]},{1:[2,24],9:[2,24],11:[2,24],14:[2,24],15:[2,24],22:[2,24],24:[2,24],26:[2,24],27:[2,24],28:[2,24],32:[2,24],34:[2,24],35:[2,24],36:[2,24],37:[2,24],42:[2,24],43:[2,24],44:[2,24],45:[2,24],51:[2,24],52:[2,24],53:[2,24],54:[2,24],55:[2,24],57:[2,24],58:[2,24],59:[2,24],60:[2,24],61:[2,24],62:[2,24],63:[2,24],64:[2,24],65:[2,24],66:[2,24],67:[2,24],68:[2,24],73:[2,24],76:[2,24],90:[2,24],96:[2,24],97:[2,24],98:[2,24],99:[2,24],102:[2,24]},{1:[2,25],9:[2,25],11:[2,25],14:[2,25],15:[2,25],22:[2,25],24:[2,25],26:[2,25],27:[2,25],28:[2,25],32:[2,25],34:[2,25],35:[2,25],36:[2,25],37:[2,25],42:[2,25],43:[2,25],44:[2,25],45:[2,25],51:[2,25],52:[2,25],53:[2,25],54:[2,25],55:[2,25],57:[2,25],58:[2,25],59:[2,25],60:[2,25],61:[2,25],62:[2,25],63:[2,25],64:[2,25],65:[2,25],66:[2,25],67:[2,25],68:[2,25],73:[2,25],76:[2,25],90:[2,25],96:[2,25],97:[2,25],98:[2,25],99:[2,25],102:[2,25]},{9:[1,69],11:[1,70],15:[1,71],35:[1,289]},{1:[2,144],9:[2,144],11:[2,144],14:[2,144],15:[2,144],22:[2,144],24:[2,144],26:[2,144],27:[2,144],28:[2,144],32:[2,144],34:[2,144],35:[2,144],36:[2,144],37:[2,144],42:[2,144],43:[2,144],44:[2,144],45:[2,144],51:[2,144],52:[2,144],53:[2,144],54:[2,144],55:[2,144],57:[2,144],58:[2,144],59:[2,144],60:[2,144],61:[2,144],62:[2,144],63:[2,144],64:[2,144],65:[2,144],66:[2,144],67:[2,144],68:[2,144],73:[2,144],76:[2,144],90:[2,144],94:[2,144],96:[2,144],97:[2,144],98:[2,144],99:[2,144],102:[2,144]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:290,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:291,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:292,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:293,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{42:[1,295],99:[1,294]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:296,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:297,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:298,14:[2,51],42:[1,154],43:[2,51],44:[2,51]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:299,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{13:300,42:[1,154],43:[2,51],44:[2,51],45:[2,51]},{49:[1,301],69:[1,302]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:303,46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:304,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{14:[2,45],22:[2,45],32:[2,45],42:[2,45],43:[2,45],44:[2,45],45:[2,45]},{32:[1,305],43:[1,236],44:[1,237]},{13:306,42:[1,154],43:[2,51],44:[2,51],45:[2,51]},{22:[2,48],35:[1,44],36:[1,307],42:[2,48],43:[2,48],44:[2,48],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:308,20:[1,34],22:[1,309],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{14:[1,310],43:[1,236],44:[1,237]},{43:[1,236],44:[1,237],45:[1,311]},{14:[1,312],43:[1,236],44:[1,237]},{1:[2,96],14:[2,96],22:[2,96],24:[2,96],26:[2,96],27:[2,96],28:[2,96],32:[2,96],35:[2,96],36:[2,96],37:[2,96],42:[2,96],43:[2,96],44:[2,96],45:[2,96],51:[2,96],54:[2,96],55:[2,96],57:[2,96],58:[2,96],59:[2,96],60:[2,96],61:[2,96],62:[2,96],63:[2,96],64:[2,96],65:[2,96],66:[2,96],67:[2,96],73:[2,96],76:[2,96],96:[2,96],98:[2,96],102:[2,96]},{1:[2,149],14:[2,149],22:[2,149],24:[2,149],26:[2,149],27:[2,149],28:[2,149],32:[2,149],35:[2,149],36:[2,149],37:[2,149],42:[2,149],43:[2,149],44:[2,149],45:[2,149],51:[2,149],54:[2,149],55:[2,149],57:[2,149],58:[2,149],59:[2,149],60:[2,149],61:[2,149],62:[2,149],63:[2,149],64:[2,149],65:[2,149],66:[2,149],67:[2,149],73:[2,149],76:[2,149],96:[2,149],98:[2,149],102:[2,149]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:313,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,99],14:[2,99],22:[2,99],24:[2,99],26:[2,99],27:[2,99],28:[2,99],32:[2,99],35:[1,44],36:[2,99],37:[2,99],42:[2,99],43:[2,99],44:[2,99],45:[2,99],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[2,99],76:[2,99],96:[2,99],98:[2,99],102:[2,99]},{43:[1,236],44:[1,237],45:[1,314]},{17:315,44:[1,6]},{17:316,44:[1,6]},{35:[1,44],42:[2,123],44:[2,123],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],98:[2,123]},{1:[2,109],14:[2,109],22:[2,109],24:[2,109],26:[2,109],27:[2,109],28:[2,109],32:[2,109],35:[2,109],36:[2,109],37:[2,109],42:[2,109],43:[2,109],44:[2,109],45:[2,109],51:[2,109],54:[2,109],55:[2,109],57:[2,109],58:[2,109],59:[2,109],60:[2,109],61:[2,109],62:[2,109],63:[2,109],64:[2,109],65:[2,109],66:[2,109],67:[2,109],73:[2,109],76:[2,109],96:[2,109],98:[2,109],102:[2,109]},{1:[2,110],14:[2,110],22:[2,110],24:[2,110],26:[2,110],27:[2,110],28:[2,110],32:[2,110],35:[2,110],36:[2,110],37:[2,110],42:[2,110],43:[2,110],44:[2,110],45:[2,110],51:[2,110],54:[2,110],55:[2,110],57:[2,110],58:[2,110],59:[2,110],60:[2,110],61:[2,110],62:[2,110],63:[2,110],64:[2,110],65:[2,110],66:[2,110],67:[2,110],73:[2,110],76:[2,110],96:[2,110],98:[2,110],102:[2,110]},{17:317,42:[1,178],44:[1,6]},{1:[2,174],14:[2,174],22:[2,174],24:[2,174],26:[2,174],27:[2,174],28:[2,174],32:[2,174],35:[2,174],36:[2,174],37:[2,174],42:[2,174],43:[2,174],44:[2,174],45:[2,174],51:[2,174],54:[2,174],55:[2,174],57:[2,174],58:[2,174],59:[2,174],60:[2,174],61:[2,174],62:[2,174],63:[2,174],64:[2,174],65:[2,174],66:[2,174],67:[2,174],73:[2,174],76:[2,174],82:[2,174],83:[2,174],96:[2,174],98:[2,174],102:[2,174]},{1:[2,113],14:[2,113],22:[2,113],24:[2,113],26:[2,113],27:[2,113],28:[2,113],32:[2,113],35:[2,113],36:[2,113],37:[2,113],42:[2,113],43:[2,113],44:[2,113],45:[2,113],51:[2,113],54:[2,113],55:[2,113],57:[2,113],58:[2,113],59:[2,113],60:[2,113],61:[2,113],62:[2,113],63:[2,113],64:[2,113],65:[2,113],66:[2,113],67:[2,113],73:[2,113],76:[2,113],86:[1,318],96:[2,113],98:[2,113],102:[2,113]},{1:[2,115],14:[2,115],22:[2,115],24:[2,115],26:[2,115],27:[2,115],28:[2,115],32:[2,115],35:[2,115],36:[2,115],37:[2,115],42:[2,115],43:[2,115],44:[2,115],45:[2,115],51:[2,115],54:[2,115],55:[2,115],57:[2,115],58:[2,115],59:[2,115],60:[2,115],61:[2,115],62:[2,115],63:[2,115],64:[2,115],65:[2,115],66:[2,115],67:[2,115],73:[2,115],76:[2,115],96:[2,115],98:[2,115],102:[2,115]},{17:319,44:[1,6]},{1:[2,117],14:[2,117],22:[2,117],24:[2,117],26:[2,117],27:[2,117],28:[2,117],32:[2,117],35:[2,117],36:[2,117],37:[2,117],42:[2,117],43:[2,117],44:[2,117],45:[2,117],51:[2,117],54:[2,117],55:[2,117],57:[2,117],58:[2,117],59:[2,117],60:[2,117],61:[2,117],62:[2,117],63:[2,117],64:[2,117],65:[2,117],66:[2,117],67:[2,117],73:[2,117],76:[2,117],96:[2,117],98:[2,117],102:[2,117]},{42:[1,178],44:[2,178]},{43:[1,236],44:[1,237],45:[1,320]},{14:[1,321],43:[1,236],44:[1,237]},{1:[2,12],9:[2,12],11:[2,12],14:[2,12],15:[2,12],22:[2,12],24:[2,12],26:[2,12],27:[2,12],28:[2,12],32:[2,12],34:[2,12],35:[2,12],36:[2,12],37:[2,12],42:[2,12],43:[2,12],44:[2,12],45:[2,12],51:[2,12],52:[2,12],53:[2,12],54:[2,12],55:[2,12],57:[2,12],58:[2,12],59:[2,12],60:[2,12],61:[2,12],62:[2,12],63:[2,12],64:[2,12],65:[2,12],66:[2,12],67:[2,12],68:[2,12],73:[2,12],76:[2,12],90:[2,12],96:[2,12],97:[2,12],98:[2,12],99:[2,12],102:[2,12]},{22:[2,173],24:[2,173],76:[2,173],96:[2,173]},{22:[1,322],35:[1,44],37:[1,323],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{1:[2,35],9:[2,35],11:[2,35],14:[2,35],15:[2,35],22:[2,35],24:[2,35],26:[2,35],27:[2,35],28:[2,35],32:[2,35],34:[2,35],35:[2,35],36:[2,35],37:[2,35],39:[1,324],42:[2,35],43:[2,35],44:[2,35],45:[2,35],51:[2,35],52:[2,35],53:[2,35],54:[2,35],55:[2,35],57:[2,35],58:[2,35],59:[2,35],60:[2,35],61:[2,35],62:[2,35],63:[2,35],64:[2,35],65:[2,35],66:[2,35],67:[2,35],68:[2,35],73:[2,35],76:[2,35],90:[2,35],96:[2,35],97:[2,35],98:[2,35],99:[2,35],102:[2,35]},{22:[1,325],43:[1,236],44:[1,237]},{1:[2,36],9:[2,36],11:[2,36],14:[2,36],15:[2,36],22:[2,36],24:[2,36],26:[2,36],27:[2,36],28:[2,36],32:[2,36],34:[2,36],35:[2,36],36:[2,36],37:[2,36],39:[1,326],42:[2,36],43:[2,36],44:[2,36],45:[2,36],51:[2,36],52:[2,36],53:[2,36],54:[2,36],55:[2,36],57:[2,36],58:[2,36],59:[2,36],60:[2,36],61:[2,36],62:[2,36],63:[2,36],64:[2,36],65:[2,36],66:[2,36],67:[2,36],68:[2,36],73:[2,36],76:[2,36],90:[2,36],96:[2,36],97:[2,36],98:[2,36],99:[2,36],102:[2,36]},{4:[1,116],5:113,7:[1,117],8:[1,114],10:107,20:[1,200],23:[1,115],25:[1,118],40:112,46:[1,110],50:[1,111],55:[1,109],92:108,93:327},{24:[2,141],42:[2,141],43:[2,141],45:[2,141]},{43:[1,271],45:[1,328]},{13:329,22:[2,51],42:[1,154],43:[2,51],44:[2,51]},{24:[2,130],35:[1,44],42:[2,130],43:[2,130],45:[2,130],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],12:330,16:[1,32],18:[1,33],19:61,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],41:60,42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[1,62],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{24:[2,126],42:[2,126],43:[2,126],45:[2,126],53:[2,126],58:[2,126]},{24:[2,133],35:[1,44],42:[2,133],43:[2,133],45:[2,133],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{24:[2,134],35:[1,44],42:[2,134],43:[2,134],45:[2,134],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{24:[2,127],42:[2,127],43:[2,127],45:[2,127],53:[2,127],58:[2,127]},{24:[1,331],43:[1,271]},{1:[2,15],9:[2,15],11:[2,15],14:[2,15],15:[2,15],22:[2,15],24:[2,15],26:[2,15],27:[2,15],28:[2,15],32:[2,15],34:[2,15],35:[2,15],36:[2,15],37:[2,15],42:[2,15],43:[2,15],44:[2,15],45:[2,15],51:[2,15],52:[2,15],53:[2,15],54:[2,15],55:[2,15],57:[2,15],58:[2,15],59:[2,15],60:[2,15],61:[2,15],62:[2,15],63:[2,15],64:[2,15],65:[2,15],66:[2,15],67:[2,15],68:[2,15],73:[2,15],76:[2,15],90:[2,15],96:[2,15],97:[2,15],98:[2,15],99:[2,15],102:[2,15]},{1:[2,16],9:[2,16],11:[2,16],14:[2,16],15:[2,16],22:[2,16],24:[2,16],26:[2,16],27:[2,16],28:[2,16],32:[2,16],34:[2,16],35:[2,16],36:[2,16],37:[2,16],42:[2,16],43:[2,16],44:[2,16],45:[2,16],51:[2,16],52:[2,16],53:[2,16],54:[2,16],55:[2,16],57:[2,16],58:[2,16],59:[2,16],60:[2,16],61:[2,16],62:[2,16],63:[2,16],64:[2,16],65:[2,16],66:[2,16],67:[2,16],68:[2,16],73:[2,16],76:[2,16],90:[2,16],96:[2,16],97:[2,16],98:[2,16],99:[2,16],102:[2,16]},{1:[2,19],9:[2,19],11:[2,19],14:[2,19],15:[2,19],22:[2,19],24:[2,19],26:[2,19],27:[2,19],28:[2,19],32:[2,19],34:[2,19],35:[2,19],36:[2,19],37:[2,19],42:[2,19],43:[2,19],44:[2,19],45:[2,19],51:[2,19],52:[2,19],53:[2,19],54:[2,19],55:[2,19],57:[2,19],58:[2,19],59:[2,19],60:[2,19],61:[2,19],62:[2,19],63:[2,19],64:[2,19],65:[2,19],66:[2,19],67:[2,19],68:[2,19],73:[2,19],76:[2,19],90:[2,19],96:[2,19],97:[2,19],98:[2,19],99:[2,19],102:[2,19]},{9:[1,69],11:[1,70],15:[1,71],35:[1,332]},{1:[2,18],9:[2,18],11:[2,18],14:[2,18],15:[2,18],22:[2,18],24:[2,18],26:[2,18],27:[2,18],28:[2,18],32:[2,18],34:[2,18],35:[2,18],36:[2,18],37:[2,18],42:[2,18],43:[2,18],44:[2,18],45:[2,18],51:[2,18],52:[2,18],53:[2,18],54:[2,18],55:[2,18],57:[2,18],58:[2,18],59:[2,18],60:[2,18],61:[2,18],62:[2,18],63:[2,18],64:[2,18],65:[2,18],66:[2,18],67:[2,18],68:[2,18],73:[2,18],76:[2,18],90:[2,18],96:[2,18],97:[2,18],98:[2,18],99:[2,18],102:[2,18]},{13:333,14:[2,51],42:[1,154],43:[2,51],44:[2,51]},{32:[1,334],43:[1,236],44:[1,237]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:336,20:[1,34],23:[1,35],25:[1,36],27:[1,335],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,151],24:[2,151],35:[1,44],37:[1,338],44:[2,151],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,151],96:[2,151],98:[1,337]},{22:[2,155],24:[2,155],35:[1,44],44:[2,155],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,155],96:[2,155],98:[1,339]},{9:[1,69],11:[1,70],15:[1,71],99:[1,340]},{35:[1,44],36:[1,341],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:342,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:343,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],20:[1,34],23:[1,35],25:[1,36]},{22:[2,169],24:[2,169],35:[1,44],44:[2,169],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,169],96:[2,169]},{22:[2,170],24:[2,170],35:[1,44],44:[2,170],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,170],96:[2,170],98:[1,344]},{14:[1,345],43:[1,236],44:[1,237]},{1:[2,66],14:[2,66],22:[2,66],24:[2,66],26:[2,66],27:[2,66],28:[2,66],32:[2,66],35:[2,66],36:[2,66],37:[2,66],42:[2,66],43:[2,66],44:[2,66],45:[2,66],51:[2,66],54:[2,66],55:[2,66],57:[2,66],58:[2,66],59:[2,66],60:[2,66],61:[2,66],62:[2,66],63:[2,66],64:[2,66],65:[2,66],66:[2,66],67:[2,66],73:[2,66],76:[2,66],96:[2,66],98:[2,66],102:[2,66]},{43:[1,236],44:[1,237],45:[1,346]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:347,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{17:348,44:[1,6]},{14:[2,46],22:[2,46],32:[2,46],42:[2,46],43:[2,46],44:[2,46],45:[2,46]},{13:349,42:[1,154],43:[2,51],44:[2,51],45:[2,51]},{69:[1,302]},{43:[1,236],44:[1,237],45:[1,350]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:351,20:[1,34],22:[1,352],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[1,353],35:[1,44],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{1:[2,34],9:[2,34],11:[2,34],14:[2,34],15:[2,34],22:[2,34],24:[2,34],26:[2,34],27:[2,34],28:[2,34],32:[2,34],34:[2,34],35:[2,34],36:[2,34],37:[2,34],42:[2,34],43:[2,34],44:[2,34],45:[2,34],51:[2,34],52:[2,34],53:[2,34],54:[2,34],55:[2,34],57:[2,34],58:[2,34],59:[2,34],60:[2,34],61:[2,34],62:[2,34],63:[2,34],64:[2,34],65:[2,34],66:[2,34],67:[2,34],68:[2,34],73:[2,34],76:[2,34],90:[2,34],96:[2,34],97:[2,34],98:[2,34],99:[2,34],102:[2,34]},{1:[2,8],9:[2,8],11:[2,8],14:[2,8],15:[2,8],22:[2,8],24:[2,8],26:[2,8],27:[2,8],28:[2,8],32:[2,8],34:[2,8],35:[2,8],36:[2,8],37:[2,8],42:[2,8],43:[2,8],44:[2,8],45:[2,8],51:[2,8],52:[2,8],53:[2,8],54:[2,8],55:[2,8],57:[2,8],58:[2,8],59:[2,8],60:[2,8],61:[2,8],62:[2,8],63:[2,8],64:[2,8],65:[2,8],66:[2,8],67:[2,8],68:[2,8],73:[2,8],76:[2,8],90:[2,8],96:[2,8],97:[2,8],98:[2,8],99:[2,8],102:[2,8]},{1:[2,80],14:[2,80],22:[2,80],24:[2,80],26:[2,80],27:[2,80],28:[2,80],32:[2,80],35:[2,80],36:[2,80],37:[2,80],42:[2,80],43:[2,80],44:[2,80],45:[2,80],51:[2,80],54:[2,80],55:[2,80],57:[2,80],58:[2,80],59:[2,80],60:[2,80],61:[2,80],62:[2,80],63:[2,80],64:[2,80],65:[2,80],66:[2,80],67:[2,80],73:[2,80],76:[2,80],96:[2,80],98:[2,80],102:[2,80]},{17:354,44:[1,6]},{17:355,35:[1,44],44:[1,6],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{1:[2,101],14:[2,101],22:[2,101],24:[2,101],26:[2,101],27:[2,101],28:[2,101],32:[2,101],35:[2,101],36:[2,101],37:[2,101],42:[2,101],43:[2,101],44:[2,101],45:[2,101],51:[2,101],54:[2,101],55:[2,101],57:[2,101],58:[2,101],59:[2,101],60:[2,101],61:[2,101],62:[2,101],63:[2,101],64:[2,101],65:[2,101],66:[2,101],67:[2,101],73:[2,101],76:[2,101],96:[2,101],98:[2,101],102:[2,101]},{1:[2,106],14:[2,106],22:[2,106],24:[2,106],26:[2,106],27:[2,106],28:[2,106],32:[2,106],35:[2,106],36:[2,106],37:[2,106],42:[2,106],43:[2,106],44:[2,106],45:[2,106],51:[2,106],54:[2,106],55:[2,106],57:[2,106],58:[2,106],59:[2,106],60:[2,106],61:[2,106],62:[2,106],63:[2,106],64:[2,106],65:[2,106],66:[2,106],67:[2,106],73:[2,106],76:[2,106],96:[2,106],98:[2,106],102:[2,106]},{1:[2,107],14:[2,107],22:[2,107],24:[2,107],26:[2,107],27:[2,107],28:[2,107],32:[2,107],35:[2,107],36:[2,107],37:[2,107],42:[2,107],43:[2,107],44:[2,107],45:[2,107],51:[2,107],54:[2,107],55:[2,107],57:[2,107],58:[2,107],59:[2,107],60:[2,107],61:[2,107],62:[2,107],63:[2,107],64:[2,107],65:[2,107],66:[2,107],67:[2,107],73:[2,107],76:[2,107],96:[2,107],98:[2,107],102:[2,107]},{1:[2,175],14:[2,175],22:[2,175],24:[2,175],26:[2,175],27:[2,175],28:[2,175],32:[2,175],35:[2,175],36:[2,175],37:[2,175],42:[2,175],43:[2,175],44:[2,175],45:[2,175],51:[2,175],54:[2,175],55:[2,175],57:[2,175],58:[2,175],59:[2,175],60:[2,175],61:[2,175],62:[2,175],63:[2,175],64:[2,175],65:[2,175],66:[2,175],67:[2,175],73:[2,175],76:[2,175],82:[2,175],83:[2,175],96:[2,175],98:[2,175],102:[2,175]},{17:356,44:[1,6]},{1:[2,116],14:[2,116],22:[2,116],24:[2,116],26:[2,116],27:[2,116],28:[2,116],32:[2,116],35:[2,116],36:[2,116],37:[2,116],42:[2,116],43:[2,116],44:[2,116],45:[2,116],51:[2,116],54:[2,116],55:[2,116],57:[2,116],58:[2,116],59:[2,116],60:[2,116],61:[2,116],62:[2,116],63:[2,116],64:[2,116],65:[2,116],66:[2,116],67:[2,116],73:[2,116],76:[2,116],96:[2,116],98:[2,116],102:[2,116]},{1:[2,121],14:[2,121],22:[2,121],24:[2,121],26:[2,121],27:[2,121],28:[2,121],32:[2,121],35:[2,121],36:[2,121],37:[2,121],42:[2,121],43:[2,121],44:[2,121],45:[2,121],51:[2,121],54:[2,121],55:[2,121],57:[2,121],58:[2,121],59:[2,121],60:[2,121],61:[2,121],62:[2,121],63:[2,121],64:[2,121],65:[2,121],66:[2,121],67:[2,121],73:[2,121],76:[2,121],96:[2,121],98:[2,121],102:[2,121]},{17:357,44:[1,6]},{1:[2,29],9:[2,29],11:[2,29],14:[2,29],15:[2,29],22:[2,29],24:[2,29],26:[2,29],27:[2,29],28:[2,29],32:[2,29],34:[2,29],35:[2,29],36:[2,29],37:[2,29],42:[2,29],43:[2,29],44:[2,29],45:[2,29],51:[2,29],52:[2,29],53:[2,29],54:[2,29],55:[2,29],57:[2,29],58:[2,29],59:[2,29],60:[2,29],61:[2,29],62:[2,29],63:[2,29],64:[2,29],65:[2,29],66:[2,29],67:[2,29],68:[2,29],73:[2,29],76:[2,29],90:[2,29],96:[2,29],97:[2,29],98:[2,29],99:[2,29],102:[2,29]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:358,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,37],9:[2,37],11:[2,37],14:[2,37],15:[2,37],22:[2,37],24:[2,37],26:[2,37],27:[2,37],28:[2,37],32:[2,37],34:[2,37],35:[2,37],36:[2,37],37:[2,37],42:[2,37],43:[2,37],44:[2,37],45:[2,37],51:[2,37],52:[2,37],53:[2,37],54:[2,37],55:[2,37],57:[2,37],58:[2,37],59:[2,37],60:[2,37],61:[2,37],62:[2,37],63:[2,37],64:[2,37],65:[2,37],66:[2,37],67:[2,37],68:[2,37],73:[2,37],76:[2,37],90:[2,37],96:[2,37],97:[2,37],98:[2,37],99:[2,37],102:[2,37]},{21:359,39:[1,360],74:194,76:[1,38],96:[1,37]},{1:[2,38],9:[2,38],11:[2,38],14:[2,38],15:[2,38],22:[2,38],24:[2,38],26:[2,38],27:[2,38],28:[2,38],32:[2,38],34:[2,38],35:[2,38],36:[2,38],37:[2,38],42:[2,38],43:[2,38],44:[2,38],45:[2,38],51:[2,38],52:[2,38],53:[2,38],54:[2,38],55:[2,38],57:[2,38],58:[2,38],59:[2,38],60:[2,38],61:[2,38],62:[2,38],63:[2,38],64:[2,38],65:[2,38],66:[2,38],67:[2,38],68:[2,38],73:[2,38],76:[2,38],90:[2,38],96:[2,38],97:[2,38],98:[2,38],99:[2,38],102:[2,38]},{24:[2,142],42:[2,142],43:[2,142],45:[2,142]},{24:[2,143],42:[2,143],43:[2,143],45:[2,143]},{22:[1,361],43:[1,236],44:[1,237]},{13:362,42:[1,154],43:[2,51],44:[2,51],45:[2,51]},{39:[1,363]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:299,20:[1,34],23:[1,35],25:[1,36],27:[1,364],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{14:[1,365],43:[1,236],44:[1,237]},{30:[1,366],49:[1,301],69:[1,302]},{1:[2,26],9:[2,26],11:[2,26],14:[2,26],15:[2,26],22:[2,26],24:[2,26],26:[2,26],27:[2,26],28:[2,26],32:[2,26],34:[2,26],35:[2,26],36:[2,26],37:[2,26],42:[2,26],43:[2,26],44:[2,26],45:[2,26],51:[2,26],52:[2,26],53:[2,26],54:[2,26],55:[2,26],57:[2,26],58:[2,26],59:[2,26],60:[2,26],61:[2,26],62:[2,26],63:[2,26],64:[2,26],65:[2,26],66:[2,26],67:[2,26],68:[2,26],73:[2,26],76:[2,26],90:[2,26],96:[2,26],97:[2,26],98:[2,26],99:[2,26],102:[2,26]},{27:[1,367],35:[1,44],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:368,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:369,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:370,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:371,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:372,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,159],24:[2,159],35:[1,44],44:[2,159],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,159],96:[2,159],98:[1,373]},{9:[1,69],11:[1,70],15:[1,71],99:[1,374]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:375,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{1:[2,63],14:[2,63],22:[2,63],24:[2,63],26:[2,63],27:[2,63],28:[2,63],32:[2,63],35:[2,63],36:[2,63],37:[2,63],42:[2,63],43:[2,63],44:[2,63],45:[2,63],51:[2,63],54:[2,63],55:[2,63],57:[2,63],58:[2,63],59:[2,63],60:[2,63],61:[2,63],62:[2,63],63:[2,63],64:[2,63],65:[2,63],66:[2,63],67:[2,63],73:[2,63],76:[2,63],96:[2,63],98:[2,63],102:[2,63]},{1:[2,71],14:[2,71],22:[2,71],24:[2,71],26:[2,71],27:[2,71],28:[2,71],32:[2,71],35:[2,71],36:[2,71],37:[2,71],42:[2,71],43:[2,71],44:[2,71],45:[2,71],51:[2,71],54:[2,71],55:[2,71],57:[2,71],58:[2,71],59:[2,71],60:[2,71],61:[2,71],62:[2,71],63:[2,71],64:[2,71],65:[2,71],66:[2,71],67:[2,71],73:[2,71],76:[2,71],96:[2,71],98:[2,71],102:[2,71]},{1:[2,59],27:[2,59],35:[1,44],43:[2,59],45:[2,59],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{1:[2,94],14:[2,94],22:[2,94],24:[2,94],26:[2,94],27:[2,94],28:[2,94],32:[2,94],35:[2,94],36:[2,94],37:[2,94],42:[2,94],43:[2,94],44:[2,94],45:[2,94],51:[2,94],54:[2,94],55:[2,94],57:[2,94],58:[2,94],59:[2,94],60:[2,94],61:[2,94],62:[2,94],63:[2,94],64:[2,94],65:[2,94],66:[2,94],67:[2,94],73:[2,94],76:[2,94],96:[2,94],98:[2,94],102:[2,94]},{43:[1,236],44:[1,237],45:[1,376]},{1:[2,69],14:[2,69],22:[2,69],24:[2,69],26:[2,69],27:[2,69],28:[2,69],32:[2,69],35:[2,69],36:[2,69],37:[2,69],42:[2,69],43:[2,69],44:[2,69],45:[2,69],51:[2,69],54:[2,69],55:[2,69],57:[2,69],58:[2,69],59:[2,69],60:[2,69],61:[2,69],62:[2,69],63:[2,69],64:[2,69],65:[2,69],66:[2,69],67:[2,69],73:[2,69],76:[2,69],96:[2,69],98:[2,69],102:[2,69]},{22:[1,377],35:[1,44],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{1:[2,32],9:[2,32],11:[2,32],14:[2,32],15:[2,32],22:[2,32],24:[2,32],26:[2,32],27:[2,32],28:[2,32],32:[2,32],34:[2,32],35:[2,32],36:[2,32],37:[2,32],42:[2,32],43:[2,32],44:[2,32],45:[2,32],51:[2,32],52:[2,32],53:[2,32],54:[2,32],55:[2,32],57:[2,32],58:[2,32],59:[2,32],60:[2,32],61:[2,32],62:[2,32],63:[2,32],64:[2,32],65:[2,32],66:[2,32],67:[2,32],68:[2,32],73:[2,32],76:[2,32],90:[2,32],96:[2,32],97:[2,32],98:[2,32],99:[2,32],102:[2,32]},{1:[2,33],9:[2,33],11:[2,33],14:[2,33],15:[2,33],22:[2,33],24:[2,33],26:[2,33],27:[2,33],28:[2,33],32:[2,33],34:[2,33],35:[2,33],36:[2,33],37:[2,33],42:[2,33],43:[2,33],44:[2,33],45:[2,33],51:[2,33],52:[2,33],53:[2,33],54:[2,33],55:[2,33],57:[2,33],58:[2,33],59:[2,33],60:[2,33],61:[2,33],62:[2,33],63:[2,33],64:[2,33],65:[2,33],66:[2,33],67:[2,33],68:[2,33],73:[2,33],76:[2,33],90:[2,33],96:[2,33],97:[2,33],98:[2,33],99:[2,33],102:[2,33]},{1:[2,95],14:[2,95],22:[2,95],24:[2,95],26:[2,95],27:[2,95],28:[2,95],32:[2,95],35:[2,95],36:[2,95],37:[2,95],42:[2,95],43:[2,95],44:[2,95],45:[2,95],51:[2,95],54:[2,95],55:[2,95],57:[2,95],58:[2,95],59:[2,95],60:[2,95],61:[2,95],62:[2,95],63:[2,95],64:[2,95],65:[2,95],66:[2,95],67:[2,95],73:[2,95],76:[2,95],96:[2,95],98:[2,95],102:[2,95]},{1:[2,148],14:[2,148],22:[2,148],24:[2,148],26:[2,148],27:[2,148],28:[2,148],32:[2,148],35:[2,148],36:[2,148],37:[2,148],42:[2,148],43:[2,148],44:[2,148],45:[2,148],51:[2,148],54:[2,148],55:[2,148],57:[2,148],58:[2,148],59:[2,148],60:[2,148],61:[2,148],62:[2,148],63:[2,148],64:[2,148],65:[2,148],66:[2,148],67:[2,148],72:378,73:[2,148],76:[2,148],83:[1,174],96:[2,148],98:[2,148],102:[2,148]},{1:[2,114],14:[2,114],22:[2,114],24:[2,114],26:[2,114],27:[2,114],28:[2,114],32:[2,114],35:[2,114],36:[2,114],37:[2,114],42:[2,114],43:[2,114],44:[2,114],45:[2,114],51:[2,114],54:[2,114],55:[2,114],57:[2,114],58:[2,114],59:[2,114],60:[2,114],61:[2,114],62:[2,114],63:[2,114],64:[2,114],65:[2,114],66:[2,114],67:[2,114],73:[2,114],76:[2,114],96:[2,114],98:[2,114],102:[2,114]},{1:[2,10],9:[2,10],11:[2,10],14:[2,10],15:[2,10],22:[2,10],24:[2,10],26:[2,10],27:[2,10],28:[2,10],32:[2,10],34:[2,10],35:[2,10],36:[2,10],37:[2,10],42:[2,10],43:[2,10],44:[2,10],45:[2,10],51:[2,10],52:[2,10],53:[2,10],54:[2,10],55:[2,10],57:[2,10],58:[2,10],59:[2,10],60:[2,10],61:[2,10],62:[2,10],63:[2,10],64:[2,10],65:[2,10],66:[2,10],67:[2,10],68:[2,10],73:[2,10],76:[2,10],90:[2,10],96:[2,10],97:[2,10],98:[2,10],99:[2,10],102:[2,10]},{22:[1,379],35:[1,44],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58]},{24:[1,380],74:266,76:[1,38],96:[1,37]},{24:[2,129],42:[2,129],43:[2,129],45:[2,129],53:[2,129],58:[2,129]},{39:[1,360]},{43:[1,236],44:[1,237],45:[1,381]},{24:[2,128],42:[2,128],43:[2,128],45:[2,128],53:[2,128],58:[2,128]},{1:[2,27],9:[2,27],11:[2,27],14:[2,27],15:[2,27],22:[2,27],24:[2,27],26:[2,27],27:[2,27],28:[2,27],32:[2,27],34:[2,27],35:[2,27],36:[2,27],37:[2,27],42:[2,27],43:[2,27],44:[2,27],45:[2,27],51:[2,27],52:[2,27],53:[2,27],54:[2,27],55:[2,27],57:[2,27],58:[2,27],59:[2,27],60:[2,27],61:[2,27],62:[2,27],63:[2,27],64:[2,27],65:[2,27],66:[2,27],67:[2,27],68:[2,27],73:[2,27],76:[2,27],90:[2,27],96:[2,27],97:[2,27],98:[2,27],99:[2,27],102:[2,27]},{27:[1,382]},{27:[1,383]},{1:[2,28],9:[2,28],11:[2,28],14:[2,28],15:[2,28],22:[2,28],24:[2,28],26:[2,28],27:[2,28],28:[2,28],32:[2,28],34:[2,28],35:[2,28],36:[2,28],37:[2,28],42:[2,28],43:[2,28],44:[2,28],45:[2,28],51:[2,28],52:[2,28],53:[2,28],54:[2,28],55:[2,28],57:[2,28],58:[2,28],59:[2,28],60:[2,28],61:[2,28],62:[2,28],63:[2,28],64:[2,28],65:[2,28],66:[2,28],67:[2,28],68:[2,28],73:[2,28],76:[2,28],90:[2,28],96:[2,28],97:[2,28],98:[2,28],99:[2,28],102:[2,28]},{22:[2,152],24:[2,152],35:[1,44],44:[2,152],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,152],96:[2,152]},{22:[2,153],24:[2,153],35:[1,44],44:[2,153],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,153],96:[2,153],98:[1,384]},{22:[2,156],24:[2,156],35:[1,44],44:[2,156],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,156],96:[2,156]},{22:[2,157],24:[2,157],35:[1,44],44:[2,157],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,157],96:[2,157],98:[1,385]},{22:[2,163],24:[2,163],35:[1,44],37:[1,387],44:[2,163],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,163],96:[2,163],98:[1,386]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:388,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:389,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,171],24:[2,171],35:[1,44],44:[2,171],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,171],96:[2,171]},{14:[2,47],22:[2,47],32:[2,47],42:[2,47],43:[2,47],44:[2,47],45:[2,47]},{1:[2,31],9:[2,31],11:[2,31],14:[2,31],15:[2,31],22:[2,31],24:[2,31],26:[2,31],27:[2,31],28:[2,31],32:[2,31],34:[2,31],35:[2,31],36:[2,31],37:[2,31],42:[2,31],43:[2,31],44:[2,31],45:[2,31],51:[2,31],52:[2,31],53:[2,31],54:[2,31],55:[2,31],57:[2,31],58:[2,31],59:[2,31],60:[2,31],61:[2,31],62:[2,31],63:[2,31],64:[2,31],65:[2,31],66:[2,31],67:[2,31],68:[2,31],73:[2,31],76:[2,31],90:[2,31],96:[2,31],97:[2,31],98:[2,31],99:[2,31],102:[2,31]},{1:[2,150],14:[2,150],22:[2,150],24:[2,150],26:[2,150],27:[2,150],28:[2,150],32:[2,150],35:[2,150],36:[2,150],37:[2,150],42:[2,150],43:[2,150],44:[2,150],45:[2,150],51:[2,150],54:[2,150],55:[2,150],57:[2,150],58:[2,150],59:[2,150],60:[2,150],61:[2,150],62:[2,150],63:[2,150],64:[2,150],65:[2,150],66:[2,150],67:[2,150],73:[2,150],76:[2,150],96:[2,150],98:[2,150],102:[2,150]},{1:[2,30],9:[2,30],11:[2,30],14:[2,30],15:[2,30],22:[2,30],24:[2,30],26:[2,30],27:[2,30],28:[2,30],32:[2,30],34:[2,30],35:[2,30],36:[2,30],37:[2,30],42:[2,30],43:[2,30],44:[2,30],45:[2,30],51:[2,30],52:[2,30],53:[2,30],54:[2,30],55:[2,30],57:[2,30],58:[2,30],59:[2,30],60:[2,30],61:[2,30],62:[2,30],63:[2,30],64:[2,30],65:[2,30],66:[2,30],67:[2,30],68:[2,30],73:[2,30],76:[2,30],90:[2,30],96:[2,30],97:[2,30],98:[2,30],99:[2,30],102:[2,30]},{1:[2,13],9:[2,13],11:[2,13],14:[2,13],15:[2,13],22:[2,13],24:[2,13],26:[2,13],27:[2,13],28:[2,13],32:[2,13],34:[2,13],35:[2,13],36:[2,13],37:[2,13],42:[2,13],43:[2,13],44:[2,13],45:[2,13],51:[2,13],52:[2,13],53:[2,13],54:[2,13],55:[2,13],57:[2,13],58:[2,13],59:[2,13],60:[2,13],61:[2,13],62:[2,13],63:[2,13],64:[2,13],65:[2,13],66:[2,13],67:[2,13],68:[2,13],73:[2,13],76:[2,13],90:[2,13],96:[2,13],97:[2,13],98:[2,13],99:[2,13],102:[2,13]},{24:[2,131],42:[2,131],43:[2,131],45:[2,131]},{1:[2,21],9:[2,21],11:[2,21],14:[2,21],15:[2,21],22:[2,21],24:[2,21],26:[2,21],27:[2,21],28:[2,21],32:[2,21],34:[2,21],35:[2,21],36:[2,21],37:[2,21],42:[2,21],43:[2,21],44:[2,21],45:[2,21],51:[2,21],52:[2,21],53:[2,21],54:[2,21],55:[2,21],57:[2,21],58:[2,21],59:[2,21],60:[2,21],61:[2,21],62:[2,21],63:[2,21],64:[2,21],65:[2,21],66:[2,21],67:[2,21],68:[2,21],73:[2,21],76:[2,21],90:[2,21],96:[2,21],97:[2,21],98:[2,21],99:[2,21],102:[2,21]},{1:[2,23],9:[2,23],11:[2,23],14:[2,23],15:[2,23],22:[2,23],24:[2,23],26:[2,23],27:[2,23],28:[2,23],32:[2,23],34:[2,23],35:[2,23],36:[2,23],37:[2,23],42:[2,23],43:[2,23],44:[2,23],45:[2,23],51:[2,23],52:[2,23],53:[2,23],54:[2,23],55:[2,23],57:[2,23],58:[2,23],59:[2,23],60:[2,23],61:[2,23],62:[2,23],63:[2,23],64:[2,23],65:[2,23],66:[2,23],67:[2,23],68:[2,23],73:[2,23],76:[2,23],90:[2,23],96:[2,23],97:[2,23],98:[2,23],99:[2,23],102:[2,23]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:390,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:391,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:392,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:393,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,160],24:[2,160],35:[1,44],44:[2,160],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,160],96:[2,160]},{22:[2,161],24:[2,161],35:[1,44],44:[2,161],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,161],96:[2,161],98:[1,394]},{22:[2,154],24:[2,154],35:[1,44],44:[2,154],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,154],96:[2,154]},{22:[2,158],24:[2,158],35:[1,44],44:[2,158],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,158],96:[2,158]},{22:[2,164],24:[2,164],35:[1,44],37:[1,395],44:[2,164],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,164],96:[2,164]},{22:[2,165],24:[2,165],35:[1,44],44:[2,165],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,165],96:[2,165],98:[1,396]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:397,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:398,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{3:11,4:[1,27],5:28,6:29,7:[1,30],8:[1,31],16:[1,32],18:[1,33],19:399,20:[1,34],23:[1,35],25:[1,36],31:[1,63],33:[1,13],34:[1,12],39:[1,25],55:[1,14],56:[1,15],70:[1,16],71:[1,17],74:18,75:[1,19],76:[1,38],77:[1,20],78:[1,21],79:[1,22],84:[1,23],87:[1,24],91:[1,26],96:[1,37]},{22:[2,162],24:[2,162],35:[1,44],44:[2,162],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,162],96:[2,162]},{22:[2,167],24:[2,167],35:[1,44],44:[2,167],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,167],96:[2,167]},{22:[2,166],24:[2,166],35:[1,44],44:[2,166],51:[1,43],54:[1,45],55:[1,46],57:[1,47],58:[1,48],59:[1,49],60:[1,50],61:[1,51],62:[1,52],63:[1,53],64:[1,54],65:[1,55],66:[1,56],67:[1,57],73:[1,58],76:[2,166],96:[2,166]}], +defaultActions: {2:[2,180]}, parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/ast.ls b/src/ast.ls index 528e7106c..9a4b57b4d 100644 --- a/src/ast.ls +++ b/src/ast.ls @@ -175,14 +175,14 @@ # String representation of the node for inspecting the parse tree. # This is what `livescript --ast` prints out. toString: (idt or '') -> - tree = \\n + idt + @..displayName + tree = \\n + idt + @constructor.displayName tree += ' ' + that if @show! @eachChild !-> tree += it.toString idt + TAB tree # JSON serialization stringify : (space) -> JSON.stringify this, null space - toJSON : -> {type: @..displayName, ...this} + toJSON : -> {type: @constructor.displayName, ...this} # JSON deserialization exports.parse = (json) -> exports.fromJSON JSON.parse json @@ -325,8 +325,8 @@ class exports.Literal extends Atom return JS "#value" true if value.js return new Super if value is \super - isEmpty : -> switch @value | \void \null => true - isCallable : -> switch @value | \this \eval => true + isEmpty : -> @value in <[ void null ]> + isCallable : -> @value in <[ this eval .. ]> isString : -> 0 <= '\'"'indexOf "#{@value}"charAt! isRegex : -> "#{@value}"charAt! is \/ isComplex : -> @isRegex! or @value is \debugger @@ -352,6 +352,7 @@ class exports.Literal extends Atom | \on \yes => val = 'true' | \off \no => val = 'false' | \* => @carp 'stray star' + | \.. => @carp 'stray cascadee' unless val = o.cascadee | \debugger => if level return "(function(){\n#TAB#{o.indent}debugger;\n#{o.indent}}())" val @@ -879,9 +880,9 @@ class exports.Arr extends List @maybe = (nodes) -> return nodes.0 if nodes.length is 1 and nodes.0 not instanceof Splat - .. nodes + constructor nodes - @wrap = -> .. [Splat it <<< isArray: YES] + @wrap = -> constructor [Splat it <<< isArray: YES] #### Unary operators class exports.Unary extends Node @@ -924,7 +925,7 @@ class exports.Unary extends Node invert: -> return @it if @op is \! and @it.op in <[ ! < > <= >= of instanceof ]> - .. \! this, true + constructor \! this, true unfoldSoak: (o) -> @op in <[ ++ -- delete ]> and @it? and If.unfoldSoak o, this, \it @@ -975,12 +976,12 @@ class exports.Unary extends Node # `^delete o[p, ...q]` => `[^delete o[p], ...^delete o[q]]` compileSpread: (o) -> {it} = this; ops = [this] - while it instanceof .., it.=it then ops.push it + while it instanceof constructor, it.=it then ops.push it return '' unless it.=expandSlice(o)unwrap! instanceof Arr and (them = it.items)length for node, i in them node.=it if sp = node instanceof Splat - for op in ops by -1 then node = .. op.op, node, op.post + for op in ops by -1 then node = constructor op.op, node, op.post them[i] = if sp then lat = Splat node else node if not lat and (@void or not o.level) it = Block(them) <<< {@front, +void} @@ -1347,7 +1348,7 @@ class exports.Assign extends Node else if (ret or len > 1) and (not ID.test rite or left.assigns rite) cache = "#{ rref = o.scope.temporary! } = #rite" rite = rref - list = @"rend#{ left..displayName }" o, items, rite + list = @"rend#{ left.constructor.displayName }" o, items, rite o.scope.free rref if rref list.unshift cache if cache list.push rite if ret or not list.length @@ -2151,7 +2152,7 @@ class exports.If extends Node o.indent += TAB code += @compileBlock o, Block @then return code unless els = @else - code + ' else ' + if els instanceof .. + code + ' else ' + if els instanceof constructor then els.compile o <<< indent: @tab, LEVEL_TOP else @compileBlock o, els @@ -2204,6 +2205,21 @@ class exports.Label extends Node then o.indent += TAB; @compileBlock o, it else it.compile o +#### Cascade +# +class exports.Cascade extends Node + (@target, @block) -> + + children: <[ target block ]> + + terminator: '' + + compileNode: (o) -> + @temps = [ref = o.scope.temporary \x] + t = ref + ' = ' + @target.compile o, LEVEL_LIST + b = @block.compile o <<< cascadee: ref + if o.level then "(#t, #b)" else "#t;\n#b" + #### JS # Embedded JavaScript snippets. class exports.JS extends Node @@ -2326,16 +2342,13 @@ Scope ::= assign: (name, value) -> @add name, {value} # If we need to store an intermediate result, find an available name for a - # compiler-generated variable. `var$`, `var2$`, and so on. + # compiler-generated variable. `var$`, `var1$`, and so on. temporary: (name || \ref) -> - i = 0 - do - temp = "#{ - if name.length > 1 then name + (i++ || '') - else (i++ + parseInt name, 36)toString 36 - }$" - until @variables"#temp." in [\reuse void] - @add temp, \var + until @variables"#name\$." in [\reuse void] + name = if name.length < 2 and name < \z + then String.fromCharCode name.charCodeAt! + 1 + else name.replace /\d*$/ -> ++it + @add name + \$, \var # Allows a variable to be reused. free: (name) -> @add name, \reuse diff --git a/src/command.ls b/src/command.ls index 8c3b20659..7a05f4575 100644 --- a/src/command.ls +++ b/src/command.ls @@ -213,7 +213,7 @@ switch prompt += " -#that" if \b * !!o.bare + \c * !!o.compile LiveScript.history = rl.history if LiveScript? unless o.compile - module.paths = module.._nodeModulePaths \ + module.paths = module.constructor._nodeModulePaths \ module.filename = process.cwd! + \/repl vm = require \vm global <<< {module, exports, require} diff --git a/src/grammar.ls b/src/grammar.ls index 9cba7e586..500264970 100644 --- a/src/grammar.ls +++ b/src/grammar.ls @@ -164,6 +164,8 @@ bnf = Line: o \Expression + o 'Expression Block' -> new Cascade $1, $2 + o 'PARAM( ArgList OptComma )PARAM <- Expression' , -> Call.back $2, $6, $5.charAt(1) is \~, $5.length is 3 diff --git a/src/lexer.ls b/src/lexer.ls index 71b629509..6ef81e7fe 100644 --- a/src/lexer.ls +++ b/src/lexer.ls @@ -422,6 +422,7 @@ exports import case \++ \-- then tag = \CREMENT case \<<< \<<<< then tag = \IMPORT case \; then tag = \NEWLINE; @wantBy = false + case \.. then tag = \LITERAL case \. create-it-func! if @last.0 is \( @last.0 = \? if @last.1 is \? @@ -540,13 +541,21 @@ exports import else break return 1 tag = \UNARY + case \& + unless able @tokens + tag = \LITERAL + break + fallthrough + case \| then tag = \BITWISE case \~ return 1 if @dotcat val tag = \UNARY case \-> \~> \--> \~~> then up = \->; fallthrough case \<- \<~ \<-- \<~~ then @parameters tag = up || \<- - case \:: then up = \prototype; fallthrough - case \.. then @adi!; tag = \ID; val = up || \constructor + case \:: + @adi! + val = \prototype + tag = \ID default switch val.charAt 0 case \( then @token \CALL( \(; tag = \)CALL; val = \) case \< @@ -1128,7 +1137,7 @@ SYMBOL = // | <[-~] # backcall | [!=]==? # strict equality, deep equals | !?\~= # fuzzy equality -| @@ # autovivification +| @@ # autovivification, constructor | <\[(?:[\s\S]*?\]>)? # words | <<< filename = process.argv.1 = path.resolve filename else dirname = filename = \. - main.paths = main.._nodeModulePaths dirname + main.paths = main.constructor._nodeModulePaths dirname main <<< {filename} js or code = LiveScript.compile code, {...options, +bare} try main._compile code, filename catch throw hackTrace e, code, filename diff --git a/test/chaining.ls b/test/chaining.ls index 421541b62..f03e2eeaa 100644 --- a/test/chaining.ls +++ b/test/chaining.ls @@ -75,11 +75,11 @@ eq 1, [-> it]. 0 1 eq 1, [-> it].'0' 1 -# `prototype`/`constructor` shorhands +# `prototype` shorthand, `constructor` eq Array::toString, Array.prototype.toString -eq 12345..toString, 123.constructor.toString +eq 12345.constructor.toString, 123.constructor.toString eq 0 (:::0):: -eq 0 (..:0).. +eq 0 (constructor:0)constructor # Length Star diff --git a/test/literal.ls b/test/literal.ls index 394b76997..20dd100e5 100644 --- a/test/literal.ls +++ b/test/literal.ls @@ -433,3 +433,18 @@ compileThrows 'bad string in range' 2 '\n["a" to "bc"]' ### yadayadayada throws \unimplemented -> ... + + +### Cascade +a = [2 7 1 8] + ..push 2 + ..shift! + ..sort! +eq '1,2,7,8' ''+a + +eq 10, do + 1 + 2 + .. + 3 + 4 + .. + +compileThrows 'stray cascadee' 2 '\n..' diff --git a/test/oo.ls b/test/oo.ls index bca20b176..d826cdf02 100644 --- a/test/oo.ls +++ b/test/oo.ls @@ -235,12 +235,11 @@ ok new Sup.Sub instanceof Sup new class extends Object eq ::, prototype eq ::, @:: - eq .., constructor - eq .., @ + eq constructor, @ ok super is superclass is Object -> - eq ::, @..:: - eq .., @.. + eq ::, @constructor:: + eq constructor, @constructor # `extended` hook