haml-more 0.4.0.c → 0.4.0.d

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. data/vendor/coffee-script/Cakefile +8 -0
  2. data/vendor/coffee-script/Rakefile +11 -0
  3. data/vendor/coffee-script/documentation/index.html.erb +85 -50
  4. data/vendor/coffee-script/documentation/js/aliases.js +1 -1
  5. data/vendor/coffee-script/documentation/js/arguments.js +1 -1
  6. data/vendor/coffee-script/documentation/js/array_comprehensions.js +1 -1
  7. data/vendor/coffee-script/documentation/js/assignment.js +1 -1
  8. data/vendor/coffee-script/documentation/js/cake_tasks.js +1 -1
  9. data/vendor/coffee-script/documentation/js/comparisons.js +1 -1
  10. data/vendor/coffee-script/documentation/js/conditionals.js +1 -1
  11. data/vendor/coffee-script/documentation/js/embedded.js +1 -1
  12. data/vendor/coffee-script/documentation/js/existence.js +1 -1
  13. data/vendor/coffee-script/documentation/js/expressions.js +1 -1
  14. data/vendor/coffee-script/documentation/js/expressions_assignment.js +1 -1
  15. data/vendor/coffee-script/documentation/js/expressions_comprehension.js +1 -1
  16. data/vendor/coffee-script/documentation/js/expressions_try.js +1 -1
  17. data/vendor/coffee-script/documentation/js/fat_arrow.js +1 -1
  18. data/vendor/coffee-script/documentation/js/functions.js +1 -1
  19. data/vendor/coffee-script/documentation/js/heredocs.js +1 -1
  20. data/vendor/coffee-script/documentation/js/multiple_return_values.js +1 -1
  21. data/vendor/coffee-script/documentation/js/object_comprehensions.js +1 -1
  22. data/vendor/coffee-script/documentation/js/object_extraction.js +1 -1
  23. data/vendor/coffee-script/documentation/js/objects_and_arrays.js +1 -1
  24. data/vendor/coffee-script/documentation/js/overview.js +1 -1
  25. data/vendor/coffee-script/documentation/js/parallel_assignment.js +1 -1
  26. data/vendor/coffee-script/documentation/js/range_comprehensions.js +1 -1
  27. data/vendor/coffee-script/documentation/js/scope.js +1 -1
  28. data/vendor/coffee-script/documentation/js/slices.js +1 -1
  29. data/vendor/coffee-script/documentation/js/soaks.js +1 -1
  30. data/vendor/coffee-script/documentation/js/splats.js +1 -1
  31. data/vendor/coffee-script/documentation/js/splices.js +1 -1
  32. data/vendor/coffee-script/documentation/js/strings.js +1 -1
  33. data/vendor/coffee-script/documentation/js/super.js +1 -1
  34. data/vendor/coffee-script/documentation/js/switch.js +1 -1
  35. data/vendor/coffee-script/documentation/js/try.js +1 -1
  36. data/vendor/coffee-script/documentation/js/while.js +1 -1
  37. data/vendor/coffee-script/extras/EXTRAS +9 -1
  38. data/vendor/coffee-script/extras/coffee-script.js +1 -0
  39. data/vendor/coffee-script/index.html +83 -48
  40. data/vendor/coffee-script/lib/cake.js +30 -32
  41. data/vendor/coffee-script/lib/coffee-script.js +12 -16
  42. data/vendor/coffee-script/lib/command_line.js +64 -74
  43. data/vendor/coffee-script/lib/grammar.js +1 -1
  44. data/vendor/coffee-script/lib/lexer.js +1 -1
  45. data/vendor/coffee-script/lib/narwhal.js +1 -1
  46. data/vendor/coffee-script/lib/nodes.js +48 -44
  47. data/vendor/coffee-script/lib/optparse.js +11 -17
  48. data/vendor/coffee-script/lib/repl.js +1 -1
  49. data/vendor/coffee-script/lib/rewriter.js +1 -1
  50. data/vendor/coffee-script/lib/scope.js +1 -1
  51. data/vendor/coffee-script/package.json +1 -1
  52. data/vendor/coffee-script/src/cake.coffee +15 -15
  53. data/vendor/coffee-script/src/coffee-script.coffee +6 -6
  54. data/vendor/coffee-script/src/command_line.coffee +43 -39
  55. data/vendor/coffee-script/src/nodes.coffee +43 -41
  56. data/vendor/coffee-script/src/optparse.coffee +6 -13
  57. data/vendor/coffee-script/test/test_destructuring_assignment.coffee +6 -0
  58. metadata +7 -6
@@ -15,4 +15,4 @@
15
15
  } else {
16
16
  go_to_work();
17
17
  }
18
- })();
18
+ })();
@@ -7,4 +7,4 @@
7
7
  } finally {
8
8
  clean_up();
9
9
  }
10
- })();
10
+ })();
@@ -19,4 +19,4 @@ One fell out and bumped his head.");
19
19
  }
20
20
  return _a;
21
21
  }).call(this);
22
- })();
22
+ })();
@@ -1,4 +1,12 @@
1
- This folder includes rough cuts of CoffeeScript syntax highlighters for
1
+ EXTRAS:
2
+
3
+ "extras/coffee-script.js" is a concatenated and compressed version of the
4
+ CoffeeScript compiler. To use it in the browser, include the script after any
5
+ inline script tags of type "text/coffeescript" on the page. It will compile
6
+ and evaluate all of the scripts in order.
7
+
8
+
9
+ This folder also includes rough cuts of CoffeeScript syntax highlighters for
2
10
  TextMate and Vim. Improvements to their lexing ability are always welcome.
3
11
 
4
12
  To install the TextMate bundle, drop it into:
@@ -0,0 +1 @@
1
+ (function(){var BALANCED_PAIRS,EXPRESSION_CLOSE,EXPRESSION_START,EXPRESSION_TAIL,IMPLICIT_BLOCK,IMPLICIT_CALL,IMPLICIT_END,IMPLICIT_FUNC,INVERSES,SINGLE_CLOSERS,SINGLE_LINERS,_a,_b,_c,_d,_e,_f,_g,_h,pair,re;var __hasProp=Object.prototype.hasOwnProperty;if(!((typeof process!=="undefined"&&process!==null))){this.exports=this}exports.Rewriter=(re=function re(){});BALANCED_PAIRS=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["PARAM_START","PARAM_END"],["CALL_START","CALL_END"],["INDEX_START","INDEX_END"],["SOAKED_INDEX_START","SOAKED_INDEX_END"]];EXPRESSION_START=(function(){_a=[];_b=BALANCED_PAIRS;for(_c=0;_c<_b.length;_c++){pair=_b[_c];_a.push(pair[0])}return _a}).call(this);EXPRESSION_TAIL=(function(){_d=[];_e=BALANCED_PAIRS;for(_f=0;_f<_e.length;_f++){pair=_e[_f];_d.push(pair[1])}return _d}).call(this);EXPRESSION_CLOSE=["CATCH","WHEN","ELSE","FINALLY"].concat(EXPRESSION_TAIL);IMPLICIT_FUNC=["IDENTIFIER","SUPER",")","CALL_END","]","INDEX_END"];IMPLICIT_BLOCK=["->","=>","{","[",","];IMPLICIT_END=["IF","UNLESS","FOR","WHILE","TERMINATOR","INDENT","OUTDENT"];IMPLICIT_CALL=["IDENTIFIER","NUMBER","STRING","JS","REGEX","NEW","PARAM_START","TRY","DELETE","TYPEOF","SWITCH","TRUE","FALSE","YES","NO","ON","OFF","!","!!","NOT","@","->","=>","[","(","{"];INVERSES={};_g=BALANCED_PAIRS;for(_h=0;_h<_g.length;_h++){pair=_g[_h];INVERSES[pair[0]]=pair[1];INVERSES[pair[1]]=pair[0]}SINGLE_LINERS=["ELSE","->","=>","TRY","FINALLY","THEN"];SINGLE_CLOSERS=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN","PARAM_START"];re.prototype.rewrite=function rewrite(tokens){this.tokens=tokens;this.adjust_comments();this.remove_leading_newlines();this.remove_mid_expression_newlines();this.move_commas_outside_outdents();this.close_open_calls_and_indexes();this.add_implicit_indentation();this.add_implicit_parentheses();this.ensure_balance(BALANCED_PAIRS);this.rewrite_closing_parens();return this.tokens};re.prototype.scan_tokens=function scan_tokens(block){var i,move;i=0;while(true){if(!(this.tokens[i])){break}move=block(this.tokens[i-1],this.tokens[i],this.tokens[i+1],i);i+=move}return true};re.prototype.adjust_comments=function adjust_comments(){return this.scan_tokens((function(__this){var __func=function(prev,token,post,i){var after,before;if(!(token[0]==="COMMENT")){return 1}before=this.tokens[i-2];after=this.tokens[i+2];if(before&&after&&((before[0]==="INDENT"&&after[0]==="OUTDENT")||(before[0]==="OUTDENT"&&after[0]==="INDENT"))&&before[1]===after[1]){this.tokens.splice(i+2,1);this.tokens.splice(i-2,1);return 0}else{if(prev&&prev[0]==="TERMINATOR"&&after&&after[0]==="INDENT"){this.tokens.splice(i+2,1);this.tokens[i-1]=after;return 1}else{if(prev&&prev[0]!=="TERMINATOR"&&prev[0]!=="INDENT"&&prev[0]!=="OUTDENT"){this.tokens.splice(i,0,["TERMINATOR","\n",prev[2]]);return 2}else{return 1}}}};return(function(){return __func.apply(__this,arguments)})})(this))};re.prototype.remove_leading_newlines=function remove_leading_newlines(){if(this.tokens[0][0]==="TERMINATOR"){return this.tokens.shift()}};re.prototype.remove_mid_expression_newlines=function remove_mid_expression_newlines(){return this.scan_tokens((function(__this){var __func=function(prev,token,post,i){if(!(post&&EXPRESSION_CLOSE.indexOf(post[0])>=0&&token[0]==="TERMINATOR")){return 1}this.tokens.splice(i,1);return 0};return(function(){return __func.apply(__this,arguments)})})(this))};re.prototype.move_commas_outside_outdents=function move_commas_outside_outdents(){return this.scan_tokens((function(__this){var __func=function(prev,token,post,i){if(token[0]==="OUTDENT"&&prev[0]===","){this.tokens.splice(i,1,token)}return 1};return(function(){return __func.apply(__this,arguments)})})(this))};re.prototype.close_open_calls_and_indexes=function close_open_calls_and_indexes(){var brackets,parens;parens=[0];brackets=[0];return this.scan_tokens((function(__this){var __func=function(prev,token,post,i){var _i;if((_i=token[0])==="CALL_START"){parens.push(0)}else{if(_i==="INDEX_START"){brackets.push(0)}else{if(_i==="("){parens[parens.length-1]+=1}else{if(_i==="["){brackets[brackets.length-1]+=1}else{if(_i===")"){if(parens[parens.length-1]===0){parens.pop();token[0]="CALL_END"}else{parens[parens.length-1]-=1}}else{if(_i==="]"){if(brackets[brackets.length-1]===0){brackets.pop();token[0]="INDEX_END"}else{brackets[brackets.length-1]-=1}}}}}}}return 1};return(function(){return __func.apply(__this,arguments)})})(this))};re.prototype.add_implicit_parentheses=function add_implicit_parentheses(){var stack;stack=[0];return this.scan_tokens((function(__this){var __func=function(prev,token,post,i){var _i,_j,_k,_l,idx,last,size,stack_pointer,tag,tmp;tag=token[0];if(tag==="INDENT"){stack.push(0)}if(tag==="OUTDENT"){last=stack.pop();stack[stack.length-1]+=last}if(IMPLICIT_END.indexOf(tag)>=0||!(typeof post!=="undefined"&&post!==null)){if(tag==="INDENT"&&prev&&IMPLICIT_BLOCK.indexOf(prev[0])>=0){return 1}if(stack[stack.length-1]>0||tag==="INDENT"){idx=tag==="OUTDENT"?i+1:i;stack_pointer=tag==="INDENT"?2:1;_k=0;_l=stack[stack.length-stack_pointer];for(_j=0,tmp=_k;(_k<=_l?tmp<_l:tmp>_l);(_k<=_l?tmp+=1:tmp-=1),_j++){this.tokens.splice(idx,0,["CALL_END",")",token[2]])}size=stack[stack.length-stack_pointer]+1;stack[stack.length-stack_pointer]=0;return size}}if(!(prev&&IMPLICIT_FUNC.indexOf(prev[0])>=0&&IMPLICIT_CALL.indexOf(tag)>=0)){return 1}this.tokens.splice(i,0,["CALL_START","(",token[2]]);stack[stack.length-1]+=1;return 2};return(function(){return __func.apply(__this,arguments)})})(this))};re.prototype.add_implicit_indentation=function add_implicit_indentation(){return this.scan_tokens((function(__this){var __func=function(prev,token,post,i){var idx,insertion,parens,starter,tok;if(!(SINGLE_LINERS.indexOf(token[0])>=0&&post[0]!=="INDENT"&&!(token[0]==="ELSE"&&post[0]==="IF"))){return 1}starter=token[0];this.tokens.splice(i+1,0,["INDENT",2,token[2]]);idx=i+1;parens=0;while(true){idx+=1;tok=this.tokens[idx];if((!tok||(SINGLE_CLOSERS.indexOf(tok[0])>=0&&tok[1]!==";")||(tok[0]===")"&&parens===0))&&!(starter==="ELSE"&&tok[0]==="ELSE")){insertion=this.tokens[idx-1][0]===","?idx-1:idx;this.tokens.splice(insertion,0,["OUTDENT",2,token[2]]);break}if(tok[0]==="("){parens+=1}if(tok[0]===")"){parens-=1}}if(!(token[0]==="THEN")){return 1}this.tokens.splice(i,1);return 0};return(function(){return __func.apply(__this,arguments)})})(this))};re.prototype.ensure_balance=function ensure_balance(pairs){var _i,_j,key,levels,unclosed,value;levels={};this.scan_tokens((function(__this){var __func=function(prev,token,post,i){var _i,_j,_k,close,open;_i=pairs;for(_j=0;_j<_i.length;_j++){pair=_i[_j];_k=pair;open=_k[0];close=_k[1];levels[open]=levels[open]||0;if(token[0]===open){levels[open]+=1}if(token[0]===close){levels[open]-=1}if(levels[open]<0){throw new Error("too many "+token[1])}}return 1};return(function(){return __func.apply(__this,arguments)})})(this));unclosed=(function(){_i=[];_j=levels;for(key in _j){if(__hasProp.call(_j,key)){value=_j[key];if(value>0){_i.push(key)}}}return _i}).call(this);if(unclosed.length){throw new Error("unclosed "+unclosed[0])}};re.prototype.rewrite_closing_parens=function rewrite_closing_parens(){var _i,debt,key,stack,val;stack=[];debt={};_i=INVERSES;for(key in _i){if(__hasProp.call(_i,key)){val=_i[key];((debt[key]=0))}}return this.scan_tokens((function(__this){var __func=function(prev,token,post,i){var inv,match,mtag,tag;tag=token[0];inv=INVERSES[token[0]];if(EXPRESSION_START.indexOf(tag)>=0){stack.push(token);return 1}else{if(EXPRESSION_TAIL.indexOf(tag)>=0){if(debt[inv]>0){debt[inv]-=1;this.tokens.splice(i,1);return 0}else{match=stack.pop();mtag=match[0];if(tag===INVERSES[mtag]){return 1}else{debt[mtag]+=1;val=mtag==="INDENT"?match[1]:INVERSES[mtag];this.tokens.splice(i,0,[INVERSES[mtag],val]);return 1}}}else{return 1}}};return(function(){return __func.apply(__this,arguments)})})(this))}})();(function(){var ACCESSORS,ASSIGNMENT,BEFORE_WHEN,CALLABLE,CODE,COFFEE_KEYWORDS,COMMENT,COMMENT_CLEANER,HEREDOC,HEREDOC_INDENT,IDENTIFIER,JS,JS_CLEANER,JS_FORBIDDEN,JS_KEYWORDS,KEYWORDS,LAST_DENT,LAST_DENTS,MULTILINER,MULTI_DENT,NOT_REGEX,NO_NEWLINE,NUMBER,OPERATOR,REGEX,RESERVED,Rewriter,STRING,STRING_NEWLINES,WHITESPACE,lex;if((typeof process!=="undefined"&&process!==null)){Rewriter=require("./rewriter").Rewriter}else{this.exports=this;Rewriter=this.Rewriter}exports.Lexer=(lex=function lex(){});JS_KEYWORDS=["if","else","true","false","new","return","try","catch","finally","throw","break","continue","for","in","while","delete","instanceof","typeof","switch","super","extends"];COFFEE_KEYWORDS=["then","unless","yes","no","on","off","and","or","is","isnt","not","of","by","where","when"];KEYWORDS=JS_KEYWORDS.concat(COFFEE_KEYWORDS);RESERVED=["case","default","do","function","var","void","with","class","const","let","debugger","enum","export","import","native"];JS_FORBIDDEN=JS_KEYWORDS.concat(RESERVED);IDENTIFIER=/^([a-zA-Z$_](\w|\$)*)/;NUMBER=/^(\b((0(x|X)[0-9a-fA-F]+)|([0-9]+(\.[0-9]+)?(e[+\-]?[0-9]+)?)))\b/i;STRING=/^(""|''|"([\s\S]*?)([^\\]|\\\\)"|'([\s\S]*?)([^\\]|\\\\)')/;HEREDOC=/^("{6}|'{6}|"{3}\n?([\s\S]*?)\n?([ \t]*)"{3}|'{3}\n?([\s\S]*?)\n?([ \t]*)'{3})/;JS=/^(``|`([\s\S]*?)([^\\]|\\\\)`)/;OPERATOR=/^([+\*&|\/\-%=<>:!?]+)/;WHITESPACE=/^([ \t]+)/;COMMENT=/^(((\n?[ \t]*)?#[^\n]*)+)/;CODE=/^((-|=)>)/;REGEX=/^(\/(.*?)([^\\]|\\\\)\/[imgy]{0,4})/;MULTI_DENT=/^((\n([ \t]*))+)(\.)?/;LAST_DENTS=/\n([ \t]*)/g;LAST_DENT=/\n([ \t]*)/;ASSIGNMENT=/^(:|=)$/;JS_CLEANER=/(^`|`$)/g;MULTILINER=/\n/g;STRING_NEWLINES=/\n[ \t]*/g;COMMENT_CLEANER=/(^[ \t]*#|\n[ \t]*$)/mg;NO_NEWLINE=/^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/;HEREDOC_INDENT=/^[ \t]+/mg;NOT_REGEX=["IDENTIFIER","NUMBER","REGEX","STRING",")","++","--","]","}","FALSE","NULL","TRUE"];CALLABLE=["IDENTIFIER","SUPER",")","]","}","STRING","@"];ACCESSORS=["PROPERTY_ACCESS","PROTOTYPE_ACCESS","SOAK_ACCESS","@"];BEFORE_WHEN=["INDENT","OUTDENT","TERMINATOR"];lex.prototype.tokenize=function tokenize(code){this.code=code;this.i=0;this.line=1;this.indent=0;this.indents=[];this.tokens=[];while(this.i<this.code.length){this.chunk=this.code.slice(this.i);this.extract_next_token()}this.close_indentation();return(new Rewriter()).rewrite(this.tokens)};lex.prototype.extract_next_token=function extract_next_token(){if(this.identifier_token()){return null}if(this.number_token()){return null}if(this.heredoc_token()){return null}if(this.string_token()){return null}if(this.js_token()){return null}if(this.regex_token()){return null}if(this.indent_token()){return null}if(this.comment_token()){return null}if(this.whitespace_token()){return null}return this.literal_token()};lex.prototype.identifier_token=function identifier_token(){var id,tag;if(!((id=this.match(IDENTIFIER,1)))){return false}if(this.value()==="::"){this.tag(1,"PROTOTYPE_ACCESS")}if(this.value()==="."&&!(this.value(2)===".")){if(this.tag(2)==="?"){this.tag(1,"SOAK_ACCESS");this.tokens.splice(-2,1)}else{this.tag(1,"PROPERTY_ACCESS")}}tag="IDENTIFIER";if(KEYWORDS.indexOf(id)>=0&&!((ACCESSORS.indexOf(this.tag())>=0)&&!this.prev().spaced)){tag=id.toUpperCase()}if(RESERVED.indexOf(id)>=0){throw new Error('SyntaxError: Reserved word "'+id+'" on line '+this.line)}if(tag==="WHEN"&&BEFORE_WHEN.indexOf(this.tag())>=0){tag="LEADING_WHEN"}this.token(tag,id);this.i+=id.length;return true};lex.prototype.number_token=function number_token(){var number;if(!((number=this.match(NUMBER,1)))){return false}this.token("NUMBER",number);this.i+=number.length;return true};lex.prototype.string_token=function string_token(){var escaped,string;if(!((string=this.match(STRING,1)))){return false}escaped=string.replace(STRING_NEWLINES," \\\n");this.token("STRING",escaped);this.line+=this.count(string,"\n");this.i+=string.length;return true};lex.prototype.heredoc_token=function heredoc_token(){var doc,indent,match;if(!((match=this.chunk.match(HEREDOC)))){return false}doc=match[2]||match[4];indent=(doc.match(HEREDOC_INDENT)||[""]).sort()[0];doc=doc.replace(new RegExp("^"+indent,"gm"),"").replace(MULTILINER,"\\n").replace('"','\\"');this.token("STRING",'"'+doc+'"');this.line+=this.count(match[1],"\n");this.i+=match[1].length;return true};lex.prototype.js_token=function js_token(){var script;if(!((script=this.match(JS,1)))){return false}this.token("JS",script.replace(JS_CLEANER,""));this.i+=script.length;return true};lex.prototype.regex_token=function regex_token(){var regex;if(!((regex=this.match(REGEX,1)))){return false}if(NOT_REGEX.indexOf(this.tag())>=0){return false}this.token("REGEX",regex);this.i+=regex.length;return true};lex.prototype.comment_token=function comment_token(){var comment;if(!((comment=this.match(COMMENT,1)))){return false}this.line+=(comment.match(MULTILINER)||[]).length;this.token("COMMENT",comment.replace(COMMENT_CLEANER,"").split(MULTILINER));this.token("TERMINATOR","\n");this.i+=comment.length;return true};lex.prototype.indent_token=function indent_token(){var diff,indent,next_character,no_newlines,prev,size;if(!((indent=this.match(MULTI_DENT,1)))){return false}this.line+=indent.match(MULTILINER).length;this.i+=indent.length;next_character=this.chunk.match(MULTI_DENT)[4];prev=this.prev(2);no_newlines=next_character==="."||(this.value()&&this.value().match(NO_NEWLINE)&&prev&&(prev[0]!==".")&&!this.value().match(CODE));if(no_newlines){return this.suppress_newlines(indent)}size=indent.match(LAST_DENTS).reverse()[0].match(LAST_DENT)[1].length;if(size===this.indent){return this.newline_token(indent)}if(size>this.indent){diff=size-this.indent;this.token("INDENT",diff);this.indents.push(diff)}else{this.outdent_token(this.indent-size)}this.indent=size;return true};lex.prototype.outdent_token=function outdent_token(move_out){var last_indent;while(move_out>0&&this.indents.length){last_indent=this.indents.pop();this.token("OUTDENT",last_indent);move_out-=last_indent}if(!(this.tag()==="TERMINATOR")){this.token("TERMINATOR","\n")}return true};lex.prototype.whitespace_token=function whitespace_token(){var prev,space;if(!((space=this.match(WHITESPACE,1)))){return false}prev=this.prev();if(prev){prev.spaced=true}this.i+=space.length;return true};lex.prototype.newline_token=function newline_token(newlines){if(!(this.tag()==="TERMINATOR")){this.token("TERMINATOR","\n")}return true};lex.prototype.suppress_newlines=function suppress_newlines(newlines){if(this.value()==="\\"){this.tokens.pop()}return true};lex.prototype.literal_token=function literal_token(){var match,not_spaced,tag,value;match=this.chunk.match(OPERATOR);value=match&&match[1];if(value&&value.match(CODE)){this.tag_parameters()}value=value||this.chunk.substr(0,1);not_spaced=!this.prev()||!this.prev().spaced;tag=value;if(value.match(ASSIGNMENT)){tag="ASSIGN";if(JS_FORBIDDEN.indexOf(this.value())>=0){throw new Error('SyntaxError: Reserved word "'+this.value()+'" on line '+this.line+" can't be assigned")}}else{if(value===";"){tag="TERMINATOR"}else{if(value==="["&&this.tag()==="?"&&not_spaced){tag="SOAKED_INDEX_START";this.soaked_index=true;this.tokens.pop()}else{if(value==="]"&&this.soaked_index){tag="SOAKED_INDEX_END";this.soaked_index=false}else{if(CALLABLE.indexOf(this.tag())>=0&&not_spaced){if(value==="("){tag="CALL_START"}if(value==="["){tag="INDEX_START"}}}}}}this.token(tag,value);this.i+=value.length;return true};lex.prototype.token=function token(tag,value){return this.tokens.push([tag,value,this.line])};lex.prototype.tag=function tag(index,tag){var tok;if(!((tok=this.prev(index)))){return null}if((typeof tag!=="undefined"&&tag!==null)){return(tok[0]=tag)}return tok[0]};lex.prototype.value=function value(index,val){var tok;if(!((tok=this.prev(index)))){return null}if((typeof val!=="undefined"&&val!==null)){return(tok[1]=val)}return tok[1]};lex.prototype.prev=function prev(index){return this.tokens[this.tokens.length-(index||1)]};lex.prototype.count=function count(string,letter){var num,pos;num=0;pos=string.indexOf(letter);while(pos!==-1){num+=1;pos=string.indexOf(letter,pos+1)}return num};lex.prototype.match=function match(regex,index){var m;if(!((m=this.chunk.match(regex)))){return false}return m?m[index]:false};lex.prototype.tag_parameters=function tag_parameters(){var _a,i,tok;if(this.tag()!==")"){return null}i=0;while(true){i+=1;tok=this.prev(i);if(!tok){return null}if((_a=tok[0])==="IDENTIFIER"){tok[0]="PARAM"}else{if(_a===")"){tok[0]="PARAM_END"}else{if(_a==="("){return(tok[0]="PARAM_START")}}}}return true};lex.prototype.close_indentation=function close_indentation(){return this.outdent_token(this.indent)}})();var parser=(function(){var parser={trace:function trace(){},yy:{},symbols_:{Root:2,TERMINATOR:3,Expressions:4,Block:5,Expression:6,Value:7,Call:8,Code:9,Operation:10,Assign:11,If:12,Try:13,Throw:14,Return:15,While:16,For:17,Switch:18,Extends:19,Splat:20,Existence:21,Comment:22,INDENT:23,OUTDENT:24,Identifier:25,IDENTIFIER:26,AlphaNumeric:27,NUMBER:28,STRING:29,Literal:30,JS:31,REGEX:32,BREAK:33,CONTINUE:34,TRUE:35,FALSE:36,YES:37,NO:38,ON:39,OFF:40,ASSIGN:41,AssignObj:42,RETURN:43,COMMENT:44,"!":45,"!!":46,"-":47,"+":48,NOT:49,"~":50,"--":51,"++":52,DELETE:53,TYPEOF:54,"*":55,"/":56,"%":57,"<<":58,">>":59,">>>":60,"&":61,"|":62,"^":63,"<=":64,"<":65,">":66,">=":67,"==":68,"!=":69,IS:70,ISNT:71,"&&":72,"||":73,AND:74,OR:75,"?":76,"-=":77,"+=":78,"/=":79,"*=":80,"%=":81,"||=":82,"&&=":83,"?=":84,INSTANCEOF:85,IN:86,PARAM_START:87,ParamList:88,PARAM_END:89,FuncGlyph:90,"->":91,"=>":92,Param:93,",":94,PARAM:95,".":96,Array:97,Object:98,Parenthetical:99,Range:100,This:101,Accessor:102,Invocation:103,PROPERTY_ACCESS:104,PROTOTYPE_ACCESS:105,SOAK_ACCESS:106,Index:107,Slice:108,INDEX_START:109,INDEX_END:110,SOAKED_INDEX_START:111,SOAKED_INDEX_END:112,"{":113,AssignList:114,"}":115,NEW:116,Super:117,EXTENDS:118,Arguments:119,CALL_START:120,ArgList:121,CALL_END:122,SUPER:123,"@":124,"[":125,"]":126,SimpleArgs:127,TRY:128,Catch:129,FINALLY:130,CATCH:131,THROW:132,"(":133,")":134,WhileSource:135,WHILE:136,WHEN:137,FOR:138,ForVariables:139,ForSource:140,OF:141,BY:142,SWITCH:143,Whens:144,ELSE:145,When:146,LEADING_WHEN:147,IfStart:148,IF:149,ElsIfs:150,IfBlock:151,ElsIf:152,UNLESS:153,"$accept":0,"$end":1},terminals_:{"3":"TERMINATOR","23":"INDENT","24":"OUTDENT","26":"IDENTIFIER","28":"NUMBER","29":"STRING","31":"JS","32":"REGEX","33":"BREAK","34":"CONTINUE","35":"TRUE","36":"FALSE","37":"YES","38":"NO","39":"ON","40":"OFF","41":"ASSIGN","43":"RETURN","44":"COMMENT","45":"!","46":"!!","47":"-","48":"+","49":"NOT","50":"~","51":"--","52":"++","53":"DELETE","54":"TYPEOF","55":"*","56":"/","57":"%","58":"<<","59":">>","60":">>>","61":"&","62":"|","63":"^","64":"<=","65":"<","66":">","67":">=","68":"==","69":"!=","70":"IS","71":"ISNT","72":"&&","73":"||","74":"AND","75":"OR","76":"?","77":"-=","78":"+=","79":"/=","80":"*=","81":"%=","82":"||=","83":"&&=","84":"?=","85":"INSTANCEOF","86":"IN","87":"PARAM_START","89":"PARAM_END","91":"->","92":"=>","94":",","95":"PARAM","96":".","104":"PROPERTY_ACCESS","105":"PROTOTYPE_ACCESS","106":"SOAK_ACCESS","109":"INDEX_START","110":"INDEX_END","111":"SOAKED_INDEX_START","112":"SOAKED_INDEX_END","113":"{","115":"}","116":"NEW","118":"EXTENDS","120":"CALL_START","122":"CALL_END","123":"SUPER","124":"@","125":"[","126":"]","128":"TRY","130":"FINALLY","131":"CATCH","132":"THROW","133":"(","134":")","136":"WHILE","137":"WHEN","138":"FOR","141":"OF","142":"BY","143":"SWITCH","145":"ELSE","147":"LEADING_WHEN","149":"IF","152":"ElsIf","153":"UNLESS"},productions_:[0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[5,3],[5,2],[25,1],[27,1],[27,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[11,3],[42,3],[42,3],[42,1],[15,2],[15,1],[22,1],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[21,2],[9,5],[9,2],[90,1],[90,1],[88,0],[88,1],[88,3],[93,1],[93,4],[20,4],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,2],[7,2],[102,2],[102,2],[102,2],[102,1],[102,1],[107,3],[107,3],[98,3],[114,0],[114,1],[114,3],[114,3],[114,4],[114,3],[8,1],[8,2],[8,1],[19,3],[103,2],[103,2],[119,3],[117,4],[101,1],[101,2],[100,6],[100,7],[108,6],[108,7],[97,3],[121,0],[121,1],[121,2],[121,3],[121,3],[121,4],[121,4],[121,2],[127,1],[127,3],[13,3],[13,4],[13,5],[129,3],[14,2],[99,3],[135,2],[135,4],[16,2],[16,2],[17,4],[17,4],[139,1],[139,3],[140,2],[140,2],[140,3],[140,3],[18,5],[18,7],[144,1],[144,2],[146,3],[146,4],[146,3],[148,3],[148,2],[151,1],[151,3],[150,4],[150,2],[12,1],[12,3],[12,3]],performAction:function anonymous(yytext,yyleng,yylineno,yy){var $$=arguments[5],$0=arguments[5].length;switch(arguments[4]){case 1:return this.$=new Expressions();break;case 2:return this.$=new Expressions();break;case 3:return this.$=$$[$0-1+1-1];break;case 4:return this.$=$$[$0-2+1-1];break;case 5:this.$=Expressions.wrap([$$[$0-1+1-1]]);break;case 6:this.$=$$[$0-3+1-1].push($$[$0-3+3-1]);break;case 7:this.$=$$[$0-2+1-1];break;case 8:this.$=$$[$0-1+1-1];break;case 9:this.$=$$[$0-1+1-1];break;case 10:this.$=$$[$0-1+1-1];break;case 11:this.$=$$[$0-1+1-1];break;case 12:this.$=$$[$0-1+1-1];break;case 13:this.$=$$[$0-1+1-1];break;case 14:this.$=$$[$0-1+1-1];break;case 15:this.$=$$[$0-1+1-1];break;case 16:this.$=$$[$0-1+1-1];break;case 17:this.$=$$[$0-1+1-1];break;case 18:this.$=$$[$0-1+1-1];break;case 19:this.$=$$[$0-1+1-1];break;case 20:this.$=$$[$0-1+1-1];break;case 21:this.$=$$[$0-1+1-1];break;case 22:this.$=$$[$0-1+1-1];break;case 23:this.$=$$[$0-1+1-1];break;case 24:this.$=$$[$0-3+2-1];break;case 25:this.$=new Expressions();break;case 26:this.$=new LiteralNode(yytext);break;case 27:this.$=new LiteralNode(yytext);break;case 28:this.$=new LiteralNode(yytext);break;case 29:this.$=$$[$0-1+1-1];break;case 30:this.$=new LiteralNode(yytext);break;case 31:this.$=new LiteralNode(yytext);break;case 32:this.$=new LiteralNode(yytext);break;case 33:this.$=new LiteralNode(yytext);break;case 34:this.$=new LiteralNode(true);break;case 35:this.$=new LiteralNode(false);break;case 36:this.$=new LiteralNode(true);break;case 37:this.$=new LiteralNode(false);break;case 38:this.$=new LiteralNode(true);break;case 39:this.$=new LiteralNode(false);break;case 40:this.$=new AssignNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 41:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"object");break;case 42:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"object");break;case 43:this.$=$$[$0-1+1-1];break;case 44:this.$=new ReturnNode($$[$0-2+2-1]);break;case 45:this.$=new ReturnNode(new ValueNode(new LiteralNode("null")));break;case 46:this.$=new CommentNode(yytext);break;case 47:this.$=new OpNode("!",$$[$0-2+2-1]);break;case 48:this.$=new OpNode("!!",$$[$0-2+2-1]);break;case 49:this.$=new OpNode("-",$$[$0-2+2-1]);break;case 50:this.$=new OpNode("+",$$[$0-2+2-1]);break;case 51:this.$=new OpNode("not",$$[$0-2+2-1]);break;case 52:this.$=new OpNode("~",$$[$0-2+2-1]);break;case 53:this.$=new OpNode("--",$$[$0-2+2-1]);break;case 54:this.$=new OpNode("++",$$[$0-2+2-1]);break;case 55:this.$=new OpNode("delete",$$[$0-2+2-1]);break;case 56:this.$=new OpNode("typeof",$$[$0-2+2-1]);break;case 57:this.$=new OpNode("--",$$[$0-2+1-1],null,true);break;case 58:this.$=new OpNode("++",$$[$0-2+1-1],null,true);break;case 59:this.$=new OpNode("*",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 60:this.$=new OpNode("/",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 61:this.$=new OpNode("%",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 62:this.$=new OpNode("+",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 63:this.$=new OpNode("-",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 64:this.$=new OpNode("<<",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 65:this.$=new OpNode(">>",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 66:this.$=new OpNode(">>>",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 67:this.$=new OpNode("&",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 68:this.$=new OpNode("|",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 69:this.$=new OpNode("^",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 70:this.$=new OpNode("<=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 71:this.$=new OpNode("<",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 72:this.$=new OpNode(">",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 73:this.$=new OpNode(">=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 74:this.$=new OpNode("==",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 75:this.$=new OpNode("!=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 76:this.$=new OpNode("is",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 77:this.$=new OpNode("isnt",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 78:this.$=new OpNode("&&",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 79:this.$=new OpNode("||",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 80:this.$=new OpNode("and",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 81:this.$=new OpNode("or",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 82:this.$=new OpNode("?",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 83:this.$=new OpNode("-=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 84:this.$=new OpNode("+=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 85:this.$=new OpNode("/=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 86:this.$=new OpNode("*=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 87:this.$=new OpNode("%=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 88:this.$=new OpNode("||=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 89:this.$=new OpNode("&&=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 90:this.$=new OpNode("?=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 91:this.$=new OpNode("instanceof",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 92:this.$=new OpNode("in",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 93:this.$=new ExistenceNode($$[$0-2+1-1]);break;case 94:this.$=new CodeNode($$[$0-5+2-1],$$[$0-5+5-1],$$[$0-5+4-1]);break;case 95:this.$=new CodeNode([],$$[$0-2+2-1],$$[$0-2+1-1]);break;case 96:this.$="func";break;case 97:this.$="boundfunc";break;case 98:this.$=[];break;case 99:this.$=[$$[$0-1+1-1]];break;case 100:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 101:this.$=new LiteralNode(yytext);break;case 102:this.$=new SplatNode($$[$0-4+1-1]);break;case 103:this.$=new SplatNode($$[$0-4+1-1]);break;case 104:this.$=new ValueNode($$[$0-1+1-1]);break;case 105:this.$=new ValueNode($$[$0-1+1-1]);break;case 106:this.$=new ValueNode($$[$0-1+1-1]);break;case 107:this.$=new ValueNode($$[$0-1+1-1]);break;case 108:this.$=new ValueNode($$[$0-1+1-1]);break;case 109:this.$=new ValueNode($$[$0-1+1-1]);break;case 110:this.$=$$[$0-1+1-1];break;case 111:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 112:this.$=new ValueNode($$[$0-2+1-1],[$$[$0-2+2-1]]);break;case 113:this.$=new AccessorNode($$[$0-2+2-1]);break;case 114:this.$=new AccessorNode($$[$0-2+2-1],"prototype");break;case 115:this.$=new AccessorNode($$[$0-2+2-1],"soak");break;case 116:this.$=$$[$0-1+1-1];break;case 117:this.$=new SliceNode($$[$0-1+1-1]);break;case 118:this.$=new IndexNode($$[$0-3+2-1]);break;case 119:this.$=new IndexNode($$[$0-3+2-1],"soak");break;case 120:this.$=new ObjectNode($$[$0-3+2-1]);break;case 121:this.$=[];break;case 122:this.$=[$$[$0-1+1-1]];break;case 123:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 124:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 125:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 126:this.$=$$[$0-3+2-1];break;case 127:this.$=$$[$0-1+1-1];break;case 128:this.$=$$[$0-2+2-1].new_instance();break;case 129:this.$=$$[$0-1+1-1];break;case 130:this.$=new ExtendsNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 131:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 132:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 133:this.$=$$[$0-3+2-1];break;case 134:this.$=new CallNode("super",$$[$0-4+3-1]);break;case 135:this.$=new ValueNode(new LiteralNode("this"));break;case 136:this.$=new ValueNode(new LiteralNode("this"),[new AccessorNode($$[$0-2+2-1])]);break;case 137:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 138:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 139:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 140:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 141:this.$=new ArrayNode($$[$0-3+2-1]);break;case 142:this.$=[];break;case 143:this.$=[$$[$0-1+1-1]];break;case 144:this.$=[$$[$0-2+2-1]];break;case 145:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 146:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 147:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 148:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 149:this.$=$$[$0-2+1-1];break;case 150:this.$=$$[$0-1+1-1];break;case 151:this.$=$$[$0-3+1-1] instanceof Array?$$[$0-3+1-1].concat([$$[$0-3+3-1]]):[$$[$0-3+1-1]].concat([$$[$0-3+3-1]]);break;case 152:this.$=new TryNode($$[$0-3+2-1],$$[$0-3+3-1][0],$$[$0-3+3-1][1]);break;case 153:this.$=new TryNode($$[$0-4+2-1],null,null,$$[$0-4+4-1]);break;case 154:this.$=new TryNode($$[$0-5+2-1],$$[$0-5+3-1][0],$$[$0-5+3-1][1],$$[$0-5+5-1]);break;case 155:this.$=[$$[$0-3+2-1],$$[$0-3+3-1]];break;case 156:this.$=new ThrowNode($$[$0-2+2-1]);break;case 157:this.$=new ParentheticalNode($$[$0-3+2-1]);break;case 158:this.$=new WhileNode($$[$0-2+2-1]);break;case 159:this.$=new WhileNode($$[$0-4+2-1],{filter:$$[$0-4+4-1]});break;case 160:this.$=$$[$0-2+1-1].add_body($$[$0-2+2-1]);break;case 161:this.$=$$[$0-2+2-1].add_body($$[$0-2+1-1]);break;case 162:this.$=new ForNode($$[$0-4+1-1],$$[$0-4+4-1],$$[$0-4+3-1][0],$$[$0-4+3-1][1]);break;case 163:this.$=new ForNode($$[$0-4+4-1],$$[$0-4+3-1],$$[$0-4+2-1][0],$$[$0-4+2-1][1]);break;case 164:this.$=[$$[$0-1+1-1]];break;case 165:this.$=[$$[$0-3+1-1],$$[$0-3+3-1]];break;case 166:this.$={source:$$[$0-2+2-1]};break;case 167:this.$={source:$$[$0-2+2-1],object:true};break;case 168:this.$=(function(){$$[$0-3+1-1].filter=$$[$0-3+3-1];return $$[$0-3+1-1]}());break;case 169:this.$=(function(){$$[$0-3+1-1].step=$$[$0-3+3-1];return $$[$0-3+1-1]}());break;case 170:this.$=$$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]);break;case 171:this.$=$$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1],true);break;case 172:this.$=$$[$0-1+1-1];break;case 173:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 174:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],null,{statement:true});break;case 175:this.$=new IfNode($$[$0-4+2-1],$$[$0-4+3-1],null,{statement:true});break;case 176:this.$=(function(){$$[$0-3+3-1].comment=$$[$0-3+1-1];return $$[$0-3+3-1]}());break;case 177:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1]);break;case 178:this.$=$$[$0-2+1-1].add_else($$[$0-2+2-1]);break;case 179:this.$=$$[$0-1+1-1];break;case 180:this.$=$$[$0-3+1-1].add_else($$[$0-3+3-1]);break;case 181:this.$=(new IfNode($$[$0-4+3-1],$$[$0-4+4-1])).force_statement();break;case 182:this.$=$$[$0-2+1-1].add_else($$[$0-2+2-1]);break;case 183:this.$=$$[$0-1+1-1];break;case 184:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true});break;case 185:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true,invert:true});break}},table:[{"1":[[2,1]],"2":1,"3":[[1,2]],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,6]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[3]]},{"1":[[2,2]]},{"1":[[2,3]],"3":[[1,77]]},{"3":[[1,78]]},{"1":[[2,5]],"3":[[2,5]],"24":[[2,5]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"4":120,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"24":[[1,121]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,8]],"3":[[2,8]],"23":[[2,8]],"24":[[2,8]],"41":[[1,123]],"47":[[2,8]],"48":[[2,8]],"51":[[2,8]],"52":[[2,8]],"55":[[2,8]],"56":[[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]],"69":[[2,8]],"70":[[2,8]],"71":[[2,8]],"72":[[2,8]],"73":[[2,8]],"74":[[2,8]],"75":[[2,8]],"76":[[2,8]],"77":[[2,8]],"78":[[2,8]],"79":[[2,8]],"80":[[2,8]],"81":[[2,8]],"82":[[2,8]],"83":[[2,8]],"84":[[2,8]],"85":[[2,8]],"86":[[2,8]],"94":[[2,8]],"96":[[2,8]],"102":122,"104":[[1,126]],"105":[[1,127]],"106":[[1,128]],"107":129,"108":130,"109":[[1,132]],"110":[[2,8]],"111":[[1,133]],"112":[[2,8]],"115":[[2,8]],"118":[[1,124]],"119":125,"120":[[1,131]],"122":[[2,8]],"126":[[2,8]],"134":[[2,8]],"136":[[2,8]],"137":[[2,8]],"138":[[2,8]],"142":[[2,8]],"149":[[2,8]],"153":[[2,8]]},{"1":[[2,9]],"3":[[2,9]],"23":[[2,9]],"24":[[2,9]],"47":[[2,9]],"48":[[2,9]],"51":[[2,9]],"52":[[2,9]],"55":[[2,9]],"56":[[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]],"69":[[2,9]],"70":[[2,9]],"71":[[2,9]],"72":[[2,9]],"73":[[2,9]],"74":[[2,9]],"75":[[2,9]],"76":[[2,9]],"77":[[2,9]],"78":[[2,9]],"79":[[2,9]],"80":[[2,9]],"81":[[2,9]],"82":[[2,9]],"83":[[2,9]],"84":[[2,9]],"85":[[2,9]],"86":[[2,9]],"94":[[2,9]],"96":[[2,9]],"110":[[2,9]],"112":[[2,9]],"115":[[2,9]],"122":[[2,9]],"126":[[2,9]],"134":[[2,9]],"136":[[2,9]],"137":[[2,9]],"138":[[2,9]],"142":[[2,9]],"149":[[2,9]],"153":[[2,9]]},{"1":[[2,10]],"3":[[2,10]],"23":[[2,10]],"24":[[2,10]],"47":[[2,10]],"48":[[2,10]],"51":[[2,10]],"52":[[2,10]],"55":[[2,10]],"56":[[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]],"69":[[2,10]],"70":[[2,10]],"71":[[2,10]],"72":[[2,10]],"73":[[2,10]],"74":[[2,10]],"75":[[2,10]],"76":[[2,10]],"77":[[2,10]],"78":[[2,10]],"79":[[2,10]],"80":[[2,10]],"81":[[2,10]],"82":[[2,10]],"83":[[2,10]],"84":[[2,10]],"85":[[2,10]],"86":[[2,10]],"94":[[2,10]],"96":[[2,10]],"110":[[2,10]],"112":[[2,10]],"115":[[2,10]],"122":[[2,10]],"126":[[2,10]],"134":[[2,10]],"136":[[2,10]],"137":[[2,10]],"138":[[2,10]],"142":[[2,10]],"149":[[2,10]],"153":[[2,10]]},{"1":[[2,11]],"3":[[2,11]],"23":[[2,11]],"24":[[2,11]],"47":[[2,11]],"48":[[2,11]],"51":[[2,11]],"52":[[2,11]],"55":[[2,11]],"56":[[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]],"69":[[2,11]],"70":[[2,11]],"71":[[2,11]],"72":[[2,11]],"73":[[2,11]],"74":[[2,11]],"75":[[2,11]],"76":[[2,11]],"77":[[2,11]],"78":[[2,11]],"79":[[2,11]],"80":[[2,11]],"81":[[2,11]],"82":[[2,11]],"83":[[2,11]],"84":[[2,11]],"85":[[2,11]],"86":[[2,11]],"94":[[2,11]],"96":[[2,11]],"110":[[2,11]],"112":[[2,11]],"115":[[2,11]],"122":[[2,11]],"126":[[2,11]],"134":[[2,11]],"136":[[2,11]],"137":[[2,11]],"138":[[2,11]],"142":[[2,11]],"149":[[2,11]],"153":[[2,11]]},{"1":[[2,12]],"3":[[2,12]],"23":[[2,12]],"24":[[2,12]],"47":[[2,12]],"48":[[2,12]],"51":[[2,12]],"52":[[2,12]],"55":[[2,12]],"56":[[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]],"69":[[2,12]],"70":[[2,12]],"71":[[2,12]],"72":[[2,12]],"73":[[2,12]],"74":[[2,12]],"75":[[2,12]],"76":[[2,12]],"77":[[2,12]],"78":[[2,12]],"79":[[2,12]],"80":[[2,12]],"81":[[2,12]],"82":[[2,12]],"83":[[2,12]],"84":[[2,12]],"85":[[2,12]],"86":[[2,12]],"94":[[2,12]],"96":[[2,12]],"110":[[2,12]],"112":[[2,12]],"115":[[2,12]],"122":[[2,12]],"126":[[2,12]],"134":[[2,12]],"136":[[2,12]],"137":[[2,12]],"138":[[2,12]],"142":[[2,12]],"149":[[2,12]],"153":[[2,12]]},{"1":[[2,13]],"3":[[2,13]],"23":[[2,13]],"24":[[2,13]],"47":[[2,13]],"48":[[2,13]],"51":[[2,13]],"52":[[2,13]],"55":[[2,13]],"56":[[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]],"69":[[2,13]],"70":[[2,13]],"71":[[2,13]],"72":[[2,13]],"73":[[2,13]],"74":[[2,13]],"75":[[2,13]],"76":[[2,13]],"77":[[2,13]],"78":[[2,13]],"79":[[2,13]],"80":[[2,13]],"81":[[2,13]],"82":[[2,13]],"83":[[2,13]],"84":[[2,13]],"85":[[2,13]],"86":[[2,13]],"94":[[2,13]],"96":[[2,13]],"110":[[2,13]],"112":[[2,13]],"115":[[2,13]],"122":[[2,13]],"126":[[2,13]],"134":[[2,13]],"136":[[2,13]],"137":[[2,13]],"138":[[2,13]],"142":[[2,13]],"149":[[2,13]],"153":[[2,13]]},{"1":[[2,14]],"3":[[2,14]],"23":[[2,14]],"24":[[2,14]],"47":[[2,14]],"48":[[2,14]],"51":[[2,14]],"52":[[2,14]],"55":[[2,14]],"56":[[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]],"69":[[2,14]],"70":[[2,14]],"71":[[2,14]],"72":[[2,14]],"73":[[2,14]],"74":[[2,14]],"75":[[2,14]],"76":[[2,14]],"77":[[2,14]],"78":[[2,14]],"79":[[2,14]],"80":[[2,14]],"81":[[2,14]],"82":[[2,14]],"83":[[2,14]],"84":[[2,14]],"85":[[2,14]],"86":[[2,14]],"94":[[2,14]],"96":[[2,14]],"110":[[2,14]],"112":[[2,14]],"115":[[2,14]],"122":[[2,14]],"126":[[2,14]],"134":[[2,14]],"136":[[2,14]],"137":[[2,14]],"138":[[2,14]],"142":[[2,14]],"149":[[2,14]],"153":[[2,14]]},{"1":[[2,15]],"3":[[2,15]],"23":[[2,15]],"24":[[2,15]],"47":[[2,15]],"48":[[2,15]],"51":[[2,15]],"52":[[2,15]],"55":[[2,15]],"56":[[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]],"69":[[2,15]],"70":[[2,15]],"71":[[2,15]],"72":[[2,15]],"73":[[2,15]],"74":[[2,15]],"75":[[2,15]],"76":[[2,15]],"77":[[2,15]],"78":[[2,15]],"79":[[2,15]],"80":[[2,15]],"81":[[2,15]],"82":[[2,15]],"83":[[2,15]],"84":[[2,15]],"85":[[2,15]],"86":[[2,15]],"94":[[2,15]],"96":[[2,15]],"110":[[2,15]],"112":[[2,15]],"115":[[2,15]],"122":[[2,15]],"126":[[2,15]],"134":[[2,15]],"136":[[2,15]],"137":[[2,15]],"138":[[2,15]],"142":[[2,15]],"149":[[2,15]],"153":[[2,15]]},{"1":[[2,16]],"3":[[2,16]],"23":[[2,16]],"24":[[2,16]],"47":[[2,16]],"48":[[2,16]],"51":[[2,16]],"52":[[2,16]],"55":[[2,16]],"56":[[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]],"69":[[2,16]],"70":[[2,16]],"71":[[2,16]],"72":[[2,16]],"73":[[2,16]],"74":[[2,16]],"75":[[2,16]],"76":[[2,16]],"77":[[2,16]],"78":[[2,16]],"79":[[2,16]],"80":[[2,16]],"81":[[2,16]],"82":[[2,16]],"83":[[2,16]],"84":[[2,16]],"85":[[2,16]],"86":[[2,16]],"94":[[2,16]],"96":[[2,16]],"110":[[2,16]],"112":[[2,16]],"115":[[2,16]],"122":[[2,16]],"126":[[2,16]],"134":[[2,16]],"136":[[2,16]],"137":[[2,16]],"138":[[2,16]],"142":[[2,16]],"149":[[2,16]],"153":[[2,16]]},{"1":[[2,17]],"3":[[2,17]],"23":[[2,17]],"24":[[2,17]],"47":[[2,17]],"48":[[2,17]],"51":[[2,17]],"52":[[2,17]],"55":[[2,17]],"56":[[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]],"69":[[2,17]],"70":[[2,17]],"71":[[2,17]],"72":[[2,17]],"73":[[2,17]],"74":[[2,17]],"75":[[2,17]],"76":[[2,17]],"77":[[2,17]],"78":[[2,17]],"79":[[2,17]],"80":[[2,17]],"81":[[2,17]],"82":[[2,17]],"83":[[2,17]],"84":[[2,17]],"85":[[2,17]],"86":[[2,17]],"94":[[2,17]],"96":[[2,17]],"110":[[2,17]],"112":[[2,17]],"115":[[2,17]],"122":[[2,17]],"126":[[2,17]],"134":[[2,17]],"136":[[2,17]],"137":[[2,17]],"138":[[2,17]],"142":[[2,17]],"149":[[2,17]],"153":[[2,17]]},{"1":[[2,18]],"3":[[2,18]],"23":[[2,18]],"24":[[2,18]],"47":[[2,18]],"48":[[2,18]],"51":[[2,18]],"52":[[2,18]],"55":[[2,18]],"56":[[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]],"69":[[2,18]],"70":[[2,18]],"71":[[2,18]],"72":[[2,18]],"73":[[2,18]],"74":[[2,18]],"75":[[2,18]],"76":[[2,18]],"77":[[2,18]],"78":[[2,18]],"79":[[2,18]],"80":[[2,18]],"81":[[2,18]],"82":[[2,18]],"83":[[2,18]],"84":[[2,18]],"85":[[2,18]],"86":[[2,18]],"94":[[2,18]],"96":[[2,18]],"110":[[2,18]],"112":[[2,18]],"115":[[2,18]],"122":[[2,18]],"126":[[2,18]],"134":[[2,18]],"136":[[2,18]],"137":[[2,18]],"138":[[2,18]],"142":[[2,18]],"149":[[2,18]],"153":[[2,18]]},{"1":[[2,19]],"3":[[2,19]],"23":[[2,19]],"24":[[2,19]],"47":[[2,19]],"48":[[2,19]],"51":[[2,19]],"52":[[2,19]],"55":[[2,19]],"56":[[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]],"69":[[2,19]],"70":[[2,19]],"71":[[2,19]],"72":[[2,19]],"73":[[2,19]],"74":[[2,19]],"75":[[2,19]],"76":[[2,19]],"77":[[2,19]],"78":[[2,19]],"79":[[2,19]],"80":[[2,19]],"81":[[2,19]],"82":[[2,19]],"83":[[2,19]],"84":[[2,19]],"85":[[2,19]],"86":[[2,19]],"94":[[2,19]],"96":[[2,19]],"110":[[2,19]],"112":[[2,19]],"115":[[2,19]],"122":[[2,19]],"126":[[2,19]],"134":[[2,19]],"136":[[2,19]],"137":[[2,19]],"138":[[2,19]],"142":[[2,19]],"149":[[2,19]],"153":[[2,19]]},{"1":[[2,20]],"3":[[2,20]],"23":[[2,20]],"24":[[2,20]],"47":[[2,20]],"48":[[2,20]],"51":[[2,20]],"52":[[2,20]],"55":[[2,20]],"56":[[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]],"69":[[2,20]],"70":[[2,20]],"71":[[2,20]],"72":[[2,20]],"73":[[2,20]],"74":[[2,20]],"75":[[2,20]],"76":[[2,20]],"77":[[2,20]],"78":[[2,20]],"79":[[2,20]],"80":[[2,20]],"81":[[2,20]],"82":[[2,20]],"83":[[2,20]],"84":[[2,20]],"85":[[2,20]],"86":[[2,20]],"94":[[2,20]],"96":[[2,20]],"110":[[2,20]],"112":[[2,20]],"115":[[2,20]],"122":[[2,20]],"126":[[2,20]],"134":[[2,20]],"136":[[2,20]],"137":[[2,20]],"138":[[2,20]],"142":[[2,20]],"149":[[2,20]],"153":[[2,20]]},{"1":[[2,21]],"3":[[2,21]],"23":[[2,21]],"24":[[2,21]],"47":[[2,21]],"48":[[2,21]],"51":[[2,21]],"52":[[2,21]],"55":[[2,21]],"56":[[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]],"69":[[2,21]],"70":[[2,21]],"71":[[2,21]],"72":[[2,21]],"73":[[2,21]],"74":[[2,21]],"75":[[2,21]],"76":[[2,21]],"77":[[2,21]],"78":[[2,21]],"79":[[2,21]],"80":[[2,21]],"81":[[2,21]],"82":[[2,21]],"83":[[2,21]],"84":[[2,21]],"85":[[2,21]],"86":[[2,21]],"94":[[2,21]],"96":[[2,21]],"110":[[2,21]],"112":[[2,21]],"115":[[2,21]],"122":[[2,21]],"126":[[2,21]],"134":[[2,21]],"136":[[2,21]],"137":[[2,21]],"138":[[2,21]],"142":[[2,21]],"149":[[2,21]],"153":[[2,21]]},{"1":[[2,22]],"3":[[2,22]],"23":[[2,22]],"24":[[2,22]],"47":[[2,22]],"48":[[2,22]],"51":[[2,22]],"52":[[2,22]],"55":[[2,22]],"56":[[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]],"69":[[2,22]],"70":[[2,22]],"71":[[2,22]],"72":[[2,22]],"73":[[2,22]],"74":[[2,22]],"75":[[2,22]],"76":[[2,22]],"77":[[2,22]],"78":[[2,22]],"79":[[2,22]],"80":[[2,22]],"81":[[2,22]],"82":[[2,22]],"83":[[2,22]],"84":[[2,22]],"85":[[2,22]],"86":[[2,22]],"94":[[2,22]],"96":[[2,22]],"110":[[2,22]],"112":[[2,22]],"115":[[2,22]],"122":[[2,22]],"126":[[2,22]],"134":[[2,22]],"136":[[2,22]],"137":[[2,22]],"138":[[2,22]],"142":[[2,22]],"149":[[2,22]],"153":[[2,22]]},{"1":[[2,23]],"3":[[2,23]],"23":[[2,23]],"24":[[2,23]],"47":[[2,23]],"48":[[2,23]],"51":[[2,23]],"52":[[2,23]],"55":[[2,23]],"56":[[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]],"69":[[2,23]],"70":[[2,23]],"71":[[2,23]],"72":[[2,23]],"73":[[2,23]],"74":[[2,23]],"75":[[2,23]],"76":[[2,23]],"77":[[2,23]],"78":[[2,23]],"79":[[2,23]],"80":[[2,23]],"81":[[2,23]],"82":[[2,23]],"83":[[2,23]],"84":[[2,23]],"85":[[2,23]],"86":[[2,23]],"94":[[2,23]],"96":[[2,23]],"110":[[2,23]],"112":[[2,23]],"115":[[2,23]],"122":[[2,23]],"126":[[2,23]],"134":[[2,23]],"136":[[2,23]],"137":[[2,23]],"138":[[2,23]],"142":[[2,23]],"149":[[2,23]],"153":[[2,23]]},{"1":[[2,104]],"3":[[2,104]],"23":[[2,104]],"24":[[2,104]],"41":[[2,104]],"47":[[2,104]],"48":[[2,104]],"51":[[2,104]],"52":[[2,104]],"55":[[2,104]],"56":[[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]],"68":[[2,104]],"69":[[2,104]],"70":[[2,104]],"71":[[2,104]],"72":[[2,104]],"73":[[2,104]],"74":[[2,104]],"75":[[2,104]],"76":[[2,104]],"77":[[2,104]],"78":[[2,104]],"79":[[2,104]],"80":[[2,104]],"81":[[2,104]],"82":[[2,104]],"83":[[2,104]],"84":[[2,104]],"85":[[2,104]],"86":[[2,104]],"94":[[2,104]],"96":[[2,104]],"104":[[2,104]],"105":[[2,104]],"106":[[2,104]],"109":[[2,104]],"110":[[2,104]],"111":[[2,104]],"112":[[2,104]],"115":[[2,104]],"118":[[2,104]],"120":[[2,104]],"122":[[2,104]],"126":[[2,104]],"134":[[2,104]],"136":[[2,104]],"137":[[2,104]],"138":[[2,104]],"142":[[2,104]],"149":[[2,104]],"153":[[2,104]]},{"1":[[2,105]],"3":[[2,105]],"23":[[2,105]],"24":[[2,105]],"41":[[2,105]],"47":[[2,105]],"48":[[2,105]],"51":[[2,105]],"52":[[2,105]],"55":[[2,105]],"56":[[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]],"68":[[2,105]],"69":[[2,105]],"70":[[2,105]],"71":[[2,105]],"72":[[2,105]],"73":[[2,105]],"74":[[2,105]],"75":[[2,105]],"76":[[2,105]],"77":[[2,105]],"78":[[2,105]],"79":[[2,105]],"80":[[2,105]],"81":[[2,105]],"82":[[2,105]],"83":[[2,105]],"84":[[2,105]],"85":[[2,105]],"86":[[2,105]],"94":[[2,105]],"96":[[2,105]],"104":[[2,105]],"105":[[2,105]],"106":[[2,105]],"109":[[2,105]],"110":[[2,105]],"111":[[2,105]],"112":[[2,105]],"115":[[2,105]],"118":[[2,105]],"120":[[2,105]],"122":[[2,105]],"126":[[2,105]],"134":[[2,105]],"136":[[2,105]],"137":[[2,105]],"138":[[2,105]],"142":[[2,105]],"149":[[2,105]],"153":[[2,105]]},{"1":[[2,106]],"3":[[2,106]],"23":[[2,106]],"24":[[2,106]],"41":[[2,106]],"47":[[2,106]],"48":[[2,106]],"51":[[2,106]],"52":[[2,106]],"55":[[2,106]],"56":[[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]],"68":[[2,106]],"69":[[2,106]],"70":[[2,106]],"71":[[2,106]],"72":[[2,106]],"73":[[2,106]],"74":[[2,106]],"75":[[2,106]],"76":[[2,106]],"77":[[2,106]],"78":[[2,106]],"79":[[2,106]],"80":[[2,106]],"81":[[2,106]],"82":[[2,106]],"83":[[2,106]],"84":[[2,106]],"85":[[2,106]],"86":[[2,106]],"94":[[2,106]],"96":[[2,106]],"104":[[2,106]],"105":[[2,106]],"106":[[2,106]],"109":[[2,106]],"110":[[2,106]],"111":[[2,106]],"112":[[2,106]],"115":[[2,106]],"118":[[2,106]],"120":[[2,106]],"122":[[2,106]],"126":[[2,106]],"134":[[2,106]],"136":[[2,106]],"137":[[2,106]],"138":[[2,106]],"142":[[2,106]],"149":[[2,106]],"153":[[2,106]]},{"1":[[2,107]],"3":[[2,107]],"23":[[2,107]],"24":[[2,107]],"41":[[2,107]],"47":[[2,107]],"48":[[2,107]],"51":[[2,107]],"52":[[2,107]],"55":[[2,107]],"56":[[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]],"68":[[2,107]],"69":[[2,107]],"70":[[2,107]],"71":[[2,107]],"72":[[2,107]],"73":[[2,107]],"74":[[2,107]],"75":[[2,107]],"76":[[2,107]],"77":[[2,107]],"78":[[2,107]],"79":[[2,107]],"80":[[2,107]],"81":[[2,107]],"82":[[2,107]],"83":[[2,107]],"84":[[2,107]],"85":[[2,107]],"86":[[2,107]],"94":[[2,107]],"96":[[2,107]],"104":[[2,107]],"105":[[2,107]],"106":[[2,107]],"109":[[2,107]],"110":[[2,107]],"111":[[2,107]],"112":[[2,107]],"115":[[2,107]],"118":[[2,107]],"120":[[2,107]],"122":[[2,107]],"126":[[2,107]],"134":[[2,107]],"136":[[2,107]],"137":[[2,107]],"138":[[2,107]],"142":[[2,107]],"149":[[2,107]],"153":[[2,107]]},{"1":[[2,108]],"3":[[2,108]],"23":[[2,108]],"24":[[2,108]],"41":[[2,108]],"47":[[2,108]],"48":[[2,108]],"51":[[2,108]],"52":[[2,108]],"55":[[2,108]],"56":[[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]],"68":[[2,108]],"69":[[2,108]],"70":[[2,108]],"71":[[2,108]],"72":[[2,108]],"73":[[2,108]],"74":[[2,108]],"75":[[2,108]],"76":[[2,108]],"77":[[2,108]],"78":[[2,108]],"79":[[2,108]],"80":[[2,108]],"81":[[2,108]],"82":[[2,108]],"83":[[2,108]],"84":[[2,108]],"85":[[2,108]],"86":[[2,108]],"94":[[2,108]],"96":[[2,108]],"104":[[2,108]],"105":[[2,108]],"106":[[2,108]],"109":[[2,108]],"110":[[2,108]],"111":[[2,108]],"112":[[2,108]],"115":[[2,108]],"118":[[2,108]],"120":[[2,108]],"122":[[2,108]],"126":[[2,108]],"134":[[2,108]],"136":[[2,108]],"137":[[2,108]],"138":[[2,108]],"142":[[2,108]],"149":[[2,108]],"153":[[2,108]]},{"1":[[2,109]],"3":[[2,109]],"23":[[2,109]],"24":[[2,109]],"41":[[2,109]],"47":[[2,109]],"48":[[2,109]],"51":[[2,109]],"52":[[2,109]],"55":[[2,109]],"56":[[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]],"68":[[2,109]],"69":[[2,109]],"70":[[2,109]],"71":[[2,109]],"72":[[2,109]],"73":[[2,109]],"74":[[2,109]],"75":[[2,109]],"76":[[2,109]],"77":[[2,109]],"78":[[2,109]],"79":[[2,109]],"80":[[2,109]],"81":[[2,109]],"82":[[2,109]],"83":[[2,109]],"84":[[2,109]],"85":[[2,109]],"86":[[2,109]],"94":[[2,109]],"96":[[2,109]],"104":[[2,109]],"105":[[2,109]],"106":[[2,109]],"109":[[2,109]],"110":[[2,109]],"111":[[2,109]],"112":[[2,109]],"115":[[2,109]],"118":[[2,109]],"120":[[2,109]],"122":[[2,109]],"126":[[2,109]],"134":[[2,109]],"136":[[2,109]],"137":[[2,109]],"138":[[2,109]],"142":[[2,109]],"149":[[2,109]],"153":[[2,109]]},{"1":[[2,110]],"3":[[2,110]],"23":[[2,110]],"24":[[2,110]],"41":[[2,110]],"47":[[2,110]],"48":[[2,110]],"51":[[2,110]],"52":[[2,110]],"55":[[2,110]],"56":[[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]],"68":[[2,110]],"69":[[2,110]],"70":[[2,110]],"71":[[2,110]],"72":[[2,110]],"73":[[2,110]],"74":[[2,110]],"75":[[2,110]],"76":[[2,110]],"77":[[2,110]],"78":[[2,110]],"79":[[2,110]],"80":[[2,110]],"81":[[2,110]],"82":[[2,110]],"83":[[2,110]],"84":[[2,110]],"85":[[2,110]],"86":[[2,110]],"94":[[2,110]],"96":[[2,110]],"104":[[2,110]],"105":[[2,110]],"106":[[2,110]],"109":[[2,110]],"110":[[2,110]],"111":[[2,110]],"112":[[2,110]],"115":[[2,110]],"118":[[2,110]],"120":[[2,110]],"122":[[2,110]],"126":[[2,110]],"134":[[2,110]],"136":[[2,110]],"137":[[2,110]],"138":[[2,110]],"142":[[2,110]],"149":[[2,110]],"153":[[2,110]]},{"1":[[2,127]],"3":[[2,127]],"23":[[2,127]],"24":[[2,127]],"47":[[2,127]],"48":[[2,127]],"51":[[2,127]],"52":[[2,127]],"55":[[2,127]],"56":[[2,127]],"57":[[2,127]],"58":[[2,127]],"59":[[2,127]],"60":[[2,127]],"61":[[2,127]],"62":[[2,127]],"63":[[2,127]],"64":[[2,127]],"65":[[2,127]],"66":[[2,127]],"67":[[2,127]],"68":[[2,127]],"69":[[2,127]],"70":[[2,127]],"71":[[2,127]],"72":[[2,127]],"73":[[2,127]],"74":[[2,127]],"75":[[2,127]],"76":[[2,127]],"77":[[2,127]],"78":[[2,127]],"79":[[2,127]],"80":[[2,127]],"81":[[2,127]],"82":[[2,127]],"83":[[2,127]],"84":[[2,127]],"85":[[2,127]],"86":[[2,127]],"94":[[2,127]],"96":[[2,127]],"102":134,"104":[[1,126]],"105":[[1,127]],"106":[[1,128]],"107":129,"108":130,"109":[[1,132]],"110":[[2,127]],"111":[[1,133]],"112":[[2,127]],"115":[[2,127]],"119":135,"120":[[1,131]],"122":[[2,127]],"126":[[2,127]],"134":[[2,127]],"136":[[2,127]],"137":[[2,127]],"138":[[2,127]],"142":[[2,127]],"149":[[2,127]],"153":[[2,127]]},{"7":137,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":136,"113":[[1,66]],"124":[[1,68]],"125":[[1,65]],"133":[[1,67]]},{"1":[[2,129]],"3":[[2,129]],"23":[[2,129]],"24":[[2,129]],"47":[[2,129]],"48":[[2,129]],"51":[[2,129]],"52":[[2,129]],"55":[[2,129]],"56":[[2,129]],"57":[[2,129]],"58":[[2,129]],"59":[[2,129]],"60":[[2,129]],"61":[[2,129]],"62":[[2,129]],"63":[[2,129]],"64":[[2,129]],"65":[[2,129]],"66":[[2,129]],"67":[[2,129]],"68":[[2,129]],"69":[[2,129]],"70":[[2,129]],"71":[[2,129]],"72":[[2,129]],"73":[[2,129]],"74":[[2,129]],"75":[[2,129]],"76":[[2,129]],"77":[[2,129]],"78":[[2,129]],"79":[[2,129]],"80":[[2,129]],"81":[[2,129]],"82":[[2,129]],"83":[[2,129]],"84":[[2,129]],"85":[[2,129]],"86":[[2,129]],"94":[[2,129]],"96":[[2,129]],"110":[[2,129]],"112":[[2,129]],"115":[[2,129]],"122":[[2,129]],"126":[[2,129]],"134":[[2,129]],"136":[[2,129]],"137":[[2,129]],"138":[[2,129]],"142":[[2,129]],"149":[[2,129]],"153":[[2,129]]},{"88":138,"89":[[2,98]],"93":139,"94":[[2,98]],"95":[[1,140]]},{"5":141,"23":[[1,6]]},{"6":142,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":143,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":144,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":145,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":146,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":147,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":148,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":149,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":150,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":151,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,183]],"3":[[2,183]],"23":[[2,183]],"24":[[2,183]],"47":[[2,183]],"48":[[2,183]],"51":[[2,183]],"52":[[2,183]],"55":[[2,183]],"56":[[2,183]],"57":[[2,183]],"58":[[2,183]],"59":[[2,183]],"60":[[2,183]],"61":[[2,183]],"62":[[2,183]],"63":[[2,183]],"64":[[2,183]],"65":[[2,183]],"66":[[2,183]],"67":[[2,183]],"68":[[2,183]],"69":[[2,183]],"70":[[2,183]],"71":[[2,183]],"72":[[2,183]],"73":[[2,183]],"74":[[2,183]],"75":[[2,183]],"76":[[2,183]],"77":[[2,183]],"78":[[2,183]],"79":[[2,183]],"80":[[2,183]],"81":[[2,183]],"82":[[2,183]],"83":[[2,183]],"84":[[2,183]],"85":[[2,183]],"86":[[2,183]],"94":[[2,183]],"96":[[2,183]],"110":[[2,183]],"112":[[2,183]],"115":[[2,183]],"122":[[2,183]],"126":[[2,183]],"134":[[2,183]],"136":[[2,183]],"137":[[2,183]],"138":[[2,183]],"142":[[2,183]],"149":[[2,183]],"153":[[2,183]]},{"5":152,"23":[[1,6]]},{"6":153,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,45]],"3":[[2,45]],"6":154,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[2,45]],"24":[[2,45]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[2,45]],"56":[[2,45]],"57":[[2,45]],"58":[[2,45]],"59":[[2,45]],"60":[[2,45]],"61":[[2,45]],"62":[[2,45]],"63":[[2,45]],"64":[[2,45]],"65":[[2,45]],"66":[[2,45]],"67":[[2,45]],"68":[[2,45]],"69":[[2,45]],"70":[[2,45]],"71":[[2,45]],"72":[[2,45]],"73":[[2,45]],"74":[[2,45]],"75":[[2,45]],"76":[[2,45]],"77":[[2,45]],"78":[[2,45]],"79":[[2,45]],"80":[[2,45]],"81":[[2,45]],"82":[[2,45]],"83":[[2,45]],"84":[[2,45]],"85":[[2,45]],"86":[[2,45]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"94":[[2,45]],"96":[[2,45]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"110":[[2,45]],"112":[[2,45]],"113":[[1,66]],"115":[[2,45]],"116":[[1,31]],"117":32,"122":[[2,45]],"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"126":[[2,45]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"134":[[2,45]],"135":49,"136":[[2,45]],"137":[[2,45]],"138":[[1,50]],"142":[[2,45]],"143":[[1,51]],"148":72,"149":[[2,45]],"151":45,"153":[[2,45]]},{"5":155,"23":[[1,6]]},{"25":157,"26":[[1,53]],"139":156},{"6":158,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,46]],"3":[[2,46]],"23":[[2,46]],"24":[[2,46]],"47":[[2,46]],"48":[[2,46]],"51":[[2,46]],"52":[[2,46]],"55":[[2,46]],"56":[[2,46]],"57":[[2,46]],"58":[[2,46]],"59":[[2,46]],"60":[[2,46]],"61":[[2,46]],"62":[[2,46]],"63":[[2,46]],"64":[[2,46]],"65":[[2,46]],"66":[[2,46]],"67":[[2,46]],"68":[[2,46]],"69":[[2,46]],"70":[[2,46]],"71":[[2,46]],"72":[[2,46]],"73":[[2,46]],"74":[[2,46]],"75":[[2,46]],"76":[[2,46]],"77":[[2,46]],"78":[[2,46]],"79":[[2,46]],"80":[[2,46]],"81":[[2,46]],"82":[[2,46]],"83":[[2,46]],"84":[[2,46]],"85":[[2,46]],"86":[[2,46]],"94":[[2,46]],"96":[[2,46]],"110":[[2,46]],"112":[[2,46]],"115":[[2,46]],"122":[[2,46]],"126":[[2,46]],"134":[[2,46]],"136":[[2,46]],"137":[[2,46]],"138":[[2,46]],"142":[[2,46]],"149":[[2,46]],"153":[[2,46]]},{"1":[[2,26]],"3":[[2,26]],"23":[[2,26]],"24":[[2,26]],"41":[[2,26]],"47":[[2,26]],"48":[[2,26]],"51":[[2,26]],"52":[[2,26]],"55":[[2,26]],"56":[[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]],"69":[[2,26]],"70":[[2,26]],"71":[[2,26]],"72":[[2,26]],"73":[[2,26]],"74":[[2,26]],"75":[[2,26]],"76":[[2,26]],"77":[[2,26]],"78":[[2,26]],"79":[[2,26]],"80":[[2,26]],"81":[[2,26]],"82":[[2,26]],"83":[[2,26]],"84":[[2,26]],"85":[[2,26]],"86":[[2,26]],"94":[[2,26]],"96":[[2,26]],"104":[[2,26]],"105":[[2,26]],"106":[[2,26]],"109":[[2,26]],"110":[[2,26]],"111":[[2,26]],"112":[[2,26]],"115":[[2,26]],"118":[[2,26]],"120":[[2,26]],"122":[[2,26]],"126":[[2,26]],"134":[[2,26]],"136":[[2,26]],"137":[[2,26]],"138":[[2,26]],"141":[[2,26]],"142":[[2,26]],"149":[[2,26]],"153":[[2,26]]},{"1":[[2,29]],"3":[[2,29]],"23":[[2,29]],"24":[[2,29]],"41":[[2,29]],"47":[[2,29]],"48":[[2,29]],"51":[[2,29]],"52":[[2,29]],"55":[[2,29]],"56":[[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]],"69":[[2,29]],"70":[[2,29]],"71":[[2,29]],"72":[[2,29]],"73":[[2,29]],"74":[[2,29]],"75":[[2,29]],"76":[[2,29]],"77":[[2,29]],"78":[[2,29]],"79":[[2,29]],"80":[[2,29]],"81":[[2,29]],"82":[[2,29]],"83":[[2,29]],"84":[[2,29]],"85":[[2,29]],"86":[[2,29]],"94":[[2,29]],"96":[[2,29]],"104":[[2,29]],"105":[[2,29]],"106":[[2,29]],"109":[[2,29]],"110":[[2,29]],"111":[[2,29]],"112":[[2,29]],"115":[[2,29]],"118":[[2,29]],"120":[[2,29]],"122":[[2,29]],"126":[[2,29]],"134":[[2,29]],"136":[[2,29]],"137":[[2,29]],"138":[[2,29]],"142":[[2,29]],"149":[[2,29]],"153":[[2,29]]},{"1":[[2,30]],"3":[[2,30]],"23":[[2,30]],"24":[[2,30]],"41":[[2,30]],"47":[[2,30]],"48":[[2,30]],"51":[[2,30]],"52":[[2,30]],"55":[[2,30]],"56":[[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]],"69":[[2,30]],"70":[[2,30]],"71":[[2,30]],"72":[[2,30]],"73":[[2,30]],"74":[[2,30]],"75":[[2,30]],"76":[[2,30]],"77":[[2,30]],"78":[[2,30]],"79":[[2,30]],"80":[[2,30]],"81":[[2,30]],"82":[[2,30]],"83":[[2,30]],"84":[[2,30]],"85":[[2,30]],"86":[[2,30]],"94":[[2,30]],"96":[[2,30]],"104":[[2,30]],"105":[[2,30]],"106":[[2,30]],"109":[[2,30]],"110":[[2,30]],"111":[[2,30]],"112":[[2,30]],"115":[[2,30]],"118":[[2,30]],"120":[[2,30]],"122":[[2,30]],"126":[[2,30]],"134":[[2,30]],"136":[[2,30]],"137":[[2,30]],"138":[[2,30]],"142":[[2,30]],"149":[[2,30]],"153":[[2,30]]},{"1":[[2,31]],"3":[[2,31]],"23":[[2,31]],"24":[[2,31]],"41":[[2,31]],"47":[[2,31]],"48":[[2,31]],"51":[[2,31]],"52":[[2,31]],"55":[[2,31]],"56":[[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]],"69":[[2,31]],"70":[[2,31]],"71":[[2,31]],"72":[[2,31]],"73":[[2,31]],"74":[[2,31]],"75":[[2,31]],"76":[[2,31]],"77":[[2,31]],"78":[[2,31]],"79":[[2,31]],"80":[[2,31]],"81":[[2,31]],"82":[[2,31]],"83":[[2,31]],"84":[[2,31]],"85":[[2,31]],"86":[[2,31]],"94":[[2,31]],"96":[[2,31]],"104":[[2,31]],"105":[[2,31]],"106":[[2,31]],"109":[[2,31]],"110":[[2,31]],"111":[[2,31]],"112":[[2,31]],"115":[[2,31]],"118":[[2,31]],"120":[[2,31]],"122":[[2,31]],"126":[[2,31]],"134":[[2,31]],"136":[[2,31]],"137":[[2,31]],"138":[[2,31]],"142":[[2,31]],"149":[[2,31]],"153":[[2,31]]},{"1":[[2,32]],"3":[[2,32]],"23":[[2,32]],"24":[[2,32]],"41":[[2,32]],"47":[[2,32]],"48":[[2,32]],"51":[[2,32]],"52":[[2,32]],"55":[[2,32]],"56":[[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]],"69":[[2,32]],"70":[[2,32]],"71":[[2,32]],"72":[[2,32]],"73":[[2,32]],"74":[[2,32]],"75":[[2,32]],"76":[[2,32]],"77":[[2,32]],"78":[[2,32]],"79":[[2,32]],"80":[[2,32]],"81":[[2,32]],"82":[[2,32]],"83":[[2,32]],"84":[[2,32]],"85":[[2,32]],"86":[[2,32]],"94":[[2,32]],"96":[[2,32]],"104":[[2,32]],"105":[[2,32]],"106":[[2,32]],"109":[[2,32]],"110":[[2,32]],"111":[[2,32]],"112":[[2,32]],"115":[[2,32]],"118":[[2,32]],"120":[[2,32]],"122":[[2,32]],"126":[[2,32]],"134":[[2,32]],"136":[[2,32]],"137":[[2,32]],"138":[[2,32]],"142":[[2,32]],"149":[[2,32]],"153":[[2,32]]},{"1":[[2,33]],"3":[[2,33]],"23":[[2,33]],"24":[[2,33]],"41":[[2,33]],"47":[[2,33]],"48":[[2,33]],"51":[[2,33]],"52":[[2,33]],"55":[[2,33]],"56":[[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]],"69":[[2,33]],"70":[[2,33]],"71":[[2,33]],"72":[[2,33]],"73":[[2,33]],"74":[[2,33]],"75":[[2,33]],"76":[[2,33]],"77":[[2,33]],"78":[[2,33]],"79":[[2,33]],"80":[[2,33]],"81":[[2,33]],"82":[[2,33]],"83":[[2,33]],"84":[[2,33]],"85":[[2,33]],"86":[[2,33]],"94":[[2,33]],"96":[[2,33]],"104":[[2,33]],"105":[[2,33]],"106":[[2,33]],"109":[[2,33]],"110":[[2,33]],"111":[[2,33]],"112":[[2,33]],"115":[[2,33]],"118":[[2,33]],"120":[[2,33]],"122":[[2,33]],"126":[[2,33]],"134":[[2,33]],"136":[[2,33]],"137":[[2,33]],"138":[[2,33]],"142":[[2,33]],"149":[[2,33]],"153":[[2,33]]},{"1":[[2,34]],"3":[[2,34]],"23":[[2,34]],"24":[[2,34]],"41":[[2,34]],"47":[[2,34]],"48":[[2,34]],"51":[[2,34]],"52":[[2,34]],"55":[[2,34]],"56":[[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]],"69":[[2,34]],"70":[[2,34]],"71":[[2,34]],"72":[[2,34]],"73":[[2,34]],"74":[[2,34]],"75":[[2,34]],"76":[[2,34]],"77":[[2,34]],"78":[[2,34]],"79":[[2,34]],"80":[[2,34]],"81":[[2,34]],"82":[[2,34]],"83":[[2,34]],"84":[[2,34]],"85":[[2,34]],"86":[[2,34]],"94":[[2,34]],"96":[[2,34]],"104":[[2,34]],"105":[[2,34]],"106":[[2,34]],"109":[[2,34]],"110":[[2,34]],"111":[[2,34]],"112":[[2,34]],"115":[[2,34]],"118":[[2,34]],"120":[[2,34]],"122":[[2,34]],"126":[[2,34]],"134":[[2,34]],"136":[[2,34]],"137":[[2,34]],"138":[[2,34]],"142":[[2,34]],"149":[[2,34]],"153":[[2,34]]},{"1":[[2,35]],"3":[[2,35]],"23":[[2,35]],"24":[[2,35]],"41":[[2,35]],"47":[[2,35]],"48":[[2,35]],"51":[[2,35]],"52":[[2,35]],"55":[[2,35]],"56":[[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]],"69":[[2,35]],"70":[[2,35]],"71":[[2,35]],"72":[[2,35]],"73":[[2,35]],"74":[[2,35]],"75":[[2,35]],"76":[[2,35]],"77":[[2,35]],"78":[[2,35]],"79":[[2,35]],"80":[[2,35]],"81":[[2,35]],"82":[[2,35]],"83":[[2,35]],"84":[[2,35]],"85":[[2,35]],"86":[[2,35]],"94":[[2,35]],"96":[[2,35]],"104":[[2,35]],"105":[[2,35]],"106":[[2,35]],"109":[[2,35]],"110":[[2,35]],"111":[[2,35]],"112":[[2,35]],"115":[[2,35]],"118":[[2,35]],"120":[[2,35]],"122":[[2,35]],"126":[[2,35]],"134":[[2,35]],"136":[[2,35]],"137":[[2,35]],"138":[[2,35]],"142":[[2,35]],"149":[[2,35]],"153":[[2,35]]},{"1":[[2,36]],"3":[[2,36]],"23":[[2,36]],"24":[[2,36]],"41":[[2,36]],"47":[[2,36]],"48":[[2,36]],"51":[[2,36]],"52":[[2,36]],"55":[[2,36]],"56":[[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]],"69":[[2,36]],"70":[[2,36]],"71":[[2,36]],"72":[[2,36]],"73":[[2,36]],"74":[[2,36]],"75":[[2,36]],"76":[[2,36]],"77":[[2,36]],"78":[[2,36]],"79":[[2,36]],"80":[[2,36]],"81":[[2,36]],"82":[[2,36]],"83":[[2,36]],"84":[[2,36]],"85":[[2,36]],"86":[[2,36]],"94":[[2,36]],"96":[[2,36]],"104":[[2,36]],"105":[[2,36]],"106":[[2,36]],"109":[[2,36]],"110":[[2,36]],"111":[[2,36]],"112":[[2,36]],"115":[[2,36]],"118":[[2,36]],"120":[[2,36]],"122":[[2,36]],"126":[[2,36]],"134":[[2,36]],"136":[[2,36]],"137":[[2,36]],"138":[[2,36]],"142":[[2,36]],"149":[[2,36]],"153":[[2,36]]},{"1":[[2,37]],"3":[[2,37]],"23":[[2,37]],"24":[[2,37]],"41":[[2,37]],"47":[[2,37]],"48":[[2,37]],"51":[[2,37]],"52":[[2,37]],"55":[[2,37]],"56":[[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]],"69":[[2,37]],"70":[[2,37]],"71":[[2,37]],"72":[[2,37]],"73":[[2,37]],"74":[[2,37]],"75":[[2,37]],"76":[[2,37]],"77":[[2,37]],"78":[[2,37]],"79":[[2,37]],"80":[[2,37]],"81":[[2,37]],"82":[[2,37]],"83":[[2,37]],"84":[[2,37]],"85":[[2,37]],"86":[[2,37]],"94":[[2,37]],"96":[[2,37]],"104":[[2,37]],"105":[[2,37]],"106":[[2,37]],"109":[[2,37]],"110":[[2,37]],"111":[[2,37]],"112":[[2,37]],"115":[[2,37]],"118":[[2,37]],"120":[[2,37]],"122":[[2,37]],"126":[[2,37]],"134":[[2,37]],"136":[[2,37]],"137":[[2,37]],"138":[[2,37]],"142":[[2,37]],"149":[[2,37]],"153":[[2,37]]},{"1":[[2,38]],"3":[[2,38]],"23":[[2,38]],"24":[[2,38]],"41":[[2,38]],"47":[[2,38]],"48":[[2,38]],"51":[[2,38]],"52":[[2,38]],"55":[[2,38]],"56":[[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]],"69":[[2,38]],"70":[[2,38]],"71":[[2,38]],"72":[[2,38]],"73":[[2,38]],"74":[[2,38]],"75":[[2,38]],"76":[[2,38]],"77":[[2,38]],"78":[[2,38]],"79":[[2,38]],"80":[[2,38]],"81":[[2,38]],"82":[[2,38]],"83":[[2,38]],"84":[[2,38]],"85":[[2,38]],"86":[[2,38]],"94":[[2,38]],"96":[[2,38]],"104":[[2,38]],"105":[[2,38]],"106":[[2,38]],"109":[[2,38]],"110":[[2,38]],"111":[[2,38]],"112":[[2,38]],"115":[[2,38]],"118":[[2,38]],"120":[[2,38]],"122":[[2,38]],"126":[[2,38]],"134":[[2,38]],"136":[[2,38]],"137":[[2,38]],"138":[[2,38]],"142":[[2,38]],"149":[[2,38]],"153":[[2,38]]},{"1":[[2,39]],"3":[[2,39]],"23":[[2,39]],"24":[[2,39]],"41":[[2,39]],"47":[[2,39]],"48":[[2,39]],"51":[[2,39]],"52":[[2,39]],"55":[[2,39]],"56":[[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]],"69":[[2,39]],"70":[[2,39]],"71":[[2,39]],"72":[[2,39]],"73":[[2,39]],"74":[[2,39]],"75":[[2,39]],"76":[[2,39]],"77":[[2,39]],"78":[[2,39]],"79":[[2,39]],"80":[[2,39]],"81":[[2,39]],"82":[[2,39]],"83":[[2,39]],"84":[[2,39]],"85":[[2,39]],"86":[[2,39]],"94":[[2,39]],"96":[[2,39]],"104":[[2,39]],"105":[[2,39]],"106":[[2,39]],"109":[[2,39]],"110":[[2,39]],"111":[[2,39]],"112":[[2,39]],"115":[[2,39]],"118":[[2,39]],"120":[[2,39]],"122":[[2,39]],"126":[[2,39]],"134":[[2,39]],"136":[[2,39]],"137":[[2,39]],"138":[[2,39]],"142":[[2,39]],"149":[[2,39]],"153":[[2,39]]},{"3":[[2,142]],"6":160,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,161]],"24":[[2,142]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"94":[[2,142]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"121":159,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"126":[[2,142]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"3":[[2,121]],"22":167,"23":[[1,164]],"25":165,"26":[[1,53]],"27":166,"28":[[1,74]],"29":[[1,75]],"42":163,"44":[[1,52]],"94":[[2,121]],"114":162,"115":[[2,121]]},{"6":168,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,135]],"3":[[2,135]],"23":[[2,135]],"24":[[2,135]],"25":169,"26":[[1,53]],"41":[[2,135]],"47":[[2,135]],"48":[[2,135]],"51":[[2,135]],"52":[[2,135]],"55":[[2,135]],"56":[[2,135]],"57":[[2,135]],"58":[[2,135]],"59":[[2,135]],"60":[[2,135]],"61":[[2,135]],"62":[[2,135]],"63":[[2,135]],"64":[[2,135]],"65":[[2,135]],"66":[[2,135]],"67":[[2,135]],"68":[[2,135]],"69":[[2,135]],"70":[[2,135]],"71":[[2,135]],"72":[[2,135]],"73":[[2,135]],"74":[[2,135]],"75":[[2,135]],"76":[[2,135]],"77":[[2,135]],"78":[[2,135]],"79":[[2,135]],"80":[[2,135]],"81":[[2,135]],"82":[[2,135]],"83":[[2,135]],"84":[[2,135]],"85":[[2,135]],"86":[[2,135]],"94":[[2,135]],"96":[[2,135]],"104":[[2,135]],"105":[[2,135]],"106":[[2,135]],"109":[[2,135]],"110":[[2,135]],"111":[[2,135]],"112":[[2,135]],"115":[[2,135]],"118":[[2,135]],"120":[[2,135]],"122":[[2,135]],"126":[[2,135]],"134":[[2,135]],"136":[[2,135]],"137":[[2,135]],"138":[[2,135]],"142":[[2,135]],"149":[[2,135]],"153":[[2,135]]},{"120":[[1,170]]},{"23":[[2,96]]},{"23":[[2,97]]},{"1":[[2,179]],"3":[[2,179]],"23":[[2,179]],"24":[[2,179]],"47":[[2,179]],"48":[[2,179]],"51":[[2,179]],"52":[[2,179]],"55":[[2,179]],"56":[[2,179]],"57":[[2,179]],"58":[[2,179]],"59":[[2,179]],"60":[[2,179]],"61":[[2,179]],"62":[[2,179]],"63":[[2,179]],"64":[[2,179]],"65":[[2,179]],"66":[[2,179]],"67":[[2,179]],"68":[[2,179]],"69":[[2,179]],"70":[[2,179]],"71":[[2,179]],"72":[[2,179]],"73":[[2,179]],"74":[[2,179]],"75":[[2,179]],"76":[[2,179]],"77":[[2,179]],"78":[[2,179]],"79":[[2,179]],"80":[[2,179]],"81":[[2,179]],"82":[[2,179]],"83":[[2,179]],"84":[[2,179]],"85":[[2,179]],"86":[[2,179]],"94":[[2,179]],"96":[[2,179]],"110":[[2,179]],"112":[[2,179]],"115":[[2,179]],"122":[[2,179]],"126":[[2,179]],"134":[[2,179]],"136":[[2,179]],"137":[[2,179]],"138":[[2,179]],"142":[[2,179]],"145":[[1,171]],"149":[[2,179]],"150":172,"153":[[2,179]]},{"6":173,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,27]],"3":[[2,27]],"23":[[2,27]],"24":[[2,27]],"41":[[2,27]],"47":[[2,27]],"48":[[2,27]],"51":[[2,27]],"52":[[2,27]],"55":[[2,27]],"56":[[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]],"69":[[2,27]],"70":[[2,27]],"71":[[2,27]],"72":[[2,27]],"73":[[2,27]],"74":[[2,27]],"75":[[2,27]],"76":[[2,27]],"77":[[2,27]],"78":[[2,27]],"79":[[2,27]],"80":[[2,27]],"81":[[2,27]],"82":[[2,27]],"83":[[2,27]],"84":[[2,27]],"85":[[2,27]],"86":[[2,27]],"94":[[2,27]],"96":[[2,27]],"104":[[2,27]],"105":[[2,27]],"106":[[2,27]],"109":[[2,27]],"110":[[2,27]],"111":[[2,27]],"112":[[2,27]],"115":[[2,27]],"118":[[2,27]],"120":[[2,27]],"122":[[2,27]],"126":[[2,27]],"134":[[2,27]],"136":[[2,27]],"137":[[2,27]],"138":[[2,27]],"142":[[2,27]],"149":[[2,27]],"153":[[2,27]]},{"1":[[2,28]],"3":[[2,28]],"23":[[2,28]],"24":[[2,28]],"41":[[2,28]],"47":[[2,28]],"48":[[2,28]],"51":[[2,28]],"52":[[2,28]],"55":[[2,28]],"56":[[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]],"69":[[2,28]],"70":[[2,28]],"71":[[2,28]],"72":[[2,28]],"73":[[2,28]],"74":[[2,28]],"75":[[2,28]],"76":[[2,28]],"77":[[2,28]],"78":[[2,28]],"79":[[2,28]],"80":[[2,28]],"81":[[2,28]],"82":[[2,28]],"83":[[2,28]],"84":[[2,28]],"85":[[2,28]],"86":[[2,28]],"94":[[2,28]],"96":[[2,28]],"104":[[2,28]],"105":[[2,28]],"106":[[2,28]],"109":[[2,28]],"110":[[2,28]],"111":[[2,28]],"112":[[2,28]],"115":[[2,28]],"118":[[2,28]],"120":[[2,28]],"122":[[2,28]],"126":[[2,28]],"134":[[2,28]],"136":[[2,28]],"137":[[2,28]],"138":[[2,28]],"142":[[2,28]],"149":[[2,28]],"153":[[2,28]]},{"6":174,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,7]],"3":[[2,7]],"6":175,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"24":[[2,7]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,4]]},{"1":[[2,57]],"3":[[2,57]],"23":[[2,57]],"24":[[2,57]],"47":[[2,57]],"48":[[2,57]],"51":[[2,57]],"52":[[2,57]],"55":[[2,57]],"56":[[2,57]],"57":[[2,57]],"58":[[2,57]],"59":[[2,57]],"60":[[2,57]],"61":[[2,57]],"62":[[2,57]],"63":[[2,57]],"64":[[2,57]],"65":[[2,57]],"66":[[2,57]],"67":[[2,57]],"68":[[2,57]],"69":[[2,57]],"70":[[2,57]],"71":[[2,57]],"72":[[2,57]],"73":[[2,57]],"74":[[2,57]],"75":[[2,57]],"76":[[2,57]],"77":[[2,57]],"78":[[2,57]],"79":[[2,57]],"80":[[2,57]],"81":[[2,57]],"82":[[2,57]],"83":[[2,57]],"84":[[2,57]],"85":[[2,57]],"86":[[2,57]],"94":[[2,57]],"96":[[2,57]],"110":[[2,57]],"112":[[2,57]],"115":[[2,57]],"122":[[2,57]],"126":[[2,57]],"134":[[2,57]],"136":[[2,57]],"137":[[2,57]],"138":[[2,57]],"142":[[2,57]],"149":[[2,57]],"153":[[2,57]]},{"1":[[2,58]],"3":[[2,58]],"23":[[2,58]],"24":[[2,58]],"47":[[2,58]],"48":[[2,58]],"51":[[2,58]],"52":[[2,58]],"55":[[2,58]],"56":[[2,58]],"57":[[2,58]],"58":[[2,58]],"59":[[2,58]],"60":[[2,58]],"61":[[2,58]],"62":[[2,58]],"63":[[2,58]],"64":[[2,58]],"65":[[2,58]],"66":[[2,58]],"67":[[2,58]],"68":[[2,58]],"69":[[2,58]],"70":[[2,58]],"71":[[2,58]],"72":[[2,58]],"73":[[2,58]],"74":[[2,58]],"75":[[2,58]],"76":[[2,58]],"77":[[2,58]],"78":[[2,58]],"79":[[2,58]],"80":[[2,58]],"81":[[2,58]],"82":[[2,58]],"83":[[2,58]],"84":[[2,58]],"85":[[2,58]],"86":[[2,58]],"94":[[2,58]],"96":[[2,58]],"110":[[2,58]],"112":[[2,58]],"115":[[2,58]],"122":[[2,58]],"126":[[2,58]],"134":[[2,58]],"136":[[2,58]],"137":[[2,58]],"138":[[2,58]],"142":[[2,58]],"149":[[2,58]],"153":[[2,58]]},{"6":176,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":177,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":178,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":180,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":181,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":182,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":183,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":184,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":185,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":186,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,93]],"3":[[2,93]],"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[2,93]],"24":[[2,93]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[2,93]],"48":[[2,93]],"49":[[1,39]],"50":[[1,40]],"51":[[2,93]],"52":[[2,93]],"53":[[1,43]],"54":[[1,44]],"55":[[2,93]],"56":[[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]],"68":[[2,93]],"69":[[2,93]],"70":[[2,93]],"71":[[2,93]],"72":[[2,93]],"73":[[2,93]],"74":[[2,93]],"75":[[2,93]],"76":[[2,93]],"77":[[2,93]],"78":[[2,93]],"79":[[2,93]],"80":[[2,93]],"81":[[2,93]],"82":[[2,93]],"83":[[2,93]],"84":[[2,93]],"85":[[2,93]],"86":[[2,93]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"94":[[2,93]],"96":[[2,93]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"110":[[2,93]],"112":[[2,93]],"113":[[1,66]],"115":[[2,93]],"116":[[1,31]],"117":32,"122":[[2,93]],"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"126":[[2,93]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"134":[[2,93]],"135":49,"136":[[2,93]],"137":[[2,93]],"138":[[2,93]],"142":[[2,93]],"143":[[1,51]],"148":72,"149":[[2,93]],"151":45,"153":[[2,93]]},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,161]],"3":[[2,161]],"23":[[2,161]],"24":[[2,161]],"47":[[2,161]],"48":[[2,161]],"51":[[2,161]],"52":[[2,161]],"55":[[2,161]],"56":[[2,161]],"57":[[2,161]],"58":[[2,161]],"59":[[2,161]],"60":[[2,161]],"61":[[2,161]],"62":[[2,161]],"63":[[2,161]],"64":[[2,161]],"65":[[2,161]],"66":[[2,161]],"67":[[2,161]],"68":[[2,161]],"69":[[2,161]],"70":[[2,161]],"71":[[2,161]],"72":[[2,161]],"73":[[2,161]],"74":[[2,161]],"75":[[2,161]],"76":[[2,161]],"77":[[2,161]],"78":[[2,161]],"79":[[2,161]],"80":[[2,161]],"81":[[2,161]],"82":[[2,161]],"83":[[2,161]],"84":[[2,161]],"85":[[2,161]],"86":[[2,161]],"94":[[2,161]],"96":[[2,161]],"110":[[2,161]],"112":[[2,161]],"115":[[2,161]],"122":[[2,161]],"126":[[2,161]],"134":[[2,161]],"136":[[2,161]],"137":[[2,161]],"138":[[2,161]],"142":[[2,161]],"149":[[2,161]],"153":[[2,161]]},{"25":157,"26":[[1,53]],"139":212},{"96":[[1,213]]},{"3":[[1,77]],"24":[[1,214]]},{"1":[[2,25]],"3":[[2,25]],"23":[[2,25]],"24":[[2,25]],"44":[[2,25]],"47":[[2,25]],"48":[[2,25]],"51":[[2,25]],"52":[[2,25]],"55":[[2,25]],"56":[[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]],"69":[[2,25]],"70":[[2,25]],"71":[[2,25]],"72":[[2,25]],"73":[[2,25]],"74":[[2,25]],"75":[[2,25]],"76":[[2,25]],"77":[[2,25]],"78":[[2,25]],"79":[[2,25]],"80":[[2,25]],"81":[[2,25]],"82":[[2,25]],"83":[[2,25]],"84":[[2,25]],"85":[[2,25]],"86":[[2,25]],"94":[[2,25]],"96":[[2,25]],"110":[[2,25]],"112":[[2,25]],"115":[[2,25]],"122":[[2,25]],"126":[[2,25]],"130":[[2,25]],"131":[[2,25]],"134":[[2,25]],"136":[[2,25]],"137":[[2,25]],"138":[[2,25]],"142":[[2,25]],"145":[[2,25]],"147":[[2,25]],"149":[[2,25]],"152":[[2,25]],"153":[[2,25]]},{"1":[[2,111]],"3":[[2,111]],"23":[[2,111]],"24":[[2,111]],"41":[[2,111]],"47":[[2,111]],"48":[[2,111]],"51":[[2,111]],"52":[[2,111]],"55":[[2,111]],"56":[[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]],"68":[[2,111]],"69":[[2,111]],"70":[[2,111]],"71":[[2,111]],"72":[[2,111]],"73":[[2,111]],"74":[[2,111]],"75":[[2,111]],"76":[[2,111]],"77":[[2,111]],"78":[[2,111]],"79":[[2,111]],"80":[[2,111]],"81":[[2,111]],"82":[[2,111]],"83":[[2,111]],"84":[[2,111]],"85":[[2,111]],"86":[[2,111]],"94":[[2,111]],"96":[[2,111]],"104":[[2,111]],"105":[[2,111]],"106":[[2,111]],"109":[[2,111]],"110":[[2,111]],"111":[[2,111]],"112":[[2,111]],"115":[[2,111]],"118":[[2,111]],"120":[[2,111]],"122":[[2,111]],"126":[[2,111]],"134":[[2,111]],"136":[[2,111]],"137":[[2,111]],"138":[[2,111]],"142":[[2,111]],"149":[[2,111]],"153":[[2,111]]},{"6":215,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"7":216,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":217,"113":[[1,66]],"124":[[1,68]],"125":[[1,65]],"133":[[1,67]]},{"1":[[2,131]],"3":[[2,131]],"23":[[2,131]],"24":[[2,131]],"47":[[2,131]],"48":[[2,131]],"51":[[2,131]],"52":[[2,131]],"55":[[2,131]],"56":[[2,131]],"57":[[2,131]],"58":[[2,131]],"59":[[2,131]],"60":[[2,131]],"61":[[2,131]],"62":[[2,131]],"63":[[2,131]],"64":[[2,131]],"65":[[2,131]],"66":[[2,131]],"67":[[2,131]],"68":[[2,131]],"69":[[2,131]],"70":[[2,131]],"71":[[2,131]],"72":[[2,131]],"73":[[2,131]],"74":[[2,131]],"75":[[2,131]],"76":[[2,131]],"77":[[2,131]],"78":[[2,131]],"79":[[2,131]],"80":[[2,131]],"81":[[2,131]],"82":[[2,131]],"83":[[2,131]],"84":[[2,131]],"85":[[2,131]],"86":[[2,131]],"94":[[2,131]],"96":[[2,131]],"104":[[2,131]],"105":[[2,131]],"106":[[2,131]],"109":[[2,131]],"110":[[2,131]],"111":[[2,131]],"112":[[2,131]],"115":[[2,131]],"120":[[2,131]],"122":[[2,131]],"126":[[2,131]],"134":[[2,131]],"136":[[2,131]],"137":[[2,131]],"138":[[2,131]],"142":[[2,131]],"149":[[2,131]],"153":[[2,131]]},{"25":218,"26":[[1,53]]},{"25":219,"26":[[1,53]]},{"25":220,"26":[[1,53]]},{"1":[[2,116]],"3":[[2,116]],"23":[[2,116]],"24":[[2,116]],"41":[[2,116]],"47":[[2,116]],"48":[[2,116]],"51":[[2,116]],"52":[[2,116]],"55":[[2,116]],"56":[[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]],"68":[[2,116]],"69":[[2,116]],"70":[[2,116]],"71":[[2,116]],"72":[[2,116]],"73":[[2,116]],"74":[[2,116]],"75":[[2,116]],"76":[[2,116]],"77":[[2,116]],"78":[[2,116]],"79":[[2,116]],"80":[[2,116]],"81":[[2,116]],"82":[[2,116]],"83":[[2,116]],"84":[[2,116]],"85":[[2,116]],"86":[[2,116]],"94":[[2,116]],"96":[[2,116]],"104":[[2,116]],"105":[[2,116]],"106":[[2,116]],"109":[[2,116]],"110":[[2,116]],"111":[[2,116]],"112":[[2,116]],"115":[[2,116]],"118":[[2,116]],"120":[[2,116]],"122":[[2,116]],"126":[[2,116]],"134":[[2,116]],"136":[[2,116]],"137":[[2,116]],"138":[[2,116]],"142":[[2,116]],"149":[[2,116]],"153":[[2,116]]},{"1":[[2,117]],"3":[[2,117]],"23":[[2,117]],"24":[[2,117]],"41":[[2,117]],"47":[[2,117]],"48":[[2,117]],"51":[[2,117]],"52":[[2,117]],"55":[[2,117]],"56":[[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]],"68":[[2,117]],"69":[[2,117]],"70":[[2,117]],"71":[[2,117]],"72":[[2,117]],"73":[[2,117]],"74":[[2,117]],"75":[[2,117]],"76":[[2,117]],"77":[[2,117]],"78":[[2,117]],"79":[[2,117]],"80":[[2,117]],"81":[[2,117]],"82":[[2,117]],"83":[[2,117]],"84":[[2,117]],"85":[[2,117]],"86":[[2,117]],"94":[[2,117]],"96":[[2,117]],"104":[[2,117]],"105":[[2,117]],"106":[[2,117]],"109":[[2,117]],"110":[[2,117]],"111":[[2,117]],"112":[[2,117]],"115":[[2,117]],"118":[[2,117]],"120":[[2,117]],"122":[[2,117]],"126":[[2,117]],"134":[[2,117]],"136":[[2,117]],"137":[[2,117]],"138":[[2,117]],"142":[[2,117]],"149":[[2,117]],"153":[[2,117]]},{"3":[[2,142]],"6":222,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,161]],"24":[[2,142]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"94":[[2,142]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"121":221,"122":[[2,142]],"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":223,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":224,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,112]],"3":[[2,112]],"23":[[2,112]],"24":[[2,112]],"41":[[2,112]],"47":[[2,112]],"48":[[2,112]],"51":[[2,112]],"52":[[2,112]],"55":[[2,112]],"56":[[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]],"68":[[2,112]],"69":[[2,112]],"70":[[2,112]],"71":[[2,112]],"72":[[2,112]],"73":[[2,112]],"74":[[2,112]],"75":[[2,112]],"76":[[2,112]],"77":[[2,112]],"78":[[2,112]],"79":[[2,112]],"80":[[2,112]],"81":[[2,112]],"82":[[2,112]],"83":[[2,112]],"84":[[2,112]],"85":[[2,112]],"86":[[2,112]],"94":[[2,112]],"96":[[2,112]],"104":[[2,112]],"105":[[2,112]],"106":[[2,112]],"109":[[2,112]],"110":[[2,112]],"111":[[2,112]],"112":[[2,112]],"115":[[2,112]],"118":[[2,112]],"120":[[2,112]],"122":[[2,112]],"126":[[2,112]],"134":[[2,112]],"136":[[2,112]],"137":[[2,112]],"138":[[2,112]],"142":[[2,112]],"149":[[2,112]],"153":[[2,112]]},{"1":[[2,132]],"3":[[2,132]],"23":[[2,132]],"24":[[2,132]],"47":[[2,132]],"48":[[2,132]],"51":[[2,132]],"52":[[2,132]],"55":[[2,132]],"56":[[2,132]],"57":[[2,132]],"58":[[2,132]],"59":[[2,132]],"60":[[2,132]],"61":[[2,132]],"62":[[2,132]],"63":[[2,132]],"64":[[2,132]],"65":[[2,132]],"66":[[2,132]],"67":[[2,132]],"68":[[2,132]],"69":[[2,132]],"70":[[2,132]],"71":[[2,132]],"72":[[2,132]],"73":[[2,132]],"74":[[2,132]],"75":[[2,132]],"76":[[2,132]],"77":[[2,132]],"78":[[2,132]],"79":[[2,132]],"80":[[2,132]],"81":[[2,132]],"82":[[2,132]],"83":[[2,132]],"84":[[2,132]],"85":[[2,132]],"86":[[2,132]],"94":[[2,132]],"96":[[2,132]],"104":[[2,132]],"105":[[2,132]],"106":[[2,132]],"109":[[2,132]],"110":[[2,132]],"111":[[2,132]],"112":[[2,132]],"115":[[2,132]],"120":[[2,132]],"122":[[2,132]],"126":[[2,132]],"134":[[2,132]],"136":[[2,132]],"137":[[2,132]],"138":[[2,132]],"142":[[2,132]],"149":[[2,132]],"153":[[2,132]]},{"1":[[2,128]],"3":[[2,128]],"23":[[2,128]],"24":[[2,128]],"47":[[2,128]],"48":[[2,128]],"51":[[2,128]],"52":[[2,128]],"55":[[2,128]],"56":[[2,128]],"57":[[2,128]],"58":[[2,128]],"59":[[2,128]],"60":[[2,128]],"61":[[2,128]],"62":[[2,128]],"63":[[2,128]],"64":[[2,128]],"65":[[2,128]],"66":[[2,128]],"67":[[2,128]],"68":[[2,128]],"69":[[2,128]],"70":[[2,128]],"71":[[2,128]],"72":[[2,128]],"73":[[2,128]],"74":[[2,128]],"75":[[2,128]],"76":[[2,128]],"77":[[2,128]],"78":[[2,128]],"79":[[2,128]],"80":[[2,128]],"81":[[2,128]],"82":[[2,128]],"83":[[2,128]],"84":[[2,128]],"85":[[2,128]],"86":[[2,128]],"94":[[2,128]],"96":[[2,128]],"102":134,"104":[[1,126]],"105":[[1,127]],"106":[[1,128]],"107":129,"108":130,"109":[[1,132]],"110":[[2,128]],"111":[[1,133]],"112":[[2,128]],"115":[[2,128]],"119":135,"120":[[1,131]],"122":[[2,128]],"126":[[2,128]],"134":[[2,128]],"136":[[2,128]],"137":[[2,128]],"138":[[2,128]],"142":[[2,128]],"149":[[2,128]],"153":[[2,128]]},{"102":122,"104":[[1,126]],"105":[[1,127]],"106":[[1,128]],"107":129,"108":130,"109":[[1,132]],"111":[[1,133]],"119":125,"120":[[1,131]]},{"89":[[1,225]],"94":[[1,226]]},{"89":[[2,99]],"94":[[2,99]],"96":[[1,227]]},{"89":[[2,101]],"94":[[2,101]],"96":[[2,101]]},{"1":[[2,95]],"3":[[2,95]],"23":[[2,95]],"24":[[2,95]],"47":[[2,95]],"48":[[2,95]],"51":[[2,95]],"52":[[2,95]],"55":[[2,95]],"56":[[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]],"68":[[2,95]],"69":[[2,95]],"70":[[2,95]],"71":[[2,95]],"72":[[2,95]],"73":[[2,95]],"74":[[2,95]],"75":[[2,95]],"76":[[2,95]],"77":[[2,95]],"78":[[2,95]],"79":[[2,95]],"80":[[2,95]],"81":[[2,95]],"82":[[2,95]],"83":[[2,95]],"84":[[2,95]],"85":[[2,95]],"86":[[2,95]],"94":[[2,95]],"96":[[2,95]],"110":[[2,95]],"112":[[2,95]],"115":[[2,95]],"122":[[2,95]],"126":[[2,95]],"134":[[2,95]],"136":[[2,95]],"137":[[2,95]],"138":[[2,95]],"142":[[2,95]],"149":[[2,95]],"153":[[2,95]]},{"1":[[2,47]],"3":[[2,47]],"23":[[2,47]],"24":[[2,47]],"47":[[2,47]],"48":[[2,47]],"51":[null],"52":[null],"55":[[2,47]],"56":[[2,47]],"57":[[2,47]],"58":[[2,47]],"59":[[2,47]],"60":[[2,47]],"61":[[2,47]],"62":[[2,47]],"63":[[2,47]],"64":[[2,47]],"65":[[2,47]],"66":[[2,47]],"67":[[2,47]],"68":[[2,47]],"69":[[2,47]],"70":[[2,47]],"71":[[2,47]],"72":[[2,47]],"73":[[2,47]],"74":[[2,47]],"75":[[2,47]],"76":[[1,104]],"77":[[2,47]],"78":[[2,47]],"79":[[2,47]],"80":[[2,47]],"81":[[2,47]],"82":[[2,47]],"83":[[2,47]],"84":[[2,47]],"85":[[2,47]],"86":[[2,47]],"94":[[2,47]],"96":[[2,47]],"110":[[2,47]],"112":[[2,47]],"115":[[2,47]],"122":[[2,47]],"126":[[2,47]],"134":[[2,47]],"135":117,"136":[[2,47]],"137":[[2,47]],"138":[[2,47]],"142":[[2,47]],"149":[[2,47]],"153":[[2,47]]},{"1":[[2,48]],"3":[[2,48]],"23":[[2,48]],"24":[[2,48]],"47":[[2,48]],"48":[[2,48]],"51":[null],"52":[null],"55":[[2,48]],"56":[[2,48]],"57":[[2,48]],"58":[[2,48]],"59":[[2,48]],"60":[[2,48]],"61":[[2,48]],"62":[[2,48]],"63":[[2,48]],"64":[[2,48]],"65":[[2,48]],"66":[[2,48]],"67":[[2,48]],"68":[[2,48]],"69":[[2,48]],"70":[[2,48]],"71":[[2,48]],"72":[[2,48]],"73":[[2,48]],"74":[[2,48]],"75":[[2,48]],"76":[[1,104]],"77":[[2,48]],"78":[[2,48]],"79":[[2,48]],"80":[[2,48]],"81":[[2,48]],"82":[[2,48]],"83":[[2,48]],"84":[[2,48]],"85":[[2,48]],"86":[[2,48]],"94":[[2,48]],"96":[[2,48]],"110":[[2,48]],"112":[[2,48]],"115":[[2,48]],"122":[[2,48]],"126":[[2,48]],"134":[[2,48]],"135":117,"136":[[2,48]],"137":[[2,48]],"138":[[2,48]],"142":[[2,48]],"149":[[2,48]],"153":[[2,48]]},{"1":[[2,49]],"3":[[2,49]],"23":[[2,49]],"24":[[2,49]],"47":[[2,49]],"48":[[2,49]],"51":[null],"52":[null],"55":[[2,49]],"56":[[2,49]],"57":[[2,49]],"58":[[2,49]],"59":[[2,49]],"60":[[2,49]],"61":[[2,49]],"62":[[2,49]],"63":[[2,49]],"64":[[2,49]],"65":[[2,49]],"66":[[2,49]],"67":[[2,49]],"68":[[2,49]],"69":[[2,49]],"70":[[2,49]],"71":[[2,49]],"72":[[2,49]],"73":[[2,49]],"74":[[2,49]],"75":[[2,49]],"76":[[1,104]],"77":[[2,49]],"78":[[2,49]],"79":[[2,49]],"80":[[2,49]],"81":[[2,49]],"82":[[2,49]],"83":[[2,49]],"84":[[2,49]],"85":[[2,49]],"86":[[2,49]],"94":[[2,49]],"96":[[2,49]],"110":[[2,49]],"112":[[2,49]],"115":[[2,49]],"122":[[2,49]],"126":[[2,49]],"134":[[2,49]],"135":117,"136":[[2,49]],"137":[[2,49]],"138":[[2,49]],"142":[[2,49]],"149":[[2,49]],"153":[[2,49]]},{"1":[[2,50]],"3":[[2,50]],"23":[[2,50]],"24":[[2,50]],"47":[[2,50]],"48":[[2,50]],"51":[null],"52":[null],"55":[[2,50]],"56":[[2,50]],"57":[[2,50]],"58":[[2,50]],"59":[[2,50]],"60":[[2,50]],"61":[[2,50]],"62":[[2,50]],"63":[[2,50]],"64":[[2,50]],"65":[[2,50]],"66":[[2,50]],"67":[[2,50]],"68":[[2,50]],"69":[[2,50]],"70":[[2,50]],"71":[[2,50]],"72":[[2,50]],"73":[[2,50]],"74":[[2,50]],"75":[[2,50]],"76":[[1,104]],"77":[[2,50]],"78":[[2,50]],"79":[[2,50]],"80":[[2,50]],"81":[[2,50]],"82":[[2,50]],"83":[[2,50]],"84":[[2,50]],"85":[[2,50]],"86":[[2,50]],"94":[[2,50]],"96":[[2,50]],"110":[[2,50]],"112":[[2,50]],"115":[[2,50]],"122":[[2,50]],"126":[[2,50]],"134":[[2,50]],"135":117,"136":[[2,50]],"137":[[2,50]],"138":[[2,50]],"142":[[2,50]],"149":[[2,50]],"153":[[2,50]]},{"1":[[2,51]],"3":[[2,51]],"23":[[2,51]],"24":[[2,51]],"47":[[2,51]],"48":[[2,51]],"51":[null],"52":[null],"55":[[2,51]],"56":[[2,51]],"57":[[2,51]],"58":[[2,51]],"59":[[2,51]],"60":[[2,51]],"61":[[2,51]],"62":[[2,51]],"63":[[2,51]],"64":[[2,51]],"65":[[2,51]],"66":[[2,51]],"67":[[2,51]],"68":[[2,51]],"69":[[2,51]],"70":[[2,51]],"71":[[2,51]],"72":[[2,51]],"73":[[2,51]],"74":[[2,51]],"75":[[2,51]],"76":[[1,104]],"77":[[2,51]],"78":[[2,51]],"79":[[2,51]],"80":[[2,51]],"81":[[2,51]],"82":[[2,51]],"83":[[2,51]],"84":[[2,51]],"85":[[2,51]],"86":[[2,51]],"94":[[2,51]],"96":[[2,51]],"110":[[2,51]],"112":[[2,51]],"115":[[2,51]],"122":[[2,51]],"126":[[2,51]],"134":[[2,51]],"135":117,"136":[[2,51]],"137":[[2,51]],"138":[[2,51]],"142":[[2,51]],"149":[[2,51]],"153":[[2,51]]},{"1":[[2,52]],"3":[[2,52]],"23":[[2,52]],"24":[[2,52]],"47":[[2,52]],"48":[[2,52]],"51":[null],"52":[null],"55":[[2,52]],"56":[[2,52]],"57":[[2,52]],"58":[[2,52]],"59":[[2,52]],"60":[[2,52]],"61":[[2,52]],"62":[[2,52]],"63":[[2,52]],"64":[[2,52]],"65":[[2,52]],"66":[[2,52]],"67":[[2,52]],"68":[[2,52]],"69":[[2,52]],"70":[[2,52]],"71":[[2,52]],"72":[[2,52]],"73":[[2,52]],"74":[[2,52]],"75":[[2,52]],"76":[[1,104]],"77":[[2,52]],"78":[[2,52]],"79":[[2,52]],"80":[[2,52]],"81":[[2,52]],"82":[[2,52]],"83":[[2,52]],"84":[[2,52]],"85":[[2,52]],"86":[[2,52]],"94":[[2,52]],"96":[[2,52]],"110":[[2,52]],"112":[[2,52]],"115":[[2,52]],"122":[[2,52]],"126":[[2,52]],"134":[[2,52]],"135":117,"136":[[2,52]],"137":[[2,52]],"138":[[2,52]],"142":[[2,52]],"149":[[2,52]],"153":[[2,52]]},{"1":[[2,53]],"3":[[2,53]],"23":[[2,53]],"24":[[2,53]],"47":[[2,53]],"48":[[2,53]],"51":[null],"52":[null],"55":[[2,53]],"56":[[2,53]],"57":[[2,53]],"58":[[2,53]],"59":[[2,53]],"60":[[2,53]],"61":[[2,53]],"62":[[2,53]],"63":[[2,53]],"64":[[2,53]],"65":[[2,53]],"66":[[2,53]],"67":[[2,53]],"68":[[2,53]],"69":[[2,53]],"70":[[2,53]],"71":[[2,53]],"72":[[2,53]],"73":[[2,53]],"74":[[2,53]],"75":[[2,53]],"76":[[1,104]],"77":[[2,53]],"78":[[2,53]],"79":[[2,53]],"80":[[2,53]],"81":[[2,53]],"82":[[2,53]],"83":[[2,53]],"84":[[2,53]],"85":[[2,53]],"86":[[2,53]],"94":[[2,53]],"96":[[2,53]],"110":[[2,53]],"112":[[2,53]],"115":[[2,53]],"122":[[2,53]],"126":[[2,53]],"134":[[2,53]],"135":117,"136":[[2,53]],"137":[[2,53]],"138":[[2,53]],"142":[[2,53]],"149":[[2,53]],"153":[[2,53]]},{"1":[[2,54]],"3":[[2,54]],"23":[[2,54]],"24":[[2,54]],"47":[[2,54]],"48":[[2,54]],"51":[null],"52":[null],"55":[[2,54]],"56":[[2,54]],"57":[[2,54]],"58":[[2,54]],"59":[[2,54]],"60":[[2,54]],"61":[[2,54]],"62":[[2,54]],"63":[[2,54]],"64":[[2,54]],"65":[[2,54]],"66":[[2,54]],"67":[[2,54]],"68":[[2,54]],"69":[[2,54]],"70":[[2,54]],"71":[[2,54]],"72":[[2,54]],"73":[[2,54]],"74":[[2,54]],"75":[[2,54]],"76":[[1,104]],"77":[[2,54]],"78":[[2,54]],"79":[[2,54]],"80":[[2,54]],"81":[[2,54]],"82":[[2,54]],"83":[[2,54]],"84":[[2,54]],"85":[[2,54]],"86":[[2,54]],"94":[[2,54]],"96":[[2,54]],"110":[[2,54]],"112":[[2,54]],"115":[[2,54]],"122":[[2,54]],"126":[[2,54]],"134":[[2,54]],"135":117,"136":[[2,54]],"137":[[2,54]],"138":[[2,54]],"142":[[2,54]],"149":[[2,54]],"153":[[2,54]]},{"1":[[2,55]],"3":[[2,55]],"23":[[2,55]],"24":[[2,55]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[2,55]],"69":[[2,55]],"70":[[2,55]],"71":[[2,55]],"72":[[2,55]],"73":[[2,55]],"74":[[2,55]],"75":[[2,55]],"76":[[1,104]],"77":[[2,55]],"78":[[2,55]],"79":[[2,55]],"80":[[2,55]],"81":[[2,55]],"82":[[2,55]],"83":[[2,55]],"84":[[2,55]],"85":[[1,113]],"86":[[2,55]],"94":[[2,55]],"96":[[2,55]],"110":[[2,55]],"112":[[2,55]],"115":[[2,55]],"122":[[2,55]],"126":[[2,55]],"134":[[2,55]],"135":117,"136":[[2,55]],"137":[[2,55]],"138":[[2,55]],"142":[[2,55]],"149":[[2,55]],"153":[[2,55]]},{"1":[[2,56]],"3":[[2,56]],"23":[[2,56]],"24":[[2,56]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[2,56]],"69":[[2,56]],"70":[[2,56]],"71":[[2,56]],"72":[[2,56]],"73":[[2,56]],"74":[[2,56]],"75":[[2,56]],"76":[[1,104]],"77":[[2,56]],"78":[[2,56]],"79":[[2,56]],"80":[[2,56]],"81":[[2,56]],"82":[[2,56]],"83":[[2,56]],"84":[[2,56]],"85":[[1,113]],"86":[[2,56]],"94":[[2,56]],"96":[[2,56]],"110":[[2,56]],"112":[[2,56]],"115":[[2,56]],"122":[[2,56]],"126":[[2,56]],"134":[[2,56]],"135":117,"136":[[2,56]],"137":[[2,56]],"138":[[2,56]],"142":[[2,56]],"149":[[2,56]],"153":[[2,56]]},{"129":228,"130":[[1,229]],"131":[[1,230]]},{"1":[[2,156]],"3":[[2,156]],"23":[[2,156]],"24":[[2,156]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,156]],"96":[[1,119]],"110":[[2,156]],"112":[[2,156]],"115":[[2,156]],"122":[[2,156]],"126":[[2,156]],"134":[[2,156]],"135":117,"136":[[2,156]],"137":[[2,156]],"138":[[2,156]],"142":[[2,156]],"149":[[2,156]],"153":[[2,156]]},{"1":[[2,44]],"3":[[2,44]],"23":[[2,44]],"24":[[2,44]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,44]],"96":[[1,119]],"110":[[2,44]],"112":[[2,44]],"115":[[2,44]],"122":[[2,44]],"126":[[2,44]],"134":[[2,44]],"135":117,"136":[[2,44]],"137":[[2,44]],"138":[[1,118]],"142":[[2,44]],"149":[[2,44]],"153":[[2,44]]},{"1":[[2,160]],"3":[[2,160]],"23":[[2,160]],"24":[[2,160]],"47":[[2,160]],"48":[[2,160]],"51":[[2,160]],"52":[[2,160]],"55":[[2,160]],"56":[[2,160]],"57":[[2,160]],"58":[[2,160]],"59":[[2,160]],"60":[[2,160]],"61":[[2,160]],"62":[[2,160]],"63":[[2,160]],"64":[[2,160]],"65":[[2,160]],"66":[[2,160]],"67":[[2,160]],"68":[[2,160]],"69":[[2,160]],"70":[[2,160]],"71":[[2,160]],"72":[[2,160]],"73":[[2,160]],"74":[[2,160]],"75":[[2,160]],"76":[[2,160]],"77":[[2,160]],"78":[[2,160]],"79":[[2,160]],"80":[[2,160]],"81":[[2,160]],"82":[[2,160]],"83":[[2,160]],"84":[[2,160]],"85":[[2,160]],"86":[[2,160]],"94":[[2,160]],"96":[[2,160]],"110":[[2,160]],"112":[[2,160]],"115":[[2,160]],"122":[[2,160]],"126":[[2,160]],"134":[[2,160]],"136":[[2,160]],"137":[[2,160]],"138":[[2,160]],"142":[[2,160]],"149":[[2,160]],"153":[[2,160]]},{"86":[[1,232]],"140":231,"141":[[1,233]]},{"86":[[2,164]],"94":[[1,234]],"141":[[2,164]]},{"23":[[1,235]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"3":[[1,238]],"24":[[1,239]],"94":[[1,237]],"126":[[1,236]]},{"3":[[2,143]],"24":[[2,143]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,143]],"96":[[1,240]],"126":[[2,143]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"6":241,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"3":[[1,244]],"94":[[1,243]],"115":[[1,242]]},{"3":[[2,122]],"24":[[2,122]],"94":[[2,122]],"115":[[2,122]]},{"3":[[2,121]],"22":167,"23":[[1,164]],"24":[[2,121]],"25":165,"26":[[1,53]],"27":166,"28":[[1,74]],"29":[[1,75]],"42":163,"44":[[1,52]],"94":[[2,121]],"114":245},{"41":[[1,246]]},{"41":[[1,247]]},{"3":[[2,43]],"24":[[2,43]],"94":[[2,43]],"115":[[2,43]]},{"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"134":[[1,248]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,136]],"3":[[2,136]],"23":[[2,136]],"24":[[2,136]],"41":[[2,136]],"47":[[2,136]],"48":[[2,136]],"51":[[2,136]],"52":[[2,136]],"55":[[2,136]],"56":[[2,136]],"57":[[2,136]],"58":[[2,136]],"59":[[2,136]],"60":[[2,136]],"61":[[2,136]],"62":[[2,136]],"63":[[2,136]],"64":[[2,136]],"65":[[2,136]],"66":[[2,136]],"67":[[2,136]],"68":[[2,136]],"69":[[2,136]],"70":[[2,136]],"71":[[2,136]],"72":[[2,136]],"73":[[2,136]],"74":[[2,136]],"75":[[2,136]],"76":[[2,136]],"77":[[2,136]],"78":[[2,136]],"79":[[2,136]],"80":[[2,136]],"81":[[2,136]],"82":[[2,136]],"83":[[2,136]],"84":[[2,136]],"85":[[2,136]],"86":[[2,136]],"94":[[2,136]],"96":[[2,136]],"104":[[2,136]],"105":[[2,136]],"106":[[2,136]],"109":[[2,136]],"110":[[2,136]],"111":[[2,136]],"112":[[2,136]],"115":[[2,136]],"118":[[2,136]],"120":[[2,136]],"122":[[2,136]],"126":[[2,136]],"134":[[2,136]],"136":[[2,136]],"137":[[2,136]],"138":[[2,136]],"142":[[2,136]],"149":[[2,136]],"153":[[2,136]]},{"3":[[2,142]],"6":222,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,161]],"24":[[2,142]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"94":[[2,142]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"121":249,"122":[[2,142]],"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"5":250,"23":[[1,6]],"149":[[1,251]]},{"1":[[2,178]],"3":[[2,178]],"23":[[2,178]],"24":[[2,178]],"47":[[2,178]],"48":[[2,178]],"51":[[2,178]],"52":[[2,178]],"55":[[2,178]],"56":[[2,178]],"57":[[2,178]],"58":[[2,178]],"59":[[2,178]],"60":[[2,178]],"61":[[2,178]],"62":[[2,178]],"63":[[2,178]],"64":[[2,178]],"65":[[2,178]],"66":[[2,178]],"67":[[2,178]],"68":[[2,178]],"69":[[2,178]],"70":[[2,178]],"71":[[2,178]],"72":[[2,178]],"73":[[2,178]],"74":[[2,178]],"75":[[2,178]],"76":[[2,178]],"77":[[2,178]],"78":[[2,178]],"79":[[2,178]],"80":[[2,178]],"81":[[2,178]],"82":[[2,178]],"83":[[2,178]],"84":[[2,178]],"85":[[2,178]],"86":[[2,178]],"94":[[2,178]],"96":[[2,178]],"110":[[2,178]],"112":[[2,178]],"115":[[2,178]],"122":[[2,178]],"126":[[2,178]],"134":[[2,178]],"136":[[2,178]],"137":[[2,178]],"138":[[2,178]],"142":[[2,178]],"145":[[2,178]],"149":[[2,178]],"152":[[1,252]],"153":[[2,178]]},{"1":[[2,158]],"3":[[2,158]],"23":[[2,158]],"24":[[2,158]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,158]],"96":[[1,119]],"110":[[2,158]],"112":[[2,158]],"115":[[2,158]],"122":[[2,158]],"126":[[2,158]],"134":[[2,158]],"135":117,"136":[[1,73]],"137":[[1,253]],"138":[[1,118]],"142":[[2,158]],"149":[[1,115]],"153":[[1,116]]},{"5":254,"23":[[1,6]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,6]],"3":[[2,6]],"24":[[2,6]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,59]],"3":[[2,59]],"23":[[2,59]],"24":[[2,59]],"47":[[2,59]],"48":[[2,59]],"51":[[1,79]],"52":[[1,80]],"55":[[2,59]],"56":[[2,59]],"57":[[2,59]],"58":[[2,59]],"59":[[2,59]],"60":[[2,59]],"61":[[2,59]],"62":[[2,59]],"63":[[2,59]],"64":[[2,59]],"65":[[2,59]],"66":[[2,59]],"67":[[2,59]],"68":[[2,59]],"69":[[2,59]],"70":[[2,59]],"71":[[2,59]],"72":[[2,59]],"73":[[2,59]],"74":[[2,59]],"75":[[2,59]],"76":[[1,104]],"77":[[2,59]],"78":[[2,59]],"79":[[2,59]],"80":[[2,59]],"81":[[2,59]],"82":[[2,59]],"83":[[2,59]],"84":[[2,59]],"85":[[2,59]],"86":[[2,59]],"94":[[2,59]],"96":[[2,59]],"110":[[2,59]],"112":[[2,59]],"115":[[2,59]],"122":[[2,59]],"126":[[2,59]],"134":[[2,59]],"135":117,"136":[[2,59]],"137":[[2,59]],"138":[[2,59]],"142":[[2,59]],"149":[[2,59]],"153":[[2,59]]},{"1":[[2,60]],"3":[[2,60]],"23":[[2,60]],"24":[[2,60]],"47":[[2,60]],"48":[[2,60]],"51":[[1,79]],"52":[[1,80]],"55":[[2,60]],"56":[[2,60]],"57":[[2,60]],"58":[[2,60]],"59":[[2,60]],"60":[[2,60]],"61":[[2,60]],"62":[[2,60]],"63":[[2,60]],"64":[[2,60]],"65":[[2,60]],"66":[[2,60]],"67":[[2,60]],"68":[[2,60]],"69":[[2,60]],"70":[[2,60]],"71":[[2,60]],"72":[[2,60]],"73":[[2,60]],"74":[[2,60]],"75":[[2,60]],"76":[[1,104]],"77":[[2,60]],"78":[[2,60]],"79":[[2,60]],"80":[[2,60]],"81":[[2,60]],"82":[[2,60]],"83":[[2,60]],"84":[[2,60]],"85":[[2,60]],"86":[[2,60]],"94":[[2,60]],"96":[[2,60]],"110":[[2,60]],"112":[[2,60]],"115":[[2,60]],"122":[[2,60]],"126":[[2,60]],"134":[[2,60]],"135":117,"136":[[2,60]],"137":[[2,60]],"138":[[2,60]],"142":[[2,60]],"149":[[2,60]],"153":[[2,60]]},{"1":[[2,61]],"3":[[2,61]],"23":[[2,61]],"24":[[2,61]],"47":[[2,61]],"48":[[2,61]],"51":[[1,79]],"52":[[1,80]],"55":[[2,61]],"56":[[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]],"69":[[2,61]],"70":[[2,61]],"71":[[2,61]],"72":[[2,61]],"73":[[2,61]],"74":[[2,61]],"75":[[2,61]],"76":[[1,104]],"77":[[2,61]],"78":[[2,61]],"79":[[2,61]],"80":[[2,61]],"81":[[2,61]],"82":[[2,61]],"83":[[2,61]],"84":[[2,61]],"85":[[2,61]],"86":[[2,61]],"94":[[2,61]],"96":[[2,61]],"110":[[2,61]],"112":[[2,61]],"115":[[2,61]],"122":[[2,61]],"126":[[2,61]],"134":[[2,61]],"135":117,"136":[[2,61]],"137":[[2,61]],"138":[[2,61]],"142":[[2,61]],"149":[[2,61]],"153":[[2,61]]},{"1":[[2,62]],"3":[[2,62]],"23":[[2,62]],"24":[[2,62]],"47":[[2,62]],"48":[[2,62]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"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]],"69":[[2,62]],"70":[[2,62]],"71":[[2,62]],"72":[[2,62]],"73":[[2,62]],"74":[[2,62]],"75":[[2,62]],"76":[[1,104]],"77":[[2,62]],"78":[[2,62]],"79":[[2,62]],"80":[[2,62]],"81":[[2,62]],"82":[[2,62]],"83":[[2,62]],"84":[[2,62]],"85":[[2,62]],"86":[[2,62]],"94":[[2,62]],"96":[[2,62]],"110":[[2,62]],"112":[[2,62]],"115":[[2,62]],"122":[[2,62]],"126":[[2,62]],"134":[[2,62]],"135":117,"136":[[2,62]],"137":[[2,62]],"138":[[2,62]],"142":[[2,62]],"149":[[2,62]],"153":[[2,62]]},{"1":[[2,63]],"3":[[2,63]],"23":[[2,63]],"24":[[2,63]],"47":[[2,63]],"48":[[2,63]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"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]],"68":[[2,63]],"69":[[2,63]],"70":[[2,63]],"71":[[2,63]],"72":[[2,63]],"73":[[2,63]],"74":[[2,63]],"75":[[2,63]],"76":[[1,104]],"77":[[2,63]],"78":[[2,63]],"79":[[2,63]],"80":[[2,63]],"81":[[2,63]],"82":[[2,63]],"83":[[2,63]],"84":[[2,63]],"85":[[2,63]],"86":[[2,63]],"94":[[2,63]],"96":[[2,63]],"110":[[2,63]],"112":[[2,63]],"115":[[2,63]],"122":[[2,63]],"126":[[2,63]],"134":[[2,63]],"135":117,"136":[[2,63]],"137":[[2,63]],"138":[[2,63]],"142":[[2,63]],"149":[[2,63]],"153":[[2,63]]},{"1":[[2,64]],"3":[[2,64]],"23":[[2,64]],"24":[[2,64]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"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]],"68":[[2,64]],"69":[[2,64]],"70":[[2,64]],"71":[[2,64]],"72":[[2,64]],"73":[[2,64]],"74":[[2,64]],"75":[[2,64]],"76":[[1,104]],"77":[[2,64]],"78":[[2,64]],"79":[[2,64]],"80":[[2,64]],"81":[[2,64]],"82":[[2,64]],"83":[[2,64]],"84":[[2,64]],"85":[[2,64]],"86":[[2,64]],"94":[[2,64]],"96":[[2,64]],"110":[[2,64]],"112":[[2,64]],"115":[[2,64]],"122":[[2,64]],"126":[[2,64]],"134":[[2,64]],"135":117,"136":[[2,64]],"137":[[2,64]],"138":[[2,64]],"142":[[2,64]],"149":[[2,64]],"153":[[2,64]]},{"1":[[2,65]],"3":[[2,65]],"23":[[2,65]],"24":[[2,65]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"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]],"68":[[2,65]],"69":[[2,65]],"70":[[2,65]],"71":[[2,65]],"72":[[2,65]],"73":[[2,65]],"74":[[2,65]],"75":[[2,65]],"76":[[1,104]],"77":[[2,65]],"78":[[2,65]],"79":[[2,65]],"80":[[2,65]],"81":[[2,65]],"82":[[2,65]],"83":[[2,65]],"84":[[2,65]],"85":[[2,65]],"86":[[2,65]],"94":[[2,65]],"96":[[2,65]],"110":[[2,65]],"112":[[2,65]],"115":[[2,65]],"122":[[2,65]],"126":[[2,65]],"134":[[2,65]],"135":117,"136":[[2,65]],"137":[[2,65]],"138":[[2,65]],"142":[[2,65]],"149":[[2,65]],"153":[[2,65]]},{"1":[[2,66]],"3":[[2,66]],"23":[[2,66]],"24":[[2,66]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"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":[[2,66]],"69":[[2,66]],"70":[[2,66]],"71":[[2,66]],"72":[[2,66]],"73":[[2,66]],"74":[[2,66]],"75":[[2,66]],"76":[[1,104]],"77":[[2,66]],"78":[[2,66]],"79":[[2,66]],"80":[[2,66]],"81":[[2,66]],"82":[[2,66]],"83":[[2,66]],"84":[[2,66]],"85":[[2,66]],"86":[[2,66]],"94":[[2,66]],"96":[[2,66]],"110":[[2,66]],"112":[[2,66]],"115":[[2,66]],"122":[[2,66]],"126":[[2,66]],"134":[[2,66]],"135":117,"136":[[2,66]],"137":[[2,66]],"138":[[2,66]],"142":[[2,66]],"149":[[2,66]],"153":[[2,66]]},{"1":[[2,67]],"3":[[2,67]],"23":[[2,67]],"24":[[2,67]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[2,67]],"62":[[2,67]],"63":[[2,67]],"64":[[2,67]],"65":[[2,67]],"66":[[2,67]],"67":[[2,67]],"68":[[2,67]],"69":[[2,67]],"70":[[2,67]],"71":[[2,67]],"72":[[2,67]],"73":[[2,67]],"74":[[2,67]],"75":[[2,67]],"76":[[1,104]],"77":[[2,67]],"78":[[2,67]],"79":[[2,67]],"80":[[2,67]],"81":[[2,67]],"82":[[2,67]],"83":[[2,67]],"84":[[2,67]],"85":[[2,67]],"86":[[2,67]],"94":[[2,67]],"96":[[2,67]],"110":[[2,67]],"112":[[2,67]],"115":[[2,67]],"122":[[2,67]],"126":[[2,67]],"134":[[2,67]],"135":117,"136":[[2,67]],"137":[[2,67]],"138":[[2,67]],"142":[[2,67]],"149":[[2,67]],"153":[[2,67]]},{"1":[[2,68]],"3":[[2,68]],"23":[[2,68]],"24":[[2,68]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[2,68]],"62":[[2,68]],"63":[[2,68]],"64":[[2,68]],"65":[[2,68]],"66":[[2,68]],"67":[[2,68]],"68":[[2,68]],"69":[[2,68]],"70":[[2,68]],"71":[[2,68]],"72":[[2,68]],"73":[[2,68]],"74":[[2,68]],"75":[[2,68]],"76":[[1,104]],"77":[[2,68]],"78":[[2,68]],"79":[[2,68]],"80":[[2,68]],"81":[[2,68]],"82":[[2,68]],"83":[[2,68]],"84":[[2,68]],"85":[[2,68]],"86":[[2,68]],"94":[[2,68]],"96":[[2,68]],"110":[[2,68]],"112":[[2,68]],"115":[[2,68]],"122":[[2,68]],"126":[[2,68]],"134":[[2,68]],"135":117,"136":[[2,68]],"137":[[2,68]],"138":[[2,68]],"142":[[2,68]],"149":[[2,68]],"153":[[2,68]]},{"1":[[2,69]],"3":[[2,69]],"23":[[2,69]],"24":[[2,69]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[2,69]],"62":[[2,69]],"63":[[2,69]],"64":[[2,69]],"65":[[2,69]],"66":[[2,69]],"67":[[2,69]],"68":[[2,69]],"69":[[2,69]],"70":[[2,69]],"71":[[2,69]],"72":[[2,69]],"73":[[2,69]],"74":[[2,69]],"75":[[2,69]],"76":[[1,104]],"77":[[2,69]],"78":[[2,69]],"79":[[2,69]],"80":[[2,69]],"81":[[2,69]],"82":[[2,69]],"83":[[2,69]],"84":[[2,69]],"85":[[2,69]],"86":[[2,69]],"94":[[2,69]],"96":[[2,69]],"110":[[2,69]],"112":[[2,69]],"115":[[2,69]],"122":[[2,69]],"126":[[2,69]],"134":[[2,69]],"135":117,"136":[[2,69]],"137":[[2,69]],"138":[[2,69]],"142":[[2,69]],"149":[[2,69]],"153":[[2,69]]},{"1":[[2,70]],"3":[[2,70]],"23":[[2,70]],"24":[[2,70]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[2,70]],"65":[[2,70]],"66":[[2,70]],"67":[[2,70]],"68":[[2,70]],"69":[[2,70]],"70":[[2,70]],"71":[[2,70]],"72":[[2,70]],"73":[[2,70]],"74":[[2,70]],"75":[[2,70]],"76":[[1,104]],"77":[[2,70]],"78":[[2,70]],"79":[[2,70]],"80":[[2,70]],"81":[[2,70]],"82":[[2,70]],"83":[[2,70]],"84":[[2,70]],"85":[[2,70]],"86":[[2,70]],"94":[[2,70]],"96":[[2,70]],"110":[[2,70]],"112":[[2,70]],"115":[[2,70]],"122":[[2,70]],"126":[[2,70]],"134":[[2,70]],"135":117,"136":[[2,70]],"137":[[2,70]],"138":[[2,70]],"142":[[2,70]],"149":[[2,70]],"153":[[2,70]]},{"1":[[2,71]],"3":[[2,71]],"23":[[2,71]],"24":[[2,71]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[2,71]],"65":[[2,71]],"66":[[2,71]],"67":[[2,71]],"68":[[2,71]],"69":[[2,71]],"70":[[2,71]],"71":[[2,71]],"72":[[2,71]],"73":[[2,71]],"74":[[2,71]],"75":[[2,71]],"76":[[1,104]],"77":[[2,71]],"78":[[2,71]],"79":[[2,71]],"80":[[2,71]],"81":[[2,71]],"82":[[2,71]],"83":[[2,71]],"84":[[2,71]],"85":[[2,71]],"86":[[2,71]],"94":[[2,71]],"96":[[2,71]],"110":[[2,71]],"112":[[2,71]],"115":[[2,71]],"122":[[2,71]],"126":[[2,71]],"134":[[2,71]],"135":117,"136":[[2,71]],"137":[[2,71]],"138":[[2,71]],"142":[[2,71]],"149":[[2,71]],"153":[[2,71]]},{"1":[[2,72]],"3":[[2,72]],"23":[[2,72]],"24":[[2,72]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[2,72]],"65":[[2,72]],"66":[[2,72]],"67":[[2,72]],"68":[[2,72]],"69":[[2,72]],"70":[[2,72]],"71":[[2,72]],"72":[[2,72]],"73":[[2,72]],"74":[[2,72]],"75":[[2,72]],"76":[[1,104]],"77":[[2,72]],"78":[[2,72]],"79":[[2,72]],"80":[[2,72]],"81":[[2,72]],"82":[[2,72]],"83":[[2,72]],"84":[[2,72]],"85":[[2,72]],"86":[[2,72]],"94":[[2,72]],"96":[[2,72]],"110":[[2,72]],"112":[[2,72]],"115":[[2,72]],"122":[[2,72]],"126":[[2,72]],"134":[[2,72]],"135":117,"136":[[2,72]],"137":[[2,72]],"138":[[2,72]],"142":[[2,72]],"149":[[2,72]],"153":[[2,72]]},{"1":[[2,73]],"3":[[2,73]],"23":[[2,73]],"24":[[2,73]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[2,73]],"65":[[2,73]],"66":[[2,73]],"67":[[2,73]],"68":[[2,73]],"69":[[2,73]],"70":[[2,73]],"71":[[2,73]],"72":[[2,73]],"73":[[2,73]],"74":[[2,73]],"75":[[2,73]],"76":[[1,104]],"77":[[2,73]],"78":[[2,73]],"79":[[2,73]],"80":[[2,73]],"81":[[2,73]],"82":[[2,73]],"83":[[2,73]],"84":[[2,73]],"85":[[2,73]],"86":[[2,73]],"94":[[2,73]],"96":[[2,73]],"110":[[2,73]],"112":[[2,73]],"115":[[2,73]],"122":[[2,73]],"126":[[2,73]],"134":[[2,73]],"135":117,"136":[[2,73]],"137":[[2,73]],"138":[[2,73]],"142":[[2,73]],"149":[[2,73]],"153":[[2,73]]},{"1":[[2,74]],"3":[[2,74]],"23":[[2,74]],"24":[[2,74]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[2,74]],"73":[[2,74]],"74":[[2,74]],"75":[[2,74]],"76":[[1,104]],"77":[[2,74]],"78":[[2,74]],"79":[[2,74]],"80":[[2,74]],"81":[[2,74]],"82":[[2,74]],"83":[[2,74]],"84":[[2,74]],"85":[[1,113]],"86":[[2,74]],"94":[[2,74]],"96":[[2,74]],"110":[[2,74]],"112":[[2,74]],"115":[[2,74]],"122":[[2,74]],"126":[[2,74]],"134":[[2,74]],"135":117,"136":[[2,74]],"137":[[2,74]],"138":[[2,74]],"142":[[2,74]],"149":[[2,74]],"153":[[2,74]]},{"1":[[2,75]],"3":[[2,75]],"23":[[2,75]],"24":[[2,75]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[2,75]],"73":[[2,75]],"74":[[2,75]],"75":[[2,75]],"76":[[1,104]],"77":[[2,75]],"78":[[2,75]],"79":[[2,75]],"80":[[2,75]],"81":[[2,75]],"82":[[2,75]],"83":[[2,75]],"84":[[2,75]],"85":[[1,113]],"86":[[2,75]],"94":[[2,75]],"96":[[2,75]],"110":[[2,75]],"112":[[2,75]],"115":[[2,75]],"122":[[2,75]],"126":[[2,75]],"134":[[2,75]],"135":117,"136":[[2,75]],"137":[[2,75]],"138":[[2,75]],"142":[[2,75]],"149":[[2,75]],"153":[[2,75]]},{"1":[[2,76]],"3":[[2,76]],"23":[[2,76]],"24":[[2,76]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[2,76]],"73":[[2,76]],"74":[[2,76]],"75":[[2,76]],"76":[[1,104]],"77":[[2,76]],"78":[[2,76]],"79":[[2,76]],"80":[[2,76]],"81":[[2,76]],"82":[[2,76]],"83":[[2,76]],"84":[[2,76]],"85":[[1,113]],"86":[[2,76]],"94":[[2,76]],"96":[[2,76]],"110":[[2,76]],"112":[[2,76]],"115":[[2,76]],"122":[[2,76]],"126":[[2,76]],"134":[[2,76]],"135":117,"136":[[2,76]],"137":[[2,76]],"138":[[2,76]],"142":[[2,76]],"149":[[2,76]],"153":[[2,76]]},{"1":[[2,77]],"3":[[2,77]],"23":[[2,77]],"24":[[2,77]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[2,77]],"73":[[2,77]],"74":[[2,77]],"75":[[2,77]],"76":[[1,104]],"77":[[2,77]],"78":[[2,77]],"79":[[2,77]],"80":[[2,77]],"81":[[2,77]],"82":[[2,77]],"83":[[2,77]],"84":[[2,77]],"85":[[1,113]],"86":[[2,77]],"94":[[2,77]],"96":[[2,77]],"110":[[2,77]],"112":[[2,77]],"115":[[2,77]],"122":[[2,77]],"126":[[2,77]],"134":[[2,77]],"135":117,"136":[[2,77]],"137":[[2,77]],"138":[[2,77]],"142":[[2,77]],"149":[[2,77]],"153":[[2,77]]},{"1":[[2,78]],"3":[[2,78]],"23":[[2,78]],"24":[[2,78]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[2,78]],"73":[[2,78]],"74":[[2,78]],"75":[[2,78]],"76":[[1,104]],"77":[[2,78]],"78":[[2,78]],"79":[[2,78]],"80":[[2,78]],"81":[[2,78]],"82":[[2,78]],"83":[[2,78]],"84":[[2,78]],"85":[[1,113]],"86":[[2,78]],"94":[[2,78]],"96":[[2,78]],"110":[[2,78]],"112":[[2,78]],"115":[[2,78]],"122":[[2,78]],"126":[[2,78]],"134":[[2,78]],"135":117,"136":[[2,78]],"137":[[2,78]],"138":[[2,78]],"142":[[2,78]],"149":[[2,78]],"153":[[2,78]]},{"1":[[2,79]],"3":[[2,79]],"23":[[2,79]],"24":[[2,79]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[2,79]],"73":[[2,79]],"74":[[2,79]],"75":[[2,79]],"76":[[1,104]],"77":[[2,79]],"78":[[2,79]],"79":[[2,79]],"80":[[2,79]],"81":[[2,79]],"82":[[2,79]],"83":[[2,79]],"84":[[2,79]],"85":[[1,113]],"86":[[2,79]],"94":[[2,79]],"96":[[2,79]],"110":[[2,79]],"112":[[2,79]],"115":[[2,79]],"122":[[2,79]],"126":[[2,79]],"134":[[2,79]],"135":117,"136":[[2,79]],"137":[[2,79]],"138":[[2,79]],"142":[[2,79]],"149":[[2,79]],"153":[[2,79]]},{"1":[[2,80]],"3":[[2,80]],"23":[[2,80]],"24":[[2,80]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[2,80]],"73":[[2,80]],"74":[[2,80]],"75":[[2,80]],"76":[[1,104]],"77":[[2,80]],"78":[[2,80]],"79":[[2,80]],"80":[[2,80]],"81":[[2,80]],"82":[[2,80]],"83":[[2,80]],"84":[[2,80]],"85":[[1,113]],"86":[[2,80]],"94":[[2,80]],"96":[[2,80]],"110":[[2,80]],"112":[[2,80]],"115":[[2,80]],"122":[[2,80]],"126":[[2,80]],"134":[[2,80]],"135":117,"136":[[2,80]],"137":[[2,80]],"138":[[2,80]],"142":[[2,80]],"149":[[2,80]],"153":[[2,80]]},{"1":[[2,81]],"3":[[2,81]],"23":[[2,81]],"24":[[2,81]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[2,81]],"73":[[2,81]],"74":[[2,81]],"75":[[2,81]],"76":[[1,104]],"77":[[2,81]],"78":[[2,81]],"79":[[2,81]],"80":[[2,81]],"81":[[2,81]],"82":[[2,81]],"83":[[2,81]],"84":[[2,81]],"85":[[1,113]],"86":[[2,81]],"94":[[2,81]],"96":[[2,81]],"110":[[2,81]],"112":[[2,81]],"115":[[2,81]],"122":[[2,81]],"126":[[2,81]],"134":[[2,81]],"135":117,"136":[[2,81]],"137":[[2,81]],"138":[[2,81]],"142":[[2,81]],"149":[[2,81]],"153":[[2,81]]},{"1":[[2,82]],"3":[[2,82]],"23":[[2,82]],"24":[[2,82]],"47":[[2,82]],"48":[[2,82]],"51":[[2,82]],"52":[[2,82]],"55":[[2,82]],"56":[[2,82]],"57":[[2,82]],"58":[[2,82]],"59":[[2,82]],"60":[[2,82]],"61":[[2,82]],"62":[[2,82]],"63":[[2,82]],"64":[[2,82]],"65":[[2,82]],"66":[[2,82]],"67":[[2,82]],"68":[[2,82]],"69":[[2,82]],"70":[[2,82]],"71":[[2,82]],"72":[[2,82]],"73":[[2,82]],"74":[[2,82]],"75":[[2,82]],"76":[[2,82]],"77":[[2,82]],"78":[[2,82]],"79":[[2,82]],"80":[[2,82]],"81":[[2,82]],"82":[[2,82]],"83":[[2,82]],"84":[[2,82]],"85":[[2,82]],"86":[[2,82]],"94":[[2,82]],"96":[[2,82]],"110":[[2,82]],"112":[[2,82]],"115":[[2,82]],"122":[[2,82]],"126":[[2,82]],"134":[[2,82]],"135":117,"136":[[2,82]],"137":[[2,82]],"138":[[2,82]],"142":[[2,82]],"149":[[2,82]],"153":[[2,82]]},{"1":[[2,83]],"3":[[2,83]],"23":[[2,83]],"24":[[2,83]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[2,83]],"94":[[2,83]],"96":[[2,83]],"110":[[2,83]],"112":[[2,83]],"115":[[2,83]],"122":[[2,83]],"126":[[2,83]],"134":[[2,83]],"135":117,"136":[[2,83]],"137":[[2,83]],"138":[[2,83]],"142":[[2,83]],"149":[[2,83]],"153":[[2,83]]},{"1":[[2,84]],"3":[[2,84]],"23":[[2,84]],"24":[[2,84]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[2,84]],"94":[[2,84]],"96":[[2,84]],"110":[[2,84]],"112":[[2,84]],"115":[[2,84]],"122":[[2,84]],"126":[[2,84]],"134":[[2,84]],"135":117,"136":[[2,84]],"137":[[2,84]],"138":[[2,84]],"142":[[2,84]],"149":[[2,84]],"153":[[2,84]]},{"1":[[2,85]],"3":[[2,85]],"23":[[2,85]],"24":[[2,85]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[2,85]],"94":[[2,85]],"96":[[2,85]],"110":[[2,85]],"112":[[2,85]],"115":[[2,85]],"122":[[2,85]],"126":[[2,85]],"134":[[2,85]],"135":117,"136":[[2,85]],"137":[[2,85]],"138":[[2,85]],"142":[[2,85]],"149":[[2,85]],"153":[[2,85]]},{"1":[[2,86]],"3":[[2,86]],"23":[[2,86]],"24":[[2,86]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[2,86]],"94":[[2,86]],"96":[[2,86]],"110":[[2,86]],"112":[[2,86]],"115":[[2,86]],"122":[[2,86]],"126":[[2,86]],"134":[[2,86]],"135":117,"136":[[2,86]],"137":[[2,86]],"138":[[2,86]],"142":[[2,86]],"149":[[2,86]],"153":[[2,86]]},{"1":[[2,87]],"3":[[2,87]],"23":[[2,87]],"24":[[2,87]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[2,87]],"94":[[2,87]],"96":[[2,87]],"110":[[2,87]],"112":[[2,87]],"115":[[2,87]],"122":[[2,87]],"126":[[2,87]],"134":[[2,87]],"135":117,"136":[[2,87]],"137":[[2,87]],"138":[[2,87]],"142":[[2,87]],"149":[[2,87]],"153":[[2,87]]},{"1":[[2,88]],"3":[[2,88]],"23":[[2,88]],"24":[[2,88]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[2,88]],"94":[[2,88]],"96":[[2,88]],"110":[[2,88]],"112":[[2,88]],"115":[[2,88]],"122":[[2,88]],"126":[[2,88]],"134":[[2,88]],"135":117,"136":[[2,88]],"137":[[2,88]],"138":[[2,88]],"142":[[2,88]],"149":[[2,88]],"153":[[2,88]]},{"1":[[2,89]],"3":[[2,89]],"23":[[2,89]],"24":[[2,89]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[2,89]],"94":[[2,89]],"96":[[2,89]],"110":[[2,89]],"112":[[2,89]],"115":[[2,89]],"122":[[2,89]],"126":[[2,89]],"134":[[2,89]],"135":117,"136":[[2,89]],"137":[[2,89]],"138":[[2,89]],"142":[[2,89]],"149":[[2,89]],"153":[[2,89]]},{"1":[[2,90]],"3":[[2,90]],"23":[[2,90]],"24":[[2,90]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[2,90]],"94":[[2,90]],"96":[[2,90]],"110":[[2,90]],"112":[[2,90]],"115":[[2,90]],"122":[[2,90]],"126":[[2,90]],"134":[[2,90]],"135":117,"136":[[2,90]],"137":[[2,90]],"138":[[2,90]],"142":[[2,90]],"149":[[2,90]],"153":[[2,90]]},{"1":[[2,91]],"3":[[2,91]],"23":[[2,91]],"24":[[2,91]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[2,91]],"69":[[2,91]],"70":[[2,91]],"71":[[2,91]],"72":[[2,91]],"73":[[2,91]],"74":[[2,91]],"75":[[2,91]],"76":[[1,104]],"77":[[2,91]],"78":[[2,91]],"79":[[2,91]],"80":[[2,91]],"81":[[2,91]],"82":[[2,91]],"83":[[2,91]],"84":[[2,91]],"85":[[1,113]],"86":[[2,91]],"94":[[2,91]],"96":[[2,91]],"110":[[2,91]],"112":[[2,91]],"115":[[2,91]],"122":[[2,91]],"126":[[2,91]],"134":[[2,91]],"135":117,"136":[[2,91]],"137":[[2,91]],"138":[[2,91]],"142":[[2,91]],"149":[[2,91]],"153":[[2,91]]},{"1":[[2,92]],"3":[[2,92]],"23":[[2,92]],"24":[[2,92]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,92]],"96":[[1,119]],"110":[[2,92]],"112":[[2,92]],"115":[[2,92]],"122":[[2,92]],"126":[[2,92]],"134":[[2,92]],"135":117,"136":[[2,92]],"137":[[2,92]],"138":[[2,92]],"142":[[2,92]],"149":[[2,92]],"153":[[2,92]]},{"1":[[2,184]],"3":[[2,184]],"23":[[2,184]],"24":[[2,184]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,184]],"96":[[1,119]],"110":[[2,184]],"112":[[2,184]],"115":[[2,184]],"122":[[2,184]],"126":[[2,184]],"134":[[2,184]],"135":117,"136":[[1,73]],"137":[[2,184]],"138":[[1,118]],"142":[[2,184]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,185]],"3":[[2,185]],"23":[[2,185]],"24":[[2,185]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,185]],"96":[[1,119]],"110":[[2,185]],"112":[[2,185]],"115":[[2,185]],"122":[[2,185]],"126":[[2,185]],"134":[[2,185]],"135":117,"136":[[1,73]],"137":[[2,185]],"138":[[1,118]],"142":[[2,185]],"149":[[1,115]],"153":[[1,116]]},{"86":[[1,232]],"140":255,"141":[[1,233]]},{"96":[[1,256]]},{"1":[[2,24]],"3":[[2,24]],"23":[[2,24]],"24":[[2,24]],"44":[[2,24]],"47":[[2,24]],"48":[[2,24]],"51":[[2,24]],"52":[[2,24]],"55":[[2,24]],"56":[[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]],"69":[[2,24]],"70":[[2,24]],"71":[[2,24]],"72":[[2,24]],"73":[[2,24]],"74":[[2,24]],"75":[[2,24]],"76":[[2,24]],"77":[[2,24]],"78":[[2,24]],"79":[[2,24]],"80":[[2,24]],"81":[[2,24]],"82":[[2,24]],"83":[[2,24]],"84":[[2,24]],"85":[[2,24]],"86":[[2,24]],"94":[[2,24]],"96":[[2,24]],"110":[[2,24]],"112":[[2,24]],"115":[[2,24]],"122":[[2,24]],"126":[[2,24]],"130":[[2,24]],"131":[[2,24]],"134":[[2,24]],"136":[[2,24]],"137":[[2,24]],"138":[[2,24]],"142":[[2,24]],"145":[[2,24]],"147":[[2,24]],"149":[[2,24]],"152":[[2,24]],"153":[[2,24]]},{"1":[[2,40]],"3":[[2,40]],"23":[[2,40]],"24":[[2,40]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,40]],"96":[[1,119]],"110":[[2,40]],"112":[[2,40]],"115":[[2,40]],"122":[[2,40]],"126":[[2,40]],"134":[[2,40]],"135":117,"136":[[2,40]],"137":[[2,40]],"138":[[1,118]],"142":[[2,40]],"149":[[2,40]],"153":[[2,40]]},{"1":[[2,130]],"3":[[2,130]],"23":[[2,130]],"24":[[2,130]],"47":[[2,130]],"48":[[2,130]],"51":[[2,130]],"52":[[2,130]],"55":[[2,130]],"56":[[2,130]],"57":[[2,130]],"58":[[2,130]],"59":[[2,130]],"60":[[2,130]],"61":[[2,130]],"62":[[2,130]],"63":[[2,130]],"64":[[2,130]],"65":[[2,130]],"66":[[2,130]],"67":[[2,130]],"68":[[2,130]],"69":[[2,130]],"70":[[2,130]],"71":[[2,130]],"72":[[2,130]],"73":[[2,130]],"74":[[2,130]],"75":[[2,130]],"76":[[2,130]],"77":[[2,130]],"78":[[2,130]],"79":[[2,130]],"80":[[2,130]],"81":[[2,130]],"82":[[2,130]],"83":[[2,130]],"84":[[2,130]],"85":[[2,130]],"86":[[2,130]],"94":[[2,130]],"96":[[2,130]],"102":122,"104":[[1,126]],"105":[[1,127]],"106":[[1,128]],"107":129,"108":130,"109":[[1,132]],"110":[[2,130]],"111":[[1,133]],"112":[[2,130]],"115":[[2,130]],"119":125,"120":[[1,131]],"122":[[2,130]],"126":[[2,130]],"134":[[2,130]],"136":[[2,130]],"137":[[2,130]],"138":[[2,130]],"142":[[2,130]],"149":[[2,130]],"153":[[2,130]]},{"102":134,"104":[[1,126]],"105":[[1,127]],"106":[[1,128]],"107":129,"108":130,"109":[[1,132]],"111":[[1,133]],"119":135,"120":[[1,131]]},{"1":[[2,113]],"3":[[2,113]],"23":[[2,113]],"24":[[2,113]],"41":[[2,113]],"47":[[2,113]],"48":[[2,113]],"51":[[2,113]],"52":[[2,113]],"55":[[2,113]],"56":[[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]],"68":[[2,113]],"69":[[2,113]],"70":[[2,113]],"71":[[2,113]],"72":[[2,113]],"73":[[2,113]],"74":[[2,113]],"75":[[2,113]],"76":[[2,113]],"77":[[2,113]],"78":[[2,113]],"79":[[2,113]],"80":[[2,113]],"81":[[2,113]],"82":[[2,113]],"83":[[2,113]],"84":[[2,113]],"85":[[2,113]],"86":[[2,113]],"94":[[2,113]],"96":[[2,113]],"104":[[2,113]],"105":[[2,113]],"106":[[2,113]],"109":[[2,113]],"110":[[2,113]],"111":[[2,113]],"112":[[2,113]],"115":[[2,113]],"118":[[2,113]],"120":[[2,113]],"122":[[2,113]],"126":[[2,113]],"134":[[2,113]],"136":[[2,113]],"137":[[2,113]],"138":[[2,113]],"142":[[2,113]],"149":[[2,113]],"153":[[2,113]]},{"1":[[2,114]],"3":[[2,114]],"23":[[2,114]],"24":[[2,114]],"41":[[2,114]],"47":[[2,114]],"48":[[2,114]],"51":[[2,114]],"52":[[2,114]],"55":[[2,114]],"56":[[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]],"68":[[2,114]],"69":[[2,114]],"70":[[2,114]],"71":[[2,114]],"72":[[2,114]],"73":[[2,114]],"74":[[2,114]],"75":[[2,114]],"76":[[2,114]],"77":[[2,114]],"78":[[2,114]],"79":[[2,114]],"80":[[2,114]],"81":[[2,114]],"82":[[2,114]],"83":[[2,114]],"84":[[2,114]],"85":[[2,114]],"86":[[2,114]],"94":[[2,114]],"96":[[2,114]],"104":[[2,114]],"105":[[2,114]],"106":[[2,114]],"109":[[2,114]],"110":[[2,114]],"111":[[2,114]],"112":[[2,114]],"115":[[2,114]],"118":[[2,114]],"120":[[2,114]],"122":[[2,114]],"126":[[2,114]],"134":[[2,114]],"136":[[2,114]],"137":[[2,114]],"138":[[2,114]],"142":[[2,114]],"149":[[2,114]],"153":[[2,114]]},{"1":[[2,115]],"3":[[2,115]],"23":[[2,115]],"24":[[2,115]],"41":[[2,115]],"47":[[2,115]],"48":[[2,115]],"51":[[2,115]],"52":[[2,115]],"55":[[2,115]],"56":[[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]],"68":[[2,115]],"69":[[2,115]],"70":[[2,115]],"71":[[2,115]],"72":[[2,115]],"73":[[2,115]],"74":[[2,115]],"75":[[2,115]],"76":[[2,115]],"77":[[2,115]],"78":[[2,115]],"79":[[2,115]],"80":[[2,115]],"81":[[2,115]],"82":[[2,115]],"83":[[2,115]],"84":[[2,115]],"85":[[2,115]],"86":[[2,115]],"94":[[2,115]],"96":[[2,115]],"104":[[2,115]],"105":[[2,115]],"106":[[2,115]],"109":[[2,115]],"110":[[2,115]],"111":[[2,115]],"112":[[2,115]],"115":[[2,115]],"118":[[2,115]],"120":[[2,115]],"122":[[2,115]],"126":[[2,115]],"134":[[2,115]],"136":[[2,115]],"137":[[2,115]],"138":[[2,115]],"142":[[2,115]],"149":[[2,115]],"153":[[2,115]]},{"3":[[1,238]],"24":[[1,239]],"94":[[1,237]],"122":[[1,257]]},{"3":[[2,143]],"24":[[2,143]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,143]],"96":[[1,119]],"122":[[2,143]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,259]],"110":[[1,258]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"112":[[1,260]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"90":261,"91":[[1,70]],"92":[[1,71]]},{"93":262,"95":[[1,140]]},{"96":[[1,263]]},{"1":[[2,152]],"3":[[2,152]],"23":[[2,152]],"24":[[2,152]],"47":[[2,152]],"48":[[2,152]],"51":[[2,152]],"52":[[2,152]],"55":[[2,152]],"56":[[2,152]],"57":[[2,152]],"58":[[2,152]],"59":[[2,152]],"60":[[2,152]],"61":[[2,152]],"62":[[2,152]],"63":[[2,152]],"64":[[2,152]],"65":[[2,152]],"66":[[2,152]],"67":[[2,152]],"68":[[2,152]],"69":[[2,152]],"70":[[2,152]],"71":[[2,152]],"72":[[2,152]],"73":[[2,152]],"74":[[2,152]],"75":[[2,152]],"76":[[2,152]],"77":[[2,152]],"78":[[2,152]],"79":[[2,152]],"80":[[2,152]],"81":[[2,152]],"82":[[2,152]],"83":[[2,152]],"84":[[2,152]],"85":[[2,152]],"86":[[2,152]],"94":[[2,152]],"96":[[2,152]],"110":[[2,152]],"112":[[2,152]],"115":[[2,152]],"122":[[2,152]],"126":[[2,152]],"130":[[1,264]],"134":[[2,152]],"136":[[2,152]],"137":[[2,152]],"138":[[2,152]],"142":[[2,152]],"149":[[2,152]],"153":[[2,152]]},{"5":265,"23":[[1,6]]},{"25":266,"26":[[1,53]]},{"5":267,"23":[[1,6]],"137":[[1,268]],"142":[[1,269]]},{"6":270,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":271,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"25":272,"26":[[1,53]]},{"22":276,"44":[[1,52]],"144":273,"146":274,"147":[[1,275]]},{"1":[[2,141]],"3":[[2,141]],"23":[[2,141]],"24":[[2,141]],"41":[[2,141]],"47":[[2,141]],"48":[[2,141]],"51":[[2,141]],"52":[[2,141]],"55":[[2,141]],"56":[[2,141]],"57":[[2,141]],"58":[[2,141]],"59":[[2,141]],"60":[[2,141]],"61":[[2,141]],"62":[[2,141]],"63":[[2,141]],"64":[[2,141]],"65":[[2,141]],"66":[[2,141]],"67":[[2,141]],"68":[[2,141]],"69":[[2,141]],"70":[[2,141]],"71":[[2,141]],"72":[[2,141]],"73":[[2,141]],"74":[[2,141]],"75":[[2,141]],"76":[[2,141]],"77":[[2,141]],"78":[[2,141]],"79":[[2,141]],"80":[[2,141]],"81":[[2,141]],"82":[[2,141]],"83":[[2,141]],"84":[[2,141]],"85":[[2,141]],"86":[[2,141]],"94":[[2,141]],"96":[[2,141]],"104":[[2,141]],"105":[[2,141]],"106":[[2,141]],"109":[[2,141]],"110":[[2,141]],"111":[[2,141]],"112":[[2,141]],"115":[[2,141]],"118":[[2,141]],"120":[[2,141]],"122":[[2,141]],"126":[[2,141]],"134":[[2,141]],"136":[[2,141]],"137":[[2,141]],"138":[[2,141]],"142":[[2,141]],"149":[[2,141]],"153":[[2,141]]},{"3":[[1,278]],"6":277,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,279]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":280,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"3":[[2,149]],"24":[[2,149]],"94":[[2,149]],"122":[[2,149]],"126":[[2,149]]},{"96":[[1,281]]},{"3":[[2,144]],"24":[[2,144]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,144]],"96":[[1,119]],"122":[[2,144]],"126":[[2,144]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,120]],"3":[[2,120]],"23":[[2,120]],"24":[[2,120]],"41":[[2,120]],"47":[[2,120]],"48":[[2,120]],"51":[[2,120]],"52":[[2,120]],"55":[[2,120]],"56":[[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]],"68":[[2,120]],"69":[[2,120]],"70":[[2,120]],"71":[[2,120]],"72":[[2,120]],"73":[[2,120]],"74":[[2,120]],"75":[[2,120]],"76":[[2,120]],"77":[[2,120]],"78":[[2,120]],"79":[[2,120]],"80":[[2,120]],"81":[[2,120]],"82":[[2,120]],"83":[[2,120]],"84":[[2,120]],"85":[[2,120]],"86":[[2,120]],"94":[[2,120]],"96":[[2,120]],"104":[[2,120]],"105":[[2,120]],"106":[[2,120]],"109":[[2,120]],"110":[[2,120]],"111":[[2,120]],"112":[[2,120]],"115":[[2,120]],"118":[[2,120]],"120":[[2,120]],"122":[[2,120]],"126":[[2,120]],"134":[[2,120]],"136":[[2,120]],"137":[[2,120]],"138":[[2,120]],"142":[[2,120]],"149":[[2,120]],"153":[[2,120]]},{"3":[[1,283]],"22":167,"25":165,"26":[[1,53]],"27":166,"28":[[1,74]],"29":[[1,75]],"42":282,"44":[[1,52]]},{"22":167,"25":165,"26":[[1,53]],"27":166,"28":[[1,74]],"29":[[1,75]],"42":284,"44":[[1,52]]},{"3":[[1,244]],"24":[[1,285]],"94":[[1,243]]},{"6":286,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":287,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,157]],"3":[[2,157]],"23":[[2,157]],"24":[[2,157]],"41":[[2,157]],"47":[[2,157]],"48":[[2,157]],"51":[[2,157]],"52":[[2,157]],"55":[[2,157]],"56":[[2,157]],"57":[[2,157]],"58":[[2,157]],"59":[[2,157]],"60":[[2,157]],"61":[[2,157]],"62":[[2,157]],"63":[[2,157]],"64":[[2,157]],"65":[[2,157]],"66":[[2,157]],"67":[[2,157]],"68":[[2,157]],"69":[[2,157]],"70":[[2,157]],"71":[[2,157]],"72":[[2,157]],"73":[[2,157]],"74":[[2,157]],"75":[[2,157]],"76":[[2,157]],"77":[[2,157]],"78":[[2,157]],"79":[[2,157]],"80":[[2,157]],"81":[[2,157]],"82":[[2,157]],"83":[[2,157]],"84":[[2,157]],"85":[[2,157]],"86":[[2,157]],"94":[[2,157]],"96":[[2,157]],"104":[[2,157]],"105":[[2,157]],"106":[[2,157]],"109":[[2,157]],"110":[[2,157]],"111":[[2,157]],"112":[[2,157]],"115":[[2,157]],"118":[[2,157]],"120":[[2,157]],"122":[[2,157]],"126":[[2,157]],"134":[[2,157]],"136":[[2,157]],"137":[[2,157]],"138":[[2,157]],"142":[[2,157]],"149":[[2,157]],"153":[[2,157]]},{"3":[[1,238]],"24":[[1,239]],"94":[[1,237]],"122":[[1,288]]},{"1":[[2,180]],"3":[[2,180]],"23":[[2,180]],"24":[[2,180]],"47":[[2,180]],"48":[[2,180]],"51":[[2,180]],"52":[[2,180]],"55":[[2,180]],"56":[[2,180]],"57":[[2,180]],"58":[[2,180]],"59":[[2,180]],"60":[[2,180]],"61":[[2,180]],"62":[[2,180]],"63":[[2,180]],"64":[[2,180]],"65":[[2,180]],"66":[[2,180]],"67":[[2,180]],"68":[[2,180]],"69":[[2,180]],"70":[[2,180]],"71":[[2,180]],"72":[[2,180]],"73":[[2,180]],"74":[[2,180]],"75":[[2,180]],"76":[[2,180]],"77":[[2,180]],"78":[[2,180]],"79":[[2,180]],"80":[[2,180]],"81":[[2,180]],"82":[[2,180]],"83":[[2,180]],"84":[[2,180]],"85":[[2,180]],"86":[[2,180]],"94":[[2,180]],"96":[[2,180]],"110":[[2,180]],"112":[[2,180]],"115":[[2,180]],"122":[[2,180]],"126":[[2,180]],"134":[[2,180]],"136":[[2,180]],"137":[[2,180]],"138":[[2,180]],"142":[[2,180]],"149":[[2,180]],"153":[[2,180]]},{"6":289,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,182]],"3":[[2,182]],"23":[[2,182]],"24":[[2,182]],"47":[[2,182]],"48":[[2,182]],"51":[[2,182]],"52":[[2,182]],"55":[[2,182]],"56":[[2,182]],"57":[[2,182]],"58":[[2,182]],"59":[[2,182]],"60":[[2,182]],"61":[[2,182]],"62":[[2,182]],"63":[[2,182]],"64":[[2,182]],"65":[[2,182]],"66":[[2,182]],"67":[[2,182]],"68":[[2,182]],"69":[[2,182]],"70":[[2,182]],"71":[[2,182]],"72":[[2,182]],"73":[[2,182]],"74":[[2,182]],"75":[[2,182]],"76":[[2,182]],"77":[[2,182]],"78":[[2,182]],"79":[[2,182]],"80":[[2,182]],"81":[[2,182]],"82":[[2,182]],"83":[[2,182]],"84":[[2,182]],"85":[[2,182]],"86":[[2,182]],"94":[[2,182]],"96":[[2,182]],"110":[[2,182]],"112":[[2,182]],"115":[[2,182]],"122":[[2,182]],"126":[[2,182]],"134":[[2,182]],"136":[[2,182]],"137":[[2,182]],"138":[[2,182]],"142":[[2,182]],"145":[[2,182]],"149":[[2,182]],"152":[[2,182]],"153":[[2,182]]},{"6":290,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,177]],"3":[[2,177]],"23":[[2,177]],"24":[[2,177]],"47":[[2,177]],"48":[[2,177]],"51":[[2,177]],"52":[[2,177]],"55":[[2,177]],"56":[[2,177]],"57":[[2,177]],"58":[[2,177]],"59":[[2,177]],"60":[[2,177]],"61":[[2,177]],"62":[[2,177]],"63":[[2,177]],"64":[[2,177]],"65":[[2,177]],"66":[[2,177]],"67":[[2,177]],"68":[[2,177]],"69":[[2,177]],"70":[[2,177]],"71":[[2,177]],"72":[[2,177]],"73":[[2,177]],"74":[[2,177]],"75":[[2,177]],"76":[[2,177]],"77":[[2,177]],"78":[[2,177]],"79":[[2,177]],"80":[[2,177]],"81":[[2,177]],"82":[[2,177]],"83":[[2,177]],"84":[[2,177]],"85":[[2,177]],"86":[[2,177]],"94":[[2,177]],"96":[[2,177]],"110":[[2,177]],"112":[[2,177]],"115":[[2,177]],"122":[[2,177]],"126":[[2,177]],"134":[[2,177]],"136":[[2,177]],"137":[[2,177]],"138":[[2,177]],"142":[[2,177]],"145":[[2,177]],"149":[[2,177]],"153":[[2,177]]},{"1":[[2,162]],"3":[[2,162]],"23":[[2,162]],"24":[[2,162]],"47":[[2,162]],"48":[[2,162]],"51":[[2,162]],"52":[[2,162]],"55":[[2,162]],"56":[[2,162]],"57":[[2,162]],"58":[[2,162]],"59":[[2,162]],"60":[[2,162]],"61":[[2,162]],"62":[[2,162]],"63":[[2,162]],"64":[[2,162]],"65":[[2,162]],"66":[[2,162]],"67":[[2,162]],"68":[[2,162]],"69":[[2,162]],"70":[[2,162]],"71":[[2,162]],"72":[[2,162]],"73":[[2,162]],"74":[[2,162]],"75":[[2,162]],"76":[[2,162]],"77":[[2,162]],"78":[[2,162]],"79":[[2,162]],"80":[[2,162]],"81":[[2,162]],"82":[[2,162]],"83":[[2,162]],"84":[[2,162]],"85":[[2,162]],"86":[[2,162]],"94":[[2,162]],"96":[[2,162]],"110":[[2,162]],"112":[[2,162]],"115":[[2,162]],"122":[[2,162]],"126":[[2,162]],"134":[[2,162]],"136":[[2,162]],"137":[[1,268]],"138":[[2,162]],"142":[[1,269]],"149":[[2,162]],"153":[[2,162]]},{"1":[[2,103]],"3":[[2,103]],"23":[[2,103]],"24":[[2,103]],"47":[[2,103]],"48":[[2,103]],"51":[[2,103]],"52":[[2,103]],"55":[[2,103]],"56":[[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]],"68":[[2,103]],"69":[[2,103]],"70":[[2,103]],"71":[[2,103]],"72":[[2,103]],"73":[[2,103]],"74":[[2,103]],"75":[[2,103]],"76":[[2,103]],"77":[[2,103]],"78":[[2,103]],"79":[[2,103]],"80":[[2,103]],"81":[[2,103]],"82":[[2,103]],"83":[[2,103]],"84":[[2,103]],"85":[[2,103]],"86":[[2,103]],"94":[[2,103]],"96":[[2,103]],"110":[[2,103]],"112":[[2,103]],"115":[[2,103]],"122":[[2,103]],"126":[[2,103]],"134":[[2,103]],"136":[[2,103]],"137":[[2,103]],"138":[[2,103]],"142":[[2,103]],"149":[[2,103]],"153":[[2,103]]},{"1":[[2,133]],"3":[[2,133]],"23":[[2,133]],"24":[[2,133]],"47":[[2,133]],"48":[[2,133]],"51":[[2,133]],"52":[[2,133]],"55":[[2,133]],"56":[[2,133]],"57":[[2,133]],"58":[[2,133]],"59":[[2,133]],"60":[[2,133]],"61":[[2,133]],"62":[[2,133]],"63":[[2,133]],"64":[[2,133]],"65":[[2,133]],"66":[[2,133]],"67":[[2,133]],"68":[[2,133]],"69":[[2,133]],"70":[[2,133]],"71":[[2,133]],"72":[[2,133]],"73":[[2,133]],"74":[[2,133]],"75":[[2,133]],"76":[[2,133]],"77":[[2,133]],"78":[[2,133]],"79":[[2,133]],"80":[[2,133]],"81":[[2,133]],"82":[[2,133]],"83":[[2,133]],"84":[[2,133]],"85":[[2,133]],"86":[[2,133]],"94":[[2,133]],"96":[[2,133]],"104":[[2,133]],"105":[[2,133]],"106":[[2,133]],"109":[[2,133]],"110":[[2,133]],"111":[[2,133]],"112":[[2,133]],"115":[[2,133]],"120":[[2,133]],"122":[[2,133]],"126":[[2,133]],"134":[[2,133]],"136":[[2,133]],"137":[[2,133]],"138":[[2,133]],"142":[[2,133]],"149":[[2,133]],"153":[[2,133]]},{"1":[[2,118]],"3":[[2,118]],"23":[[2,118]],"24":[[2,118]],"41":[[2,118]],"47":[[2,118]],"48":[[2,118]],"51":[[2,118]],"52":[[2,118]],"55":[[2,118]],"56":[[2,118]],"57":[[2,118]],"58":[[2,118]],"59":[[2,118]],"60":[[2,118]],"61":[[2,118]],"62":[[2,118]],"63":[[2,118]],"64":[[2,118]],"65":[[2,118]],"66":[[2,118]],"67":[[2,118]],"68":[[2,118]],"69":[[2,118]],"70":[[2,118]],"71":[[2,118]],"72":[[2,118]],"73":[[2,118]],"74":[[2,118]],"75":[[2,118]],"76":[[2,118]],"77":[[2,118]],"78":[[2,118]],"79":[[2,118]],"80":[[2,118]],"81":[[2,118]],"82":[[2,118]],"83":[[2,118]],"84":[[2,118]],"85":[[2,118]],"86":[[2,118]],"94":[[2,118]],"96":[[2,118]],"104":[[2,118]],"105":[[2,118]],"106":[[2,118]],"109":[[2,118]],"110":[[2,118]],"111":[[2,118]],"112":[[2,118]],"115":[[2,118]],"118":[[2,118]],"120":[[2,118]],"122":[[2,118]],"126":[[2,118]],"134":[[2,118]],"136":[[2,118]],"137":[[2,118]],"138":[[2,118]],"142":[[2,118]],"149":[[2,118]],"153":[[2,118]]},{"96":[[1,291]]},{"1":[[2,119]],"3":[[2,119]],"23":[[2,119]],"24":[[2,119]],"41":[[2,119]],"47":[[2,119]],"48":[[2,119]],"51":[[2,119]],"52":[[2,119]],"55":[[2,119]],"56":[[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]],"68":[[2,119]],"69":[[2,119]],"70":[[2,119]],"71":[[2,119]],"72":[[2,119]],"73":[[2,119]],"74":[[2,119]],"75":[[2,119]],"76":[[2,119]],"77":[[2,119]],"78":[[2,119]],"79":[[2,119]],"80":[[2,119]],"81":[[2,119]],"82":[[2,119]],"83":[[2,119]],"84":[[2,119]],"85":[[2,119]],"86":[[2,119]],"94":[[2,119]],"96":[[2,119]],"104":[[2,119]],"105":[[2,119]],"106":[[2,119]],"109":[[2,119]],"110":[[2,119]],"111":[[2,119]],"112":[[2,119]],"115":[[2,119]],"118":[[2,119]],"120":[[2,119]],"122":[[2,119]],"126":[[2,119]],"134":[[2,119]],"136":[[2,119]],"137":[[2,119]],"138":[[2,119]],"142":[[2,119]],"149":[[2,119]],"153":[[2,119]]},{"5":292,"23":[[1,6]]},{"89":[[2,100]],"94":[[2,100]],"96":[[1,227]]},{"96":[[1,293]]},{"5":294,"23":[[1,6]]},{"1":[[2,153]],"3":[[2,153]],"23":[[2,153]],"24":[[2,153]],"47":[[2,153]],"48":[[2,153]],"51":[[2,153]],"52":[[2,153]],"55":[[2,153]],"56":[[2,153]],"57":[[2,153]],"58":[[2,153]],"59":[[2,153]],"60":[[2,153]],"61":[[2,153]],"62":[[2,153]],"63":[[2,153]],"64":[[2,153]],"65":[[2,153]],"66":[[2,153]],"67":[[2,153]],"68":[[2,153]],"69":[[2,153]],"70":[[2,153]],"71":[[2,153]],"72":[[2,153]],"73":[[2,153]],"74":[[2,153]],"75":[[2,153]],"76":[[2,153]],"77":[[2,153]],"78":[[2,153]],"79":[[2,153]],"80":[[2,153]],"81":[[2,153]],"82":[[2,153]],"83":[[2,153]],"84":[[2,153]],"85":[[2,153]],"86":[[2,153]],"94":[[2,153]],"96":[[2,153]],"110":[[2,153]],"112":[[2,153]],"115":[[2,153]],"122":[[2,153]],"126":[[2,153]],"134":[[2,153]],"136":[[2,153]],"137":[[2,153]],"138":[[2,153]],"142":[[2,153]],"149":[[2,153]],"153":[[2,153]]},{"5":295,"23":[[1,6]]},{"1":[[2,163]],"3":[[2,163]],"23":[[2,163]],"24":[[2,163]],"47":[[2,163]],"48":[[2,163]],"51":[[2,163]],"52":[[2,163]],"55":[[2,163]],"56":[[2,163]],"57":[[2,163]],"58":[[2,163]],"59":[[2,163]],"60":[[2,163]],"61":[[2,163]],"62":[[2,163]],"63":[[2,163]],"64":[[2,163]],"65":[[2,163]],"66":[[2,163]],"67":[[2,163]],"68":[[2,163]],"69":[[2,163]],"70":[[2,163]],"71":[[2,163]],"72":[[2,163]],"73":[[2,163]],"74":[[2,163]],"75":[[2,163]],"76":[[2,163]],"77":[[2,163]],"78":[[2,163]],"79":[[2,163]],"80":[[2,163]],"81":[[2,163]],"82":[[2,163]],"83":[[2,163]],"84":[[2,163]],"85":[[2,163]],"86":[[2,163]],"94":[[2,163]],"96":[[2,163]],"110":[[2,163]],"112":[[2,163]],"115":[[2,163]],"122":[[2,163]],"126":[[2,163]],"134":[[2,163]],"136":[[2,163]],"137":[[2,163]],"138":[[2,163]],"142":[[2,163]],"149":[[2,163]],"153":[[2,163]]},{"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":297,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,166]],"3":[[2,166]],"23":[[2,166]],"24":[[2,166]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,166]],"96":[[1,119]],"110":[[2,166]],"112":[[2,166]],"115":[[2,166]],"122":[[2,166]],"126":[[2,166]],"134":[[2,166]],"135":117,"136":[[2,166]],"137":[[2,166]],"138":[[2,166]],"142":[[2,166]],"149":[[2,166]],"153":[[2,166]]},{"1":[[2,167]],"3":[[2,167]],"23":[[2,167]],"24":[[2,167]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,167]],"96":[[1,119]],"110":[[2,167]],"112":[[2,167]],"115":[[2,167]],"122":[[2,167]],"126":[[2,167]],"134":[[2,167]],"135":117,"136":[[2,167]],"137":[[2,167]],"138":[[2,167]],"142":[[2,167]],"149":[[2,167]],"153":[[2,167]]},{"86":[[2,165]],"141":[[2,165]]},{"22":276,"24":[[1,298]],"44":[[1,52]],"145":[[1,299]],"146":300,"147":[[1,275]]},{"24":[[2,172]],"44":[[2,172]],"145":[[2,172]],"147":[[2,172]]},{"6":302,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"127":301,"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"3":[[1,303]]},{"3":[[2,145]],"24":[[2,145]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,145]],"96":[[1,119]],"122":[[2,145]],"126":[[2,145]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"6":304,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"6":305,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"3":[[2,146]],"24":[[2,146]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,146]],"96":[[1,119]],"122":[[2,146]],"126":[[2,146]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"6":306,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"96":[[1,307]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"3":[[2,123]],"24":[[2,123]],"94":[[2,123]],"115":[[2,123]]},{"22":167,"25":165,"26":[[1,53]],"27":166,"28":[[1,74]],"29":[[1,75]],"42":308,"44":[[1,52]]},{"3":[[2,124]],"24":[[2,124]],"94":[[2,124]],"115":[[2,124]]},{"3":[[2,126]],"24":[[2,126]],"94":[[2,126]],"115":[[2,126]]},{"3":[[2,41]],"24":[[2,41]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,41]],"96":[[1,119]],"115":[[2,41]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"3":[[2,42]],"24":[[2,42]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,42]],"96":[[1,119]],"115":[[2,42]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,134]],"3":[[2,134]],"23":[[2,134]],"24":[[2,134]],"47":[[2,134]],"48":[[2,134]],"51":[[2,134]],"52":[[2,134]],"55":[[2,134]],"56":[[2,134]],"57":[[2,134]],"58":[[2,134]],"59":[[2,134]],"60":[[2,134]],"61":[[2,134]],"62":[[2,134]],"63":[[2,134]],"64":[[2,134]],"65":[[2,134]],"66":[[2,134]],"67":[[2,134]],"68":[[2,134]],"69":[[2,134]],"70":[[2,134]],"71":[[2,134]],"72":[[2,134]],"73":[[2,134]],"74":[[2,134]],"75":[[2,134]],"76":[[2,134]],"77":[[2,134]],"78":[[2,134]],"79":[[2,134]],"80":[[2,134]],"81":[[2,134]],"82":[[2,134]],"83":[[2,134]],"84":[[2,134]],"85":[[2,134]],"86":[[2,134]],"94":[[2,134]],"96":[[2,134]],"110":[[2,134]],"112":[[2,134]],"115":[[2,134]],"122":[[2,134]],"126":[[2,134]],"134":[[2,134]],"136":[[2,134]],"137":[[2,134]],"138":[[2,134]],"142":[[2,134]],"149":[[2,134]],"153":[[2,134]]},{"5":309,"23":[[1,6]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,159]],"3":[[2,159]],"23":[[2,159]],"24":[[2,159]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,159]],"96":[[1,119]],"110":[[2,159]],"112":[[2,159]],"115":[[2,159]],"122":[[2,159]],"126":[[2,159]],"134":[[2,159]],"135":117,"136":[[1,73]],"137":[[2,159]],"138":[[1,118]],"142":[[2,159]],"149":[[1,115]],"153":[[1,116]]},{"6":310,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"96":[[1,311]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"1":[[2,94]],"3":[[2,94]],"23":[[2,94]],"24":[[2,94]],"47":[[2,94]],"48":[[2,94]],"51":[[2,94]],"52":[[2,94]],"55":[[2,94]],"56":[[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]],"68":[[2,94]],"69":[[2,94]],"70":[[2,94]],"71":[[2,94]],"72":[[2,94]],"73":[[2,94]],"74":[[2,94]],"75":[[2,94]],"76":[[2,94]],"77":[[2,94]],"78":[[2,94]],"79":[[2,94]],"80":[[2,94]],"81":[[2,94]],"82":[[2,94]],"83":[[2,94]],"84":[[2,94]],"85":[[2,94]],"86":[[2,94]],"94":[[2,94]],"96":[[2,94]],"110":[[2,94]],"112":[[2,94]],"115":[[2,94]],"122":[[2,94]],"126":[[2,94]],"134":[[2,94]],"136":[[2,94]],"137":[[2,94]],"138":[[2,94]],"142":[[2,94]],"149":[[2,94]],"153":[[2,94]]},{"89":[[2,102]],"94":[[2,102]],"96":[[2,102]]},{"1":[[2,154]],"3":[[2,154]],"23":[[2,154]],"24":[[2,154]],"47":[[2,154]],"48":[[2,154]],"51":[[2,154]],"52":[[2,154]],"55":[[2,154]],"56":[[2,154]],"57":[[2,154]],"58":[[2,154]],"59":[[2,154]],"60":[[2,154]],"61":[[2,154]],"62":[[2,154]],"63":[[2,154]],"64":[[2,154]],"65":[[2,154]],"66":[[2,154]],"67":[[2,154]],"68":[[2,154]],"69":[[2,154]],"70":[[2,154]],"71":[[2,154]],"72":[[2,154]],"73":[[2,154]],"74":[[2,154]],"75":[[2,154]],"76":[[2,154]],"77":[[2,154]],"78":[[2,154]],"79":[[2,154]],"80":[[2,154]],"81":[[2,154]],"82":[[2,154]],"83":[[2,154]],"84":[[2,154]],"85":[[2,154]],"86":[[2,154]],"94":[[2,154]],"96":[[2,154]],"110":[[2,154]],"112":[[2,154]],"115":[[2,154]],"122":[[2,154]],"126":[[2,154]],"134":[[2,154]],"136":[[2,154]],"137":[[2,154]],"138":[[2,154]],"142":[[2,154]],"149":[[2,154]],"153":[[2,154]]},{"1":[[2,155]],"3":[[2,155]],"23":[[2,155]],"24":[[2,155]],"47":[[2,155]],"48":[[2,155]],"51":[[2,155]],"52":[[2,155]],"55":[[2,155]],"56":[[2,155]],"57":[[2,155]],"58":[[2,155]],"59":[[2,155]],"60":[[2,155]],"61":[[2,155]],"62":[[2,155]],"63":[[2,155]],"64":[[2,155]],"65":[[2,155]],"66":[[2,155]],"67":[[2,155]],"68":[[2,155]],"69":[[2,155]],"70":[[2,155]],"71":[[2,155]],"72":[[2,155]],"73":[[2,155]],"74":[[2,155]],"75":[[2,155]],"76":[[2,155]],"77":[[2,155]],"78":[[2,155]],"79":[[2,155]],"80":[[2,155]],"81":[[2,155]],"82":[[2,155]],"83":[[2,155]],"84":[[2,155]],"85":[[2,155]],"86":[[2,155]],"94":[[2,155]],"96":[[2,155]],"110":[[2,155]],"112":[[2,155]],"115":[[2,155]],"122":[[2,155]],"126":[[2,155]],"130":[[2,155]],"134":[[2,155]],"136":[[2,155]],"137":[[2,155]],"138":[[2,155]],"142":[[2,155]],"149":[[2,155]],"153":[[2,155]]},{"1":[[2,168]],"3":[[2,168]],"23":[[2,168]],"24":[[2,168]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,168]],"96":[[1,119]],"110":[[2,168]],"112":[[2,168]],"115":[[2,168]],"122":[[2,168]],"126":[[2,168]],"134":[[2,168]],"135":117,"136":[[2,168]],"137":[[2,168]],"138":[[2,168]],"142":[[2,168]],"149":[[2,168]],"153":[[2,168]]},{"1":[[2,169]],"3":[[2,169]],"23":[[2,169]],"24":[[2,169]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,169]],"96":[[1,119]],"110":[[2,169]],"112":[[2,169]],"115":[[2,169]],"122":[[2,169]],"126":[[2,169]],"134":[[2,169]],"135":117,"136":[[2,169]],"137":[[2,169]],"138":[[2,169]],"142":[[2,169]],"149":[[2,169]],"153":[[2,169]]},{"1":[[2,170]],"3":[[2,170]],"23":[[2,170]],"24":[[2,170]],"47":[[2,170]],"48":[[2,170]],"51":[[2,170]],"52":[[2,170]],"55":[[2,170]],"56":[[2,170]],"57":[[2,170]],"58":[[2,170]],"59":[[2,170]],"60":[[2,170]],"61":[[2,170]],"62":[[2,170]],"63":[[2,170]],"64":[[2,170]],"65":[[2,170]],"66":[[2,170]],"67":[[2,170]],"68":[[2,170]],"69":[[2,170]],"70":[[2,170]],"71":[[2,170]],"72":[[2,170]],"73":[[2,170]],"74":[[2,170]],"75":[[2,170]],"76":[[2,170]],"77":[[2,170]],"78":[[2,170]],"79":[[2,170]],"80":[[2,170]],"81":[[2,170]],"82":[[2,170]],"83":[[2,170]],"84":[[2,170]],"85":[[2,170]],"86":[[2,170]],"94":[[2,170]],"96":[[2,170]],"110":[[2,170]],"112":[[2,170]],"115":[[2,170]],"122":[[2,170]],"126":[[2,170]],"134":[[2,170]],"136":[[2,170]],"137":[[2,170]],"138":[[2,170]],"142":[[2,170]],"149":[[2,170]],"153":[[2,170]]},{"5":312,"23":[[1,6]]},{"24":[[2,173]],"44":[[2,173]],"145":[[2,173]],"147":[[2,173]]},{"5":313,"23":[[1,6]],"94":[[1,314]]},{"23":[[2,150]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,150]],"96":[[1,119]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"22":276,"44":[[1,52]],"146":315,"147":[[1,275]]},{"3":[[2,147]],"24":[[2,147]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,147]],"96":[[1,119]],"122":[[2,147]],"126":[[2,147]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"3":[[2,148]],"24":[[2,148]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,148]],"96":[[1,119]],"122":[[2,148]],"126":[[2,148]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"126":[[1,316]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"3":[[2,103]],"6":317,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"24":[[2,103]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[2,103]],"56":[[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]],"68":[[2,103]],"69":[[2,103]],"70":[[2,103]],"71":[[2,103]],"72":[[2,103]],"73":[[2,103]],"74":[[2,103]],"75":[[2,103]],"76":[[2,103]],"77":[[2,103]],"78":[[2,103]],"79":[[2,103]],"80":[[2,103]],"81":[[2,103]],"82":[[2,103]],"83":[[2,103]],"84":[[2,103]],"85":[[2,103]],"86":[[2,103]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"94":[[2,103]],"96":[[2,103]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"126":[[2,103]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[2,103]],"138":[[2,103]],"143":[[1,51]],"148":72,"149":[[2,103]],"151":45,"153":[[2,103]]},{"3":[[2,125]],"24":[[2,125]],"94":[[2,125]],"115":[[2,125]]},{"1":[[2,181]],"3":[[2,181]],"23":[[2,181]],"24":[[2,181]],"47":[[2,181]],"48":[[2,181]],"51":[[2,181]],"52":[[2,181]],"55":[[2,181]],"56":[[2,181]],"57":[[2,181]],"58":[[2,181]],"59":[[2,181]],"60":[[2,181]],"61":[[2,181]],"62":[[2,181]],"63":[[2,181]],"64":[[2,181]],"65":[[2,181]],"66":[[2,181]],"67":[[2,181]],"68":[[2,181]],"69":[[2,181]],"70":[[2,181]],"71":[[2,181]],"72":[[2,181]],"73":[[2,181]],"74":[[2,181]],"75":[[2,181]],"76":[[2,181]],"77":[[2,181]],"78":[[2,181]],"79":[[2,181]],"80":[[2,181]],"81":[[2,181]],"82":[[2,181]],"83":[[2,181]],"84":[[2,181]],"85":[[2,181]],"86":[[2,181]],"94":[[2,181]],"96":[[2,181]],"110":[[2,181]],"112":[[2,181]],"115":[[2,181]],"122":[[2,181]],"126":[[2,181]],"134":[[2,181]],"136":[[2,181]],"137":[[2,181]],"138":[[2,181]],"142":[[2,181]],"145":[[2,181]],"149":[[2,181]],"152":[[2,181]],"153":[[2,181]]},{"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"110":[[1,318]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"6":319,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[2,103]],"56":[[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]],"68":[[2,103]],"69":[[2,103]],"70":[[2,103]],"71":[[2,103]],"72":[[2,103]],"73":[[2,103]],"74":[[2,103]],"75":[[2,103]],"76":[[2,103]],"77":[[2,103]],"78":[[2,103]],"79":[[2,103]],"80":[[2,103]],"81":[[2,103]],"82":[[2,103]],"83":[[2,103]],"84":[[2,103]],"85":[[2,103]],"86":[[2,103]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"96":[[2,103]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"110":[[2,103]],"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[2,103]],"138":[[2,103]],"143":[[1,51]],"148":72,"149":[[2,103]],"151":45,"153":[[2,103]]},{"24":[[1,320]]},{"3":[[1,321]],"24":[[2,174]],"44":[[2,174]],"145":[[2,174]],"147":[[2,174]]},{"6":322,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"43":[[1,48]],"44":[[1,52]],"45":[[1,35]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"87":[[1,33]],"90":34,"91":[[1,70]],"92":[[1,71]],"97":25,"98":26,"99":27,"100":28,"101":29,"103":30,"113":[[1,66]],"116":[[1,31]],"117":32,"123":[[1,69]],"124":[[1,68]],"125":[[1,65]],"128":[[1,46]],"132":[[1,47]],"133":[[1,67]],"135":49,"136":[[1,73]],"138":[[1,50]],"143":[[1,51]],"148":72,"149":[[1,76]],"151":45},{"24":[[2,176]],"44":[[2,176]],"145":[[2,176]],"147":[[2,176]]},{"1":[[2,137]],"3":[[2,137]],"23":[[2,137]],"24":[[2,137]],"41":[[2,137]],"47":[[2,137]],"48":[[2,137]],"51":[[2,137]],"52":[[2,137]],"55":[[2,137]],"56":[[2,137]],"57":[[2,137]],"58":[[2,137]],"59":[[2,137]],"60":[[2,137]],"61":[[2,137]],"62":[[2,137]],"63":[[2,137]],"64":[[2,137]],"65":[[2,137]],"66":[[2,137]],"67":[[2,137]],"68":[[2,137]],"69":[[2,137]],"70":[[2,137]],"71":[[2,137]],"72":[[2,137]],"73":[[2,137]],"74":[[2,137]],"75":[[2,137]],"76":[[2,137]],"77":[[2,137]],"78":[[2,137]],"79":[[2,137]],"80":[[2,137]],"81":[[2,137]],"82":[[2,137]],"83":[[2,137]],"84":[[2,137]],"85":[[2,137]],"86":[[2,137]],"94":[[2,137]],"96":[[2,137]],"104":[[2,137]],"105":[[2,137]],"106":[[2,137]],"109":[[2,137]],"110":[[2,137]],"111":[[2,137]],"112":[[2,137]],"115":[[2,137]],"118":[[2,137]],"120":[[2,137]],"122":[[2,137]],"126":[[2,137]],"134":[[2,137]],"136":[[2,137]],"137":[[2,137]],"138":[[2,137]],"142":[[2,137]],"149":[[2,137]],"153":[[2,137]]},{"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"126":[[1,323]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,139]],"3":[[2,139]],"23":[[2,139]],"24":[[2,139]],"41":[[2,139]],"47":[[2,139]],"48":[[2,139]],"51":[[2,139]],"52":[[2,139]],"55":[[2,139]],"56":[[2,139]],"57":[[2,139]],"58":[[2,139]],"59":[[2,139]],"60":[[2,139]],"61":[[2,139]],"62":[[2,139]],"63":[[2,139]],"64":[[2,139]],"65":[[2,139]],"66":[[2,139]],"67":[[2,139]],"68":[[2,139]],"69":[[2,139]],"70":[[2,139]],"71":[[2,139]],"72":[[2,139]],"73":[[2,139]],"74":[[2,139]],"75":[[2,139]],"76":[[2,139]],"77":[[2,139]],"78":[[2,139]],"79":[[2,139]],"80":[[2,139]],"81":[[2,139]],"82":[[2,139]],"83":[[2,139]],"84":[[2,139]],"85":[[2,139]],"86":[[2,139]],"94":[[2,139]],"96":[[2,139]],"104":[[2,139]],"105":[[2,139]],"106":[[2,139]],"109":[[2,139]],"110":[[2,139]],"111":[[2,139]],"112":[[2,139]],"115":[[2,139]],"118":[[2,139]],"120":[[2,139]],"122":[[2,139]],"126":[[2,139]],"134":[[2,139]],"136":[[2,139]],"137":[[2,139]],"138":[[2,139]],"142":[[2,139]],"149":[[2,139]],"153":[[2,139]]},{"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"96":[[1,119]],"110":[[1,324]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,171]],"3":[[2,171]],"23":[[2,171]],"24":[[2,171]],"47":[[2,171]],"48":[[2,171]],"51":[[2,171]],"52":[[2,171]],"55":[[2,171]],"56":[[2,171]],"57":[[2,171]],"58":[[2,171]],"59":[[2,171]],"60":[[2,171]],"61":[[2,171]],"62":[[2,171]],"63":[[2,171]],"64":[[2,171]],"65":[[2,171]],"66":[[2,171]],"67":[[2,171]],"68":[[2,171]],"69":[[2,171]],"70":[[2,171]],"71":[[2,171]],"72":[[2,171]],"73":[[2,171]],"74":[[2,171]],"75":[[2,171]],"76":[[2,171]],"77":[[2,171]],"78":[[2,171]],"79":[[2,171]],"80":[[2,171]],"81":[[2,171]],"82":[[2,171]],"83":[[2,171]],"84":[[2,171]],"85":[[2,171]],"86":[[2,171]],"94":[[2,171]],"96":[[2,171]],"110":[[2,171]],"112":[[2,171]],"115":[[2,171]],"122":[[2,171]],"126":[[2,171]],"134":[[2,171]],"136":[[2,171]],"137":[[2,171]],"138":[[2,171]],"142":[[2,171]],"149":[[2,171]],"153":[[2,171]]},{"24":[[2,175]],"44":[[2,175]],"145":[[2,175]],"147":[[2,175]]},{"23":[[2,151]],"47":[[1,85]],"48":[[1,84]],"51":[[1,79]],"52":[[1,80]],"55":[[1,81]],"56":[[1,82]],"57":[[1,83]],"58":[[1,86]],"59":[[1,87]],"60":[[1,88]],"61":[[1,89]],"62":[[1,90]],"63":[[1,91]],"64":[[1,92]],"65":[[1,93]],"66":[[1,94]],"67":[[1,95]],"68":[[1,96]],"69":[[1,97]],"70":[[1,98]],"71":[[1,99]],"72":[[1,100]],"73":[[1,101]],"74":[[1,102]],"75":[[1,103]],"76":[[1,104]],"77":[[1,105]],"78":[[1,106]],"79":[[1,107]],"80":[[1,108]],"81":[[1,109]],"82":[[1,110]],"83":[[1,111]],"84":[[1,112]],"85":[[1,113]],"86":[[1,114]],"94":[[2,151]],"96":[[1,119]],"135":117,"136":[[1,73]],"138":[[1,118]],"149":[[1,115]],"153":[[1,116]]},{"1":[[2,138]],"3":[[2,138]],"23":[[2,138]],"24":[[2,138]],"41":[[2,138]],"47":[[2,138]],"48":[[2,138]],"51":[[2,138]],"52":[[2,138]],"55":[[2,138]],"56":[[2,138]],"57":[[2,138]],"58":[[2,138]],"59":[[2,138]],"60":[[2,138]],"61":[[2,138]],"62":[[2,138]],"63":[[2,138]],"64":[[2,138]],"65":[[2,138]],"66":[[2,138]],"67":[[2,138]],"68":[[2,138]],"69":[[2,138]],"70":[[2,138]],"71":[[2,138]],"72":[[2,138]],"73":[[2,138]],"74":[[2,138]],"75":[[2,138]],"76":[[2,138]],"77":[[2,138]],"78":[[2,138]],"79":[[2,138]],"80":[[2,138]],"81":[[2,138]],"82":[[2,138]],"83":[[2,138]],"84":[[2,138]],"85":[[2,138]],"86":[[2,138]],"94":[[2,138]],"96":[[2,138]],"104":[[2,138]],"105":[[2,138]],"106":[[2,138]],"109":[[2,138]],"110":[[2,138]],"111":[[2,138]],"112":[[2,138]],"115":[[2,138]],"118":[[2,138]],"120":[[2,138]],"122":[[2,138]],"126":[[2,138]],"134":[[2,138]],"136":[[2,138]],"137":[[2,138]],"138":[[2,138]],"142":[[2,138]],"149":[[2,138]],"153":[[2,138]]},{"1":[[2,140]],"3":[[2,140]],"23":[[2,140]],"24":[[2,140]],"41":[[2,140]],"47":[[2,140]],"48":[[2,140]],"51":[[2,140]],"52":[[2,140]],"55":[[2,140]],"56":[[2,140]],"57":[[2,140]],"58":[[2,140]],"59":[[2,140]],"60":[[2,140]],"61":[[2,140]],"62":[[2,140]],"63":[[2,140]],"64":[[2,140]],"65":[[2,140]],"66":[[2,140]],"67":[[2,140]],"68":[[2,140]],"69":[[2,140]],"70":[[2,140]],"71":[[2,140]],"72":[[2,140]],"73":[[2,140]],"74":[[2,140]],"75":[[2,140]],"76":[[2,140]],"77":[[2,140]],"78":[[2,140]],"79":[[2,140]],"80":[[2,140]],"81":[[2,140]],"82":[[2,140]],"83":[[2,140]],"84":[[2,140]],"85":[[2,140]],"86":[[2,140]],"94":[[2,140]],"96":[[2,140]],"104":[[2,140]],"105":[[2,140]],"106":[[2,140]],"109":[[2,140]],"110":[[2,140]],"111":[[2,140]],"112":[[2,140]],"115":[[2,140]],"118":[[2,140]],"120":[[2,140]],"122":[[2,140]],"126":[[2,140]],"134":[[2,140]],"136":[[2,140]],"137":[[2,140]],"138":[[2,140]],"142":[[2,140]],"149":[[2,140]],"153":[[2,140]]}],parseError:function parseError(str,hash){throw new Error(str)},parse:function parse(input){var self=this,stack=[0],vstack=[null],table=this.table,yytext="",yylineno=0,yyleng=0,shifts=0,reductions=0;this.lexer.setInput(input);this.lexer.yy=this.yy;var parseError=this.yy.parseError=this.yy.parseError||this.parseError;function lex(){var token;token=self.lexer.lex()||1;if(typeof token!=="number"){token=self.symbols_[token]}return token}var symbol,state,action,a,r,yyval={},p,len,ip=0,newState,expected;symbol=lex();while(true){state=stack[stack.length-1];action=table[state]&&table[state][symbol];if(typeof action=="undefined"||!action.length||!action[0]){expected=[];for(p in table[state]){if(this.terminals_[p]&&p!=1){expected.push("'"+this.terminals_[p]+"'")}}if(this.lexer.showPosition){parseError("Parse error on line "+(yylineno+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+expected.join(", "),{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}else{parseError("Parse error on line "+(yylineno+1)+": Unexpected '"+this.terminals_[symbol]+"'",{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}}this.trace("action:",action);if(action.length>1){throw new Error("Parse Error: multiple actions possible at state: "+state+", token: "+symbol)}a=action[0];switch(a[0]){case 1:shifts++;stack.push(symbol);++ip;yyleng=this.lexer.yyleng;yytext=this.lexer.yytext;yylineno=this.lexer.yylineno;symbol=lex();vstack.push(null);stack.push(a[1]);break;case 2:reductions++;len=this.productions_[a[1]][1];yyval.$=vstack[vstack.length-len];r=this.performAction.call(yyval,yytext,yyleng,yylineno,this.yy,a[1],vstack);if(typeof r!=="undefined"){return r}if(len){stack=stack.slice(0,-1*len*2);vstack=vstack.slice(0,-1*len)}stack.push(this.productions_[a[1]][0]);vstack.push(yyval.$);newState=table[stack[stack.length-2]][stack[stack.length-1]];stack.push(newState);break;case 3:this.reductionCount=reductions;this.shiftCount=shifts;return true}}return true}};return parser})();if(typeof require!=="undefined"){exports.parser=parser;exports.parse=function(){return parser.parse.apply(parser,arguments)};exports.main=function commonjsMain(args){var cwd=require("file").path(require("file").cwd());if(!args[1]){throw new Error("Usage: "+args[0]+" FILE")}var source=cwd.join(args[1]).read({charset:"utf-8"});this.parse(source)};if(require.main===module){exports.main(require("system").args)}}(function(){var Scope;var __hasProp=Object.prototype.hasOwnProperty;if(!((typeof process!=="undefined"&&process!==null))){this.exports=this}Scope=(exports.Scope=function Scope(parent,expressions,method){var _a;_a=[parent,expressions,method];this.parent=_a[0];this.expressions=_a[1];this.method=_a[2];this.variables={};this.temp_var=this.parent?this.parent.temp_var:"_a";return this});Scope.prototype.find=function find(name){if(this.check(name)){return true}this.variables[name]="var";return false};Scope.prototype.parameter=function parameter(name){return this.variables[name]="param"};Scope.prototype.check=function check(name){if(this.variables[name]){return true}return !!(this.parent&&this.parent.check(name))};Scope.prototype.reset=function reset(name){return delete this.variables[name]};Scope.prototype.free_variable=function free_variable(){var ordinal;while(this.check(this.temp_var)){ordinal=1+parseInt(this.temp_var.substr(1),36);this.temp_var="_"+ordinal.toString(36).replace(/\d/g,"a")}this.variables[this.temp_var]="var";return this.temp_var};Scope.prototype.assign=function assign(name,value,top_level){if(top_level&&this.parent){return this.parent.assign(name,value,top_level)}return this.variables[name]={value:value,assigned:true}};Scope.prototype.has_declarations=function has_declarations(body){return body===this.expressions&&this.declared_variables().length};Scope.prototype.has_assignments=function has_assignments(body){return body===this.expressions&&this.assigned_variables().length};Scope.prototype.declared_variables=function declared_variables(){var _a,_b,key,val;return(function(){_a=[];_b=this.variables;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];if(val==="var"){_a.push(key)}}}return _a}).call(this).sort()};Scope.prototype.assigned_variables=function assigned_variables(){var _a,_b,key,val;_a=[];_b=this.variables;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];if(val.assigned){_a.push(key+" = "+val.value)}}}return _a};Scope.prototype.compiled_declarations=function compiled_declarations(){return this.declared_variables().join(", ")};Scope.prototype.compiled_assignments=function compiled_assignments(){return this.assigned_variables().join(", ")}})();(function(){var AccessorNode,ArrayNode,AssignNode,BaseNode,CallNode,ClosureNode,CodeNode,CommentNode,ExistenceNode,Expressions,ExtendsNode,ForNode,IDENTIFIER,IfNode,IndexNode,LiteralNode,ObjectNode,OpNode,ParentheticalNode,PushNode,RangeNode,ReturnNode,SliceNode,SplatNode,TAB,TRAILING_WHITESPACE,ThrowNode,TryNode,ValueNode,WhileNode,compact,del,flatten,inherit,merge,statement;var __hasProp=Object.prototype.hasOwnProperty;(typeof process!=="undefined"&&process!==null)?process.mixin(require("scope")):(this.exports=this);TAB=" ";TRAILING_WHITESPACE=/\s+$/gm;IDENTIFIER=/^[a-zA-Z$_](\w|\$)*$/;merge=function merge(options,overrides){var _a,_b,fresh,key,val;fresh={};_a=options;for(key in _a){if(__hasProp.call(_a,key)){val=_a[key];((fresh[key]=val))}}if(overrides){_b=overrides;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];((fresh[key]=val))}}}return fresh};compact=function compact(array){var _a,_b,_c,item;_a=[];_b=array;for(_c=0;_c<_b.length;_c++){item=_b[_c];if(item){_a.push(item)}}return _a};flatten=function flatten(array){var _a,_b,item,memo;memo=[];_a=array;for(_b=0;_b<_a.length;_b++){item=_a[_b];item instanceof Array?(memo=memo.concat(item)):memo.push(item)}return memo};del=function del(obj,key){var val;val=obj[key];delete obj[key];return val};inherit=function inherit(parent,props){var _a,_b,klass,name,prop;klass=del(props,"constructor");_a=function(){};_a.prototype=parent.prototype;klass.__superClass__=parent.prototype;klass.prototype=new _a();klass.prototype.constructor=klass;_b=props;for(name in _b){if(__hasProp.call(_b,name)){prop=_b[name];((klass.prototype[name]=prop))}}return klass};statement=function statement(klass,only){klass.prototype.is_statement=function is_statement(){return true};if(only){return((klass.prototype.is_statement_only=function is_statement_only(){return true}))}};BaseNode=(exports.BaseNode=function BaseNode(){});BaseNode.prototype.compile=function compile(o){var closure,top;this.options=merge(o||{});this.indent=o.indent;if(!(this.operation_sensitive())){del(this.options,"operation")}top=this.top_sensitive()?this.options.top:del(this.options,"top");closure=this.is_statement()&&!this.is_statement_only()&&!top&&!this.options.returns&&!(this instanceof CommentNode)&&!this.contains(function(node){return node.is_statement_only()});return closure?this.compile_closure(this.options):this.compile_node(this.options)};BaseNode.prototype.compile_closure=function compile_closure(o){this.indent=o.indent;o.shared_scope=o.scope;return ClosureNode.wrap(this).compile(o)};BaseNode.prototype.compile_reference=function compile_reference(o){var compiled,reference;reference=new LiteralNode(o.scope.free_variable());compiled=new AssignNode(reference,this);return[compiled,reference]};BaseNode.prototype.idt=function idt(tabs){var _a,_b,_c,_d,i,idt;idt=(this.indent||"");_c=0;_d=(tabs||0);for(_b=0,i=_c;(_c<=_d?i<_d:i>_d);(_c<=_d?i+=1:i-=1),_b++){idt+=TAB}return idt};BaseNode.prototype.contains=function contains(block){var _a,_b,node;_a=this.children;for(_b=0;_b<_a.length;_b++){node=_a[_b];if(block(node)){return true}if(node instanceof BaseNode&&node.contains(block)){return true}}return false};BaseNode.prototype.toString=function toString(idt){var _a,_b,_c,child;idt=idt||"";return"\n"+idt+this.type+(function(){_a=[];_b=this.children;for(_c=0;_c<_b.length;_c++){child=_b[_c];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("")};BaseNode.prototype.unwrap=function unwrap(){return this};BaseNode.prototype.children=[];BaseNode.prototype.is_statement=function is_statement(){return false};BaseNode.prototype.is_statement_only=function is_statement_only(){return false};BaseNode.prototype.top_sensitive=function top_sensitive(){return false};BaseNode.prototype.operation_sensitive=function operation_sensitive(){return false};Expressions=(exports.Expressions=inherit(BaseNode,{type:"Expressions",constructor:function constructor(nodes){this.children=(this.expressions=compact(flatten(nodes||[])));return this},push:function push(node){this.expressions.push(node);return this},unshift:function unshift(node){this.expressions.unshift(node);return this},unwrap:function unwrap(){return this.expressions.length===1?this.expressions[0]:this},empty:function empty(){return this.expressions.length===0},is_last:function is_last(node){var l,last_index;l=this.expressions.length;last_index=this.expressions[l-1] instanceof CommentNode?2:1;return node===this.expressions[l-last_index]},compile:function compile(o){o=o||{};return o.scope?BaseNode.prototype.compile.call(this,o):this.compile_root(o)},compile_node:function compile_node(o){var _a,_b,_c,node;return(function(){_a=[];_b=this.expressions;for(_c=0;_c<_b.length;_c++){node=_b[_c];_a.push(this.compile_expression(node,merge(o)))}return _a}).call(this).join("\n")},compile_root:function compile_root(o){var code,indent;o.indent=(this.indent=(indent=o.no_wrap?"":TAB));o.scope=new Scope(null,this,null);code=o.globals?this.compile_node(o):this.compile_with_declarations(o);code=code.replace(TRAILING_WHITESPACE,"");return o.no_wrap?code:"(function(){\n"+code+"\n})();\n"},compile_with_declarations:function compile_with_declarations(o){var args,code;code=this.compile_node(o);args=this.contains(function(node){return node instanceof ValueNode&&node.is_arguments()});if(args){code=this.idt()+"arguments = Array.prototype.slice.call(arguments, 0);\n"+code}if(o.scope.has_assignments(this)){code=this.idt()+"var "+o.scope.compiled_assignments()+";\n"+code}if(o.scope.has_declarations(this)){code=this.idt()+"var "+o.scope.compiled_declarations()+";\n"+code}return code},compile_expression:function compile_expression(node,o){var returns,stmt;this.indent=o.indent;stmt=node.is_statement();returns=del(o,"returns")&&this.is_last(node)&&!node.is_statement_only();if(!(returns)){return(stmt?"":this.idt())+node.compile(merge(o,{top:true}))+(stmt?"":";")}if(node.is_statement()){return node.compile(merge(o,{returns:true}))}return this.idt()+"return "+node.compile(o)+";"}}));Expressions.wrap=function wrap(nodes){if(nodes.length===1&&nodes[0] instanceof Expressions){return nodes[0]}return new Expressions(nodes)};statement(Expressions);LiteralNode=(exports.LiteralNode=inherit(BaseNode,{type:"Literal",constructor:function constructor(value){this.value=value;return this},is_statement:function is_statement(){return this.value==="break"||this.value==="continue"},compile_node:function compile_node(o){var end,idt;idt=this.is_statement()?this.idt():"";end=this.is_statement()?";":"";return idt+this.value+end},toString:function toString(idt){return' "'+this.value+'"'}}));LiteralNode.prototype.is_statement_only=LiteralNode.prototype.is_statement;ReturnNode=(exports.ReturnNode=inherit(BaseNode,{type:"Return",constructor:function constructor(expression){this.children=[(this.expression=expression)];return this},compile_node:function compile_node(o){if(this.expression.is_statement()){return this.expression.compile(merge(o,{returns:true}))}return this.idt()+"return "+this.expression.compile(o)+";"}}));statement(ReturnNode,true);ValueNode=(exports.ValueNode=inherit(BaseNode,{type:"Value",SOAK:" == undefined ? undefined : ",constructor:function constructor(base,properties){this.children=flatten([(this.base=base),(this.properties=(properties||[]))]);return this},push:function push(prop){this.properties.push(prop);this.children.push(prop);return this},operation_sensitive:function operation_sensitive(){return true},has_properties:function has_properties(){return !!this.properties.length},is_array:function is_array(){return this.base instanceof ArrayNode&&!this.has_properties()},is_object:function is_object(){return this.base instanceof ObjectNode&&!this.has_properties()},is_splice:function is_splice(){return this.has_properties()&&this.properties[this.properties.length-1] instanceof SliceNode},is_arguments:function is_arguments(){return this.base.value==="arguments"},unwrap:function unwrap(){return this.properties.length?this:this.base},is_statement:function is_statement(){return this.base.is_statement&&this.base.is_statement()&&!this.has_properties()},compile_node:function compile_node(o){var _a,_b,baseline,complete,only,op,part,prop,props,soaked,temp;soaked=false;only=del(o,"only_first");op=del(o,"operation");props=only?this.properties.slice(0,this.properties.length-1):this.properties;baseline=this.base.compile(o);if(this.base instanceof ObjectNode&&this.has_properties()){baseline="("+baseline+")"}complete=(this.last=baseline);_a=props;for(_b=0;_b<_a.length;_b++){prop=_a[_b];this.source=baseline;if(prop.soak_node){soaked=true;if(this.base instanceof CallNode&&prop===props[0]){temp=o.scope.free_variable();complete="("+temp+" = "+complete+")"+this.SOAK+((baseline=temp+prop.compile(o)))}else{complete=complete+this.SOAK+(baseline+=prop.compile(o))}}else{part=prop.compile(o);baseline+=part;complete+=part;this.last=part}}return op&&soaked?"("+complete+")":complete}}));CommentNode=(exports.CommentNode=inherit(BaseNode,{type:"Comment",constructor:function constructor(lines){this.lines=lines;return this},compile_node:function compile_node(o){return this.idt()+"//"+this.lines.join("\n"+this.idt()+"//")}}));statement(CommentNode);CallNode=(exports.CallNode=inherit(BaseNode,{type:"Call",constructor:function constructor(variable,args){this.children=flatten([(this.variable=variable),(this.args=(args||[]))]);this.prefix="";return this},new_instance:function new_instance(){this.prefix="new ";return this},push:function push(arg){this.args.push(arg);this.children.push(arg);return this},compile_node:function compile_node(o){var _a,_b,_c,arg,args;if(this.args[this.args.length-1] instanceof SplatNode){return this.compile_splat(o)}args=(function(){_a=[];_b=this.args;for(_c=0;_c<_b.length;_c++){arg=_b[_c];_a.push(arg.compile(o))}return _a}).call(this).join(", ");if(this.variable==="super"){return this.compile_super(args,o)}return this.prefix+this.variable.compile(o)+"("+args+")"},compile_super:function compile_super(args,o){var arg_part,meth,methname;methname=o.scope.method.name;arg_part=args.length?", "+args:"";meth=o.scope.method.proto?o.scope.method.proto+".__superClass__."+methname:methname+".__superClass__.constructor";return meth+".call(this"+arg_part+")"},compile_splat:function compile_splat(o){var _a,_b,arg,args,code,i,meth,obj;meth=this.variable.compile(o);obj=this.variable.source||"this";args=(function(){_a=[];_b=this.args;for(i=0;i<_b.length;i++){arg=_b[i];_a.push((function(){code=arg.compile(o);code=arg instanceof SplatNode?code:"["+code+"]";return i===0?code:".concat("+code+")"}).call(this))}return _a}).call(this);return this.prefix+meth+".apply("+obj+", "+args.join("")+")"}}));ExtendsNode=(exports.ExtendsNode=inherit(BaseNode,{type:"Extends",constructor:function constructor(child,parent){this.children=[(this.child=child),(this.parent=parent)];return this},compile_node:function compile_node(o){var child,child_var,construct,parent,parent_var,prefix;construct=o.scope.free_variable();child=this.child.compile(o);parent=this.parent.compile(o);prefix="";if(!(this.child instanceof ValueNode)||this.child.has_properties()||!(this.child.unwrap() instanceof LiteralNode)){child_var=o.scope.free_variable();prefix+=this.idt()+child_var+" = "+child+";\n";child=child_var}if(!(this.parent instanceof ValueNode)||this.parent.has_properties()||!(this.parent.unwrap() instanceof LiteralNode)){parent_var=o.scope.free_variable();prefix+=this.idt()+parent_var+" = "+parent+";\n";parent=parent_var}return prefix+this.idt()+construct+" = function(){};\n"+this.idt()+construct+".prototype = "+parent+".prototype;\n"+this.idt()+child+".__superClass__ = "+parent+".prototype;\n"+this.idt()+child+".prototype = new "+construct+"();\n"+this.idt()+child+".prototype.constructor = "+child+";"}}));statement(ExtendsNode);AccessorNode=(exports.AccessorNode=inherit(BaseNode,{type:"Accessor",constructor:function constructor(name,tag){this.children=[(this.name=name)];this.prototype=tag==="prototype";this.soak_node=tag==="soak";return this},compile_node:function compile_node(o){return"."+(this.prototype?"prototype.":"")+this.name.compile(o)}}));IndexNode=(exports.IndexNode=inherit(BaseNode,{type:"Index",constructor:function constructor(index,tag){this.children=[(this.index=index)];this.soak_node=tag==="soak";return this},compile_node:function compile_node(o){return"["+this.index.compile(o)+"]"}}));RangeNode=(exports.RangeNode=inherit(BaseNode,{type:"Range",constructor:function constructor(from,to,exclusive){this.children=[(this.from=from),(this.to=to)];this.exclusive=!!exclusive;return this},compile_variables:function compile_variables(o){this.indent=o.indent;this.from_var=o.scope.free_variable();this.to_var=o.scope.free_variable();return this.from_var+" = "+this.from.compile(o)+"; "+this.to_var+" = "+this.to.compile(o)+";\n"+this.idt()},compile_node:function compile_node(o){var compare,equals,idx,incr,intro,step,vars;if(!(o.index)){return this.compile_array(o)}idx=del(o,"index");step=del(o,"step");vars=idx+"="+this.from_var;step=step?step.compile(o):"1";equals=this.exclusive?"":"=";intro="("+this.from_var+" <= "+this.to_var+" ? "+idx;compare=intro+" <"+equals+" "+this.to_var+" : "+idx+" >"+equals+" "+this.to_var+")";incr=intro+" += "+step+" : "+idx+" -= "+step+")";return vars+"; "+compare+"; "+incr},compile_array:function compile_array(o){var arr,body,name;name=o.scope.free_variable();body=Expressions.wrap([new LiteralNode(name)]);arr=Expressions.wrap([new ForNode(body,{source:(new ValueNode(this))},new LiteralNode(name))]);return(new ParentheticalNode(new CallNode(new CodeNode([],arr)))).compile(o)}}));SliceNode=(exports.SliceNode=inherit(BaseNode,{type:"Slice",constructor:function constructor(range){this.children=[(this.range=range)];return this},compile_node:function compile_node(o){var from,plus_part,to;from=this.range.from.compile(o);to=this.range.to.compile(o);plus_part=this.range.exclusive?"":" + 1";return".slice("+from+", "+to+plus_part+")"}}));ObjectNode=(exports.ObjectNode=inherit(BaseNode,{type:"Object",constructor:function constructor(props){this.children=(this.objects=(this.properties=props||[]));return this},compile_node:function compile_node(o){var _a,_b,_c,_d,_e,i,indent,inner,join,last_noncom,non_comments,prop,props;o.indent=this.idt(1);non_comments=(function(){_a=[];_b=this.properties;for(_c=0;_c<_b.length;_c++){prop=_b[_c];if(!(prop instanceof CommentNode)){_a.push(prop)}}return _a}).call(this);last_noncom=non_comments[non_comments.length-1];props=(function(){_d=[];_e=this.properties;for(i=0;i<_e.length;i++){prop=_e[i];_d.push((function(){join=",\n";if((prop===last_noncom)||(prop instanceof CommentNode)){join="\n"}if(i===this.properties.length-1){join=""}indent=prop instanceof CommentNode?"":this.idt(1);return indent+prop.compile(o)+join}).call(this))}return _d}).call(this);props=props.join("");inner=props?"\n"+props+"\n"+this.idt():"";return"{"+inner+"}"}}));ArrayNode=(exports.ArrayNode=inherit(BaseNode,{type:"Array",constructor:function constructor(objects){this.children=(this.objects=objects||[]);return this},compile_node:function compile_node(o){var _a,_b,code,ending,i,obj,objects;o.indent=this.idt(1);objects=(function(){_a=[];_b=this.objects;for(i=0;i<_b.length;i++){obj=_b[i];_a.push((function(){code=obj.compile(o);if(obj instanceof CommentNode){return"\n"+code+"\n"+o.indent}else{if(i===this.objects.length-1){return code}else{return code+", "}}}).call(this))}return _a}).call(this);objects=objects.join("");ending=objects.indexOf("\n")>=0?"\n"+this.idt()+"]":"]";return"["+objects+ending}}));PushNode=(exports.PushNode={wrap:function wrap(array,expressions){var expr;expr=expressions.unwrap();if(expr.is_statement_only()||expr.contains(function(n){return n.is_statement_only()})){return expressions}return Expressions.wrap([new CallNode(new ValueNode(new LiteralNode(array),[new AccessorNode(new LiteralNode("push"))]),[expr])])}});ClosureNode=(exports.ClosureNode={wrap:function wrap(expressions,statement){var call,func;func=new ParentheticalNode(new CodeNode([],Expressions.wrap([expressions])));call=new CallNode(new ValueNode(func,[new AccessorNode(new LiteralNode("call"))]),[new LiteralNode("this")]);return statement?Expressions.wrap([call]):call}});AssignNode=(exports.AssignNode=inherit(BaseNode,{type:"Assign",PROTO_ASSIGN:/^(\S+)\.prototype/,LEADING_DOT:/^\.(prototype\.)?/,constructor:function constructor(variable,value,context){this.children=[(this.variable=variable),(this.value=value)];this.context=context;return this},top_sensitive:function top_sensitive(){return true},is_value:function is_value(){return this.variable instanceof ValueNode},is_statement:function is_statement(){return this.is_value()&&(this.variable.is_array()||this.variable.is_object())},compile_node:function compile_node(o){var last,match,name,proto,stmt,top,val;top=del(o,"top");if(this.is_statement()){return this.compile_pattern_match(o)}if(this.is_value()&&this.variable.is_splice()){return this.compile_splice(o)}stmt=del(o,"as_statement");name=this.variable.compile(o);last=this.is_value()?this.variable.last.replace(this.LEADING_DOT,""):name;match=name.match(this.PROTO_ASSIGN);proto=match&&match[1];if(this.value instanceof CodeNode){if(last.match(IDENTIFIER)){this.value.name=last}if(proto){this.value.proto=proto}}if(this.context==="object"){return name+": "+this.value.compile(o)}if(!(this.is_value()&&this.variable.has_properties())){o.scope.find(name)}val=name+" = "+this.value.compile(o);if(stmt){return this.idt()+val+";"}if(!top||o.returns){val="("+val+")"}if(o.returns){val=this.idt()+"return "+val}return val},compile_pattern_match:function compile_pattern_match(o){var _a,_b,access_class,assigns,i,idx,obj,val,val_var;val_var=o.scope.free_variable();assigns=[this.idt()+val_var+" = "+this.value.compile(o)+";"];o.top=true;o.as_statement=true;_a=this.variable.base.objects;for(i=0;i<_a.length;i++){obj=_a[i];idx=i;if(this.variable.is_object()){_b=[obj.value,obj.variable.base];obj=_b[0];idx=_b[1]}access_class=this.variable.is_array()?IndexNode:AccessorNode;if(obj instanceof SplatNode){val=new LiteralNode(obj.compile_value(o,val_var,this.variable.base.objects.indexOf(obj)))}else{if(!(typeof idx==="object")){idx=new LiteralNode(idx)}val=new ValueNode(new LiteralNode(val_var),[new access_class(idx)])}assigns.push(new AssignNode(obj,val).compile(o))}return assigns.join("\n")},compile_splice:function compile_splice(o){var from,l,name,plus,range,to;name=this.variable.compile(merge(o,{only_first:true}));l=this.variable.properties.length;range=this.variable.properties[l-1].range;plus=range.exclusive?"":" + 1";from=range.from.compile(o);to=range.to.compile(o)+" - "+from+plus;return name+".splice.apply("+name+", ["+from+", "+to+"].concat("+this.value.compile(o)+"))"}}));CodeNode=(exports.CodeNode=inherit(BaseNode,{type:"Code",constructor:function constructor(params,body,tag){this.params=params;this.body=body;this.bound=tag==="boundfunc";return this},compile_node:function compile_node(o){var _a,_b,_c,_d,_e,code,func,inner,name_part,param,params,shared_scope,splat,top;shared_scope=del(o,"shared_scope");top=del(o,"top");o.scope=shared_scope||new Scope(o.scope,this.body,this);o.returns=true;o.top=true;o.indent=this.idt(this.bound?2:1);del(o,"no_wrap");del(o,"globals");if(this.params[this.params.length-1] instanceof SplatNode){splat=this.params.pop();splat.index=this.params.length;this.body.unshift(splat)}params=(function(){_a=[];_b=this.params;for(_c=0;_c<_b.length;_c++){param=_b[_c];_a.push(param.compile(o))}return _a}).call(this);_d=params;for(_e=0;_e<_d.length;_e++){param=_d[_e];(o.scope.parameter(param))}code=this.body.expressions.length?"\n"+this.body.compile_with_declarations(o)+"\n":"";name_part=this.name?" "+this.name:"";func="function"+(this.bound?"":name_part)+"("+params.join(", ")+") {"+code+this.idt(this.bound?1:0)+"}";if(top&&!this.bound){func="("+func+")"}if(!(this.bound)){return func}inner="(function"+name_part+"() {\n"+this.idt(2)+"return __func.apply(__this, arguments);\n"+this.idt(1)+"});";return"(function(__this) {\n"+this.idt(1)+"var __func = "+func+";\n"+this.idt(1)+"return "+inner+"\n"+this.idt()+"})(this)"},top_sensitive:function top_sensitive(){return true},toString:function toString(idt){var _a,_b,_c,child,children;idt=idt||"";children=flatten([this.params,this.body.expressions]);return"\n"+idt+this.type+(function(){_a=[];_b=children;for(_c=0;_c<_b.length;_c++){child=_b[_c];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("")}}));SplatNode=(exports.SplatNode=inherit(BaseNode,{type:"Splat",constructor:function constructor(name){if(!(name.compile)){name=new LiteralNode(name)}this.children=[(this.name=name)];return this},compile_node:function compile_node(o){var _a;return(typeof(_a=this.index)!=="undefined"&&_a!==null)?this.compile_param(o):this.name.compile(o)},compile_param:function compile_param(o){var name;name=this.name.compile(o);o.scope.find(name);return name+" = Array.prototype.slice.call(arguments, "+this.index+")"},compile_value:function compile_value(o,name,index){return"Array.prototype.slice.call("+name+", "+index+")"}}));WhileNode=(exports.WhileNode=inherit(BaseNode,{type:"While",constructor:function constructor(condition,opts){this.children=[(this.condition=condition)];this.filter=opts&&opts.filter;return this},add_body:function add_body(body){this.children.push((this.body=body));return this},top_sensitive:function top_sensitive(){return true},compile_node:function compile_node(o){var cond,post,pre,returns,rvar,set,top;returns=del(o,"returns");top=del(o,"top")&&!returns;o.indent=this.idt(1);o.top=true;cond=this.condition.compile(o);set="";if(!top){rvar=o.scope.free_variable();set=this.idt()+rvar+" = [];\n";if(this.body){this.body=PushNode.wrap(rvar,this.body)}}post=returns?"\n"+this.idt()+"return "+rvar+";":"";pre=set+this.idt()+"while ("+cond+")";if(!this.body){return pre+" null;"+post}if(this.filter){this.body=Expressions.wrap([new IfNode(this.filter,this.body)])}return pre+" {\n"+this.body.compile(o)+"\n"+this.idt()+"}"+post}}));statement(WhileNode);OpNode=(exports.OpNode=inherit(BaseNode,{type:"Op",CONVERSIONS:{"==":"===","!=":"!==",and:"&&",or:"||",is:"===",isnt:"!==",not:"!"},CHAINABLE:["<",">",">=","<=","===","!=="],ASSIGNMENT:["||=","&&=","?="],PREFIX_OPERATORS:["typeof","delete"],constructor:function constructor(operator,first,second,flip){this.type+=" "+operator;this.children=compact([(this.first=first),(this.second=second)]);this.operator=this.CONVERSIONS[operator]||operator;this.flip=!!flip;return this},is_unary:function is_unary(){return !this.second},is_chainable:function is_chainable(){return this.CHAINABLE.indexOf(this.operator)>=0},compile_node:function compile_node(o){o.operation=true;if(this.is_chainable()&&this.first.unwrap() instanceof OpNode&&this.first.unwrap().is_chainable()){return this.compile_chain(o)}if(this.ASSIGNMENT.indexOf(this.operator)>=0){return this.compile_assignment(o)}if(this.is_unary()){return this.compile_unary(o)}if(this.operator==="?"){return this.compile_existence(o)}return this.first.compile(o)+" "+this.operator+" "+this.second.compile(o)},compile_chain:function compile_chain(o){var _a,shared;shared=this.first.unwrap().second;if(shared instanceof CallNode){_a=shared.compile_reference(o);this.first.second=_a[0];shared=_a[1]}return"("+this.first.compile(o)+") && ("+shared.compile(o)+" "+this.operator+" "+this.second.compile(o)+")"},compile_assignment:function compile_assignment(o){var _a,first,second;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];if(first.match(IDENTIFIER)){o.scope.find(first)}if(this.operator==="?="){return first+" = "+ExistenceNode.compile_test(o,this.first)+" ? "+first+" : "+second}return first+" = "+first+" "+this.operator.substr(0,2)+" "+second},compile_existence:function compile_existence(o){var _a,first,second;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];return ExistenceNode.compile_test(o,this.first)+" ? "+first+" : "+second},compile_unary:function compile_unary(o){var parts,space;space=this.PREFIX_OPERATORS.indexOf(this.operator)>=0?" ":"";parts=[this.operator,space,this.first.compile(o)];if(this.flip){parts=parts.reverse()}return parts.join("")}}));TryNode=(exports.TryNode=inherit(BaseNode,{type:"Try",constructor:function constructor(attempt,error,recovery,ensure){this.children=compact([(this.attempt=attempt),(this.recovery=recovery),(this.ensure=ensure)]);this.error=error;return this},compile_node:function compile_node(o){var catch_part,error_part,finally_part;o.indent=this.idt(1);o.top=true;error_part=this.error?" ("+this.error.compile(o)+") ":" ";catch_part=(this.recovery||"")&&" catch"+error_part+"{\n"+this.recovery.compile(o)+"\n"+this.idt()+"}";finally_part=(this.ensure||"")&&" finally {\n"+this.ensure.compile(merge(o,{returns:null}))+"\n"+this.idt()+"}";return this.idt()+"try {\n"+this.attempt.compile(o)+"\n"+this.idt()+"}"+catch_part+finally_part}}));statement(TryNode);ThrowNode=(exports.ThrowNode=inherit(BaseNode,{type:"Throw",constructor:function constructor(expression){this.children=[(this.expression=expression)];return this},compile_node:function compile_node(o){return this.idt()+"throw "+this.expression.compile(o)+";"}}));statement(ThrowNode,true);ExistenceNode=(exports.ExistenceNode=inherit(BaseNode,{type:"Existence",constructor:function constructor(expression){this.children=[(this.expression=expression)];return this},compile_node:function compile_node(o){return ExistenceNode.compile_test(o,this.expression)}}));ExistenceNode.compile_test=function compile_test(o,variable){var _a,_b,first,second;_a=[variable,variable];first=_a[0];second=_a[1];if(variable instanceof CallNode||(variable instanceof ValueNode&&variable.has_properties())){_b=variable.compile_reference(o);first=_b[0];second=_b[1]}return"(typeof "+first.compile(o)+' !== "undefined" && '+second.compile(o)+" !== null)"};ParentheticalNode=(exports.ParentheticalNode=inherit(BaseNode,{type:"Paren",constructor:function constructor(expression){this.children=[(this.expression=expression)];return this},is_statement:function is_statement(){return this.expression.is_statement()},compile_node:function compile_node(o){var code,l;code=this.expression.compile(o);if(this.is_statement()){return code}l=code.length;if(code.substr(l-1,1)===";"){code=code.substr(o,l-1)}return"("+code+")"}}));ForNode=(exports.ForNode=inherit(BaseNode,{type:"For",constructor:function constructor(body,source,name,index){var _a;this.body=body;this.name=name;this.index=index||null;this.source=source.source;this.filter=source.filter;this.step=source.step;this.object=!!source.object;if(this.object){_a=[this.index,this.name];this.name=_a[0];this.index=_a[1]}this.children=compact([this.body,this.source,this.filter]);return this},top_sensitive:function top_sensitive(){return true},compile_node:function compile_node(o){var body,body_dent,close,for_part,index,index_found,index_var,ivar,name,name_found,range,return_result,rvar,scope,set_result,source,source_part,step_part,svar,top_level,var_part,vars;top_level=del(o,"top")&&!o.returns;range=this.source instanceof ValueNode&&this.source.base instanceof RangeNode&&!this.source.properties.length;source=range?this.source.base:this.source;scope=o.scope;name=this.name&&this.name.compile(o);index=this.index&&this.index.compile(o);name_found=name&&scope.find(name);index_found=index&&scope.find(index);body_dent=this.idt(1);if(!(top_level)){rvar=scope.free_variable()}svar=scope.free_variable();ivar=range?name:index||scope.free_variable();var_part="";body=Expressions.wrap([this.body]);if(range){index_var=scope.free_variable();source_part=source.compile_variables(o);for_part=index_var+" = 0, "+source.compile(merge(o,{index:ivar,step:this.step}))+", "+index_var+"++"}else{index_var=null;source_part=svar+" = "+this.source.compile(o)+";\n"+this.idt();step_part=this.step?ivar+" += "+this.step.compile(o):ivar+"++";for_part=ivar+" = 0; "+ivar+" < "+svar+".length; "+step_part;if(name){var_part=body_dent+name+" = "+svar+"["+ivar+"];\n"}}set_result=rvar?this.idt()+rvar+" = []; ":this.idt();return_result=rvar||"";if(top_level&&this.contains(function(n){return n instanceof CodeNode})){body=ClosureNode.wrap(body,true)}if(!(top_level)){body=PushNode.wrap(rvar,body)}if(o.returns){return_result="return "+return_result;del(o,"returns");if(this.filter){body=new IfNode(this.filter,body,null,{statement:true})}}else{if(this.filter){body=Expressions.wrap([new IfNode(this.filter,body)])}}if(this.object){o.scope.assign("__hasProp","Object.prototype.hasOwnProperty",true);for_part=ivar+" in "+svar+") { if (__hasProp.call("+svar+", "+ivar+")"}if(!(top_level)){return_result="\n"+this.idt()+return_result+";"}body=body.compile(merge(o,{indent:body_dent,top:true}));vars=range?name:name+", "+ivar;close=this.object?"}}\n":"}\n";return set_result+source_part+"for ("+for_part+") {\n"+var_part+body+"\n"+this.idt()+close+this.idt()+return_result}}));statement(ForNode);IfNode=(exports.IfNode=inherit(BaseNode,{type:"If",constructor:function constructor(condition,body,else_body,tags){this.condition=condition;this.body=body&&body.unwrap();this.else_body=else_body&&else_body.unwrap();this.children=compact([this.condition,this.body,this.else_body]);this.tags=tags||{};if(this.condition instanceof Array){this.multiple=true}if(this.tags.invert){this.condition=new OpNode("!",new ParentheticalNode(this.condition))}return this},push:function push(else_body){var eb;eb=else_body.unwrap();this.else_body?this.else_body.push(eb):(this.else_body=eb);return this},force_statement:function force_statement(){this.tags.statement=true;return this},rewrite_condition:function rewrite_condition(expression){this.switcher=expression;return this},rewrite_switch:function rewrite_switch(o){var _a,_b,assigner,cond,i,variable;assigner=this.switcher;if(!(this.switcher.unwrap() instanceof LiteralNode)){variable=new LiteralNode(o.scope.free_variable());assigner=new AssignNode(variable,this.switcher);this.switcher=variable}this.condition=(function(){if(this.multiple){_a=[];_b=this.condition;for(i=0;i<_b.length;i++){cond=_b[i];_a.push(new OpNode("is",(i===0?assigner:this.switcher),cond))}return _a}else{return new OpNode("is",assigner,this.condition)}}).call(this);if(this.is_chain()){this.else_body.rewrite_condition(this.switcher)}return this},add_else:function add_else(exprs,statement){if(this.is_chain()){this.else_body.add_else(exprs,statement)}else{if(!(statement)){exprs=exprs.unwrap()}this.children.push((this.else_body=exprs))}return this},is_chain:function is_chain(){return this.chain=this.chain||this.else_body&&this.else_body instanceof IfNode},is_statement:function is_statement(){return this.statement=this.statement||!!(this.comment||this.tags.statement||this.body.is_statement()||(this.else_body&&this.else_body.is_statement()))},compile_condition:function compile_condition(o){var _a,_b,_c,cond;return(function(){_a=[];_b=flatten([this.condition]);for(_c=0;_c<_b.length;_c++){cond=_b[_c];_a.push(cond.compile(o))}return _a}).call(this).join(" || ")},compile_node:function compile_node(o){return this.is_statement()?this.compile_statement(o):this.compile_ternary(o)},compile_statement:function compile_statement(o){var body,child,com_dent,cond_o,else_part,if_dent,if_part,prefix;if(this.switcher){this.rewrite_switch(o)}child=del(o,"chain_child");cond_o=merge(o);del(cond_o,"returns");o.indent=this.idt(1);o.top=true;if_dent=child?"":this.idt();com_dent=child?this.idt():"";prefix=this.comment?this.comment.compile(cond_o)+"\n"+com_dent:"";body=Expressions.wrap([this.body]).compile(o);if_part=prefix+if_dent+"if ("+this.compile_condition(cond_o)+") {\n"+body+"\n"+this.idt()+"}";if(!(this.else_body)){return if_part}else_part=this.is_chain()?" else "+this.else_body.compile(merge(o,{indent:this.idt(),chain_child:true})):" else {\n"+Expressions.wrap([this.else_body]).compile(o)+"\n"+this.idt()+"}";return if_part+else_part},compile_ternary:function compile_ternary(o){var else_part,if_part;if_part=this.condition.compile(o)+" ? "+this.body.compile(o);else_part=this.else_body?this.else_body.compile(o):"null";return if_part+" : "+else_part}}))})();(function(){var _a,_b,lexer,parser,path,tag;if((typeof process!=="undefined"&&process!==null)){process.mixin(require("nodes"));path=require("path");lexer=new (require("lexer").Lexer)();parser=require("parser").parser}else{lexer=new Lexer();parser=exports.parser;this.exports=(this.CoffeeScript={})}parser.lexer={lex:function lex(){var token;token=this.tokens[this.pos]||[""];this.pos+=1;this.yylineno=token[2];this.yytext=token[1];return token[0]},setInput:function setInput(tokens){this.tokens=tokens;return this.pos=0},upcomingInput:function upcomingInput(){return""},showPosition:function showPosition(){return this.pos}};exports.VERSION="0.5.2";exports.compile=function compile(code,options){return(parser.parse(lexer.tokenize(code))).compile(options)};exports.tokenize=function tokenize(code){return lexer.tokenize(code)};exports.tree=function tree(code){return parser.parse(lexer.tokenize(code))};if((typeof document!=="undefined"&&document!==null)&&document.getElementsByTagName){_a=document.getElementsByTagName("script");for(_b=0;_b<_a.length;_b++){tag=_a[_b];tag.type==="text/coffeescript"?eval(exports.compile(tag.innerHTML)):null}}})();
@@ -46,6 +46,7 @@
46
46
  <a href="#comparisons">Chained Comparisons</a>
47
47
  <a href="#strings">Multiline Strings and Heredocs</a>
48
48
  <a href="#cake">Cake, and Cakefiles</a>
49
+ <a href="#scripts">"text/coffeescript" Script Tags</a>
49
50
  <a href="#resources">Resources</a>
50
51
  <a href="#change_log">Change Log</a>
51
52
  </div>
@@ -93,7 +94,7 @@ alert reverse '!tpircseeffoC'</textarea>
93
94
 
94
95
  <p>
95
96
  <b>Latest Version:</b>
96
- <a href="http://github.com/jashkenas/coffee-script/tarball/0.5.1">0.5.1</a>
97
+ <a href="http://github.com/jashkenas/coffee-script/tarball/0.5.2">0.5.2</a>
97
98
  </p>
98
99
 
99
100
  <h2>
@@ -235,7 +236,7 @@ cubed_list = (function() {
235
236
  </h2>
236
237
 
237
238
  <p>
238
- The CoffeeScript compiler is written in pure CoffeeScript, using a
239
+ The CoffeeScript compiler is written in pure CoffeeScript, using a
239
240
  <a href="http://github.com/jashkenas/coffee-script/blob/master/src/grammar.coffee">small DSL</a>
240
241
  on top of the <a href="http://github.com/zaach/jison">Jison parser generator</a>, and is available
241
242
  as a <a href="http://nodejs.org/">Node.js</a> utility. The core compiler however,
@@ -249,7 +250,7 @@ cubed_list = (function() {
249
250
  <a href="http://nodejs.org/">Node.js</a>, 0.1.30 or higher. Then clone the CoffeeScript
250
251
  <a href="http://github.com/jashkenas/coffee-script">source repository</a>
251
252
  from GitHub, or download the latest
252
- release: <a href="http://github.com/jashkenas/coffee-script/tarball/0.5.1">0.5.1</a>.
253
+ release: <a href="http://github.com/jashkenas/coffee-script/tarball/0.5.2">0.5.2</a>.
253
254
  To install the CoffeeScript compiler system-wide
254
255
  under <tt>/usr/local</tt>, open the directory and run:
255
256
  </p>
@@ -311,6 +312,14 @@ sudo bin/cake install</pre>
311
312
  conjunction with <tt>--watch</tt>)
312
313
  </td>
313
314
  </tr>
315
+ <tr>
316
+ <td><code>-s, --stdio</code></td>
317
+ <td>
318
+ Pipe in CoffeeScript to STDIN and get back JavaScript over STDOUT.
319
+ Good for use with processes written in other languages. An example:<br />
320
+ <tt>cat src/cake.coffee | coffee -s</tt>
321
+ </td>
322
+ </tr>
314
323
  <tr>
315
324
  <td><code>-e, --eval</code></td>
316
325
  <td>
@@ -1597,6 +1606,34 @@ task(<span class="String"><span class="String">'</span>test<span class="String">
1597
1606
  });
1598
1607
  </pre><br class='clear' /></div>
1599
1608
 
1609
+ <h2>
1610
+ <span id="scripts" class="bookmark"></span>
1611
+ "text/coffeescript" Script Tags
1612
+ </h2>
1613
+
1614
+ <p>
1615
+ While it's not recommended for serious use, CoffeeScripts may be included
1616
+ directly within the browser using <tt>&lt;script type="text/coffeescript"&gt;</tt>
1617
+ tags. The codebase includes a compressed and minified version of the compiler
1618
+ (<a href="extras/coffee-script.js">Download current version here, 43k when gzipped</a>).
1619
+ Include <tt>coffee-script.js</tt> on the page <b>after</b> any <tt>text/coffeescript</tt> tags
1620
+ with inline CoffeeScript, and it will compile and evaluate them in order.
1621
+ </p>
1622
+
1623
+ <p>
1624
+ In fact, the little bit of glue script that runs "Try CoffeeScript" above,
1625
+ as well as jQuery for the menu, is implemented in just this way.
1626
+ View source and look at the bottom of the page to see the example.
1627
+ Including the script also gives you access to <tt>CoffeeScript.compile()</tt>
1628
+ so you can pop open Firebug and try compiling some strings.
1629
+ </p>
1630
+
1631
+ <p>
1632
+ The usual caveats about CoffeeScript apply &mdash; your inline scripts will
1633
+ run within a closure wrapper, so if you want to expose global variables or
1634
+ functions, attach them to the <tt>window</tt> object.
1635
+ </p>
1636
+
1600
1637
  <h2>
1601
1638
  <span id="resources" class="bookmark"></span>
1602
1639
  Resources
@@ -1625,6 +1662,15 @@ task(<span class="String"><span class="String">'</span>test<span class="String">
1625
1662
  Change Log
1626
1663
  </h2>
1627
1664
 
1665
+ <p>
1666
+ <b class="header" style="margin-top: 20px;">0.5.2</b>
1667
+ Added a compressed version of the compiler for inclusion in web pages as
1668
+ <br /><tt>extras/coffee-script.js</tt>. It'll automatically run any script tags
1669
+ with type <tt>text/coffeescript</tt> for you. Added a <tt>--stdio</tt> option
1670
+ to the <tt>coffee</tt> command, for piped-in compiles.
1671
+ </p>
1672
+
1673
+
1628
1674
  <p>
1629
1675
  <b class="header" style="margin-top: 20px;">0.5.1</b>
1630
1676
  Improvements to null soaking with the existential operator, including
@@ -1795,53 +1841,42 @@ task(<span class="String"><span class="String">'</span>test<span class="String">
1795
1841
 
1796
1842
  </div>
1797
1843
 
1798
- <script type="text/javascript" src="lib/rewriter.js"></script>
1799
- <script type="text/javascript" src="lib/lexer.js"></script>
1800
- <script type="text/javascript" src="lib/parser.js"></script>
1801
- <script type="text/javascript" src="lib/scope.js"></script>
1802
- <script type="text/javascript" src="lib/nodes.js"></script>
1803
- <script type="text/javascript" src="lib/coffee-script.js"></script>
1804
-
1805
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
1806
-
1807
- <script type="text/javascript">
1808
- window.repl_compile = function() {
1809
- var source = $('#repl_source').val();
1810
- window.compiled_js = '';
1811
- try {
1812
- window.compiled_js = CoffeeScript.compile(source, {no_wrap: true});
1813
- } catch(error) {
1814
- alert(error);
1815
- }
1816
- $('#repl_results').html(window.compiled_js);
1817
- };
1818
- window.repl_run = function() {
1819
- try {
1820
- eval(window.compiled_js);
1821
- } catch(error) {
1822
- alert(error);
1823
- }
1824
- };
1844
+ <script type="text/coffeescript">
1845
+
1846
+ window.repl_compile: ->
1847
+ source: $('#repl_source').val()
1848
+ window.compiled_js: ''
1849
+ try
1850
+ window.compiled_js: CoffeeScript.compile source, {no_wrap: true}
1851
+ catch error then alert error
1852
+ $('#repl_results').html window.compiled_js
1853
+
1854
+ window.repl_run: ->
1855
+ try
1856
+ eval window.compiled_js
1857
+ catch error then alert error
1858
+
1859
+ nav: $('.navigation')
1860
+ current_nav: null
1861
+
1862
+ close_menus: ->
1863
+ current_nav.removeClass 'active' if current_nav
1864
+ current_nav: null
1865
+
1866
+ nav.click (e) ->
1867
+ return if e.target.tagName.toLowerCase() is 'a'
1868
+ if this isnt (current_nav and current_nav[0])
1869
+ close_menus();
1870
+ current_nav: $(this)
1871
+ current_nav.addClass 'active'
1872
+ false
1873
+
1874
+ $(document.body).click -> close_menus()
1825
1875
 
1826
- var nav = $('.navigation');
1827
- var currentNav = null;
1828
- var closeMenus = function() {
1829
- if (currentNav) currentNav.removeClass('active');
1830
- currentNav = null;
1831
- };
1832
- nav.click(function(e) {
1833
- if (e.target.tagName.toLowerCase() == 'a') return;
1834
- if (this !== (currentNav && currentNav[0])) {
1835
- closeMenus();
1836
- currentNav = $(this);
1837
- currentNav.addClass('active');
1838
- }
1839
- return false;
1840
- });
1841
- $(document.body).click(function() {
1842
- closeMenus();
1843
- });
1844
1876
  </script>
1845
1877
 
1878
+ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
1879
+ <script src="extras/coffee-script.js"></script>
1880
+
1846
1881
  </body>
1847
1882
  </html>
@@ -2,15 +2,13 @@
2
2
  var coffee, fs, no_such_task, path, print_tasks, tasks;
3
3
  var __hasProp = Object.prototype.hasOwnProperty;
4
4
  // `cake` is a simplified version of Make (Rake, Jake) for CoffeeScript.
5
+ // You define tasks with names and descriptions in a Cakefile, and can call them
6
+ // from the command line, or invoke them from other tasks.
5
7
  fs = require('fs');
6
8
  path = require('path');
7
9
  coffee = require('coffee-script');
8
10
  tasks = {};
9
- no_such_task = function no_such_task(task) {
10
- process.stdio.writeError('No such task: "' + task + '"\n');
11
- return process.exit(1);
12
- };
13
- // Mixin the Cake functionality.
11
+ // Mixin the top-level Cake functions for Cakefiles to use.
14
12
  process.mixin({
15
13
  // Define a task with a name, a description, and the action itself.
16
14
  task: function task(name, description, action) {
@@ -28,26 +26,6 @@
28
26
  return tasks[name].action();
29
27
  }
30
28
  });
31
- // Display the list of Cake tasks.
32
- print_tasks = function print_tasks() {
33
- var _a, _b, _c, _d, _e, _f, _g, i, name, spaces, task;
34
- _a = []; _b = tasks;
35
- for (name in _b) { if (__hasProp.call(_b, name)) {
36
- task = _b[name];
37
- _a.push((function() {
38
- spaces = 20 - name.length;
39
- spaces = spaces > 0 ? (function() {
40
- _c = []; _f = 0; _g = spaces;
41
- for (_e = 0, i=_f; (_f <= _g ? i <= _g : i >= _g); (_f <= _g ? i += 1 : i -= 1), _e++) {
42
- _c.push(' ');
43
- }
44
- return _c;
45
- }).call(this).join('') : '';
46
- return puts("cake " + name + spaces + ' # ' + task.description);
47
- }).call(this));
48
- }}
49
- return _a;
50
- };
51
29
  // Running `cake` runs the tasks you pass asynchronously (node-style), or
52
30
  // prints them out, with no arguments.
53
31
  exports.run = function run() {
@@ -66,15 +44,35 @@
66
44
  _a = []; _b = args;
67
45
  for (_c = 0; _c < _b.length; _c++) {
68
46
  arg = _b[_c];
69
- _a.push((function() {
70
- if (!(tasks[arg])) {
71
- no_such_task(arg);
72
- }
73
- return tasks[arg].action();
74
- }).call(this));
47
+ _a.push(invoke(arg));
75
48
  }
76
49
  return _a;
77
50
  });
78
51
  });
79
52
  };
80
- })();
53
+ // Display the list of Cake tasks.
54
+ print_tasks = function print_tasks() {
55
+ var _a, _b, _c, _d, _e, _f, _g, i, name, spaces, task;
56
+ _a = []; _b = tasks;
57
+ for (name in _b) { if (__hasProp.call(_b, name)) {
58
+ task = _b[name];
59
+ _a.push((function() {
60
+ spaces = 20 - name.length;
61
+ spaces = spaces > 0 ? (function() {
62
+ _c = []; _f = 0; _g = spaces;
63
+ for (_e = 0, i=_f; (_f <= _g ? i <= _g : i >= _g); (_f <= _g ? i += 1 : i -= 1), _e++) {
64
+ _c.push(' ');
65
+ }
66
+ return _c;
67
+ }).call(this).join('') : '';
68
+ return puts("cake " + name + spaces + ' # ' + task.description);
69
+ }).call(this));
70
+ }}
71
+ return _a;
72
+ };
73
+ // Print an error and exit when attempting to all an undefined task.
74
+ no_such_task = function no_such_task(task) {
75
+ process.stdio.writeError('No such task: "' + task + '"\n');
76
+ return process.exit(1);
77
+ };
78
+ })();
@@ -1,5 +1,5 @@
1
1
  (function(){
2
- var lexer, parser, path;
2
+ var _a, _b, lexer, parser, path, tag;
3
3
  // Set up for both the browser and the server.
4
4
  if ((typeof process !== "undefined" && process !== null)) {
5
5
  process.mixin(require('nodes'));
@@ -32,7 +32,7 @@
32
32
  return this.pos;
33
33
  }
34
34
  };
35
- exports.VERSION = '0.5.1';
35
+ exports.VERSION = '0.5.2';
36
36
  // Compile CoffeeScript to JavaScript, using the Coffee/Jison compiler.
37
37
  exports.compile = function compile(code, options) {
38
38
  return (parser.parse(lexer.tokenize(code))).compile(options);
@@ -45,17 +45,13 @@
45
45
  exports.tree = function tree(code) {
46
46
  return parser.parse(lexer.tokenize(code));
47
47
  };
48
- // Pretty-print a token stream.
49
- exports.print_tokens = function print_tokens(tokens) {
50
- var _a, _b, _c, strings, token;
51
- strings = (function() {
52
- _a = []; _b = tokens;
53
- for (_c = 0; _c < _b.length; _c++) {
54
- token = _b[_c];
55
- _a.push('[' + token[0] + ' ' + token[1].toString().replace(/\n/, '\\n') + ']');
56
- }
57
- return _a;
58
- }).call(this);
59
- return puts(strings.join(' '));
60
- };
61
- })();
48
+ // Activate CoffeeScript in the browser by having it compile and eval
49
+ // all script tags with a content-type of text/coffeescript.
50
+ if ((typeof document !== "undefined" && document !== null) && document.getElementsByTagName) {
51
+ _a = document.getElementsByTagName('script');
52
+ for (_b = 0; _b < _a.length; _b++) {
53
+ tag = _a[_b];
54
+ tag.type === 'text/coffeescript' ? eval(exports.compile(tag.innerHTML)) : null;
55
+ }
56
+ }
57
+ })();
@@ -1,11 +1,11 @@
1
1
  (function(){
2
- var BANNER, SWITCHES, coffee, compile_script, compile_scripts, fs, lint, option_parser, options, optparse, parse_options, path, sources, usage, version, watch_scripts, write_js;
2
+ var BANNER, CoffeeScript, SWITCHES, compile_options, compile_script, compile_scripts, compile_stdio, fs, lint, option_parser, options, optparse, parse_options, path, print_tokens, sources, usage, version, watch_scripts, write_js;
3
3
  fs = require('fs');
4
4
  path = require('path');
5
- coffee = require('coffee-script');
6
5
  optparse = require('optparse');
6
+ CoffeeScript = require('coffee-script');
7
7
  BANNER = "coffee compiles CoffeeScript source files into JavaScript.\n\nUsage:\n coffee path/to/script.coffee";
8
- SWITCHES = [['-i', '--interactive', 'run an interactive CoffeeScript REPL'], ['-r', '--run', 'compile and run a CoffeeScript'], ['-o', '--output [DIR]', 'set the directory for compiled JavaScript'], ['-w', '--watch', 'watch scripts for changes, and recompile'], ['-p', '--print', 'print the compiled JavaScript to stdout'], ['-l', '--lint', 'pipe the compiled JavaScript through JSLint'], ['-e', '--eval', 'compile a string from the command line'], ['-t', '--tokens', 'print the tokens that the lexer produces'], ['-tr', '--tree', 'print the parse tree that Jison produces'], ['-n', '--no-wrap', 'compile without the top-level function wrapper'], ['-v', '--version', 'display CoffeeScript version'], ['-h', '--help', 'display this help message']];
8
+ SWITCHES = [['-i', '--interactive', 'run an interactive CoffeeScript REPL'], ['-r', '--run', 'compile and run a CoffeeScript'], ['-o', '--output [DIR]', 'set the directory for compiled JavaScript'], ['-w', '--watch', 'watch scripts for changes, and recompile'], ['-p', '--print', 'print the compiled JavaScript to stdout'], ['-l', '--lint', 'pipe the compiled JavaScript through JSLint'], ['-s', '--stdio', 'listen for and compile scripts over stdio'], ['-e', '--eval', 'compile a string from the command line'], ['-n', '--no-wrap', 'compile without the top-level function wrapper'], ['-t', '--tokens', 'print the tokens that the lexer produces'], ['-tr', '--tree', 'print the parse tree that Jison produces'], ['-v', '--version', 'display CoffeeScript version'], ['-h', '--help', 'display this help message']];
9
9
  options = {};
10
10
  sources = [];
11
11
  option_parser = null;
@@ -13,14 +13,23 @@
13
13
  exports.run = function run() {
14
14
  var flags, separator;
15
15
  parse_options();
16
+ if (options.help) {
17
+ return usage();
18
+ }
19
+ if (options.version) {
20
+ return version();
21
+ }
16
22
  if (options.interactive) {
17
23
  return require('repl');
18
24
  }
25
+ if (options.stdio) {
26
+ return compile_stdio();
27
+ }
19
28
  if (options.eval) {
20
- return compile_script('terminal', sources[0]);
29
+ return compile_script('unknown', sources[0]);
21
30
  }
22
31
  if (!(sources.length)) {
23
- usage();
32
+ return usage();
24
33
  }
25
34
  separator = sources.indexOf('--');
26
35
  flags = [];
@@ -42,7 +51,7 @@
42
51
  };
43
52
  // The "--version" message.
44
53
  version = function version() {
45
- puts("CoffeeScript version " + coffee.VERSION);
54
+ puts("CoffeeScript version " + CoffeeScript.VERSION);
46
55
  return process.exit(0);
47
56
  };
48
57
  // Compiles the source CoffeeScript, returning the desired JavaScript, tokens,
@@ -64,36 +73,47 @@
64
73
  // Compile a single source script, containing the given code, according to the
65
74
  // requested options. Both compile_scripts and watch_scripts share this method.
66
75
  compile_script = function compile_script(source, code) {
67
- var js, o, opts;
68
- opts = options;
69
- o = opts.no_wrap ? {
70
- no_wrap: true
71
- } : {};
76
+ var js, o;
77
+ o = options;
72
78
  try {
73
- if (opts.tokens) {
74
- return coffee.print_tokens(coffee.tokenize(code));
75
- } else if (opts.tree) {
76
- return puts(coffee.tree(code).toString());
79
+ if (o.tokens) {
80
+ return print_tokens(CoffeeScript.tokenize(code));
81
+ } else if (o.tree) {
82
+ return puts(CoffeeScript.tree(code).toString());
77
83
  } else {
78
- js = coffee.compile(code, o);
79
- if (opts.run) {
84
+ js = CoffeeScript.compile(code, compile_options());
85
+ if (o.run) {
80
86
  return eval(js);
81
- } else if (opts.lint) {
87
+ } else if (o.lint) {
82
88
  return lint(js);
83
- } else if (opts.print || opts.eval) {
84
- return puts(js);
89
+ } else if (o.print || o.eval) {
90
+ return print(js);
85
91
  } else {
86
92
  return write_js(source, js);
87
93
  }
88
94
  }
89
95
  } catch (err) {
90
- if (opts.watch) {
96
+ if (o.watch) {
91
97
  return puts(err.message);
92
98
  } else {
93
99
  throw err;
94
100
  }
95
101
  }
96
102
  };
103
+ // Listen for and compile scripts over stdio.
104
+ compile_stdio = function compile_stdio() {
105
+ var code;
106
+ code = '';
107
+ process.stdio.open();
108
+ process.stdio.addListener('data', function(string) {
109
+ if (string) {
110
+ return code += string;
111
+ }
112
+ });
113
+ return process.stdio.addListener('close', function() {
114
+ return process.stdio.write(CoffeeScript.compile(code, compile_options()));
115
+ });
116
+ };
97
117
  // Watch a list of source CoffeeScript files, recompiling them every time the
98
118
  // files are updated.
99
119
  watch_scripts = function watch_scripts() {
@@ -143,59 +163,29 @@
143
163
  jsl.write(js);
144
164
  return jsl.close();
145
165
  };
166
+ // Pretty-print a token stream.
167
+ print_tokens = function print_tokens(tokens) {
168
+ var _a, _b, _c, strings, token;
169
+ strings = (function() {
170
+ _a = []; _b = tokens;
171
+ for (_c = 0; _c < _b.length; _c++) {
172
+ token = _b[_c];
173
+ _a.push('[' + token[0] + ' ' + token[1].toString().replace(/\n/, '\\n') + ']');
174
+ }
175
+ return _a;
176
+ }).call(this);
177
+ return puts(strings.join(' '));
178
+ };
146
179
  // Use OptionParser for all the options.
147
180
  parse_options = function parse_options() {
148
- var oparser, opts, paths;
149
- opts = (options = {});
150
- oparser = (option_parser = new optparse.OptionParser(SWITCHES));
151
- oparser.banner = BANNER;
152
- oparser.add('interactive', function() {
153
- return opts.interactive = true;
154
- });
155
- oparser.add('run', function() {
156
- return opts.run = true;
157
- });
158
- oparser.add('output', function(dir) {
159
- return opts.output = dir;
160
- });
161
- oparser.add('watch', function() {
162
- return opts.watch = true;
163
- });
164
- oparser.add('print', function() {
165
- return opts.print = true;
166
- });
167
- oparser.add('lint', function() {
168
- return opts.lint = true;
169
- });
170
- oparser.add('eval', function() {
171
- return opts.eval = true;
172
- });
173
- oparser.add('tokens', function() {
174
- return opts.tokens = true;
175
- });
176
- oparser.add('tree', function() {
177
- return opts.tree = true;
178
- });
179
- oparser.add('no-wrap', function() {
180
- return opts.no_wrap = true;
181
- });
182
- oparser.add('help', (function(__this) {
183
- var __func = function() {
184
- return usage();
185
- };
186
- return (function() {
187
- return __func.apply(__this, arguments);
188
- });
189
- })(this));
190
- oparser.add('version', (function(__this) {
191
- var __func = function() {
192
- return version();
193
- };
194
- return (function() {
195
- return __func.apply(__this, arguments);
196
- });
197
- })(this));
198
- paths = oparser.parse(process.ARGV);
199
- return sources = paths.slice(2, paths.length);
181
+ option_parser = new optparse.OptionParser(SWITCHES, BANNER);
182
+ options = option_parser.parse(process.ARGV);
183
+ return sources = options.arguments.slice(2, options.arguments.length);
184
+ };
185
+ // The options to pass to the CoffeeScript compiler.
186
+ compile_options = function compile_options() {
187
+ return options['no-wrap'] ? {
188
+ no_wrap: true
189
+ } : {};
200
190
  };
201
- })();
191
+ })();