mercury 0.9.15 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,27 +2,29 @@
2
2
 
3
3
  require 'rubygems'
4
4
  require 'fileutils'
5
+ require File.dirname(__FILE__) + '/../lib/mercury_config.rb'
5
6
 
6
7
  version = ">= 0"
7
8
 
9
+
8
10
  if ARGV.first
9
- # Build Directory and add setup files
10
- FileUtils.mkdir_p ARGV.first
11
- FileUtils.mkdir_p File.join(ARGV.first, 'wwwroot')
12
- FileUtils.mkdir_p File.join(ARGV.first, 'tmp')
13
- config_ru = ["require 'mercury'","log = File.new('tmp/mercury.log', 'a+')", "$stdout.reopen(log)", "$stderr.reopen(log)", "run Mercury"].join("\n")
14
- File.open(File.join(ARGV.first, 'config.ru'),'w').write(config_ru)
15
- gemfile = ['source :gemcutter', "gem 'thin'", "gem 'mercury'"].join("\n")
16
- File.open(File.join(ARGV.first, 'Gemfile'),'w').write(gemfile)
11
+ config = MercuryConfig.new(ARGV)
12
+ config.create_project
13
+ config.apply_stack
14
+
17
15
  puts "***********************************"
18
16
  puts "* Thank you for choosing Mercury! *"
19
17
  puts "***********************************"
20
- puts "* $ cd #{ARGV.first} "
18
+ puts "* You setup the #{config.stack} *"
19
+ puts "* And you project is called *"
20
+ puts "* #{config.project} *"
21
+ puts "***********************************"
22
+ puts "* $ cd #{config.project} "
21
23
  puts "* $ mercury "
22
24
  puts "***********************************"
23
25
  puts "* have fun.... "
24
26
  puts "***********************************"
25
- puts "* Go to http://mercury.jackhq.com "
27
+ puts "* Go to http://jackhq.com/mercury "
26
28
  puts "* for more info "
27
29
  puts "***********************************"
28
30
 
@@ -2,8 +2,11 @@ require 'sinatra'
2
2
  require 'haml'
3
3
  require 'fileutils'
4
4
  require 'faker'
5
- require File.dirname(__FILE__) + '/mercury/helpers'
6
- require File.dirname(__FILE__) + '/mercury/images'
5
+
6
+ %w{ helpers images css js }.each do |lib|
7
+ require File.dirname(__FILE__) + '/mercury/' + lib
8
+ end
9
+
7
10
  require 'coffee_script'
8
11
  require 'sass/plugin/rack'
9
12
 
@@ -14,13 +17,18 @@ class Mercury < Sinatra::Application
14
17
 
15
18
  helpers Sinatra::MercuryHelpers
16
19
  register Sinatra::MercuryImages
20
+ register Sinatra::MercuryCss
21
+ register Sinatra::MercuryJs
22
+
17
23
 
18
24
 
19
25
 
20
26
  set :root, FileUtils.pwd.gsub("\n",'')
21
- set :public, File.dirname(__FILE__) + '/public'
27
+ set :public, FileUtils.pwd.gsub("\n",'') + '/wwwroot'
22
28
  set :views, FileUtils.pwd.gsub("\n",'') + '/wwwroot'
23
29
 
30
+
31
+
24
32
  get '/*' do
25
33
  view_file_request = params["splat"][0]
26
34
  haml view_file_request.empty? ? view_file = get_view('index.haml') : view_file_request.to_sym, :layout => get_view('layout.haml')
@@ -0,0 +1,15 @@
1
+ module Sinatra
2
+ module MercuryCss
3
+ # register app
4
+ def self.registered(app)
5
+ # stream images
6
+ app.get %r{(.css)$} do
7
+ content_type 'text/css'
8
+ File.open(options.views + request.path_info, 'rb') do |file|
9
+ file.read
10
+ end
11
+ end
12
+ end
13
+ end
14
+ register MercuryCss
15
+ end
@@ -3,7 +3,7 @@ module Sinatra
3
3
  # register app
4
4
  def self.registered(app)
5
5
  # stream images
6
- app.get %r{(gif|jpg|png|jpeg)$} do
6
+ app.get %r{(.gif|.jpg|.png|.jpeg)$} do
7
7
  content_type get_image_type(request.path_info)
8
8
  File.open(options.views + request.path_info, 'rb') do |file|
9
9
  file.read
@@ -0,0 +1,15 @@
1
+ module Sinatra
2
+ module MercuryJs
3
+ # register app
4
+ def self.registered(app)
5
+ # stream images
6
+ app.get %r{(.js)$} do
7
+ content_type 'text/javascript'
8
+ File.open(options.views + request.path_info, 'rb') do |file|
9
+ file.read
10
+ end
11
+ end
12
+ end
13
+ end
14
+ register MercuryJs
15
+ end
@@ -0,0 +1,36 @@
1
+ class MercuryConfig
2
+ JQUERY = "jquery"
3
+ SENCHA = "sencha"
4
+
5
+ attr_accessor :project, :stack
6
+
7
+ def initialize(args)
8
+ @project = args.first
9
+ @stack = JQUERY
10
+ if args.first and args.first.split(':')[0] == "stack"
11
+ @project = args.last
12
+ @stack = args.first.split(':')[1] == SENCHA ? SENCHA : JQUERY
13
+ end
14
+ end
15
+
16
+ def create_project
17
+ # Build Directory and add setup files
18
+ FileUtils.mkdir_p @project
19
+ FileUtils.mkdir_p File.join(@project, 'wwwroot')
20
+ FileUtils.mkdir_p File.join(@project, 'tmp')
21
+
22
+ config_ru = ["require 'mercury'","log = File.new('tmp/mercury.log', 'a+')", "$stdout.reopen(log)", "$stderr.reopen(log)", "run Mercury"].join("\n")
23
+ File.open(File.join(@project, 'config.ru'),'w').write(config_ru)
24
+ gemfile = ['source :gemcutter', "gem 'thin'", "gem 'mercury'"].join("\n")
25
+ File.open(File.join(@project, 'Gemfile'),'w').write(gemfile)
26
+ end
27
+
28
+ def apply_stack
29
+ if @stack == SENCHA
30
+ FileUtils.cp_r File.dirname(__FILE__) + '/../lib/sencha/.', FileUtils.pwd + "/#{@project}/wwwroot"
31
+ else
32
+ FileUtils.cp_r File.dirname(__FILE__) + '/../lib/public/.', FileUtils.pwd + "/#{@project}/wwwroot"
33
+ end
34
+ end
35
+
36
+ end
Binary file
@@ -0,0 +1,17 @@
1
+ <!doctype html>
2
+ <html manifest="application.manifest">
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
+ <title>Github Repo Search</title>
6
+
7
+ <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
8
+ <meta name="apple-mobile-web-app-capable" content="yes" />
9
+ <link rel="apple-touch-icon" href="apple-touch-icon.png" />
10
+
11
+ <link rel="stylesheet" href="stylesheets/ext-touch.css" type="text/css">
12
+
13
+ <script type="text/javascript" src="javascripts/ext-touch.js"></script>
14
+
15
+ </head>
16
+ <body></body>
17
+ </html>
@@ -0,0 +1 @@
1
+ (function(){var balanced_string,compact,count,del,extend,flatten,helpers,include,merge,starts;var __hasProp=Object.prototype.hasOwnProperty;if(!((typeof process!=="undefined"&&process!==null))){this.exports=this}helpers=(exports.helpers={});helpers.include=(include=function include(list,value){return list.indexOf(value)>=0});helpers.starts=(starts=function starts(string,literal,start){return string.substring(start,(start||0)+literal.length)===literal});helpers.compact=(compact=function compact(array){var _a,_b,_c,_d,item;_a=[];_c=array;for(_b=0,_d=_c.length;_b<_d;_b++){item=_c[_b];item?_a.push(item):null}return _a});helpers.count=(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});helpers.merge=(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});helpers.extend=(extend=function extend(object,properties){var _a,_b,key,val;_a=[];_b=properties;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];_a.push((object[key]=val))}}return _a});helpers.flatten=(flatten=function flatten(array){var _a,_b,_c,item,memo;memo=[];_b=array;for(_a=0,_c=_b.length;_a<_c;_a++){item=_b[_a];item instanceof Array?(memo=memo.concat(item)):memo.push(item)}return memo});helpers.del=(del=function del(obj,key){var val;val=obj[key];delete obj[key];return val});helpers.balanced_string=(balanced_string=function balanced_string(str,delimited,options){var _a,_b,_c,_d,close,i,levels,open,pair,slash;options=options||{};slash=delimited[0][0]==="/";levels=[];i=0;while(i<str.length){if(levels.length&&starts(str,"\\",i)){i+=1}else{_b=delimited;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];_d=pair;open=_d[0];close=_d[1];if(levels.length&&starts(str,close,i)&&levels[levels.length-1]===pair){levels.pop();i+=close.length-1;if(!(levels.length)){i+=1}break}else{if(starts(str,open,i)){levels.push(pair);i+=open.length-1;break}}}}if(!levels.length||slash&&starts(str,"\n",i)){break}i+=1}if(levels.length){if(slash){return false}throw new Error(("SyntaxError: Unterminated "+(levels.pop()[0])+" starting on line "+(this.line+1)))}if(!i){return false}else{return str.substring(0,i)}})})();(function(){var BALANCED_PAIRS,EXPRESSION_CLOSE,EXPRESSION_END,EXPRESSION_START,IMPLICIT_BLOCK,IMPLICIT_CALL,IMPLICIT_END,IMPLICIT_FUNC,INVERSES,Rewriter,SINGLE_CLOSERS,SINGLE_LINERS,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j,_k,helpers,include,pair;var __slice=Array.prototype.slice,__bind=function(func,obj,args){return function(){return func.apply(obj||{},args?args.concat(__slice.call(arguments,0)):arguments)}},__hasProp=Object.prototype.hasOwnProperty;if((typeof process!=="undefined"&&process!==null)){helpers=require("./helpers").helpers}else{this.exports=this;helpers=this.helpers}include=helpers.include;exports.Rewriter=(function(){Rewriter=function Rewriter(){};Rewriter.prototype.rewrite=function rewrite(tokens){this.tokens=tokens;this.adjust_comments();this.remove_leading_newlines();this.remove_mid_expression_newlines();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};Rewriter.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};Rewriter.prototype.adjust_comments=function adjust_comments(){return this.scan_tokens(__bind(function(prev,token,post,i){var after;if(!(token[0]==="COMMENT")){return 1}after=this.tokens[i+2];if(after&&after[0]==="INDENT"){this.tokens.splice(i+2,1);this.tokens.splice(i,0,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}}},this))};Rewriter.prototype.remove_leading_newlines=function remove_leading_newlines(){var _a;_a=[];while(this.tokens[0]&&this.tokens[0][0]==="TERMINATOR"){_a.push(this.tokens.shift())}return _a};Rewriter.prototype.remove_mid_expression_newlines=function remove_mid_expression_newlines(){return this.scan_tokens(__bind(function(prev,token,post,i){if(!(post&&include(EXPRESSION_CLOSE,post[0])&&token[0]==="TERMINATOR")){return 1}this.tokens.splice(i,1);return 0},this))};Rewriter.prototype.close_open_calls_and_indexes=function close_open_calls_and_indexes(){var brackets,parens;parens=[0];brackets=[0];return this.scan_tokens(__bind(function(prev,token,post,i){var _a;if((_a=token[0])==="CALL_START"){parens.push(0)}else{if(_a==="INDEX_START"){brackets.push(0)}else{if(_a==="("){parens[parens.length-1]+=1}else{if(_a==="["){brackets[brackets.length-1]+=1}else{if(_a===")"){if(parens[parens.length-1]===0){parens.pop();token[0]="CALL_END"}else{parens[parens.length-1]-=1}}else{if(_a==="]"){if(brackets[brackets.length-1]===0){brackets.pop();token[0]="INDEX_END"}else{brackets[brackets.length-1]-=1}}}}}}}return 1},this))};Rewriter.prototype.add_implicit_parentheses=function add_implicit_parentheses(){var calls,parens,stack,start_parens;stack=[0];calls=0;parens=0;start_parens=0;return this.scan_tokens(__bind(function(prev,token,post,i){var _a,_b,_c,idx,last,open,size,stack_pointer,tag,tmp;tag=token[0];if(tag==="CALL_START"){calls+=1}else{if(tag==="CALL_END"){calls-=1}else{if(tag==="("){parens+=1}else{if(tag===")"){parens-=1}else{if(tag==="INDENT"){stack.push(0)}else{if(tag==="OUTDENT"){last=stack.pop();stack[stack.length-1]+=last}}}}}}open=stack[stack.length-1]>0;if(!(typeof post!=="undefined"&&post!==null)||(start_parens>parens)||(start_parens===parens&&include(IMPLICIT_END,tag))){if(tag==="INDENT"&&prev&&include(IMPLICIT_BLOCK,prev[0])){return 1}if(tag==="OUTDENT"&&token.generated){return 1}if(open||tag==="INDENT"){idx=tag==="OUTDENT"?i+1:i;stack_pointer=tag==="INDENT"?2:1;_b=0;_c=stack[stack.length-stack_pointer];for(_a=0,tmp=_b;(_b<=_c?tmp<_c:tmp>_c);(_b<=_c?tmp+=1:tmp-=1),_a++){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&&include(IMPLICIT_FUNC,prev[0])&&include(IMPLICIT_CALL,tag))){return 1}calls=0;start_parens=tag==="("?parens-1:parens;this.tokens.splice(i,0,["CALL_START","(",token[2]]);stack[stack.length-1]+=1;return 2},this))};Rewriter.prototype.add_implicit_indentation=function add_implicit_indentation(){return this.scan_tokens(__bind(function(prev,token,post,i){var idx,insertion,outdent,parens,pre,starter,tok;if(!(include(SINGLE_LINERS,token[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];pre=this.tokens[idx-1];if((!tok||(include(SINGLE_CLOSERS,tok[0])&&tok[1]!==";")||(tok[0]===")"&&parens===0))&&!(starter==="ELSE"&&tok[0]==="ELSE")){insertion=pre[0]===","?idx-1:idx;outdent=["OUTDENT",2,token[2]];outdent.generated=true;this.tokens.splice(insertion,0,outdent);break}if(tok[0]==="("){parens+=1}if(tok[0]===")"){parens-=1}}if(!(token[0]==="THEN")){return 1}this.tokens.splice(i,1);return 0},this))};Rewriter.prototype.ensure_balance=function ensure_balance(pairs){var _a,_b,key,levels,line,open,open_line,unclosed,value;levels={};open_line={};this.scan_tokens(__bind(function(prev,token,post,i){var _a,_b,_c,_d,close,open,pair;_b=pairs;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];_d=pair;open=_d[0];close=_d[1];levels[open]=levels[open]||0;if(token[0]===open){if(levels[open]===0){open_line[open]=token[2]}levels[open]+=1}if(token[0]===close){levels[open]-=1}if(levels[open]<0){throw new Error(("too many "+(token[1])+" on line "+(token[2]+1)))}}return 1},this));unclosed=(function(){_a=[];_b=levels;for(key in _b){if(__hasProp.call(_b,key)){value=_b[key];value>0?_a.push(key):null}}return _a})();if(unclosed.length){open=unclosed[0];line=open_line[open]+1;throw new Error(("unclosed "+open+" on line "+line))}};Rewriter.prototype.rewrite_closing_parens=function rewrite_closing_parens(){var _a,debt,key,stack,val;stack=[];debt={};_a=INVERSES;for(key in _a){if(__hasProp.call(_a,key)){val=_a[key];(debt[key]=0)}}return this.scan_tokens(__bind(function(prev,token,post,i){var inv,match,mtag,tag;tag=token[0];inv=INVERSES[token[0]];if(include(EXPRESSION_START,tag)){stack.push(token);return 1}else{if(include(EXPRESSION_END,tag)){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}debt[mtag]+=1;val=mtag==="INDENT"?match[1]:INVERSES[mtag];this.tokens.splice(i,0,[INVERSES[mtag],val]);return 1}}else{return 1}}},this))};return Rewriter})();BALANCED_PAIRS=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["PARAM_START","PARAM_END"],["CALL_START","CALL_END"],["INDEX_START","INDEX_END"],["SOAKED_INDEX_START","SOAKED_INDEX_END"]];INVERSES={};_b=BALANCED_PAIRS;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];INVERSES[pair[0]]=pair[1];INVERSES[pair[1]]=pair[0]}EXPRESSION_START=(function(){_d=[];_f=BALANCED_PAIRS;for(_e=0,_g=_f.length;_e<_g;_e++){pair=_f[_e];_d.push(pair[0])}return _d})();EXPRESSION_END=(function(){_h=[];_j=BALANCED_PAIRS;for(_i=0,_k=_j.length;_i<_k;_i++){pair=_j[_i];_h.push(pair[1])}return _h})();EXPRESSION_CLOSE=["CATCH","WHEN","ELSE","FINALLY"].concat(EXPRESSION_END);IMPLICIT_FUNC=["IDENTIFIER","SUPER",")","CALL_END","]","INDEX_END","<-"];IMPLICIT_CALL=["IDENTIFIER","NUMBER","STRING","JS","REGEX","NEW","PARAM_START","TRY","DELETE","TYPEOF","SWITCH","EXTENSION","TRUE","FALSE","YES","NO","ON","OFF","!","!!","NOT","THIS","NULL","@","->","=>","[","(","{"];IMPLICIT_BLOCK=["->","=>","{","[",","];IMPLICIT_END=["IF","UNLESS","FOR","WHILE","TERMINATOR","INDENT","OUTDENT"];SINGLE_LINERS=["ELSE","->","=>","TRY","FINALLY","THEN"];SINGLE_CLOSERS=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"]})();(function(){var ACCESSORS,ASSIGNMENT,CALLABLE,CODE,COFFEE_ALIASES,COFFEE_KEYWORDS,COMMENT,COMMENT_CLEANER,CONVERSIONS,HALF_ASSIGNMENTS,HEREDOC,HEREDOC_INDENT,IDENTIFIER,INTERPOLATION,JS_CLEANER,JS_FORBIDDEN,JS_KEYWORDS,KEYWORDS,LAST_DENT,LAST_DENTS,LINE_BREAK,Lexer,MULTILINER,MULTI_DENT,NOT_REGEX,NO_NEWLINE,NUMBER,OPERATOR,REGEX_ESCAPE,REGEX_FLAGS,REGEX_INTERPOLATION,REGEX_START,RESERVED,Rewriter,STRING_NEWLINES,WHITESPACE,balanced_string,compact,count,helpers,include,starts;var __slice=Array.prototype.slice;if((typeof process!=="undefined"&&process!==null)){Rewriter=require("./rewriter").Rewriter;helpers=require("./helpers").helpers}else{this.exports=this;Rewriter=this.Rewriter;helpers=this.helpers}include=helpers.include;count=helpers.count;starts=helpers.starts;compact=helpers.compact;balanced_string=helpers.balanced_string;exports.Lexer=(function(){Lexer=function Lexer(){};Lexer.prototype.tokenize=function tokenize(code,options){var o;code=code.replace(/(\r|\s+$)/g,"");o=options||{};this.code=code;this.i=0;this.line=o.line||0;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();if(o.rewrite===false){return this.tokens}return(new Rewriter()).rewrite(this.tokens)};Lexer.prototype.extract_next_token=function extract_next_token(){if(this.extension_token()){return null}if(this.identifier_token()){return null}if(this.number_token()){return null}if(this.heredoc_token()){return null}if(this.regex_token()){return null}if(this.comment_token()){return null}if(this.line_token()){return null}if(this.whitespace_token()){return null}if(this.js_token()){return null}if(this.string_token()){return null}return this.literal_token()};Lexer.prototype.extension_token=function extension_token(){var _a,_b,_c,extension;_b=Lexer.extensions;for(_a=0,_c=_b.length;_a<_c;_a++){extension=_b[_a];if(extension.call(this)){return true}}return false};Lexer.prototype.identifier_token=function identifier_token(){var accessed,id,tag;if(!(id=this.match(IDENTIFIER,1))){return false}this.name_access_type();accessed=include(ACCESSORS,this.tag(0));tag="IDENTIFIER";if(!accessed&&include(KEYWORDS,id)){tag=id.toUpperCase()}if(include(RESERVED,id)){this.identifier_error(id)}if(tag==="WHEN"&&include(LINE_BREAK,this.tag())){tag="LEADING_WHEN"}this.i+=id.length;if(!accessed){if(include(COFFEE_ALIASES,id)){tag=(id=CONVERSIONS[id])}if(this.prev()&&this.prev()[0]==="ASSIGN"&&include(HALF_ASSIGNMENTS,tag)){return this.tag_half_assignment(tag)}}this.token(tag,id);return true};Lexer.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};Lexer.prototype.string_token=function string_token(){var string;if(!(starts(this.chunk,'"')||starts(this.chunk,"'"))){return false}if(!(string=this.balanced_token(['"','"'],["${","}"])||this.balanced_token(["'","'"]))){return false}this.interpolate_string(string.replace(STRING_NEWLINES," \\\n"));this.line+=count(string,"\n");this.i+=string.length;return true};Lexer.prototype.heredoc_token=function heredoc_token(){var doc,match,quote;if(!(match=this.chunk.match(HEREDOC))){return false}quote=match[1].substr(0,1);doc=this.sanitize_heredoc(match[2]||match[4],quote);this.interpolate_string((""+quote+doc+quote));this.line+=count(match[1],"\n");this.i+=match[1].length;return true};Lexer.prototype.js_token=function js_token(){var script;if(!(starts(this.chunk,"`"))){return false}if(!(script=this.balanced_token(["`","`"]))){return false}this.token("JS",script.replace(JS_CLEANER,""));this.i+=script.length;return true};Lexer.prototype.regex_token=function regex_token(){var flags,regex,str;if(!(this.chunk.match(REGEX_START))){return false}if(include(NOT_REGEX,this.tag())){return false}if(!(regex=this.balanced_token(["/","/"]))){return false}regex+=(flags=this.chunk.substr(regex.length).match(REGEX_FLAGS));if(regex.match(REGEX_INTERPOLATION)){str=regex.substring(1).split("/")[0];str=str.replace(REGEX_ESCAPE,function(escaped){return"\\"+escaped});this.tokens=this.tokens.concat([["(","("],["NEW","new"],["IDENTIFIER","RegExp"],["CALL_START","("]]);this.interpolate_string(('"'+str+'"'),true);this.tokens=this.tokens.concat([[",",","],["STRING",('"'+flags+'"')],[")",")"],[")",")"]])}else{this.token("REGEX",regex)}this.i+=regex.length;return true};Lexer.prototype.balanced_token=function balanced_token(){var delimited;delimited=__slice.call(arguments,0,arguments.length-0);return balanced_string(this.chunk,delimited)};Lexer.prototype.comment_token=function comment_token(){var comment,i,lines;if(!(comment=this.match(COMMENT,1))){return false}this.line+=(comment.match(MULTILINER)||[]).length;lines=compact(comment.replace(COMMENT_CLEANER,"").split(MULTILINER));i=this.tokens.length-1;if(this.unfinished()){while(this.tokens[i]&&!include(LINE_BREAK,this.tokens[i][0])){i-=1}}this.tokens.splice(i+1,0,["COMMENT",lines,this.line],["TERMINATOR","\n",this.line]);this.i+=comment.length;return true};Lexer.prototype.line_token=function line_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;prev=this.prev(2);size=indent.match(LAST_DENTS).reverse()[0].match(LAST_DENT)[1].length;next_character=this.chunk.match(MULTI_DENT)[4];no_newlines=next_character==="."||this.unfinished();if(size===this.indent){if(no_newlines){return this.suppress_newlines()}return this.newline_token(indent)}else{if(size>this.indent){if(no_newlines){return this.suppress_newlines()}diff=size-this.indent;this.token("INDENT",diff);this.indents.push(diff)}else{this.outdent_token(this.indent-size,no_newlines)}}this.indent=size;return true};Lexer.prototype.outdent_token=function outdent_token(move_out,no_newlines){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"||no_newlines)){this.token("TERMINATOR","\n")}return true};Lexer.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};Lexer.prototype.newline_token=function newline_token(newlines){if(!(this.tag()==="TERMINATOR")){this.token("TERMINATOR","\n")}return true};Lexer.prototype.suppress_newlines=function suppress_newlines(){if(this.value()==="\\"){this.tokens.pop()}return true};Lexer.prototype.literal_token=function literal_token(){var match,prev_spaced,space,tag,value;match=this.chunk.match(OPERATOR);value=match&&match[1];space=match&&match[2];if(value&&value.match(CODE)){this.tag_parameters()}value=value||this.chunk.substr(0,1);prev_spaced=this.prev()&&this.prev().spaced;tag=value;if(value.match(ASSIGNMENT)){tag="ASSIGN";if(include(JS_FORBIDDEN,this.value)){this.assignment_error()}}else{if(value===";"){tag="TERMINATOR"}else{if(value==="["&&this.tag()==="?"&&!prev_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(include(CALLABLE,this.tag())&&!prev_spaced){if(value==="("){tag="CALL_START"}if(value==="["){tag="INDEX_START"}}}}}}this.i+=value.length;if(space&&prev_spaced&&this.prev()[0]==="ASSIGN"&&include(HALF_ASSIGNMENTS,tag)){return this.tag_half_assignment(tag)}this.token(tag,value);return true};Lexer.prototype.name_access_type=function name_access_type(){if(this.value()==="::"){this.tag(1,"PROTOTYPE_ACCESS")}if(this.value()==="."&&!(this.value(2)===".")){if(this.tag(2)==="?"){this.tag(1,"SOAK_ACCESS");return this.tokens.splice(-2,1)}else{return this.tag(1,"PROPERTY_ACCESS")}}};Lexer.prototype.sanitize_heredoc=function sanitize_heredoc(doc,quote){var indent;indent=(doc.match(HEREDOC_INDENT)||[""]).sort()[0];return doc.replace(new RegExp("^"+indent,"gm"),"").replace(MULTILINER,"\\n").replace(new RegExp(quote,"g"),'\\"')};Lexer.prototype.tag_half_assignment=function tag_half_assignment(tag){var last;last=this.tokens.pop();this.tokens.push([(""+tag+"="),(""+tag+"="),last[2]]);return true};Lexer.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==="("){tok[0]="PARAM_START";return tok[0]}}}}return true};Lexer.prototype.close_indentation=function close_indentation(){return this.outdent_token(this.indent)};Lexer.prototype.identifier_error=function identifier_error(word){throw new Error(('SyntaxError: Reserved word "'+word+'" on line '+(this.line+1)))};Lexer.prototype.assignment_error=function assignment_error(){throw new Error(('SyntaxError: Reserved word "'+(this.value())+'" on line '+(this.line+1)+" can't be assigned"))};Lexer.prototype.interpolate_string=function interpolate_string(str,escape_quotes){var _a,_b,_c,_d,_e,_f,_g,escaped,expr,group,i,idx,inner,interp,interpolated,lexer,match,nested,pi,quote,tag,tok,token,tokens,value;if(str.length<3||!starts(str,'"')){return this.token("STRING",str)}else{lexer=new Lexer();tokens=[];quote=str.substring(0,1);_a=[1,1];i=_a[0];pi=_a[1];while(i<str.length-1){if(starts(str,"\\",i)){i+=1}else{if((match=str.substring(i).match(INTERPOLATION))){_b=match;group=_b[0];interp=_b[1];if(starts(interp,"@")){interp=("this."+(interp.substring(1)))}if(pi<i){tokens.push(["STRING",(""+quote+(str.substring(pi,i))+quote)])}tokens.push(["IDENTIFIER",interp]);i+=group.length-1;pi=i+1}else{if((expr=balanced_string(str.substring(i),[["${","}"]]))){if(pi<i){tokens.push(["STRING",(""+quote+(str.substring(pi,i))+quote)])}inner=expr.substring(2,expr.length-1);if(inner.length){nested=lexer.tokenize(("("+inner+")"),{line:this.line});_c=nested;for(idx=0,_d=_c.length;idx<_d;idx++){tok=_c[idx];tok[0]==="CALL_END"?(tok[0]=")"):null}nested.pop();tokens.push(["TOKENS",nested])}else{tokens.push(["STRING",(""+quote+quote)])}i+=expr.length-1;pi=i+1}}}i+=1}if(pi<i&&pi<str.length-1){tokens.push(["STRING",(""+quote+(str.substring(pi,i))+quote)])}if(!(tokens[0][0]==="STRING")){tokens.unshift(["STRING",'""'])}interpolated=tokens.length>1;if(interpolated){this.token("(","(")}_e=tokens;for(i=0,_f=_e.length;i<_f;i++){token=_e[i];_g=token;tag=_g[0];value=_g[1];if(tag==="TOKENS"){this.tokens=this.tokens.concat(value)}else{if(tag==="STRING"&&escape_quotes){escaped=value.substring(1,value.length-1).replace(/"/g,'\\"');this.token(tag,('"'+escaped+'"'))}else{this.token(tag,value)}}if(i<tokens.length-1){this.token("+","+")}}if(interpolated){this.token(")",")")}return tokens}};Lexer.prototype.token=function token(tag,value){return this.tokens.push([tag,value,this.line])};Lexer.prototype.tag=function tag(index,new_tag){var tok;if(!(tok=this.prev(index))){return null}if((typeof new_tag!=="undefined"&&new_tag!==null)){tok[0]=new_tag;return tok[0]}return tok[0]};Lexer.prototype.value=function value(index,val){var tok;if(!(tok=this.prev(index))){return null}if((typeof val!=="undefined"&&val!==null)){tok[1]=val;return tok[1]}return tok[1]};Lexer.prototype.prev=function prev(index){return this.tokens[this.tokens.length-(index||1)]};Lexer.prototype.match=function match(regex,index){var m;if(!(m=this.chunk.match(regex))){return false}if(m){return m[index]}else{return false}};Lexer.prototype.unfinished=function unfinished(){var prev;prev=this.prev(2);return this.value()&&this.value().match&&this.value().match(NO_NEWLINE)&&prev&&(prev[0]!==".")&&!this.value().match(CODE)};Lexer.extensions=[];return Lexer}).call(this);JS_KEYWORDS=["if","else","true","false","new","return","try","catch","finally","throw","break","continue","for","in","while","delete","instanceof","typeof","switch","super","extends","class","this","null"];COFFEE_ALIASES=["and","or","is","isnt","not"];COFFEE_KEYWORDS=COFFEE_ALIASES.concat(["then","unless","yes","no","on","off","of","by","where","when"]);KEYWORDS=JS_KEYWORDS.concat(COFFEE_KEYWORDS);RESERVED=["case","default","do","function","var","void","with","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;HEREDOC=/^("{6}|'{6}|"{3}\n?([\s\S]*?)\n?([ \t]*)"{3}|'{3}\n?([\s\S]*?)\n?([ \t]*)'{3})/;INTERPOLATION=/^\$([a-zA-Z_@]\w*(\.\w+)*)/;OPERATOR=/^([+\*&|\/\-%=<>:!?]+)([ \t]*)/;WHITESPACE=/^([ \t]+)/;COMMENT=/^(((\n?[ \t]*)?#[^\n]*)+)/;CODE=/^((-|=)>)/;MULTI_DENT=/^((\n([ \t]*))+)(\.)?/;LAST_DENTS=/\n([ \t]*)/g;LAST_DENT=/\n([ \t]*)/;ASSIGNMENT=/^(:|=)$/;REGEX_START=/^\/[^\/ ]/;REGEX_INTERPOLATION=/([^\\]\$[a-zA-Z_@]|[^\\]\$\{.*[^\\]\})/;REGEX_FLAGS=/^[imgy]{0,4}/;REGEX_ESCAPE=/\\[^\$]/g;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=["NUMBER","REGEX","++","--","FALSE","NULL","TRUE"];CALLABLE=["IDENTIFIER","SUPER",")","]","}","STRING","@","THIS"];ACCESSORS=["PROPERTY_ACCESS","PROTOTYPE_ACCESS","SOAK_ACCESS","@"];LINE_BREAK=["INDENT","OUTDENT","TERMINATOR"];HALF_ASSIGNMENTS=["-","+","/","*","%","||","&&","?"];CONVERSIONS={and:"&&",or:"||",is:"==",isnt:"!=",not:"!"}})();var parser=(function(){var parser={trace:function trace(){},yy:{},symbols_:{Root:2,TERMINATOR:3,Body:4,Block:5,Line:6,Expression:7,Statement:8,Return:9,Throw:10,BREAK:11,CONTINUE:12,Value:13,Call:14,Curry:15,Code:16,Operation:17,Assign:18,If:19,Try:20,While:21,For:22,Switch:23,Extends:24,Class:25,Splat:26,Existence:27,Comment:28,Extension:29,INDENT:30,OUTDENT:31,Identifier:32,IDENTIFIER:33,AlphaNumeric:34,NUMBER:35,STRING:36,Literal:37,JS:38,REGEX:39,TRUE:40,FALSE:41,YES:42,NO:43,ON:44,OFF:45,Assignable:46,ASSIGN:47,AssignObj:48,RETURN:49,COMMENT:50,"?":51,PARAM_START:52,ParamList:53,PARAM_END:54,FuncGlyph:55,"->":56,"=>":57,Param:58,",":59,PARAM:60,".":61,SimpleAssignable:62,Accessor:63,Invocation:64,ThisProperty:65,Array:66,Object:67,Parenthetical:68,Range:69,This:70,NULL:71,PROPERTY_ACCESS:72,PROTOTYPE_ACCESS:73,"::":74,SOAK_ACCESS:75,Index:76,Slice:77,INDEX_START:78,INDEX_END:79,SOAKED_INDEX_START:80,SOAKED_INDEX_END:81,"{":82,AssignList:83,"}":84,IndentedAssignList:85,CLASS:86,EXTENDS:87,ClassBody:88,ClassAssign:89,NEW:90,Super:91,"<-":92,Arguments:93,CALL_START:94,ArgList:95,CALL_END:96,SUPER:97,THIS:98,"@":99,"[":100,"]":101,SimpleArgs:102,TRY:103,Catch:104,FINALLY:105,CATCH:106,THROW:107,"(":108,")":109,EXTENSION:110,WhileSource:111,WHILE:112,WHEN:113,FOR:114,ForVariables:115,ForSource:116,IN:117,OF:118,BY:119,SWITCH:120,Whens:121,ELSE:122,When:123,LEADING_WHEN:124,IfStart:125,IF:126,ElsIf:127,IfBlock:128,UNLESS:129,"!":130,"!!":131,"-":132,"+":133,"~":134,"--":135,"++":136,DELETE:137,TYPEOF:138,"*":139,"/":140,"%":141,"<<":142,">>":143,">>>":144,"&":145,"|":146,"^":147,"<=":148,"<":149,">":150,">=":151,"==":152,"!=":153,"&&":154,"||":155,"-=":156,"+=":157,"/=":158,"*=":159,"%=":160,"||=":161,"&&=":162,"?=":163,INSTANCEOF:164,"$accept":0,"$end":1},terminals_:{"3":"TERMINATOR","11":"BREAK","12":"CONTINUE","30":"INDENT","31":"OUTDENT","33":"IDENTIFIER","35":"NUMBER","36":"STRING","38":"JS","39":"REGEX","40":"TRUE","41":"FALSE","42":"YES","43":"NO","44":"ON","45":"OFF","47":"ASSIGN","49":"RETURN","50":"COMMENT","51":"?","52":"PARAM_START","54":"PARAM_END","56":"->","57":"=>","59":",","60":"PARAM","61":".","71":"NULL","72":"PROPERTY_ACCESS","73":"PROTOTYPE_ACCESS","74":"::","75":"SOAK_ACCESS","78":"INDEX_START","79":"INDEX_END","80":"SOAKED_INDEX_START","81":"SOAKED_INDEX_END","82":"{","84":"}","86":"CLASS","87":"EXTENDS","90":"NEW","92":"<-","94":"CALL_START","96":"CALL_END","97":"SUPER","98":"THIS","99":"@","100":"[","101":"]","103":"TRY","105":"FINALLY","106":"CATCH","107":"THROW","108":"(","109":")","110":"EXTENSION","112":"WHILE","113":"WHEN","114":"FOR","117":"IN","118":"OF","119":"BY","120":"SWITCH","122":"ELSE","124":"LEADING_WHEN","126":"IF","129":"UNLESS","130":"!","131":"!!","132":"-","133":"+","134":"~","135":"--","136":"++","137":"DELETE","138":"TYPEOF","139":"*","140":"/","141":"%","142":"<<","143":">>","144":">>>","145":"&","146":"|","147":"^","148":"<=","149":"<","150":">","151":">=","152":"==","153":"!=","154":"&&","155":"||","156":"-=","157":"+=","158":"/=","159":"*=","160":"%=","161":"||=","162":"&&=","163":"?=","164":"INSTANCEOF"},productions_:[0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[8,1],[8,1],[8,1],[8,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[5,3],[5,2],[5,2],[32,1],[34,1],[34,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[18,3],[48,3],[48,3],[48,1],[9,2],[9,1],[28,1],[27,2],[16,5],[16,2],[55,1],[55,1],[53,0],[53,1],[53,3],[58,1],[58,4],[26,4],[62,1],[62,2],[62,2],[62,1],[46,1],[46,1],[46,1],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[63,2],[63,2],[63,1],[63,2],[63,1],[63,1],[76,3],[76,3],[67,3],[67,3],[67,4],[67,4],[83,0],[83,1],[83,3],[83,3],[83,4],[85,3],[85,4],[25,2],[25,4],[25,5],[25,7],[89,1],[89,3],[88,0],[88,1],[88,3],[14,1],[14,2],[14,1],[15,3],[24,3],[64,2],[64,2],[93,3],[93,4],[91,4],[91,5],[70,1],[70,1],[65,2],[69,6],[69,7],[77,6],[77,7],[66,3],[66,4],[95,0],[95,1],[95,2],[95,3],[95,3],[95,4],[95,4],[95,2],[95,3],[102,1],[102,3],[20,3],[20,4],[20,5],[104,3],[10,2],[68,3],[29,1],[111,2],[111,4],[21,2],[21,2],[21,2],[22,4],[22,4],[22,4],[115,1],[115,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[121,1],[121,2],[123,3],[123,4],[123,3],[125,3],[125,2],[128,1],[128,3],[127,4],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,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.$=new LiteralNode(yytext);break;case 13:this.$=new LiteralNode(yytext);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-1+1-1];break;case 25:this.$=$$[$0-1+1-1];break;case 26:this.$=$$[$0-1+1-1];break;case 27:this.$=$$[$0-1+1-1];break;case 28:this.$=$$[$0-1+1-1];break;case 29:this.$=$$[$0-1+1-1];break;case 30:this.$=$$[$0-1+1-1];break;case 31:this.$=$$[$0-3+2-1];break;case 32:this.$=new Expressions();break;case 33:this.$=Expressions.wrap([$$[$0-2+2-1]]);break;case 34:this.$=new LiteralNode(yytext);break;case 35:this.$=new LiteralNode(yytext);break;case 36:this.$=new LiteralNode(yytext);break;case 37:this.$=$$[$0-1+1-1];break;case 38:this.$=new LiteralNode(yytext);break;case 39:this.$=new LiteralNode(yytext);break;case 40:this.$=new LiteralNode(true);break;case 41:this.$=new LiteralNode(false);break;case 42:this.$=new LiteralNode(true);break;case 43:this.$=new LiteralNode(false);break;case 44:this.$=new LiteralNode(true);break;case 45:this.$=new LiteralNode(false);break;case 46:this.$=new AssignNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 47:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"object");break;case 48:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"object");break;case 49:this.$=$$[$0-1+1-1];break;case 50:this.$=new ReturnNode($$[$0-2+2-1]);break;case 51:this.$=new ReturnNode(new ValueNode(new LiteralNode("null")));break;case 52:this.$=new CommentNode(yytext);break;case 53:this.$=new ExistenceNode($$[$0-2+1-1]);break;case 54:this.$=new CodeNode($$[$0-5+2-1],$$[$0-5+5-1],$$[$0-5+4-1]);break;case 55:this.$=new CodeNode([],$$[$0-2+2-1],$$[$0-2+1-1]);break;case 56:this.$="func";break;case 57:this.$="boundfunc";break;case 58:this.$=[];break;case 59:this.$=[$$[$0-1+1-1]];break;case 60:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 61:this.$=new LiteralNode(yytext);break;case 62:this.$=new SplatNode($$[$0-4+1-1]);break;case 63:this.$=new SplatNode($$[$0-4+1-1]);break;case 64:this.$=new ValueNode($$[$0-1+1-1]);break;case 65:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 66:this.$=new ValueNode($$[$0-2+1-1],[$$[$0-2+2-1]]);break;case 67:this.$=$$[$0-1+1-1];break;case 68:this.$=$$[$0-1+1-1];break;case 69:this.$=new ValueNode($$[$0-1+1-1]);break;case 70:this.$=new ValueNode($$[$0-1+1-1]);break;case 71:this.$=$$[$0-1+1-1];break;case 72:this.$=new ValueNode($$[$0-1+1-1]);break;case 73:this.$=new ValueNode($$[$0-1+1-1]);break;case 74:this.$=new ValueNode($$[$0-1+1-1]);break;case 75:this.$=$$[$0-1+1-1];break;case 76:this.$=new ValueNode(new LiteralNode("null"));break;case 77:this.$=new AccessorNode($$[$0-2+2-1]);break;case 78:this.$=new AccessorNode($$[$0-2+2-1],"prototype");break;case 79:this.$=new AccessorNode(new LiteralNode("prototype"));break;case 80:this.$=new AccessorNode($$[$0-2+2-1],"soak");break;case 81:this.$=$$[$0-1+1-1];break;case 82:this.$=new SliceNode($$[$0-1+1-1]);break;case 83:this.$=new IndexNode($$[$0-3+2-1]);break;case 84:this.$=new IndexNode($$[$0-3+2-1],"soak");break;case 85:this.$=new ObjectNode($$[$0-3+2-1]);break;case 86:this.$=new ObjectNode($$[$0-3+2-1]);break;case 87:this.$=new ObjectNode($$[$0-4+2-1]);break;case 88:this.$=new ObjectNode($$[$0-4+2-1]);break;case 89:this.$=[];break;case 90:this.$=[$$[$0-1+1-1]];break;case 91:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 92:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 93:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 94:this.$=$$[$0-3+2-1];break;case 95:this.$=$$[$0-4+2-1];break;case 96:this.$=new ClassNode($$[$0-2+2-1]);break;case 97:this.$=new ClassNode($$[$0-4+2-1],$$[$0-4+4-1]);break;case 98:this.$=new ClassNode($$[$0-5+2-1],null,$$[$0-5+4-1]);break;case 99:this.$=new ClassNode($$[$0-7+2-1],$$[$0-7+4-1],$$[$0-7+6-1]);break;case 100:this.$=$$[$0-1+1-1];break;case 101:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"this");break;case 102:this.$=[];break;case 103:this.$=[$$[$0-1+1-1]];break;case 104:this.$=$$[$0-3+1-1].concat($$[$0-3+3-1]);break;case 105:this.$=$$[$0-1+1-1];break;case 106:this.$=$$[$0-2+2-1].new_instance();break;case 107:this.$=$$[$0-1+1-1];break;case 108:this.$=new CurryNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 109:this.$=new ExtendsNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 110:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 111:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 112:this.$=$$[$0-3+2-1];break;case 113:this.$=$$[$0-4+2-1];break;case 114:this.$=new CallNode("super",$$[$0-4+3-1]);break;case 115:this.$=new CallNode("super",$$[$0-5+3-1]);break;case 116:this.$=new ValueNode(new LiteralNode("this"));break;case 117:this.$=new ValueNode(new LiteralNode("this"));break;case 118:this.$=new ValueNode(new LiteralNode("this"),[new AccessorNode($$[$0-2+2-1])]);break;case 119:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 120:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 121:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 122:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 123:this.$=new ArrayNode($$[$0-3+2-1]);break;case 124:this.$=new ArrayNode($$[$0-4+2-1]);break;case 125:this.$=[];break;case 126:this.$=[$$[$0-1+1-1]];break;case 127:this.$=[$$[$0-2+2-1]];break;case 128:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 129:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 130:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 131:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 132:this.$=$$[$0-2+1-1];break;case 133:this.$=$$[$0-3+1-1];break;case 134:this.$=$$[$0-1+1-1];break;case 135:this.$=(function(){if($$[$0-3+1-1] instanceof Array){return $$[$0-3+1-1].concat([$$[$0-3+3-1]])}else{return[$$[$0-3+1-1]].concat([$$[$0-3+3-1]])}}());break;case 136:this.$=new TryNode($$[$0-3+2-1],$$[$0-3+3-1][0],$$[$0-3+3-1][1]);break;case 137:this.$=new TryNode($$[$0-4+2-1],null,null,$$[$0-4+4-1]);break;case 138:this.$=new TryNode($$[$0-5+2-1],$$[$0-5+3-1][0],$$[$0-5+3-1][1],$$[$0-5+5-1]);break;case 139:this.$=[$$[$0-3+2-1],$$[$0-3+3-1]];break;case 140:this.$=new ThrowNode($$[$0-2+2-1]);break;case 141:this.$=new ParentheticalNode($$[$0-3+2-1]);break;case 142:this.$=yytext;break;case 143:this.$=new WhileNode($$[$0-2+2-1]);break;case 144:this.$=new WhileNode($$[$0-4+2-1],{filter:$$[$0-4+4-1]});break;case 145:this.$=$$[$0-2+1-1].add_body($$[$0-2+2-1]);break;case 146:this.$=$$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+1-1]]));break;case 147:this.$=$$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+1-1]]));break;case 148:this.$=new ForNode($$[$0-4+1-1],$$[$0-4+4-1],$$[$0-4+3-1][0],$$[$0-4+3-1][1]);break;case 149:this.$=new ForNode($$[$0-4+1-1],$$[$0-4+4-1],$$[$0-4+3-1][0],$$[$0-4+3-1][1]);break;case 150:this.$=new ForNode($$[$0-4+4-1],$$[$0-4+3-1],$$[$0-4+2-1][0],$$[$0-4+2-1][1]);break;case 151:this.$=[$$[$0-1+1-1]];break;case 152:this.$=[$$[$0-3+1-1],$$[$0-3+3-1]];break;case 153:this.$={source:$$[$0-2+2-1]};break;case 154:this.$={source:$$[$0-2+2-1],object:true};break;case 155:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1]};break;case 156:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1],object:true};break;case 157:this.$={source:$$[$0-4+2-1],step:$$[$0-4+4-1]};break;case 158:this.$={source:$$[$0-6+2-1],filter:$$[$0-6+4-1],step:$$[$0-6+6-1]};break;case 159:this.$={source:$$[$0-6+2-1],step:$$[$0-6+4-1],filter:$$[$0-6+6-1]};break;case 160:this.$=$$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]);break;case 161:this.$=$$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1],true);break;case 162:this.$=$$[$0-1+1-1];break;case 163:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 164:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],null,{statement:true});break;case 165:this.$=new IfNode($$[$0-4+2-1],$$[$0-4+3-1],null,{statement:true});break;case 166:this.$=(function(){$$[$0-3+3-1].comment=$$[$0-3+1-1];return $$[$0-3+3-1]}());break;case 167:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1]);break;case 168:this.$=$$[$0-2+1-1].add_else($$[$0-2+2-1]);break;case 169:this.$=$$[$0-1+1-1];break;case 170:this.$=$$[$0-3+1-1].add_else($$[$0-3+3-1]);break;case 171:this.$=(new IfNode($$[$0-4+3-1],$$[$0-4+4-1])).force_statement();break;case 172:this.$=$$[$0-1+1-1];break;case 173:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true});break;case 174:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true});break;case 175:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true,invert:true});break;case 176:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true,invert:true});break;case 177:this.$=new OpNode("!",$$[$0-2+2-1]);break;case 178:this.$=new OpNode("!!",$$[$0-2+2-1]);break;case 179:this.$=new OpNode("-",$$[$0-2+2-1]);break;case 180:this.$=new OpNode("+",$$[$0-2+2-1]);break;case 181:this.$=new OpNode("~",$$[$0-2+2-1]);break;case 182:this.$=new OpNode("--",$$[$0-2+2-1]);break;case 183:this.$=new OpNode("++",$$[$0-2+2-1]);break;case 184:this.$=new OpNode("delete",$$[$0-2+2-1]);break;case 185:this.$=new OpNode("typeof",$$[$0-2+2-1]);break;case 186:this.$=new OpNode("--",$$[$0-2+1-1],null,true);break;case 187:this.$=new OpNode("++",$$[$0-2+1-1],null,true);break;case 188:this.$=new OpNode("*",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 189:this.$=new OpNode("/",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 190:this.$=new OpNode("%",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 191:this.$=new OpNode("+",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 192:this.$=new OpNode("-",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 193:this.$=new OpNode("<<",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 194:this.$=new OpNode(">>",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 195:this.$=new OpNode(">>>",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 196:this.$=new OpNode("&",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 197:this.$=new OpNode("|",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 198:this.$=new OpNode("^",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 199:this.$=new OpNode("<=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 200:this.$=new OpNode("<",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 201:this.$=new OpNode(">",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 202:this.$=new OpNode(">=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 203:this.$=new OpNode("==",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 204:this.$=new OpNode("!=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 205:this.$=new OpNode("&&",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 206:this.$=new OpNode("||",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 207:this.$=new OpNode("?",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 208:this.$=new OpNode("-=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 209:this.$=new OpNode("+=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 210:this.$=new OpNode("/=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 211:this.$=new OpNode("*=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 212:this.$=new OpNode("%=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 213:this.$=new OpNode("||=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 214:this.$=new OpNode("&&=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 215:this.$=new OpNode("?=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 216:this.$=new OpNode("instanceof",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 217:this.$=new OpNode("in",$$[$0-3+1-1],$$[$0-3+3-1]);break}},table:[{"1":[2,1],"2":1,"3":[1,2],"4":3,"5":4,"6":5,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,6],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[3]},{"1":[2,2],"28":88,"50":[1,57]},{"1":[2,3],"3":[1,89]},{"3":[1,90]},{"1":[2,5],"3":[2,5],"31":[2,5]},{"4":91,"6":5,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[1,92],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,8],"3":[2,8],"31":[2,8],"51":[1,114],"61":[1,129],"109":[2,8],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,9],"3":[2,9],"31":[2,9],"109":[2,9],"111":132,"112":[1,80],"114":[1,133],"126":[1,130],"129":[1,131]},{"1":[2,14],"3":[2,14],"30":[2,14],"31":[2,14],"51":[2,14],"59":[2,14],"61":[2,14],"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,14],"80":[1,145],"81":[2,14],"84":[2,14],"92":[1,134],"93":135,"94":[1,137],"96":[2,14],"101":[2,14],"109":[2,14],"112":[2,14],"113":[2,14],"114":[2,14],"117":[2,14],"119":[2,14],"126":[2,14],"129":[2,14],"132":[2,14],"133":[2,14],"135":[2,14],"136":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14],"164":[2,14]},{"1":[2,15],"3":[2,15],"30":[2,15],"31":[2,15],"51":[2,15],"59":[2,15],"61":[2,15],"79":[2,15],"81":[2,15],"84":[2,15],"96":[2,15],"101":[2,15],"109":[2,15],"112":[2,15],"113":[2,15],"114":[2,15],"117":[2,15],"119":[2,15],"126":[2,15],"129":[2,15],"132":[2,15],"133":[2,15],"135":[2,15],"136":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15],"164":[2,15]},{"1":[2,16],"3":[2,16],"30":[2,16],"31":[2,16],"51":[2,16],"59":[2,16],"61":[2,16],"79":[2,16],"81":[2,16],"84":[2,16],"96":[2,16],"101":[2,16],"109":[2,16],"112":[2,16],"113":[2,16],"114":[2,16],"117":[2,16],"119":[2,16],"126":[2,16],"129":[2,16],"132":[2,16],"133":[2,16],"135":[2,16],"136":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16],"164":[2,16]},{"1":[2,17],"3":[2,17],"30":[2,17],"31":[2,17],"51":[2,17],"59":[2,17],"61":[2,17],"79":[2,17],"81":[2,17],"84":[2,17],"96":[2,17],"101":[2,17],"109":[2,17],"112":[2,17],"113":[2,17],"114":[2,17],"117":[2,17],"119":[2,17],"126":[2,17],"129":[2,17],"132":[2,17],"133":[2,17],"135":[2,17],"136":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17],"164":[2,17]},{"1":[2,18],"3":[2,18],"30":[2,18],"31":[2,18],"51":[2,18],"59":[2,18],"61":[2,18],"79":[2,18],"81":[2,18],"84":[2,18],"96":[2,18],"101":[2,18],"109":[2,18],"112":[2,18],"113":[2,18],"114":[2,18],"117":[2,18],"119":[2,18],"126":[2,18],"129":[2,18],"132":[2,18],"133":[2,18],"135":[2,18],"136":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18],"164":[2,18]},{"1":[2,19],"3":[2,19],"30":[2,19],"31":[2,19],"51":[2,19],"59":[2,19],"61":[2,19],"79":[2,19],"81":[2,19],"84":[2,19],"96":[2,19],"101":[2,19],"109":[2,19],"112":[2,19],"113":[2,19],"114":[2,19],"117":[2,19],"119":[2,19],"126":[2,19],"129":[2,19],"132":[2,19],"133":[2,19],"135":[2,19],"136":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19],"164":[2,19]},{"1":[2,20],"3":[2,20],"30":[2,20],"31":[2,20],"51":[2,20],"59":[2,20],"61":[2,20],"79":[2,20],"81":[2,20],"84":[2,20],"96":[2,20],"101":[2,20],"109":[2,20],"112":[2,20],"113":[2,20],"114":[2,20],"117":[2,20],"119":[2,20],"126":[2,20],"129":[2,20],"132":[2,20],"133":[2,20],"135":[2,20],"136":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20],"164":[2,20]},{"1":[2,21],"3":[2,21],"30":[2,21],"31":[2,21],"51":[2,21],"59":[2,21],"61":[2,21],"79":[2,21],"81":[2,21],"84":[2,21],"96":[2,21],"101":[2,21],"109":[2,21],"112":[2,21],"113":[2,21],"114":[2,21],"117":[2,21],"119":[2,21],"126":[2,21],"129":[2,21],"132":[2,21],"133":[2,21],"135":[2,21],"136":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21],"164":[2,21]},{"1":[2,22],"3":[2,22],"30":[2,22],"31":[2,22],"51":[2,22],"59":[2,22],"61":[2,22],"79":[2,22],"81":[2,22],"84":[2,22],"96":[2,22],"101":[2,22],"109":[2,22],"112":[2,22],"113":[2,22],"114":[2,22],"117":[2,22],"119":[2,22],"126":[2,22],"129":[2,22],"132":[2,22],"133":[2,22],"135":[2,22],"136":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22],"164":[2,22]},{"1":[2,23],"3":[2,23],"30":[2,23],"31":[2,23],"51":[2,23],"59":[2,23],"61":[2,23],"79":[2,23],"81":[2,23],"84":[2,23],"96":[2,23],"101":[2,23],"109":[2,23],"112":[2,23],"113":[2,23],"114":[2,23],"117":[2,23],"119":[2,23],"126":[2,23],"129":[2,23],"132":[2,23],"133":[2,23],"135":[2,23],"136":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23],"164":[2,23]},{"1":[2,24],"3":[2,24],"30":[2,24],"31":[2,24],"51":[2,24],"59":[2,24],"61":[2,24],"79":[2,24],"81":[2,24],"84":[2,24],"96":[2,24],"101":[2,24],"109":[2,24],"112":[2,24],"113":[2,24],"114":[2,24],"117":[2,24],"119":[2,24],"126":[2,24],"129":[2,24],"132":[2,24],"133":[2,24],"135":[2,24],"136":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24],"164":[2,24]},{"1":[2,25],"3":[2,25],"30":[2,25],"31":[2,25],"51":[2,25],"59":[2,25],"61":[2,25],"79":[2,25],"81":[2,25],"84":[2,25],"96":[2,25],"101":[2,25],"109":[2,25],"112":[2,25],"113":[2,25],"114":[2,25],"117":[2,25],"119":[2,25],"126":[2,25],"129":[2,25],"132":[2,25],"133":[2,25],"135":[2,25],"136":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25],"164":[2,25]},{"1":[2,26],"3":[2,26],"30":[2,26],"31":[2,26],"51":[2,26],"59":[2,26],"61":[2,26],"79":[2,26],"81":[2,26],"84":[2,26],"96":[2,26],"101":[2,26],"109":[2,26],"112":[2,26],"113":[2,26],"114":[2,26],"117":[2,26],"119":[2,26],"126":[2,26],"129":[2,26],"132":[2,26],"133":[2,26],"135":[2,26],"136":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26],"164":[2,26]},{"1":[2,27],"3":[2,27],"30":[2,27],"31":[2,27],"51":[2,27],"59":[2,27],"61":[2,27],"79":[2,27],"81":[2,27],"84":[2,27],"96":[2,27],"101":[2,27],"109":[2,27],"112":[2,27],"113":[2,27],"114":[2,27],"117":[2,27],"119":[2,27],"126":[2,27],"129":[2,27],"132":[2,27],"133":[2,27],"135":[2,27],"136":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27],"164":[2,27]},{"1":[2,28],"3":[2,28],"30":[2,28],"31":[2,28],"51":[2,28],"59":[2,28],"61":[2,28],"79":[2,28],"81":[2,28],"84":[2,28],"96":[2,28],"101":[2,28],"109":[2,28],"112":[2,28],"113":[2,28],"114":[2,28],"117":[2,28],"119":[2,28],"126":[2,28],"129":[2,28],"132":[2,28],"133":[2,28],"135":[2,28],"136":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28],"164":[2,28]},{"1":[2,29],"3":[2,29],"30":[2,29],"31":[2,29],"51":[2,29],"59":[2,29],"61":[2,29],"79":[2,29],"81":[2,29],"84":[2,29],"96":[2,29],"101":[2,29],"109":[2,29],"112":[2,29],"113":[2,29],"114":[2,29],"117":[2,29],"119":[2,29],"126":[2,29],"129":[2,29],"132":[2,29],"133":[2,29],"135":[2,29],"136":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29],"164":[2,29]},{"1":[2,30],"3":[2,30],"30":[2,30],"31":[2,30],"51":[2,30],"59":[2,30],"61":[2,30],"79":[2,30],"81":[2,30],"84":[2,30],"96":[2,30],"101":[2,30],"109":[2,30],"112":[2,30],"113":[2,30],"114":[2,30],"117":[2,30],"119":[2,30],"126":[2,30],"129":[2,30],"132":[2,30],"133":[2,30],"135":[2,30],"136":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30],"164":[2,30]},{"1":[2,10],"3":[2,10],"31":[2,10],"109":[2,10],"112":[2,10],"114":[2,10],"126":[2,10],"129":[2,10]},{"1":[2,11],"3":[2,11],"31":[2,11],"109":[2,11],"112":[2,11],"114":[2,11],"126":[2,11],"129":[2,11]},{"1":[2,12],"3":[2,12],"31":[2,12],"109":[2,12],"112":[2,12],"114":[2,12],"126":[2,12],"129":[2,12]},{"1":[2,13],"3":[2,13],"31":[2,13],"109":[2,13],"112":[2,13],"114":[2,13],"126":[2,13],"129":[2,13]},{"1":[2,71],"3":[2,71],"30":[2,71],"31":[2,71],"47":[1,146],"51":[2,71],"59":[2,71],"61":[2,71],"72":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"78":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"84":[2,71],"92":[2,71],"94":[2,71],"96":[2,71],"101":[2,71],"109":[2,71],"112":[2,71],"113":[2,71],"114":[2,71],"117":[2,71],"119":[2,71],"126":[2,71],"129":[2,71],"132":[2,71],"133":[2,71],"135":[2,71],"136":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71]},{"1":[2,72],"3":[2,72],"30":[2,72],"31":[2,72],"51":[2,72],"59":[2,72],"61":[2,72],"72":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"78":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"84":[2,72],"92":[2,72],"94":[2,72],"96":[2,72],"101":[2,72],"109":[2,72],"112":[2,72],"113":[2,72],"114":[2,72],"117":[2,72],"119":[2,72],"126":[2,72],"129":[2,72],"132":[2,72],"133":[2,72],"135":[2,72],"136":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72]},{"1":[2,73],"3":[2,73],"30":[2,73],"31":[2,73],"51":[2,73],"59":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"96":[2,73],"101":[2,73],"109":[2,73],"112":[2,73],"113":[2,73],"114":[2,73],"117":[2,73],"119":[2,73],"126":[2,73],"129":[2,73],"132":[2,73],"133":[2,73],"135":[2,73],"136":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73]},{"1":[2,74],"3":[2,74],"30":[2,74],"31":[2,74],"51":[2,74],"59":[2,74],"61":[2,74],"72":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"78":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"84":[2,74],"92":[2,74],"94":[2,74],"96":[2,74],"101":[2,74],"109":[2,74],"112":[2,74],"113":[2,74],"114":[2,74],"117":[2,74],"119":[2,74],"126":[2,74],"129":[2,74],"132":[2,74],"133":[2,74],"135":[2,74],"136":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74],"164":[2,74]},{"1":[2,75],"3":[2,75],"30":[2,75],"31":[2,75],"51":[2,75],"59":[2,75],"61":[2,75],"72":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"78":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"84":[2,75],"92":[2,75],"94":[2,75],"96":[2,75],"101":[2,75],"109":[2,75],"112":[2,75],"113":[2,75],"114":[2,75],"117":[2,75],"119":[2,75],"126":[2,75],"129":[2,75],"132":[2,75],"133":[2,75],"135":[2,75],"136":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75]},{"1":[2,76],"3":[2,76],"30":[2,76],"31":[2,76],"51":[2,76],"59":[2,76],"61":[2,76],"72":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"78":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"84":[2,76],"92":[2,76],"94":[2,76],"96":[2,76],"101":[2,76],"109":[2,76],"112":[2,76],"113":[2,76],"114":[2,76],"117":[2,76],"119":[2,76],"126":[2,76],"129":[2,76],"132":[2,76],"133":[2,76],"135":[2,76],"136":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76]},{"1":[2,105],"3":[2,105],"30":[2,105],"31":[2,105],"51":[2,105],"59":[2,105],"61":[2,105],"63":148,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,105],"80":[1,145],"81":[2,105],"84":[2,105],"93":147,"94":[1,137],"96":[2,105],"101":[2,105],"109":[2,105],"112":[2,105],"113":[2,105],"114":[2,105],"117":[2,105],"119":[2,105],"126":[2,105],"129":[2,105],"132":[2,105],"133":[2,105],"135":[2,105],"136":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105],"164":[2,105]},{"13":150,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":152,"64":149,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"1":[2,107],"3":[2,107],"30":[2,107],"31":[2,107],"51":[2,107],"59":[2,107],"61":[2,107],"79":[2,107],"81":[2,107],"84":[2,107],"96":[2,107],"101":[2,107],"109":[2,107],"112":[2,107],"113":[2,107],"114":[2,107],"117":[2,107],"119":[2,107],"126":[2,107],"129":[2,107],"132":[2,107],"133":[2,107],"135":[2,107],"136":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107],"164":[2,107]},{"53":153,"54":[2,58],"58":154,"59":[2,58],"60":[1,155]},{"3":[1,157],"5":156,"30":[1,6]},{"7":158,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":160,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":161,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":162,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":163,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":164,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":165,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":166,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":167,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,172],"3":[2,172],"30":[2,172],"31":[2,172],"51":[2,172],"59":[2,172],"61":[2,172],"79":[2,172],"81":[2,172],"84":[2,172],"96":[2,172],"101":[2,172],"109":[2,172],"112":[2,172],"113":[2,172],"114":[2,172],"117":[2,172],"119":[2,172],"126":[2,172],"129":[2,172],"132":[2,172],"133":[2,172],"135":[2,172],"136":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172],"162":[2,172],"163":[2,172],"164":[2,172]},{"3":[1,157],"5":168,"30":[1,6]},{"3":[1,157],"5":169,"30":[1,6]},{"32":171,"33":[1,87],"115":170},{"7":172,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,68],"3":[2,68],"30":[2,68],"31":[2,68],"47":[2,68],"51":[2,68],"59":[2,68],"61":[2,68],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"84":[2,68],"87":[1,173],"92":[2,68],"94":[2,68],"96":[2,68],"101":[2,68],"109":[2,68],"112":[2,68],"113":[2,68],"114":[2,68],"117":[2,68],"119":[2,68],"126":[2,68],"129":[2,68],"132":[2,68],"133":[2,68],"135":[2,68],"136":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68]},{"13":150,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":174,"64":175,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"1":[2,52],"3":[2,52],"30":[2,52],"31":[2,52],"50":[2,52],"51":[2,52],"59":[2,52],"61":[2,52],"79":[2,52],"81":[2,52],"84":[2,52],"96":[2,52],"101":[2,52],"105":[2,52],"106":[2,52],"109":[2,52],"112":[2,52],"113":[2,52],"114":[2,52],"117":[2,52],"119":[2,52],"122":[2,52],"124":[2,52],"126":[2,52],"129":[2,52],"132":[2,52],"133":[2,52],"135":[2,52],"136":[2,52],"139":[2,52],"140":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52],"161":[2,52],"162":[2,52],"163":[2,52],"164":[2,52]},{"1":[2,142],"3":[2,142],"30":[2,142],"31":[2,142],"51":[2,142],"59":[2,142],"61":[2,142],"79":[2,142],"81":[2,142],"84":[2,142],"96":[2,142],"101":[2,142],"109":[2,142],"112":[2,142],"113":[2,142],"114":[2,142],"117":[2,142],"119":[2,142],"126":[2,142],"129":[2,142],"132":[2,142],"133":[2,142],"135":[2,142],"136":[2,142],"139":[2,142],"140":[2,142],"141":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"147":[2,142],"148":[2,142],"149":[2,142],"150":[2,142],"151":[2,142],"152":[2,142],"153":[2,142],"154":[2,142],"155":[2,142],"156":[2,142],"157":[2,142],"158":[2,142],"159":[2,142],"160":[2,142],"161":[2,142],"162":[2,142],"163":[2,142],"164":[2,142]},{"1":[2,51],"3":[2,51],"7":176,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[2,51],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"109":[2,51],"110":[1,58],"111":52,"112":[2,51],"114":[1,53],"120":[1,54],"125":79,"126":[2,51],"128":50,"129":[2,51],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":177,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,69],"3":[2,69],"30":[2,69],"31":[2,69],"47":[2,69],"51":[2,69],"59":[2,69],"61":[2,69],"72":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"78":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"84":[2,69],"92":[2,69],"94":[2,69],"96":[2,69],"101":[2,69],"109":[2,69],"112":[2,69],"113":[2,69],"114":[2,69],"117":[2,69],"119":[2,69],"126":[2,69],"129":[2,69],"132":[2,69],"133":[2,69],"135":[2,69],"136":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69],"164":[2,69]},{"1":[2,70],"3":[2,70],"30":[2,70],"31":[2,70],"47":[2,70],"51":[2,70],"59":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"92":[2,70],"94":[2,70],"96":[2,70],"101":[2,70],"109":[2,70],"112":[2,70],"113":[2,70],"114":[2,70],"117":[2,70],"119":[2,70],"126":[2,70],"129":[2,70],"132":[2,70],"133":[2,70],"135":[2,70],"136":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70]},{"1":[2,37],"3":[2,37],"30":[2,37],"31":[2,37],"51":[2,37],"59":[2,37],"61":[2,37],"72":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"78":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"84":[2,37],"92":[2,37],"94":[2,37],"96":[2,37],"101":[2,37],"109":[2,37],"112":[2,37],"113":[2,37],"114":[2,37],"117":[2,37],"119":[2,37],"126":[2,37],"129":[2,37],"132":[2,37],"133":[2,37],"135":[2,37],"136":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37],"164":[2,37]},{"1":[2,38],"3":[2,38],"30":[2,38],"31":[2,38],"51":[2,38],"59":[2,38],"61":[2,38],"72":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"78":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"84":[2,38],"92":[2,38],"94":[2,38],"96":[2,38],"101":[2,38],"109":[2,38],"112":[2,38],"113":[2,38],"114":[2,38],"117":[2,38],"119":[2,38],"126":[2,38],"129":[2,38],"132":[2,38],"133":[2,38],"135":[2,38],"136":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38],"164":[2,38]},{"1":[2,39],"3":[2,39],"30":[2,39],"31":[2,39],"51":[2,39],"59":[2,39],"61":[2,39],"72":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"78":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"84":[2,39],"92":[2,39],"94":[2,39],"96":[2,39],"101":[2,39],"109":[2,39],"112":[2,39],"113":[2,39],"114":[2,39],"117":[2,39],"119":[2,39],"126":[2,39],"129":[2,39],"132":[2,39],"133":[2,39],"135":[2,39],"136":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39],"164":[2,39]},{"1":[2,40],"3":[2,40],"30":[2,40],"31":[2,40],"51":[2,40],"59":[2,40],"61":[2,40],"72":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"78":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"84":[2,40],"92":[2,40],"94":[2,40],"96":[2,40],"101":[2,40],"109":[2,40],"112":[2,40],"113":[2,40],"114":[2,40],"117":[2,40],"119":[2,40],"126":[2,40],"129":[2,40],"132":[2,40],"133":[2,40],"135":[2,40],"136":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40],"164":[2,40]},{"1":[2,41],"3":[2,41],"30":[2,41],"31":[2,41],"51":[2,41],"59":[2,41],"61":[2,41],"72":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"78":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"84":[2,41],"92":[2,41],"94":[2,41],"96":[2,41],"101":[2,41],"109":[2,41],"112":[2,41],"113":[2,41],"114":[2,41],"117":[2,41],"119":[2,41],"126":[2,41],"129":[2,41],"132":[2,41],"133":[2,41],"135":[2,41],"136":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41],"164":[2,41]},{"1":[2,42],"3":[2,42],"30":[2,42],"31":[2,42],"51":[2,42],"59":[2,42],"61":[2,42],"72":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"78":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"84":[2,42],"92":[2,42],"94":[2,42],"96":[2,42],"101":[2,42],"109":[2,42],"112":[2,42],"113":[2,42],"114":[2,42],"117":[2,42],"119":[2,42],"126":[2,42],"129":[2,42],"132":[2,42],"133":[2,42],"135":[2,42],"136":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42],"164":[2,42]},{"1":[2,43],"3":[2,43],"30":[2,43],"31":[2,43],"51":[2,43],"59":[2,43],"61":[2,43],"72":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"78":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"84":[2,43],"92":[2,43],"94":[2,43],"96":[2,43],"101":[2,43],"109":[2,43],"112":[2,43],"113":[2,43],"114":[2,43],"117":[2,43],"119":[2,43],"126":[2,43],"129":[2,43],"132":[2,43],"133":[2,43],"135":[2,43],"136":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43],"164":[2,43]},{"1":[2,44],"3":[2,44],"30":[2,44],"31":[2,44],"51":[2,44],"59":[2,44],"61":[2,44],"72":[2,44],"73":[2,44],"74":[2,44],"75":[2,44],"78":[2,44],"79":[2,44],"80":[2,44],"81":[2,44],"84":[2,44],"92":[2,44],"94":[2,44],"96":[2,44],"101":[2,44],"109":[2,44],"112":[2,44],"113":[2,44],"114":[2,44],"117":[2,44],"119":[2,44],"126":[2,44],"129":[2,44],"132":[2,44],"133":[2,44],"135":[2,44],"136":[2,44],"139":[2,44],"140":[2,44],"141":[2,44],"142":[2,44],"143":[2,44],"144":[2,44],"145":[2,44],"146":[2,44],"147":[2,44],"148":[2,44],"149":[2,44],"150":[2,44],"151":[2,44],"152":[2,44],"153":[2,44],"154":[2,44],"155":[2,44],"156":[2,44],"157":[2,44],"158":[2,44],"159":[2,44],"160":[2,44],"161":[2,44],"162":[2,44],"163":[2,44],"164":[2,44]},{"1":[2,45],"3":[2,45],"30":[2,45],"31":[2,45],"51":[2,45],"59":[2,45],"61":[2,45],"72":[2,45],"73":[2,45],"74":[2,45],"75":[2,45],"78":[2,45],"79":[2,45],"80":[2,45],"81":[2,45],"84":[2,45],"92":[2,45],"94":[2,45],"96":[2,45],"101":[2,45],"109":[2,45],"112":[2,45],"113":[2,45],"114":[2,45],"117":[2,45],"119":[2,45],"126":[2,45],"129":[2,45],"132":[2,45],"133":[2,45],"135":[2,45],"136":[2,45],"139":[2,45],"140":[2,45],"141":[2,45],"142":[2,45],"143":[2,45],"144":[2,45],"145":[2,45],"146":[2,45],"147":[2,45],"148":[2,45],"149":[2,45],"150":[2,45],"151":[2,45],"152":[2,45],"153":[2,45],"154":[2,45],"155":[2,45],"156":[2,45],"157":[2,45],"158":[2,45],"159":[2,45],"160":[2,45],"161":[2,45],"162":[2,45],"163":[2,45],"164":[2,45]},{"6":178,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[2,125],"7":179,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,181],"31":[2,125],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,125],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"95":180,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[2,125],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,116],"3":[2,116],"30":[2,116],"31":[2,116],"51":[2,116],"59":[2,116],"61":[2,116],"72":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"78":[2,116],"79":[2,116],"80":[2,116],"81":[2,116],"84":[2,116],"92":[2,116],"94":[2,116],"96":[2,116],"101":[2,116],"109":[2,116],"112":[2,116],"113":[2,116],"114":[2,116],"117":[2,116],"119":[2,116],"126":[2,116],"129":[2,116],"132":[2,116],"133":[2,116],"135":[2,116],"136":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116],"164":[2,116]},{"1":[2,117],"3":[2,117],"30":[2,117],"31":[2,117],"32":182,"33":[1,87],"51":[2,117],"59":[2,117],"61":[2,117],"72":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"78":[2,117],"79":[2,117],"80":[2,117],"81":[2,117],"84":[2,117],"92":[2,117],"94":[2,117],"96":[2,117],"101":[2,117],"109":[2,117],"112":[2,117],"113":[2,117],"114":[2,117],"117":[2,117],"119":[2,117],"126":[2,117],"129":[2,117],"132":[2,117],"133":[2,117],"135":[2,117],"136":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117],"164":[2,117]},{"94":[1,183]},{"3":[2,56],"30":[2,56]},{"3":[2,57],"30":[2,57]},{"1":[2,169],"3":[2,169],"30":[2,169],"31":[2,169],"51":[2,169],"59":[2,169],"61":[2,169],"79":[2,169],"81":[2,169],"84":[2,169],"96":[2,169],"101":[2,169],"109":[2,169],"112":[2,169],"113":[2,169],"114":[2,169],"117":[2,169],"119":[2,169],"122":[1,184],"126":[2,169],"127":185,"129":[2,169],"132":[2,169],"133":[2,169],"135":[2,169],"136":[2,169],"139":[2,169],"140":[2,169],"141":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169],"164":[2,169]},{"7":186,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,64],"3":[2,64],"30":[2,64],"31":[2,64],"47":[2,64],"51":[2,64],"59":[2,64],"61":[2,64],"72":[2,64],"73":[2,64],"74":[2,64],"75":[2,64],"78":[2,64],"79":[2,64],"80":[2,64],"81":[2,64],"84":[2,64],"87":[2,64],"92":[2,64],"94":[2,64],"96":[2,64],"101":[2,64],"109":[2,64],"112":[2,64],"113":[2,64],"114":[2,64],"117":[2,64],"119":[2,64],"126":[2,64],"129":[2,64],"132":[2,64],"133":[2,64],"135":[2,64],"136":[2,64],"139":[2,64],"140":[2,64],"141":[2,64],"142":[2,64],"143":[2,64],"144":[2,64],"145":[2,64],"146":[2,64],"147":[2,64],"148":[2,64],"149":[2,64],"150":[2,64],"151":[2,64],"152":[2,64],"153":[2,64],"154":[2,64],"155":[2,64],"156":[2,64],"157":[2,64],"158":[2,64],"159":[2,64],"160":[2,64],"161":[2,64],"162":[2,64],"163":[2,64],"164":[2,64]},{"1":[2,67],"3":[2,67],"30":[2,67],"31":[2,67],"47":[2,67],"51":[2,67],"59":[2,67],"61":[2,67],"72":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"78":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"84":[2,67],"87":[2,67],"92":[2,67],"94":[2,67],"96":[2,67],"101":[2,67],"109":[2,67],"112":[2,67],"113":[2,67],"114":[2,67],"117":[2,67],"119":[2,67],"126":[2,67],"129":[2,67],"132":[2,67],"133":[2,67],"135":[2,67],"136":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67]},{"3":[2,89],"28":193,"30":[1,190],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":189,"50":[1,57],"59":[2,89],"83":187,"84":[2,89],"85":188},{"1":[2,35],"3":[2,35],"30":[2,35],"31":[2,35],"47":[2,35],"51":[2,35],"59":[2,35],"61":[2,35],"72":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"78":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"84":[2,35],"92":[2,35],"94":[2,35],"96":[2,35],"101":[2,35],"109":[2,35],"112":[2,35],"113":[2,35],"114":[2,35],"117":[2,35],"119":[2,35],"126":[2,35],"129":[2,35],"132":[2,35],"133":[2,35],"135":[2,35],"136":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35],"164":[2,35]},{"1":[2,36],"3":[2,36],"30":[2,36],"31":[2,36],"47":[2,36],"51":[2,36],"59":[2,36],"61":[2,36],"72":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"78":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"84":[2,36],"92":[2,36],"94":[2,36],"96":[2,36],"101":[2,36],"109":[2,36],"112":[2,36],"113":[2,36],"114":[2,36],"117":[2,36],"119":[2,36],"126":[2,36],"129":[2,36],"132":[2,36],"133":[2,36],"135":[2,36],"136":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36],"164":[2,36]},{"7":194,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,34],"3":[2,34],"30":[2,34],"31":[2,34],"47":[2,34],"51":[2,34],"59":[2,34],"61":[2,34],"72":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"78":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"84":[2,34],"87":[2,34],"92":[2,34],"94":[2,34],"96":[2,34],"101":[2,34],"109":[2,34],"112":[2,34],"113":[2,34],"114":[2,34],"117":[2,34],"118":[2,34],"119":[2,34],"126":[2,34],"129":[2,34],"132":[2,34],"133":[2,34],"135":[2,34],"136":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34],"164":[2,34]},{"1":[2,33],"3":[2,33],"30":[2,33],"31":[2,33],"50":[2,33],"51":[2,33],"59":[2,33],"61":[2,33],"79":[2,33],"81":[2,33],"84":[2,33],"96":[2,33],"101":[2,33],"105":[2,33],"106":[2,33],"109":[2,33],"112":[2,33],"113":[2,33],"114":[2,33],"117":[2,33],"119":[2,33],"122":[2,33],"124":[2,33],"126":[2,33],"129":[2,33],"132":[2,33],"133":[2,33],"135":[2,33],"136":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33],"164":[2,33]},{"1":[2,7],"3":[2,7],"6":195,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[2,7],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,4]},{"3":[1,89],"31":[1,196]},{"1":[2,32],"3":[2,32],"30":[2,32],"31":[2,32],"50":[2,32],"51":[2,32],"59":[2,32],"61":[2,32],"79":[2,32],"81":[2,32],"84":[2,32],"96":[2,32],"101":[2,32],"105":[2,32],"106":[2,32],"109":[2,32],"112":[2,32],"113":[2,32],"114":[2,32],"117":[2,32],"119":[2,32],"122":[2,32],"124":[2,32],"126":[2,32],"129":[2,32],"132":[2,32],"133":[2,32],"135":[2,32],"136":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32],"164":[2,32]},{"1":[2,186],"3":[2,186],"30":[2,186],"31":[2,186],"51":[2,186],"59":[2,186],"61":[2,186],"79":[2,186],"81":[2,186],"84":[2,186],"96":[2,186],"101":[2,186],"109":[2,186],"112":[2,186],"113":[2,186],"114":[2,186],"117":[2,186],"119":[2,186],"126":[2,186],"129":[2,186],"132":[2,186],"133":[2,186],"135":[2,186],"136":[2,186],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186],"164":[2,186]},{"1":[2,187],"3":[2,187],"30":[2,187],"31":[2,187],"51":[2,187],"59":[2,187],"61":[2,187],"79":[2,187],"81":[2,187],"84":[2,187],"96":[2,187],"101":[2,187],"109":[2,187],"112":[2,187],"113":[2,187],"114":[2,187],"117":[2,187],"119":[2,187],"126":[2,187],"129":[2,187],"132":[2,187],"133":[2,187],"135":[2,187],"136":[2,187],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187],"164":[2,187]},{"7":197,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":198,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":199,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":200,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":201,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":202,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":203,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":204,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":205,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":206,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":207,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":208,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":209,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":210,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":211,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":212,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":213,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":214,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":215,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,53],"3":[2,53],"7":216,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[2,53],"31":[2,53],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"51":[2,53],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,53],"61":[2,53],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"79":[2,53],"81":[2,53],"82":[1,83],"84":[2,53],"86":[1,56],"90":[1,37],"91":38,"96":[2,53],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[2,53],"103":[1,51],"107":[1,60],"108":[1,72],"109":[2,53],"110":[1,58],"111":52,"112":[2,53],"113":[2,53],"114":[2,53],"117":[2,53],"119":[2,53],"120":[1,54],"125":79,"126":[2,53],"128":50,"129":[2,53],"130":[1,41],"131":[1,42],"132":[2,53],"133":[2,53],"134":[1,45],"135":[2,53],"136":[2,53],"137":[1,48],"138":[1,49],"139":[2,53],"140":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53],"164":[2,53]},{"7":217,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":218,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":219,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":220,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":221,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":222,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":223,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":224,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":225,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":226,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":227,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":228,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,147],"3":[2,147],"30":[2,147],"31":[2,147],"51":[2,147],"59":[2,147],"61":[2,147],"79":[2,147],"81":[2,147],"84":[2,147],"96":[2,147],"101":[2,147],"109":[2,147],"112":[2,147],"113":[2,147],"114":[2,147],"117":[2,147],"119":[2,147],"126":[2,147],"129":[2,147],"132":[2,147],"133":[2,147],"135":[2,147],"136":[2,147],"139":[2,147],"140":[2,147],"141":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"148":[2,147],"149":[2,147],"150":[2,147],"151":[2,147],"152":[2,147],"153":[2,147],"154":[2,147],"155":[2,147],"156":[2,147],"157":[2,147],"158":[2,147],"159":[2,147],"160":[2,147],"161":[2,147],"162":[2,147],"163":[2,147],"164":[2,147]},{"32":171,"33":[1,87],"115":229},{"61":[1,230]},{"7":231,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":232,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,146],"3":[2,146],"30":[2,146],"31":[2,146],"51":[2,146],"59":[2,146],"61":[2,146],"79":[2,146],"81":[2,146],"84":[2,146],"96":[2,146],"101":[2,146],"109":[2,146],"112":[2,146],"113":[2,146],"114":[2,146],"117":[2,146],"119":[2,146],"126":[2,146],"129":[2,146],"132":[2,146],"133":[2,146],"135":[2,146],"136":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146],"149":[2,146],"150":[2,146],"151":[2,146],"152":[2,146],"153":[2,146],"154":[2,146],"155":[2,146],"156":[2,146],"157":[2,146],"158":[2,146],"159":[2,146],"160":[2,146],"161":[2,146],"162":[2,146],"163":[2,146],"164":[2,146]},{"32":171,"33":[1,87],"115":233},{"93":234,"94":[1,137]},{"1":[2,110],"3":[2,110],"30":[2,110],"31":[2,110],"51":[2,110],"59":[2,110],"61":[2,110],"72":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"78":[2,110],"79":[2,110],"80":[2,110],"81":[2,110],"84":[2,110],"94":[2,110],"96":[2,110],"101":[2,110],"109":[2,110],"112":[2,110],"113":[2,110],"114":[2,110],"117":[2,110],"119":[2,110],"126":[2,110],"129":[2,110],"132":[2,110],"133":[2,110],"135":[2,110],"136":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110],"164":[2,110]},{"1":[2,65],"3":[2,65],"30":[2,65],"31":[2,65],"47":[2,65],"51":[2,65],"59":[2,65],"61":[2,65],"72":[2,65],"73":[2,65],"74":[2,65],"75":[2,65],"78":[2,65],"79":[2,65],"80":[2,65],"81":[2,65],"84":[2,65],"87":[2,65],"92":[2,65],"94":[2,65],"96":[2,65],"101":[2,65],"109":[2,65],"112":[2,65],"113":[2,65],"114":[2,65],"117":[2,65],"119":[2,65],"126":[2,65],"129":[2,65],"132":[2,65],"133":[2,65],"135":[2,65],"136":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65]},{"3":[2,125],"7":236,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,181],"31":[2,125],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,125],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"95":235,"96":[2,125],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"32":237,"33":[1,87]},{"32":238,"33":[1,87]},{"1":[2,79],"3":[2,79],"30":[2,79],"31":[2,79],"47":[2,79],"51":[2,79],"59":[2,79],"61":[2,79],"72":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"78":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"84":[2,79],"87":[2,79],"92":[2,79],"94":[2,79],"96":[2,79],"101":[2,79],"109":[2,79],"112":[2,79],"113":[2,79],"114":[2,79],"117":[2,79],"119":[2,79],"126":[2,79],"129":[2,79],"132":[2,79],"133":[2,79],"135":[2,79],"136":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79],"164":[2,79]},{"32":239,"33":[1,87]},{"1":[2,81],"3":[2,81],"30":[2,81],"31":[2,81],"47":[2,81],"51":[2,81],"59":[2,81],"61":[2,81],"72":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"78":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"84":[2,81],"87":[2,81],"92":[2,81],"94":[2,81],"96":[2,81],"101":[2,81],"109":[2,81],"112":[2,81],"113":[2,81],"114":[2,81],"117":[2,81],"119":[2,81],"126":[2,81],"129":[2,81],"132":[2,81],"133":[2,81],"135":[2,81],"136":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81],"164":[2,81]},{"1":[2,82],"3":[2,82],"30":[2,82],"31":[2,82],"47":[2,82],"51":[2,82],"59":[2,82],"61":[2,82],"72":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"78":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"84":[2,82],"87":[2,82],"92":[2,82],"94":[2,82],"96":[2,82],"101":[2,82],"109":[2,82],"112":[2,82],"113":[2,82],"114":[2,82],"117":[2,82],"119":[2,82],"126":[2,82],"129":[2,82],"132":[2,82],"133":[2,82],"135":[2,82],"136":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82],"164":[2,82]},{"7":240,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":241,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":242,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,111],"3":[2,111],"30":[2,111],"31":[2,111],"51":[2,111],"59":[2,111],"61":[2,111],"72":[2,111],"73":[2,111],"74":[2,111],"75":[2,111],"78":[2,111],"79":[2,111],"80":[2,111],"81":[2,111],"84":[2,111],"94":[2,111],"96":[2,111],"101":[2,111],"109":[2,111],"112":[2,111],"113":[2,111],"114":[2,111],"117":[2,111],"119":[2,111],"126":[2,111],"129":[2,111],"132":[2,111],"133":[2,111],"135":[2,111],"136":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111],"164":[2,111]},{"1":[2,66],"3":[2,66],"30":[2,66],"31":[2,66],"47":[2,66],"51":[2,66],"59":[2,66],"61":[2,66],"72":[2,66],"73":[2,66],"74":[2,66],"75":[2,66],"78":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"84":[2,66],"87":[2,66],"92":[2,66],"94":[2,66],"96":[2,66],"101":[2,66],"109":[2,66],"112":[2,66],"113":[2,66],"114":[2,66],"117":[2,66],"119":[2,66],"126":[2,66],"129":[2,66],"132":[2,66],"133":[2,66],"135":[2,66],"136":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66],"162":[2,66],"163":[2,66],"164":[2,66]},{"1":[2,106],"3":[2,106],"30":[2,106],"31":[2,106],"51":[2,106],"59":[2,106],"61":[2,106],"63":148,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,106],"80":[1,145],"81":[2,106],"84":[2,106],"93":147,"94":[1,137],"96":[2,106],"101":[2,106],"109":[2,106],"112":[2,106],"113":[2,106],"114":[2,106],"117":[2,106],"119":[2,106],"126":[2,106],"129":[2,106],"132":[2,106],"133":[2,106],"135":[2,106],"136":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106],"164":[2,106]},{"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"80":[1,145],"93":135,"94":[1,137]},{"1":[2,71],"3":[2,71],"30":[2,71],"31":[2,71],"51":[2,71],"59":[2,71],"61":[2,71],"72":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"78":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"84":[2,71],"94":[2,71],"96":[2,71],"101":[2,71],"109":[2,71],"112":[2,71],"113":[2,71],"114":[2,71],"117":[2,71],"119":[2,71],"126":[2,71],"129":[2,71],"132":[2,71],"133":[2,71],"135":[2,71],"136":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71]},{"1":[2,68],"3":[2,68],"30":[2,68],"31":[2,68],"51":[2,68],"59":[2,68],"61":[2,68],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"84":[2,68],"94":[2,68],"96":[2,68],"101":[2,68],"109":[2,68],"112":[2,68],"113":[2,68],"114":[2,68],"117":[2,68],"119":[2,68],"126":[2,68],"129":[2,68],"132":[2,68],"133":[2,68],"135":[2,68],"136":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68]},{"54":[1,243],"59":[1,244]},{"54":[2,59],"59":[2,59],"61":[1,245]},{"54":[2,61],"59":[2,61],"61":[2,61]},{"1":[2,55],"3":[2,55],"30":[2,55],"31":[2,55],"51":[2,55],"59":[2,55],"61":[2,55],"79":[2,55],"81":[2,55],"84":[2,55],"96":[2,55],"101":[2,55],"109":[2,55],"112":[2,55],"113":[2,55],"114":[2,55],"117":[2,55],"119":[2,55],"126":[2,55],"129":[2,55],"132":[2,55],"133":[2,55],"135":[2,55],"136":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55],"164":[2,55]},{"28":88,"50":[1,57]},{"1":[2,177],"3":[2,177],"30":[2,177],"31":[2,177],"51":[1,114],"59":[2,177],"61":[2,177],"79":[2,177],"81":[2,177],"84":[2,177],"96":[2,177],"101":[2,177],"109":[2,177],"111":127,"112":[2,177],"113":[2,177],"114":[2,177],"117":[2,177],"119":[2,177],"126":[2,177],"129":[2,177],"132":[2,177],"133":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177],"162":[2,177],"163":[2,177],"164":[2,177]},{"111":132,"112":[1,80],"114":[1,133],"126":[1,130],"129":[1,131]},{"1":[2,178],"3":[2,178],"30":[2,178],"31":[2,178],"51":[1,114],"59":[2,178],"61":[2,178],"79":[2,178],"81":[2,178],"84":[2,178],"96":[2,178],"101":[2,178],"109":[2,178],"111":127,"112":[2,178],"113":[2,178],"114":[2,178],"117":[2,178],"119":[2,178],"126":[2,178],"129":[2,178],"132":[2,178],"133":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178],"164":[2,178]},{"1":[2,179],"3":[2,179],"30":[2,179],"31":[2,179],"51":[1,114],"59":[2,179],"61":[2,179],"79":[2,179],"81":[2,179],"84":[2,179],"96":[2,179],"101":[2,179],"109":[2,179],"111":127,"112":[2,179],"113":[2,179],"114":[2,179],"117":[2,179],"119":[2,179],"126":[2,179],"129":[2,179],"132":[2,179],"133":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179],"164":[2,179]},{"1":[2,180],"3":[2,180],"30":[2,180],"31":[2,180],"51":[1,114],"59":[2,180],"61":[2,180],"79":[2,180],"81":[2,180],"84":[2,180],"96":[2,180],"101":[2,180],"109":[2,180],"111":127,"112":[2,180],"113":[2,180],"114":[2,180],"117":[2,180],"119":[2,180],"126":[2,180],"129":[2,180],"132":[2,180],"133":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180],"164":[2,180]},{"1":[2,181],"3":[2,181],"30":[2,181],"31":[2,181],"51":[1,114],"59":[2,181],"61":[2,181],"79":[2,181],"81":[2,181],"84":[2,181],"96":[2,181],"101":[2,181],"109":[2,181],"111":127,"112":[2,181],"113":[2,181],"114":[2,181],"117":[2,181],"119":[2,181],"126":[2,181],"129":[2,181],"132":[2,181],"133":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181],"164":[2,181]},{"1":[2,182],"3":[2,182],"30":[2,182],"31":[2,182],"51":[1,114],"59":[2,182],"61":[2,182],"79":[2,182],"81":[2,182],"84":[2,182],"96":[2,182],"101":[2,182],"109":[2,182],"111":127,"112":[2,182],"113":[2,182],"114":[2,182],"117":[2,182],"119":[2,182],"126":[2,182],"129":[2,182],"132":[2,182],"133":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[2,182],"164":[2,182]},{"1":[2,183],"3":[2,183],"30":[2,183],"31":[2,183],"51":[1,114],"59":[2,183],"61":[2,183],"79":[2,183],"81":[2,183],"84":[2,183],"96":[2,183],"101":[2,183],"109":[2,183],"111":127,"112":[2,183],"113":[2,183],"114":[2,183],"117":[2,183],"119":[2,183],"126":[2,183],"129":[2,183],"132":[2,183],"133":[2,183],"139":[2,183],"140":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[2,183],"164":[2,183]},{"1":[2,184],"3":[2,184],"30":[2,184],"31":[2,184],"51":[1,114],"59":[2,184],"61":[2,184],"79":[2,184],"81":[2,184],"84":[2,184],"96":[2,184],"101":[2,184],"109":[2,184],"111":127,"112":[2,184],"113":[2,184],"114":[2,184],"117":[2,184],"119":[2,184],"126":[2,184],"129":[2,184],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184],"164":[1,123]},{"1":[2,185],"3":[2,185],"30":[2,185],"31":[2,185],"51":[1,114],"59":[2,185],"61":[2,185],"79":[2,185],"81":[2,185],"84":[2,185],"96":[2,185],"101":[2,185],"109":[2,185],"111":127,"112":[2,185],"113":[2,185],"114":[2,185],"117":[2,185],"119":[2,185],"126":[2,185],"129":[2,185],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185],"164":[1,123]},{"104":246,"105":[1,247],"106":[1,248]},{"1":[2,145],"3":[2,145],"30":[2,145],"31":[2,145],"51":[2,145],"59":[2,145],"61":[2,145],"79":[2,145],"81":[2,145],"84":[2,145],"96":[2,145],"101":[2,145],"109":[2,145],"112":[2,145],"113":[2,145],"114":[2,145],"117":[2,145],"119":[2,145],"126":[2,145],"129":[2,145],"132":[2,145],"133":[2,145],"135":[2,145],"136":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145],"164":[2,145]},{"116":249,"117":[1,250],"118":[1,251]},{"59":[1,252],"117":[2,151],"118":[2,151]},{"30":[1,253],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"13":254,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":152,"64":175,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"1":[2,96],"3":[2,96],"30":[1,256],"31":[2,96],"51":[2,96],"59":[2,96],"61":[2,96],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,96],"80":[2,68],"81":[2,96],"84":[2,96],"87":[1,255],"94":[2,68],"96":[2,96],"101":[2,96],"109":[2,96],"112":[2,96],"113":[2,96],"114":[2,96],"117":[2,96],"119":[2,96],"126":[2,96],"129":[2,96],"132":[2,96],"133":[2,96],"135":[2,96],"136":[2,96],"139":[2,96],"140":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96],"164":[2,96]},{"63":148,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"80":[1,145],"93":147,"94":[1,137]},{"1":[2,50],"3":[2,50],"31":[2,50],"51":[1,114],"61":[1,129],"109":[2,50],"111":127,"112":[2,50],"114":[1,128],"117":[1,124],"126":[2,50],"129":[2,50],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,140],"3":[2,140],"31":[2,140],"51":[1,114],"61":[1,129],"109":[2,140],"111":127,"112":[2,140],"114":[2,140],"117":[1,124],"126":[2,140],"129":[2,140],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"109":[1,257]},{"3":[2,126],"31":[2,126],"51":[1,114],"59":[2,126],"61":[1,258],"101":[2,126],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"3":[1,261],"31":[1,262],"59":[1,260],"101":[1,259]},{"7":263,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,118],"3":[2,118],"30":[2,118],"31":[2,118],"47":[2,118],"51":[2,118],"59":[2,118],"61":[2,118],"72":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"78":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"84":[2,118],"87":[2,118],"92":[2,118],"94":[2,118],"96":[2,118],"101":[2,118],"109":[2,118],"112":[2,118],"113":[2,118],"114":[2,118],"117":[2,118],"119":[2,118],"126":[2,118],"129":[2,118],"132":[2,118],"133":[2,118],"135":[2,118],"136":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118],"164":[2,118]},{"3":[2,125],"7":236,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,181],"31":[2,125],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,125],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"95":264,"96":[2,125],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[1,157],"5":265,"30":[1,6],"126":[1,266]},{"1":[2,168],"3":[2,168],"30":[2,168],"31":[2,168],"51":[2,168],"59":[2,168],"61":[2,168],"79":[2,168],"81":[2,168],"84":[2,168],"96":[2,168],"101":[2,168],"109":[2,168],"112":[2,168],"113":[2,168],"114":[2,168],"117":[2,168],"119":[2,168],"122":[2,168],"126":[2,168],"129":[2,168],"132":[2,168],"133":[2,168],"135":[2,168],"136":[2,168],"139":[2,168],"140":[2,168],"141":[2,168],"142":[2,168],"143":[2,168],"144":[2,168],"145":[2,168],"146":[2,168],"147":[2,168],"148":[2,168],"149":[2,168],"150":[2,168],"151":[2,168],"152":[2,168],"153":[2,168],"154":[2,168],"155":[2,168],"156":[2,168],"157":[2,168],"158":[2,168],"159":[2,168],"160":[2,168],"161":[2,168],"162":[2,168],"163":[2,168],"164":[2,168]},{"1":[2,143],"3":[2,143],"30":[2,143],"31":[2,143],"51":[1,114],"59":[2,143],"61":[1,129],"79":[2,143],"81":[2,143],"84":[2,143],"96":[2,143],"101":[2,143],"109":[2,143],"111":127,"112":[1,80],"113":[1,267],"114":[1,128],"117":[1,124],"119":[2,143],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"3":[1,270],"59":[1,269],"84":[1,268]},{"59":[1,272],"84":[1,271]},{"3":[2,90],"31":[2,90],"59":[2,90],"84":[2,90]},{"3":[2,89],"28":193,"31":[2,89],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":189,"50":[1,57],"59":[2,89],"83":273},{"47":[1,274]},{"47":[1,275]},{"3":[2,49],"31":[2,49],"59":[2,49],"84":[2,49]},{"3":[1,157],"5":276,"30":[1,6],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,6],"3":[2,6],"31":[2,6]},{"1":[2,31],"3":[2,31],"30":[2,31],"31":[2,31],"50":[2,31],"51":[2,31],"59":[2,31],"61":[2,31],"79":[2,31],"81":[2,31],"84":[2,31],"96":[2,31],"101":[2,31],"105":[2,31],"106":[2,31],"109":[2,31],"112":[2,31],"113":[2,31],"114":[2,31],"117":[2,31],"119":[2,31],"122":[2,31],"124":[2,31],"126":[2,31],"129":[2,31],"132":[2,31],"133":[2,31],"135":[2,31],"136":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31],"164":[2,31]},{"1":[2,188],"3":[2,188],"30":[2,188],"31":[2,188],"51":[1,114],"59":[2,188],"61":[2,188],"79":[2,188],"81":[2,188],"84":[2,188],"96":[2,188],"101":[2,188],"109":[2,188],"111":127,"112":[2,188],"113":[2,188],"114":[2,188],"117":[2,188],"119":[2,188],"126":[2,188],"129":[2,188],"132":[2,188],"133":[2,188],"135":[1,93],"136":[1,94],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188],"164":[2,188]},{"1":[2,189],"3":[2,189],"30":[2,189],"31":[2,189],"51":[1,114],"59":[2,189],"61":[2,189],"79":[2,189],"81":[2,189],"84":[2,189],"96":[2,189],"101":[2,189],"109":[2,189],"111":127,"112":[2,189],"113":[2,189],"114":[2,189],"117":[2,189],"119":[2,189],"126":[2,189],"129":[2,189],"132":[2,189],"133":[2,189],"135":[1,93],"136":[1,94],"139":[2,189],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189],"164":[2,189]},{"1":[2,190],"3":[2,190],"30":[2,190],"31":[2,190],"51":[1,114],"59":[2,190],"61":[2,190],"79":[2,190],"81":[2,190],"84":[2,190],"96":[2,190],"101":[2,190],"109":[2,190],"111":127,"112":[2,190],"113":[2,190],"114":[2,190],"117":[2,190],"119":[2,190],"126":[2,190],"129":[2,190],"132":[2,190],"133":[2,190],"135":[1,93],"136":[1,94],"139":[2,190],"140":[2,190],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190],"164":[2,190]},{"1":[2,191],"3":[2,191],"30":[2,191],"31":[2,191],"51":[1,114],"59":[2,191],"61":[2,191],"79":[2,191],"81":[2,191],"84":[2,191],"96":[2,191],"101":[2,191],"109":[2,191],"111":127,"112":[2,191],"113":[2,191],"114":[2,191],"117":[2,191],"119":[2,191],"126":[2,191],"129":[2,191],"132":[2,191],"133":[2,191],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191],"164":[2,191]},{"1":[2,192],"3":[2,192],"30":[2,192],"31":[2,192],"51":[1,114],"59":[2,192],"61":[2,192],"79":[2,192],"81":[2,192],"84":[2,192],"96":[2,192],"101":[2,192],"109":[2,192],"111":127,"112":[2,192],"113":[2,192],"114":[2,192],"117":[2,192],"119":[2,192],"126":[2,192],"129":[2,192],"132":[2,192],"133":[2,192],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192],"164":[2,192]},{"1":[2,193],"3":[2,193],"30":[2,193],"31":[2,193],"51":[1,114],"59":[2,193],"61":[2,193],"79":[2,193],"81":[2,193],"84":[2,193],"96":[2,193],"101":[2,193],"109":[2,193],"111":127,"112":[2,193],"113":[2,193],"114":[2,193],"117":[2,193],"119":[2,193],"126":[2,193],"129":[2,193],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193],"164":[2,193]},{"1":[2,194],"3":[2,194],"30":[2,194],"31":[2,194],"51":[1,114],"59":[2,194],"61":[2,194],"79":[2,194],"81":[2,194],"84":[2,194],"96":[2,194],"101":[2,194],"109":[2,194],"111":127,"112":[2,194],"113":[2,194],"114":[2,194],"117":[2,194],"119":[2,194],"126":[2,194],"129":[2,194],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[2,194],"143":[2,194],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194],"164":[2,194]},{"1":[2,195],"3":[2,195],"30":[2,195],"31":[2,195],"51":[1,114],"59":[2,195],"61":[2,195],"79":[2,195],"81":[2,195],"84":[2,195],"96":[2,195],"101":[2,195],"109":[2,195],"111":127,"112":[2,195],"113":[2,195],"114":[2,195],"117":[2,195],"119":[2,195],"126":[2,195],"129":[2,195],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[2,195],"143":[2,195],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195],"164":[2,195]},{"1":[2,196],"3":[2,196],"30":[2,196],"31":[2,196],"51":[1,114],"59":[2,196],"61":[2,196],"79":[2,196],"81":[2,196],"84":[2,196],"96":[2,196],"101":[2,196],"109":[2,196],"111":127,"112":[2,196],"113":[2,196],"114":[2,196],"117":[2,196],"119":[2,196],"126":[2,196],"129":[2,196],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196],"164":[2,196]},{"1":[2,197],"3":[2,197],"30":[2,197],"31":[2,197],"51":[1,114],"59":[2,197],"61":[2,197],"79":[2,197],"81":[2,197],"84":[2,197],"96":[2,197],"101":[2,197],"109":[2,197],"111":127,"112":[2,197],"113":[2,197],"114":[2,197],"117":[2,197],"119":[2,197],"126":[2,197],"129":[2,197],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197],"164":[2,197]},{"1":[2,198],"3":[2,198],"30":[2,198],"31":[2,198],"51":[1,114],"59":[2,198],"61":[2,198],"79":[2,198],"81":[2,198],"84":[2,198],"96":[2,198],"101":[2,198],"109":[2,198],"111":127,"112":[2,198],"113":[2,198],"114":[2,198],"117":[2,198],"119":[2,198],"126":[2,198],"129":[2,198],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,198],"146":[2,198],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198],"164":[2,198]},{"1":[2,199],"3":[2,199],"30":[2,199],"31":[2,199],"51":[1,114],"59":[2,199],"61":[2,199],"79":[2,199],"81":[2,199],"84":[2,199],"96":[2,199],"101":[2,199],"109":[2,199],"111":127,"112":[2,199],"113":[2,199],"114":[2,199],"117":[2,199],"119":[2,199],"126":[2,199],"129":[2,199],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199],"164":[2,199]},{"1":[2,200],"3":[2,200],"30":[2,200],"31":[2,200],"51":[1,114],"59":[2,200],"61":[2,200],"79":[2,200],"81":[2,200],"84":[2,200],"96":[2,200],"101":[2,200],"109":[2,200],"111":127,"112":[2,200],"113":[2,200],"114":[2,200],"117":[2,200],"119":[2,200],"126":[2,200],"129":[2,200],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200],"164":[2,200]},{"1":[2,201],"3":[2,201],"30":[2,201],"31":[2,201],"51":[1,114],"59":[2,201],"61":[2,201],"79":[2,201],"81":[2,201],"84":[2,201],"96":[2,201],"101":[2,201],"109":[2,201],"111":127,"112":[2,201],"113":[2,201],"114":[2,201],"117":[2,201],"119":[2,201],"126":[2,201],"129":[2,201],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[2,201],"149":[2,201],"150":[2,201],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201],"164":[2,201]},{"1":[2,202],"3":[2,202],"30":[2,202],"31":[2,202],"51":[1,114],"59":[2,202],"61":[2,202],"79":[2,202],"81":[2,202],"84":[2,202],"96":[2,202],"101":[2,202],"109":[2,202],"111":127,"112":[2,202],"113":[2,202],"114":[2,202],"117":[2,202],"119":[2,202],"126":[2,202],"129":[2,202],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[2,202],"149":[2,202],"150":[2,202],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[2,202],"164":[2,202]},{"1":[2,203],"3":[2,203],"30":[2,203],"31":[2,203],"51":[1,114],"59":[2,203],"61":[2,203],"79":[2,203],"81":[2,203],"84":[2,203],"96":[2,203],"101":[2,203],"109":[2,203],"111":127,"112":[2,203],"113":[2,203],"114":[2,203],"117":[2,203],"119":[2,203],"126":[2,203],"129":[2,203],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[1,123]},{"1":[2,204],"3":[2,204],"30":[2,204],"31":[2,204],"51":[1,114],"59":[2,204],"61":[2,204],"79":[2,204],"81":[2,204],"84":[2,204],"96":[2,204],"101":[2,204],"109":[2,204],"111":127,"112":[2,204],"113":[2,204],"114":[2,204],"117":[2,204],"119":[2,204],"126":[2,204],"129":[2,204],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,204],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[1,123]},{"1":[2,205],"3":[2,205],"30":[2,205],"31":[2,205],"51":[1,114],"59":[2,205],"61":[2,205],"79":[2,205],"81":[2,205],"84":[2,205],"96":[2,205],"101":[2,205],"109":[2,205],"111":127,"112":[2,205],"113":[2,205],"114":[2,205],"117":[2,205],"119":[2,205],"126":[2,205],"129":[2,205],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205],"164":[1,123]},{"1":[2,206],"3":[2,206],"30":[2,206],"31":[2,206],"51":[1,114],"59":[2,206],"61":[2,206],"79":[2,206],"81":[2,206],"84":[2,206],"96":[2,206],"101":[2,206],"109":[2,206],"111":127,"112":[2,206],"113":[2,206],"114":[2,206],"117":[2,206],"119":[2,206],"126":[2,206],"129":[2,206],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[2,206],"155":[2,206],"156":[2,206],"157":[2,206],"158":[2,206],"159":[2,206],"160":[2,206],"161":[2,206],"162":[2,206],"163":[2,206],"164":[1,123]},{"1":[2,207],"3":[2,207],"30":[2,207],"31":[2,207],"51":[2,207],"59":[2,207],"61":[2,207],"79":[2,207],"81":[2,207],"84":[2,207],"96":[2,207],"101":[2,207],"109":[2,207],"111":127,"112":[2,207],"113":[2,207],"114":[2,207],"117":[2,207],"119":[2,207],"126":[2,207],"129":[2,207],"132":[2,207],"133":[2,207],"135":[2,207],"136":[2,207],"139":[2,207],"140":[2,207],"141":[2,207],"142":[2,207],"143":[2,207],"144":[2,207],"145":[2,207],"146":[2,207],"147":[2,207],"148":[2,207],"149":[2,207],"150":[2,207],"151":[2,207],"152":[2,207],"153":[2,207],"154":[2,207],"155":[2,207],"156":[2,207],"157":[2,207],"158":[2,207],"159":[2,207],"160":[2,207],"161":[2,207],"162":[2,207],"163":[2,207],"164":[2,207]},{"1":[2,208],"3":[2,208],"30":[2,208],"31":[2,208],"51":[1,114],"59":[2,208],"61":[2,208],"79":[2,208],"81":[2,208],"84":[2,208],"96":[2,208],"101":[2,208],"109":[2,208],"111":127,"112":[2,208],"113":[2,208],"114":[2,208],"117":[2,208],"119":[2,208],"126":[2,208],"129":[2,208],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,209],"3":[2,209],"30":[2,209],"31":[2,209],"51":[1,114],"59":[2,209],"61":[2,209],"79":[2,209],"81":[2,209],"84":[2,209],"96":[2,209],"101":[2,209],"109":[2,209],"111":127,"112":[2,209],"113":[2,209],"114":[2,209],"117":[2,209],"119":[2,209],"126":[2,209],"129":[2,209],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,210],"3":[2,210],"30":[2,210],"31":[2,210],"51":[1,114],"59":[2,210],"61":[2,210],"79":[2,210],"81":[2,210],"84":[2,210],"96":[2,210],"101":[2,210],"109":[2,210],"111":127,"112":[2,210],"113":[2,210],"114":[2,210],"117":[2,210],"119":[2,210],"126":[2,210],"129":[2,210],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,211],"3":[2,211],"30":[2,211],"31":[2,211],"51":[1,114],"59":[2,211],"61":[2,211],"79":[2,211],"81":[2,211],"84":[2,211],"96":[2,211],"101":[2,211],"109":[2,211],"111":127,"112":[2,211],"113":[2,211],"114":[2,211],"117":[2,211],"119":[2,211],"126":[2,211],"129":[2,211],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,212],"3":[2,212],"30":[2,212],"31":[2,212],"51":[1,114],"59":[2,212],"61":[2,212],"79":[2,212],"81":[2,212],"84":[2,212],"96":[2,212],"101":[2,212],"109":[2,212],"111":127,"112":[2,212],"113":[2,212],"114":[2,212],"117":[2,212],"119":[2,212],"126":[2,212],"129":[2,212],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,213],"3":[2,213],"30":[2,213],"31":[2,213],"51":[1,114],"59":[2,213],"61":[2,213],"79":[2,213],"81":[2,213],"84":[2,213],"96":[2,213],"101":[2,213],"109":[2,213],"111":127,"112":[2,213],"113":[2,213],"114":[2,213],"117":[2,213],"119":[2,213],"126":[2,213],"129":[2,213],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,214],"3":[2,214],"30":[2,214],"31":[2,214],"51":[1,114],"59":[2,214],"61":[2,214],"79":[2,214],"81":[2,214],"84":[2,214],"96":[2,214],"101":[2,214],"109":[2,214],"111":127,"112":[2,214],"113":[2,214],"114":[2,214],"117":[2,214],"119":[2,214],"126":[2,214],"129":[2,214],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,215],"3":[2,215],"30":[2,215],"31":[2,215],"51":[1,114],"59":[2,215],"61":[2,215],"79":[2,215],"81":[2,215],"84":[2,215],"96":[2,215],"101":[2,215],"109":[2,215],"111":127,"112":[2,215],"113":[2,215],"114":[2,215],"117":[2,215],"119":[2,215],"126":[2,215],"129":[2,215],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,216],"3":[2,216],"30":[2,216],"31":[2,216],"51":[1,114],"59":[2,216],"61":[2,216],"79":[2,216],"81":[2,216],"84":[2,216],"96":[2,216],"101":[2,216],"109":[2,216],"111":127,"112":[2,216],"113":[2,216],"114":[2,216],"117":[2,216],"119":[2,216],"126":[2,216],"129":[2,216],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,216],"153":[2,216],"154":[2,216],"155":[2,216],"156":[2,216],"157":[2,216],"158":[2,216],"159":[2,216],"160":[2,216],"161":[2,216],"162":[2,216],"163":[2,216],"164":[1,123]},{"1":[2,217],"3":[2,217],"30":[2,217],"31":[2,217],"51":[1,114],"59":[2,217],"61":[1,129],"79":[2,217],"81":[2,217],"84":[2,217],"96":[2,217],"101":[2,217],"109":[2,217],"111":127,"112":[2,217],"113":[2,217],"114":[2,217],"117":[1,124],"119":[2,217],"126":[2,217],"129":[2,217],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,174],"3":[2,174],"30":[2,174],"31":[2,174],"51":[1,114],"59":[2,174],"61":[1,129],"79":[2,174],"81":[2,174],"84":[2,174],"96":[2,174],"101":[2,174],"109":[2,174],"111":127,"112":[1,80],"113":[2,174],"114":[1,128],"117":[1,124],"119":[2,174],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,176],"3":[2,176],"30":[2,176],"31":[2,176],"51":[1,114],"59":[2,176],"61":[1,129],"79":[2,176],"81":[2,176],"84":[2,176],"96":[2,176],"101":[2,176],"109":[2,176],"111":127,"112":[1,80],"113":[2,176],"114":[1,128],"117":[1,124],"119":[2,176],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"116":277,"117":[1,250],"118":[1,251]},{"61":[1,278]},{"1":[2,173],"3":[2,173],"30":[2,173],"31":[2,173],"51":[1,114],"59":[2,173],"61":[1,129],"79":[2,173],"81":[2,173],"84":[2,173],"96":[2,173],"101":[2,173],"109":[2,173],"111":127,"112":[1,80],"113":[2,173],"114":[1,128],"117":[1,124],"119":[2,173],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,175],"3":[2,175],"30":[2,175],"31":[2,175],"51":[1,114],"59":[2,175],"61":[1,129],"79":[2,175],"81":[2,175],"84":[2,175],"96":[2,175],"101":[2,175],"109":[2,175],"111":127,"112":[1,80],"113":[2,175],"114":[1,128],"117":[1,124],"119":[2,175],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"116":279,"117":[1,250],"118":[1,251]},{"1":[2,108],"3":[2,108],"30":[2,108],"31":[2,108],"51":[2,108],"59":[2,108],"61":[2,108],"79":[2,108],"81":[2,108],"84":[2,108],"96":[2,108],"101":[2,108],"109":[2,108],"112":[2,108],"113":[2,108],"114":[2,108],"117":[2,108],"119":[2,108],"126":[2,108],"129":[2,108],"132":[2,108],"133":[2,108],"135":[2,108],"136":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108],"164":[2,108]},{"3":[1,261],"31":[1,262],"59":[1,281],"96":[1,280]},{"3":[2,126],"31":[2,126],"51":[1,114],"59":[2,126],"61":[1,129],"96":[2,126],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,77],"3":[2,77],"30":[2,77],"31":[2,77],"47":[2,77],"51":[2,77],"59":[2,77],"61":[2,77],"72":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"78":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"84":[2,77],"87":[2,77],"92":[2,77],"94":[2,77],"96":[2,77],"101":[2,77],"109":[2,77],"112":[2,77],"113":[2,77],"114":[2,77],"117":[2,77],"119":[2,77],"126":[2,77],"129":[2,77],"132":[2,77],"133":[2,77],"135":[2,77],"136":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77],"164":[2,77]},{"1":[2,78],"3":[2,78],"30":[2,78],"31":[2,78],"47":[2,78],"51":[2,78],"59":[2,78],"61":[2,78],"72":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"78":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"84":[2,78],"87":[2,78],"92":[2,78],"94":[2,78],"96":[2,78],"101":[2,78],"109":[2,78],"112":[2,78],"113":[2,78],"114":[2,78],"117":[2,78],"119":[2,78],"126":[2,78],"129":[2,78],"132":[2,78],"133":[2,78],"135":[2,78],"136":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78],"164":[2,78]},{"1":[2,80],"3":[2,80],"30":[2,80],"31":[2,80],"47":[2,80],"51":[2,80],"59":[2,80],"61":[2,80],"72":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"78":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"84":[2,80],"87":[2,80],"92":[2,80],"94":[2,80],"96":[2,80],"101":[2,80],"109":[2,80],"112":[2,80],"113":[2,80],"114":[2,80],"117":[2,80],"119":[2,80],"126":[2,80],"129":[2,80],"132":[2,80],"133":[2,80],"135":[2,80],"136":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80],"164":[2,80]},{"51":[1,114],"61":[1,283],"79":[1,282],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"51":[1,114],"61":[1,129],"81":[1,284],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,46],"3":[2,46],"30":[2,46],"31":[2,46],"51":[1,114],"59":[2,46],"61":[1,129],"79":[2,46],"81":[2,46],"84":[2,46],"96":[2,46],"101":[2,46],"109":[2,46],"111":127,"112":[2,46],"113":[2,46],"114":[1,128],"117":[1,124],"119":[2,46],"126":[2,46],"129":[2,46],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"55":285,"56":[1,77],"57":[1,78]},{"58":286,"60":[1,155]},{"61":[1,287]},{"1":[2,136],"3":[2,136],"30":[2,136],"31":[2,136],"51":[2,136],"59":[2,136],"61":[2,136],"79":[2,136],"81":[2,136],"84":[2,136],"96":[2,136],"101":[2,136],"105":[1,288],"109":[2,136],"112":[2,136],"113":[2,136],"114":[2,136],"117":[2,136],"119":[2,136],"126":[2,136],"129":[2,136],"132":[2,136],"133":[2,136],"135":[2,136],"136":[2,136],"139":[2,136],"140":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"146":[2,136],"147":[2,136],"148":[2,136],"149":[2,136],"150":[2,136],"151":[2,136],"152":[2,136],"153":[2,136],"154":[2,136],"155":[2,136],"156":[2,136],"157":[2,136],"158":[2,136],"159":[2,136],"160":[2,136],"161":[2,136],"162":[2,136],"163":[2,136],"164":[2,136]},{"3":[1,157],"5":289,"30":[1,6]},{"32":290,"33":[1,87]},{"3":[1,157],"5":291,"30":[1,6]},{"7":292,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":293,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"32":294,"33":[1,87]},{"28":298,"50":[1,57],"121":295,"123":296,"124":[1,297]},{"1":[2,109],"3":[2,109],"30":[2,109],"31":[2,109],"51":[2,109],"59":[2,109],"61":[2,109],"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,109],"80":[1,145],"81":[2,109],"84":[2,109],"93":135,"94":[1,137],"96":[2,109],"101":[2,109],"109":[2,109],"112":[2,109],"113":[2,109],"114":[2,109],"117":[2,109],"119":[2,109],"126":[2,109],"129":[2,109],"132":[2,109],"133":[2,109],"135":[2,109],"136":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109],"164":[2,109]},{"13":299,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":152,"64":175,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"3":[2,102],"28":193,"31":[2,102],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":302,"50":[1,57],"65":303,"88":300,"89":301,"99":[1,304]},{"1":[2,141],"3":[2,141],"30":[2,141],"31":[2,141],"51":[2,141],"59":[2,141],"61":[2,141],"72":[2,141],"73":[2,141],"74":[2,141],"75":[2,141],"78":[2,141],"79":[2,141],"80":[2,141],"81":[2,141],"84":[2,141],"92":[2,141],"94":[2,141],"96":[2,141],"101":[2,141],"109":[2,141],"112":[2,141],"113":[2,141],"114":[2,141],"117":[2,141],"119":[2,141],"126":[2,141],"129":[2,141],"132":[2,141],"133":[2,141],"135":[2,141],"136":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141],"164":[2,141]},{"61":[1,305]},{"1":[2,123],"3":[2,123],"30":[2,123],"31":[2,123],"47":[2,123],"51":[2,123],"59":[2,123],"61":[2,123],"72":[2,123],"73":[2,123],"74":[2,123],"75":[2,123],"78":[2,123],"79":[2,123],"80":[2,123],"81":[2,123],"84":[2,123],"92":[2,123],"94":[2,123],"96":[2,123],"101":[2,123],"109":[2,123],"112":[2,123],"113":[2,123],"114":[2,123],"117":[2,123],"119":[2,123],"126":[2,123],"129":[2,123],"132":[2,123],"133":[2,123],"135":[2,123],"136":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123],"149":[2,123],"150":[2,123],"151":[2,123],"152":[2,123],"153":[2,123],"154":[2,123],"155":[2,123],"156":[2,123],"157":[2,123],"158":[2,123],"159":[2,123],"160":[2,123],"161":[2,123],"162":[2,123],"163":[2,123],"164":[2,123]},{"3":[1,308],"7":307,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,309],"31":[1,310],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[1,306],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":311,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[2,132],"31":[2,132],"59":[2,132],"96":[2,132],"101":[2,132]},{"3":[2,127],"31":[2,127],"51":[1,114],"59":[2,127],"61":[1,129],"96":[2,127],"101":[2,127],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"3":[1,261],"31":[1,262],"59":[1,313],"96":[1,312]},{"1":[2,170],"3":[2,170],"30":[2,170],"31":[2,170],"51":[2,170],"59":[2,170],"61":[2,170],"79":[2,170],"81":[2,170],"84":[2,170],"96":[2,170],"101":[2,170],"109":[2,170],"112":[2,170],"113":[2,170],"114":[2,170],"117":[2,170],"119":[2,170],"126":[2,170],"129":[2,170],"132":[2,170],"133":[2,170],"135":[2,170],"136":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170],"164":[2,170]},{"7":314,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":315,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,85],"3":[2,85],"30":[2,85],"31":[2,85],"47":[2,85],"51":[2,85],"59":[2,85],"61":[2,85],"72":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"78":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"84":[2,85],"92":[2,85],"94":[2,85],"96":[2,85],"101":[2,85],"109":[2,85],"112":[2,85],"113":[2,85],"114":[2,85],"117":[2,85],"119":[2,85],"126":[2,85],"129":[2,85],"132":[2,85],"133":[2,85],"135":[2,85],"136":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85],"164":[2,85]},{"3":[1,318],"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":317,"50":[1,57],"84":[1,316]},{"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":319,"50":[1,57]},{"1":[2,86],"3":[2,86],"30":[2,86],"31":[2,86],"47":[2,86],"51":[2,86],"59":[2,86],"61":[2,86],"72":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"78":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"84":[2,86],"92":[2,86],"94":[2,86],"96":[2,86],"101":[2,86],"109":[2,86],"112":[2,86],"113":[2,86],"114":[2,86],"117":[2,86],"119":[2,86],"126":[2,86],"129":[2,86],"132":[2,86],"133":[2,86],"135":[2,86],"136":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86],"164":[2,86]},{"84":[1,320]},{"3":[1,270],"31":[1,321],"59":[1,322]},{"7":323,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":324,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,167],"3":[2,167],"30":[2,167],"31":[2,167],"51":[2,167],"59":[2,167],"61":[2,167],"79":[2,167],"81":[2,167],"84":[2,167],"96":[2,167],"101":[2,167],"109":[2,167],"112":[2,167],"113":[2,167],"114":[2,167],"117":[2,167],"119":[2,167],"122":[2,167],"126":[2,167],"129":[2,167],"132":[2,167],"133":[2,167],"135":[2,167],"136":[2,167],"139":[2,167],"140":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167],"162":[2,167],"163":[2,167],"164":[2,167]},{"1":[2,149],"3":[2,149],"30":[2,149],"31":[2,149],"51":[2,149],"59":[2,149],"61":[2,149],"79":[2,149],"81":[2,149],"84":[2,149],"96":[2,149],"101":[2,149],"109":[2,149],"112":[2,149],"113":[2,149],"114":[2,149],"117":[2,149],"119":[2,149],"126":[2,149],"129":[2,149],"132":[2,149],"133":[2,149],"135":[2,149],"136":[2,149],"139":[2,149],"140":[2,149],"141":[2,149],"142":[2,149],"143":[2,149],"144":[2,149],"145":[2,149],"146":[2,149],"147":[2,149],"148":[2,149],"149":[2,149],"150":[2,149],"151":[2,149],"152":[2,149],"153":[2,149],"154":[2,149],"155":[2,149],"156":[2,149],"157":[2,149],"158":[2,149],"159":[2,149],"160":[2,149],"161":[2,149],"162":[2,149],"163":[2,149],"164":[2,149]},{"1":[2,63],"3":[2,63],"30":[2,63],"31":[2,63],"51":[2,63],"59":[2,63],"61":[2,63],"79":[2,63],"81":[2,63],"84":[2,63],"96":[2,63],"101":[2,63],"109":[2,63],"112":[2,63],"113":[2,63],"114":[2,63],"117":[2,63],"119":[2,63],"126":[2,63],"129":[2,63],"132":[2,63],"133":[2,63],"135":[2,63],"136":[2,63],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63],"161":[2,63],"162":[2,63],"163":[2,63],"164":[2,63]},{"1":[2,148],"3":[2,148],"30":[2,148],"31":[2,148],"51":[2,148],"59":[2,148],"61":[2,148],"79":[2,148],"81":[2,148],"84":[2,148],"96":[2,148],"101":[2,148],"109":[2,148],"112":[2,148],"113":[2,148],"114":[2,148],"117":[2,148],"119":[2,148],"126":[2,148],"129":[2,148],"132":[2,148],"133":[2,148],"135":[2,148],"136":[2,148],"139":[2,148],"140":[2,148],"141":[2,148],"142":[2,148],"143":[2,148],"144":[2,148],"145":[2,148],"146":[2,148],"147":[2,148],"148":[2,148],"149":[2,148],"150":[2,148],"151":[2,148],"152":[2,148],"153":[2,148],"154":[2,148],"155":[2,148],"156":[2,148],"157":[2,148],"158":[2,148],"159":[2,148],"160":[2,148],"161":[2,148],"162":[2,148],"163":[2,148],"164":[2,148]},{"1":[2,112],"3":[2,112],"30":[2,112],"31":[2,112],"51":[2,112],"59":[2,112],"61":[2,112],"72":[2,112],"73":[2,112],"74":[2,112],"75":[2,112],"78":[2,112],"79":[2,112],"80":[2,112],"81":[2,112],"84":[2,112],"94":[2,112],"96":[2,112],"101":[2,112],"109":[2,112],"112":[2,112],"113":[2,112],"114":[2,112],"117":[2,112],"119":[2,112],"126":[2,112],"129":[2,112],"132":[2,112],"133":[2,112],"135":[2,112],"136":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112],"164":[2,112]},{"3":[1,308],"7":307,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,309],"31":[1,310],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"96":[1,325],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,83],"3":[2,83],"30":[2,83],"31":[2,83],"47":[2,83],"51":[2,83],"59":[2,83],"61":[2,83],"72":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"78":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"84":[2,83],"87":[2,83],"92":[2,83],"94":[2,83],"96":[2,83],"101":[2,83],"109":[2,83],"112":[2,83],"113":[2,83],"114":[2,83],"117":[2,83],"119":[2,83],"126":[2,83],"129":[2,83],"132":[2,83],"133":[2,83],"135":[2,83],"136":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83],"164":[2,83]},{"61":[1,326]},{"1":[2,84],"3":[2,84],"30":[2,84],"31":[2,84],"47":[2,84],"51":[2,84],"59":[2,84],"61":[2,84],"72":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"78":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"84":[2,84],"87":[2,84],"92":[2,84],"94":[2,84],"96":[2,84],"101":[2,84],"109":[2,84],"112":[2,84],"113":[2,84],"114":[2,84],"117":[2,84],"119":[2,84],"126":[2,84],"129":[2,84],"132":[2,84],"133":[2,84],"135":[2,84],"136":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84],"164":[2,84]},{"3":[1,157],"5":327,"30":[1,6]},{"54":[2,60],"59":[2,60],"61":[1,245]},{"61":[1,328]},{"3":[1,157],"5":329,"30":[1,6]},{"1":[2,137],"3":[2,137],"30":[2,137],"31":[2,137],"51":[2,137],"59":[2,137],"61":[2,137],"79":[2,137],"81":[2,137],"84":[2,137],"96":[2,137],"101":[2,137],"109":[2,137],"112":[2,137],"113":[2,137],"114":[2,137],"117":[2,137],"119":[2,137],"126":[2,137],"129":[2,137],"132":[2,137],"133":[2,137],"135":[2,137],"136":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"146":[2,137],"147":[2,137],"148":[2,137],"149":[2,137],"150":[2,137],"151":[2,137],"152":[2,137],"153":[2,137],"154":[2,137],"155":[2,137],"156":[2,137],"157":[2,137],"158":[2,137],"159":[2,137],"160":[2,137],"161":[2,137],"162":[2,137],"163":[2,137],"164":[2,137]},{"3":[1,157],"5":330,"30":[1,6]},{"1":[2,150],"3":[2,150],"30":[2,150],"31":[2,150],"51":[2,150],"59":[2,150],"61":[2,150],"79":[2,150],"81":[2,150],"84":[2,150],"96":[2,150],"101":[2,150],"109":[2,150],"112":[2,150],"113":[2,150],"114":[2,150],"117":[2,150],"119":[2,150],"126":[2,150],"129":[2,150],"132":[2,150],"133":[2,150],"135":[2,150],"136":[2,150],"139":[2,150],"140":[2,150],"141":[2,150],"142":[2,150],"143":[2,150],"144":[2,150],"145":[2,150],"146":[2,150],"147":[2,150],"148":[2,150],"149":[2,150],"150":[2,150],"151":[2,150],"152":[2,150],"153":[2,150],"154":[2,150],"155":[2,150],"156":[2,150],"157":[2,150],"158":[2,150],"159":[2,150],"160":[2,150],"161":[2,150],"162":[2,150],"163":[2,150],"164":[2,150]},{"1":[2,153],"3":[2,153],"30":[2,153],"31":[2,153],"51":[1,114],"59":[2,153],"61":[1,129],"79":[2,153],"81":[2,153],"84":[2,153],"96":[2,153],"101":[2,153],"109":[2,153],"111":127,"112":[2,153],"113":[1,331],"114":[2,153],"117":[1,124],"119":[1,332],"126":[2,153],"129":[2,153],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,154],"3":[2,154],"30":[2,154],"31":[2,154],"51":[1,114],"59":[2,154],"61":[1,129],"79":[2,154],"81":[2,154],"84":[2,154],"96":[2,154],"101":[2,154],"109":[2,154],"111":127,"112":[2,154],"113":[1,333],"114":[2,154],"117":[1,124],"119":[2,154],"126":[2,154],"129":[2,154],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"117":[2,152],"118":[2,152]},{"28":298,"31":[1,334],"50":[1,57],"122":[1,335],"123":336,"124":[1,297]},{"31":[2,162],"50":[2,162],"122":[2,162],"124":[2,162]},{"7":338,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"102":337,"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[1,339]},{"1":[2,97],"3":[2,97],"30":[1,340],"31":[2,97],"51":[2,97],"59":[2,97],"61":[2,97],"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,97],"80":[1,145],"81":[2,97],"84":[2,97],"93":135,"94":[1,137],"96":[2,97],"101":[2,97],"109":[2,97],"112":[2,97],"113":[2,97],"114":[2,97],"117":[2,97],"119":[2,97],"126":[2,97],"129":[2,97],"132":[2,97],"133":[2,97],"135":[2,97],"136":[2,97],"139":[2,97],"140":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97],"164":[2,97]},{"3":[1,342],"31":[1,341]},{"3":[2,103],"31":[2,103]},{"3":[2,100],"31":[2,100]},{"47":[1,343]},{"32":182,"33":[1,87]},{"7":344,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"61":[1,345],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,124],"3":[2,124],"30":[2,124],"31":[2,124],"47":[2,124],"51":[2,124],"59":[2,124],"61":[2,124],"72":[2,124],"73":[2,124],"74":[2,124],"75":[2,124],"78":[2,124],"79":[2,124],"80":[2,124],"81":[2,124],"84":[2,124],"92":[2,124],"94":[2,124],"96":[2,124],"101":[2,124],"109":[2,124],"112":[2,124],"113":[2,124],"114":[2,124],"117":[2,124],"119":[2,124],"126":[2,124],"129":[2,124],"132":[2,124],"133":[2,124],"135":[2,124],"136":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124],"151":[2,124],"152":[2,124],"153":[2,124],"154":[2,124],"155":[2,124],"156":[2,124],"157":[2,124],"158":[2,124],"159":[2,124],"160":[2,124],"161":[2,124],"162":[2,124],"163":[2,124],"164":[2,124]},{"3":[2,128],"31":[2,128],"51":[1,114],"59":[2,128],"61":[1,129],"96":[2,128],"101":[2,128],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"7":346,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":347,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[2,133],"31":[2,133],"59":[2,133],"96":[2,133],"101":[2,133]},{"3":[2,129],"31":[2,129],"51":[1,114],"59":[2,129],"61":[1,129],"96":[2,129],"101":[2,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,114],"3":[2,114],"30":[2,114],"31":[2,114],"51":[2,114],"59":[2,114],"61":[2,114],"79":[2,114],"81":[2,114],"84":[2,114],"96":[2,114],"101":[2,114],"109":[2,114],"112":[2,114],"113":[2,114],"114":[2,114],"117":[2,114],"119":[2,114],"126":[2,114],"129":[2,114],"132":[2,114],"133":[2,114],"135":[2,114],"136":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114],"164":[2,114]},{"3":[1,308],"7":307,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,309],"31":[1,310],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"96":[1,348],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[1,157],"5":349,"30":[1,6],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,144],"3":[2,144],"30":[2,144],"31":[2,144],"51":[1,114],"59":[2,144],"61":[1,129],"79":[2,144],"81":[2,144],"84":[2,144],"96":[2,144],"101":[2,144],"109":[2,144],"111":127,"112":[1,80],"113":[2,144],"114":[1,128],"117":[1,124],"119":[2,144],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,87],"3":[2,87],"30":[2,87],"31":[2,87],"47":[2,87],"51":[2,87],"59":[2,87],"61":[2,87],"72":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"78":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"84":[2,87],"92":[2,87],"94":[2,87],"96":[2,87],"101":[2,87],"109":[2,87],"112":[2,87],"113":[2,87],"114":[2,87],"117":[2,87],"119":[2,87],"126":[2,87],"129":[2,87],"132":[2,87],"133":[2,87],"135":[2,87],"136":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87],"164":[2,87]},{"3":[2,91],"31":[2,91],"59":[2,91],"84":[2,91]},{"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":350,"50":[1,57]},{"3":[2,92],"31":[2,92],"59":[2,92],"84":[2,92]},{"1":[2,88],"3":[2,88],"30":[2,88],"31":[2,88],"47":[2,88],"51":[2,88],"59":[2,88],"61":[2,88],"72":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"78":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"84":[2,88],"92":[2,88],"94":[2,88],"96":[2,88],"101":[2,88],"109":[2,88],"112":[2,88],"113":[2,88],"114":[2,88],"117":[2,88],"119":[2,88],"126":[2,88],"129":[2,88],"132":[2,88],"133":[2,88],"135":[2,88],"136":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88],"164":[2,88]},{"59":[2,94],"84":[2,94]},{"3":[1,318],"28":193,"31":[1,351],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":317,"50":[1,57]},{"3":[2,47],"31":[2,47],"51":[1,114],"59":[2,47],"61":[1,129],"84":[2,47],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"3":[2,48],"31":[2,48],"51":[1,114],"59":[2,48],"61":[1,129],"84":[2,48],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,113],"3":[2,113],"30":[2,113],"31":[2,113],"51":[2,113],"59":[2,113],"61":[2,113],"72":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"78":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"84":[2,113],"94":[2,113],"96":[2,113],"101":[2,113],"109":[2,113],"112":[2,113],"113":[2,113],"114":[2,113],"117":[2,113],"119":[2,113],"126":[2,113],"129":[2,113],"132":[2,113],"133":[2,113],"135":[2,113],"136":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113],"164":[2,113]},{"7":352,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"61":[1,353],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,54],"3":[2,54],"30":[2,54],"31":[2,54],"51":[2,54],"59":[2,54],"61":[2,54],"79":[2,54],"81":[2,54],"84":[2,54],"96":[2,54],"101":[2,54],"109":[2,54],"112":[2,54],"113":[2,54],"114":[2,54],"117":[2,54],"119":[2,54],"126":[2,54],"129":[2,54],"132":[2,54],"133":[2,54],"135":[2,54],"136":[2,54],"139":[2,54],"140":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54],"164":[2,54]},{"54":[2,62],"59":[2,62],"61":[2,62]},{"1":[2,138],"3":[2,138],"30":[2,138],"31":[2,138],"51":[2,138],"59":[2,138],"61":[2,138],"79":[2,138],"81":[2,138],"84":[2,138],"96":[2,138],"101":[2,138],"109":[2,138],"112":[2,138],"113":[2,138],"114":[2,138],"117":[2,138],"119":[2,138],"126":[2,138],"129":[2,138],"132":[2,138],"133":[2,138],"135":[2,138],"136":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138],"164":[2,138]},{"1":[2,139],"3":[2,139],"30":[2,139],"31":[2,139],"51":[2,139],"59":[2,139],"61":[2,139],"79":[2,139],"81":[2,139],"84":[2,139],"96":[2,139],"101":[2,139],"105":[2,139],"109":[2,139],"112":[2,139],"113":[2,139],"114":[2,139],"117":[2,139],"119":[2,139],"126":[2,139],"129":[2,139],"132":[2,139],"133":[2,139],"135":[2,139],"136":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139],"164":[2,139]},{"7":354,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":355,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":356,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,160],"3":[2,160],"30":[2,160],"31":[2,160],"51":[2,160],"59":[2,160],"61":[2,160],"79":[2,160],"81":[2,160],"84":[2,160],"96":[2,160],"101":[2,160],"109":[2,160],"112":[2,160],"113":[2,160],"114":[2,160],"117":[2,160],"119":[2,160],"126":[2,160],"129":[2,160],"132":[2,160],"133":[2,160],"135":[2,160],"136":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160],"161":[2,160],"162":[2,160],"163":[2,160],"164":[2,160]},{"3":[1,157],"5":357,"30":[1,6]},{"31":[2,163],"50":[2,163],"122":[2,163],"124":[2,163]},{"3":[1,157],"5":358,"30":[1,6],"59":[1,359]},{"3":[2,134],"30":[2,134],"51":[1,114],"59":[2,134],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"28":298,"50":[1,57],"123":360,"124":[1,297]},{"3":[2,102],"28":193,"31":[2,102],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":302,"50":[1,57],"65":303,"88":361,"89":301,"99":[1,304]},{"1":[2,98],"3":[2,98],"30":[2,98],"31":[2,98],"51":[2,98],"59":[2,98],"61":[2,98],"79":[2,98],"81":[2,98],"84":[2,98],"96":[2,98],"101":[2,98],"109":[2,98],"112":[2,98],"113":[2,98],"114":[2,98],"117":[2,98],"119":[2,98],"126":[2,98],"129":[2,98],"132":[2,98],"133":[2,98],"135":[2,98],"136":[2,98],"139":[2,98],"140":[2,98],"141":[2,98],"142":[2,98],"143":[2,98],"144":[2,98],"145":[2,98],"146":[2,98],"147":[2,98],"148":[2,98],"149":[2,98],"150":[2,98],"151":[2,98],"152":[2,98],"153":[2,98],"154":[2,98],"155":[2,98],"156":[2,98],"157":[2,98],"158":[2,98],"159":[2,98],"160":[2,98],"161":[2,98],"162":[2,98],"163":[2,98],"164":[2,98]},{"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":302,"50":[1,57],"65":303,"89":362,"99":[1,304]},{"7":363,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"51":[1,114],"61":[1,129],"101":[1,364],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"3":[2,63],"7":365,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[2,63],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"51":[2,63],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,63],"61":[2,63],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[2,63],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[2,63],"114":[2,63],"117":[2,63],"120":[1,54],"125":79,"126":[2,63],"128":50,"129":[2,63],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63],"161":[2,63],"162":[2,63],"163":[2,63],"164":[2,63]},{"3":[2,130],"31":[2,130],"51":[1,114],"59":[2,130],"61":[1,129],"96":[2,130],"101":[2,130],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"3":[2,131],"31":[2,131],"51":[1,114],"59":[2,131],"61":[1,129],"96":[2,131],"101":[2,131],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,115],"3":[2,115],"30":[2,115],"31":[2,115],"51":[2,115],"59":[2,115],"61":[2,115],"79":[2,115],"81":[2,115],"84":[2,115],"96":[2,115],"101":[2,115],"109":[2,115],"112":[2,115],"113":[2,115],"114":[2,115],"117":[2,115],"119":[2,115],"126":[2,115],"129":[2,115],"132":[2,115],"133":[2,115],"135":[2,115],"136":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115],"164":[2,115]},{"1":[2,171],"3":[2,171],"30":[2,171],"31":[2,171],"51":[2,171],"59":[2,171],"61":[2,171],"79":[2,171],"81":[2,171],"84":[2,171],"96":[2,171],"101":[2,171],"109":[2,171],"112":[2,171],"113":[2,171],"114":[2,171],"117":[2,171],"119":[2,171],"122":[2,171],"126":[2,171],"129":[2,171],"132":[2,171],"133":[2,171],"135":[2,171],"136":[2,171],"139":[2,171],"140":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171],"162":[2,171],"163":[2,171],"164":[2,171]},{"3":[2,93],"31":[2,93],"59":[2,93],"84":[2,93]},{"59":[2,95],"84":[2,95]},{"51":[1,114],"61":[1,129],"79":[1,366],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"7":367,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"51":[2,63],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"61":[2,63],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"79":[2,63],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[2,63],"114":[2,63],"117":[2,63],"120":[1,54],"125":79,"126":[2,63],"128":50,"129":[2,63],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63],"161":[2,63],"162":[2,63],"163":[2,63],"164":[2,63]},{"1":[2,155],"3":[2,155],"30":[2,155],"31":[2,155],"51":[1,114],"59":[2,155],"61":[1,129],"79":[2,155],"81":[2,155],"84":[2,155],"96":[2,155],"101":[2,155],"109":[2,155],"111":127,"112":[2,155],"113":[2,155],"114":[2,155],"117":[1,124],"119":[1,368],"126":[2,155],"129":[2,155],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,157],"3":[2,157],"30":[2,157],"31":[2,157],"51":[1,114],"59":[2,157],"61":[1,129],"79":[2,157],"81":[2,157],"84":[2,157],"96":[2,157],"101":[2,157],"109":[2,157],"111":127,"112":[2,157],"113":[1,369],"114":[2,157],"117":[1,124],"119":[2,157],"126":[2,157],"129":[2,157],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,156],"3":[2,156],"30":[2,156],"31":[2,156],"51":[1,114],"59":[2,156],"61":[1,129],"79":[2,156],"81":[2,156],"84":[2,156],"96":[2,156],"101":[2,156],"109":[2,156],"111":127,"112":[2,156],"113":[2,156],"114":[2,156],"117":[1,124],"119":[2,156],"126":[2,156],"129":[2,156],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"31":[1,370]},{"3":[1,371],"31":[2,164],"50":[2,164],"122":[2,164],"124":[2,164]},{"7":372,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"31":[2,166],"50":[2,166],"122":[2,166],"124":[2,166]},{"3":[1,342],"31":[1,373]},{"3":[2,104],"31":[2,104]},{"3":[2,101],"31":[2,101],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,119],"3":[2,119],"30":[2,119],"31":[2,119],"51":[2,119],"59":[2,119],"61":[2,119],"72":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"78":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"84":[2,119],"92":[2,119],"94":[2,119],"96":[2,119],"101":[2,119],"109":[2,119],"112":[2,119],"113":[2,119],"114":[2,119],"117":[2,119],"119":[2,119],"126":[2,119],"129":[2,119],"132":[2,119],"133":[2,119],"135":[2,119],"136":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119],"164":[2,119]},{"51":[1,114],"61":[1,129],"101":[1,374],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,121],"3":[2,121],"30":[2,121],"31":[2,121],"47":[2,121],"51":[2,121],"59":[2,121],"61":[2,121],"72":[2,121],"73":[2,121],"74":[2,121],"75":[2,121],"78":[2,121],"79":[2,121],"80":[2,121],"81":[2,121],"84":[2,121],"87":[2,121],"92":[2,121],"94":[2,121],"96":[2,121],"101":[2,121],"109":[2,121],"112":[2,121],"113":[2,121],"114":[2,121],"117":[2,121],"119":[2,121],"126":[2,121],"129":[2,121],"132":[2,121],"133":[2,121],"135":[2,121],"136":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121],"163":[2,121],"164":[2,121]},{"51":[1,114],"61":[1,129],"79":[1,375],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"7":376,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":377,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,161],"3":[2,161],"30":[2,161],"31":[2,161],"51":[2,161],"59":[2,161],"61":[2,161],"79":[2,161],"81":[2,161],"84":[2,161],"96":[2,161],"101":[2,161],"109":[2,161],"112":[2,161],"113":[2,161],"114":[2,161],"117":[2,161],"119":[2,161],"126":[2,161],"129":[2,161],"132":[2,161],"133":[2,161],"135":[2,161],"136":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161],"164":[2,161]},{"31":[2,165],"50":[2,165],"122":[2,165],"124":[2,165]},{"3":[2,135],"30":[2,135],"51":[1,114],"59":[2,135],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,99],"3":[2,99],"30":[2,99],"31":[2,99],"51":[2,99],"59":[2,99],"61":[2,99],"79":[2,99],"81":[2,99],"84":[2,99],"96":[2,99],"101":[2,99],"109":[2,99],"112":[2,99],"113":[2,99],"114":[2,99],"117":[2,99],"119":[2,99],"126":[2,99],"129":[2,99],"132":[2,99],"133":[2,99],"135":[2,99],"136":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99],"162":[2,99],"163":[2,99],"164":[2,99]},{"1":[2,120],"3":[2,120],"30":[2,120],"31":[2,120],"51":[2,120],"59":[2,120],"61":[2,120],"72":[2,120],"73":[2,120],"74":[2,120],"75":[2,120],"78":[2,120],"79":[2,120],"80":[2,120],"81":[2,120],"84":[2,120],"92":[2,120],"94":[2,120],"96":[2,120],"101":[2,120],"109":[2,120],"112":[2,120],"113":[2,120],"114":[2,120],"117":[2,120],"119":[2,120],"126":[2,120],"129":[2,120],"132":[2,120],"133":[2,120],"135":[2,120],"136":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120],"163":[2,120],"164":[2,120]},{"1":[2,122],"3":[2,122],"30":[2,122],"31":[2,122],"47":[2,122],"51":[2,122],"59":[2,122],"61":[2,122],"72":[2,122],"73":[2,122],"74":[2,122],"75":[2,122],"78":[2,122],"79":[2,122],"80":[2,122],"81":[2,122],"84":[2,122],"87":[2,122],"92":[2,122],"94":[2,122],"96":[2,122],"101":[2,122],"109":[2,122],"112":[2,122],"113":[2,122],"114":[2,122],"117":[2,122],"119":[2,122],"126":[2,122],"129":[2,122],"132":[2,122],"133":[2,122],"135":[2,122],"136":[2,122],"139":[2,122],"140":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122],"148":[2,122],"149":[2,122],"150":[2,122],"151":[2,122],"152":[2,122],"153":[2,122],"154":[2,122],"155":[2,122],"156":[2,122],"157":[2,122],"158":[2,122],"159":[2,122],"160":[2,122],"161":[2,122],"162":[2,122],"163":[2,122],"164":[2,122]},{"1":[2,158],"3":[2,158],"30":[2,158],"31":[2,158],"51":[1,114],"59":[2,158],"61":[1,129],"79":[2,158],"81":[2,158],"84":[2,158],"96":[2,158],"101":[2,158],"109":[2,158],"111":127,"112":[2,158],"113":[2,158],"114":[2,158],"117":[1,124],"119":[2,158],"126":[2,158],"129":[2,158],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,159],"3":[2,159],"30":[2,159],"31":[2,159],"51":[1,114],"59":[2,159],"61":[1,129],"79":[2,159],"81":[2,159],"84":[2,159],"96":[2,159],"101":[2,159],"109":[2,159],"111":127,"112":[2,159],"113":[2,159],"114":[2,159],"117":[1,124],"119":[2,159],"126":[2,159],"129":[2,159],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]}],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})}}if(action[0] instanceof Array&&action.length>1){throw new Error("Parse Error: multiple actions possible at state: "+state+", token: "+symbol)}a=action;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}exports.Scope=(function(){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={};if(this.parent){this.temp_var=this.parent.temp_var}else{Scope.root=this;this.temp_var="_a"}return this};Scope.root=null;Scope.prototype.find=function find(name){if(this.check(name)){return true}this.variables[name]="var";return false};Scope.prototype.any=function any(fn){var _a,k,v;_a=this.variables;for(v in _a){if(__hasProp.call(_a,v)){k=_a[v];if(fn(v,k)){return true}}}return false};Scope.prototype.parameter=function parameter(name){this.variables[name]="param";return this.variables[name]};Scope.prototype.check=function check(name){if(this.variables[name]){return true}return !!(this.parent&&this.parent.check(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){this.variables[name]={value:value,assigned:true};return this.variables[name]};Scope.prototype.has_declarations=function has_declarations(body){return body===this.expressions&&this.any(function(k,val){return val==="var"})};Scope.prototype.has_assignments=function has_assignments(body){return body===this.expressions&&this.any(function(k,val){return val.assigned})};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];val==="var"?_a.push(key):null}}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];val.assigned?_a.push((""+key+" = "+val.value)):null}}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(", ")};return Scope}).call(this)})();(function(){var AccessorNode,ArrayNode,AssignNode,BaseNode,CallNode,ClassNode,ClosureNode,CodeNode,CommentNode,CurryNode,ExistenceNode,Expressions,ExtendsNode,ForNode,IDENTIFIER,IfNode,IndexNode,LiteralNode,ObjectNode,OpNode,ParentheticalNode,PushNode,RangeNode,ReturnNode,Scope,SliceNode,SplatNode,TAB,TRAILING_WHITESPACE,ThrowNode,TryNode,UTILITIES,ValueNode,WhileNode,compact,del,flatten,helpers,literal,merge,statement,utility;var __extends=function(child,parent){var ctor=function(){};ctor.prototype=parent.prototype;child.__superClass__=parent.prototype;child.prototype=new ctor();child.prototype.constructor=child},__slice=Array.prototype.slice,__bind=function(func,obj,args){return function(){return func.apply(obj||{},args?args.concat(__slice.call(arguments,0)):arguments)}};if((typeof process!=="undefined"&&process!==null)){Scope=require("./scope").Scope;helpers=require("./helpers").helpers}else{this.exports=this;helpers=this.helpers;Scope=this.Scope}compact=helpers.compact;flatten=helpers.flatten;merge=helpers.merge;del=helpers.del;statement=function statement(klass,only){klass.prototype.is_statement=function is_statement(){return true};if(only){klass.prototype.is_pure_statement=function is_pure_statement(){return true};return klass.prototype.is_pure_statement}};exports.BaseNode=(function(){BaseNode=function BaseNode(){};BaseNode.prototype.compile=function compile(o){var closure,top;this.options=merge(o||{});this.tab=o.indent;if(!(this instanceof ValueNode)){del(this.options,"operation")}top=this.top_sensitive()?this.options.top:del(this.options,"top");closure=this.is_statement()&&!this.is_pure_statement()&&!top&&!this.options.as_statement&&!(this instanceof CommentNode)&&!this.contains_pure_statement();if(closure){return this.compile_closure(this.options)}else{return this.compile_node(this.options)}};BaseNode.prototype.compile_closure=function compile_closure(o){this.tab=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=literal(o.scope.free_variable());compiled=new AssignNode(reference,this);return[compiled,reference]};BaseNode.prototype.idt=function idt(tabs){var idt,num;idt=this.tab||"";num=(tabs||0)+1;while(num-=1){idt+=TAB}return idt};BaseNode.prototype.make_return=function make_return(){return new ReturnNode(this)};BaseNode.prototype.contains=function contains(block){var _a,_b,_c,node;_b=this.children;for(_a=0,_c=_b.length;_a<_c;_a++){node=_b[_a];if(block(node)){return true}if(node.contains&&node.contains(block)){return true}}return false};BaseNode.prototype.contains_type=function contains_type(type){return this instanceof type||this.contains(function(n){return n instanceof type})};BaseNode.prototype.contains_pure_statement=function contains_pure_statement(){return this.is_pure_statement()||this.contains(function(n){return n.is_pure_statement()})};BaseNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,node;_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push((function(){block(node);if(node.traverse){return node.traverse(block)}})())}return _a};BaseNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child;idt=idt||"";return"\n"+idt+this.constructor.name+(function(){_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_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_pure_statement=function is_pure_statement(){return false};BaseNode.prototype.top_sensitive=function top_sensitive(){return false};return BaseNode})();exports.Expressions=(function(){Expressions=function Expressions(nodes){this.children=(this.expressions=compact(flatten(nodes||[])));return this};__extends(Expressions,BaseNode);Expressions.prototype.push=function push(node){this.expressions.push(node);return this};Expressions.prototype.unshift=function unshift(node){this.expressions.unshift(node);return this};Expressions.prototype.unwrap=function unwrap(){if(this.expressions.length===1){return this.expressions[0]}else{return this}};Expressions.prototype.empty=function empty(){return this.expressions.length===0};Expressions.prototype.copy=function copy(){return new Expressions(this.children.slice())};Expressions.prototype.make_return=function make_return(){var idx,last;idx=this.expressions.length-1;last=this.expressions[idx];if(last instanceof CommentNode){last=this.expressions[idx-=1]}if(!last||last instanceof ReturnNode){return this}if(!(last.contains_pure_statement())){this.expressions[idx]=last.make_return()}return this};Expressions.prototype.compile=function compile(o){o=o||{};if(o.scope){return Expressions.__superClass__.compile.call(this,o)}else{return this.compile_root(o)}};Expressions.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,node;return(function(){_a=[];_c=this.expressions;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push(this.compile_expression(node,merge(o)))}return _a}).call(this).join("\n")};Expressions.prototype.compile_root=function compile_root(o){var code;o.indent=(this.tab=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,"");if(o.no_wrap){return code}else{return"(function(){\n"+code+"\n})();\n"}};Expressions.prototype.compile_with_declarations=function compile_with_declarations(o){var code;code=this.compile_node(o);if(o.scope.has_assignments(this)){code=(""+(this.tab)+"var "+(o.scope.compiled_assignments())+";\n"+code)}if(o.scope.has_declarations(this)){code=(""+(this.tab)+"var "+(o.scope.compiled_declarations())+";\n"+code)}return code};Expressions.prototype.compile_expression=function compile_expression(node,o){var compiled_node;this.tab=o.indent;compiled_node=node.compile(merge(o,{top:true}));if(node.is_statement()){return compiled_node}else{return""+(this.idt())+compiled_node+";"}};return Expressions})();Expressions.wrap=function wrap(nodes){if(nodes.length===1&&nodes[0] instanceof Expressions){return nodes[0]}return new Expressions(nodes)};statement(Expressions);exports.LiteralNode=(function(){LiteralNode=function LiteralNode(value){this.value=value;return this};__extends(LiteralNode,BaseNode);LiteralNode.prototype.is_statement=function is_statement(){return this.value==="break"||this.value==="continue"};LiteralNode.prototype.is_pure_statement=LiteralNode.prototype.is_statement;LiteralNode.prototype.compile_node=function compile_node(o){var end,idt;idt=this.is_statement()?this.idt():"";end=this.is_statement()?";":"";return""+idt+this.value+end};LiteralNode.prototype.toString=function toString(idt){return' "'+this.value+'"'};return LiteralNode})();exports.ReturnNode=(function(){ReturnNode=function ReturnNode(expression){this.children=[(this.expression=expression)];return this};__extends(ReturnNode,BaseNode);ReturnNode.prototype.top_sensitive=function top_sensitive(){return true};ReturnNode.prototype.compile_node=function compile_node(o){var expr;expr=this.expression.make_return();if(!(expr instanceof ReturnNode)){return expr.compile(o)}del(o,"top");if(this.expression.is_statement()){o.as_statement=true}return""+(this.tab)+"return "+(this.expression.compile(o))+";"};return ReturnNode})();statement(ReturnNode,true);exports.ValueNode=(function(){ValueNode=function ValueNode(base,properties){this.children=flatten([(this.base=base),(this.properties=(properties||[]))]);return this};__extends(ValueNode,BaseNode);ValueNode.prototype.SOAK=" == undefined ? undefined : ";ValueNode.prototype.push=function push(prop){this.properties.push(prop);this.children.push(prop);return this};ValueNode.prototype.has_properties=function has_properties(){return !!this.properties.length};ValueNode.prototype.is_array=function is_array(){return this.base instanceof ArrayNode&&!this.has_properties()};ValueNode.prototype.is_object=function is_object(){return this.base instanceof ObjectNode&&!this.has_properties()};ValueNode.prototype.is_splice=function is_splice(){return this.has_properties()&&this.properties[this.properties.length-1] instanceof SliceNode};ValueNode.prototype.make_return=function make_return(){if(this.has_properties()){return ValueNode.__superClass__.make_return.call(this)}else{return this.base.make_return()}};ValueNode.prototype.unwrap=function unwrap(){if(this.properties.length){return this}else{return this.base}};ValueNode.prototype.is_statement=function is_statement(){return this.base.is_statement&&this.base.is_statement()&&!this.has_properties()};ValueNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,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);_b=props;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];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}}if(op&&soaked){return"("+complete+")"}else{return complete}};return ValueNode})();exports.CommentNode=(function(){CommentNode=function CommentNode(lines){this.lines=lines;this;return this};__extends(CommentNode,BaseNode);CommentNode.prototype.make_return=function make_return(){return this};CommentNode.prototype.compile_node=function compile_node(o){return(""+this.tab+"//")+this.lines.join(("\n"+this.tab+"//"))};return CommentNode})();statement(CommentNode);exports.CallNode=(function(){CallNode=function CallNode(variable,args){this.is_new=false;this.is_super=variable==="super";this.variable=this.is_super?null:variable;this.children=compact(flatten([this.variable,(this.args=(args||[]))]));this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CallNode,BaseNode);CallNode.prototype.new_instance=function new_instance(){this.is_new=true;return this};CallNode.prototype.prefix=function prefix(){if(this.is_new){return"new "}else{return""}};CallNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,arg,args;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat(o)}}args=(function(){_d=[];_f=this.args;for(_e=0,_g=_f.length;_e<_g;_e++){arg=_f[_e];_d.push(arg.compile(o))}return _d}).call(this).join(", ");if(this.is_super){return this.compile_super(args,o)}return""+(this.prefix())+(this.variable.compile(o))+"("+args+")"};CallNode.prototype.compile_super=function compile_super(args,o){var meth,methname;methname=o.scope.method.name;meth=o.scope.method.proto?(""+(o.scope.method.proto)+".__superClass__."+methname):(""+(methname)+".__superClass__.constructor");return""+(meth)+".call(this"+(args.length?", ":"")+args+")"};CallNode.prototype.compile_splat=function compile_splat(o){var meth,obj,temp;meth=this.variable.compile(o);obj=this.variable.source||"this";if(obj.match(/\(/)){temp=o.scope.free_variable();obj=temp;meth=("("+temp+" = "+(this.variable.source)+")"+(this.variable.last))}return""+(this.prefix())+(meth)+".apply("+obj+", "+(this.compile_splat_arguments(o))+")"};return CallNode})();exports.CurryNode=(function(){CurryNode=function CurryNode(meth,args){this.children=flatten([(this.meth=meth),(this.context=args[0]),(this.args=(args.slice(1)||[]))]);this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CurryNode,CallNode);CurryNode.prototype.arguments=function arguments(o){var _a,_b,_c,arg;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat_arguments(o)}}return(new ArrayNode(this.args)).compile(o)};CurryNode.prototype.compile_node=function compile_node(o){var ref;utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[this.meth,this.context,literal(this.arguments(o))])).compile(o)};return CurryNode}).apply(this,arguments);exports.ExtendsNode=(function(){ExtendsNode=function ExtendsNode(child,parent){this.children=[(this.child=child),(this.parent=parent)];return this};__extends(ExtendsNode,BaseNode);ExtendsNode.prototype.compile_node=function compile_node(o){var ref;ref=new ValueNode(literal(utility("extends")));return(new CallNode(ref,[this.child,this.parent])).compile(o)};return ExtendsNode})();exports.AccessorNode=(function(){AccessorNode=function AccessorNode(name,tag){this.children=[(this.name=name)];this.prototype=tag==="prototype";this.soak_node=tag==="soak";this;return this};__extends(AccessorNode,BaseNode);AccessorNode.prototype.compile_node=function compile_node(o){var proto_part;proto_part=this.prototype?"prototype.":"";return"."+proto_part+(this.name.compile(o))};return AccessorNode})();exports.IndexNode=(function(){IndexNode=function IndexNode(index,tag){this.children=[(this.index=index)];this.soak_node=tag==="soak";return this};__extends(IndexNode,BaseNode);IndexNode.prototype.compile_node=function compile_node(o){var idx;idx=this.index.compile(o);return"["+idx+"]"};return IndexNode})();exports.RangeNode=(function(){RangeNode=function RangeNode(from,to,exclusive){this.children=[(this.from=from),(this.to=to)];this.exclusive=!!exclusive;return this};__extends(RangeNode,BaseNode);RangeNode.prototype.compile_variables=function compile_variables(o){var _a,_b,from,to;this.tab=o.indent;_a=[o.scope.free_variable(),o.scope.free_variable()];this.from_var=_a[0];this.to_var=_a[1];_b=[this.from.compile(o),this.to.compile(o)];from=_b[0];to=_b[1];return""+this.from_var+" = "+from+"; "+this.to_var+" = "+to+";\n"+this.tab};RangeNode.prototype.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};RangeNode.prototype.compile_array=function compile_array(o){var arr,body,name;name=o.scope.free_variable();body=Expressions.wrap([literal(name)]);arr=Expressions.wrap([new ForNode(body,{source:(new ValueNode(this))},literal(name))]);return(new ParentheticalNode(new CallNode(new CodeNode([],arr.make_return())))).compile(o)};return RangeNode})();exports.SliceNode=(function(){SliceNode=function SliceNode(range){this.children=[(this.range=range)];this;return this};__extends(SliceNode,BaseNode);SliceNode.prototype.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+")"};return SliceNode})();exports.ObjectNode=(function(){ObjectNode=function ObjectNode(props){this.children=(this.objects=(this.properties=props||[]));return this};__extends(ObjectNode,BaseNode);ObjectNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,i,indent,inner,join,last_noncom,non_comments,prop,props;o.indent=this.idt(1);non_comments=(function(){_a=[];_c=this.properties;for(_b=0,_d=_c.length;_b<_d;_b++){prop=_c[_b];!(prop instanceof CommentNode)?_a.push(prop):null}return _a}).call(this);last_noncom=non_comments[non_comments.length-1];props=(function(){_e=[];_f=this.properties;for(i=0,_g=_f.length;i<_g;i++){prop=_f[i];_e.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 _e}).call(this);props=props.join("");inner=props?"\n"+props+"\n"+this.idt():"";return"{"+inner+"}"};return ObjectNode})();exports.ArrayNode=(function(){ArrayNode=function ArrayNode(objects){this.children=(this.objects=objects||[]);this.compile_splat_literal=__bind(SplatNode.compile_mixed_array,this,[this.objects]);return this};__extends(ArrayNode,BaseNode);ArrayNode.prototype.compile_node=function compile_node(o){var _a,_b,code,ending,i,obj,objects;o.indent=this.idt(1);objects=[];_a=this.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];code=obj.compile(o);if(obj instanceof SplatNode){return this.compile_splat_literal(this.objects,o)}else{if(obj instanceof CommentNode){objects.push(("\n"+code+"\n"+o.indent))}else{if(i===this.objects.length-1){objects.push(code)}else{objects.push((""+code+", "))}}}}objects=objects.join("");ending=objects.indexOf("\n")>=0?("\n"+this.tab+"]"):"]";return"["+objects+ending};return ArrayNode})();exports.ClassNode=(function(){ClassNode=function ClassNode(variable,parent,props){this.children=compact(flatten([(this.variable=variable),(this.parent=parent),(this.properties=props||[])]));this.returns=false;return this};__extends(ClassNode,BaseNode);ClassNode.prototype.make_return=function make_return(){this.returns=true;return this};ClassNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,access,applied,construct,extension,func,prop,props,pvar,returns,val;extension=this.parent&&new ExtendsNode(this.variable,this.parent);constructor=null;props=new Expressions();o.top=true;_b=this.properties;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];_d=[prop.variable,prop.value];pvar=_d[0];func=_d[1];if(pvar&&pvar.base.value==="constructor"&&func instanceof CodeNode){func.body.push(new ReturnNode(literal("this")));constructor=new AssignNode(this.variable,func)}else{if(pvar){access=prop.context==="this"?pvar.base.properties[0]:new AccessorNode(pvar,"prototype");val=new ValueNode(this.variable,[access]);prop=new AssignNode(val,func)}props.push(prop)}}if(!constructor){if(this.parent){applied=new ValueNode(this.parent,[new AccessorNode(literal("apply"))]);constructor=new AssignNode(this.variable,new CodeNode([],new Expressions([new CallNode(applied,[literal("this"),literal("arguments")])])))}else{constructor=new AssignNode(this.variable,new CodeNode())}}construct=this.idt()+constructor.compile(o)+";\n";props=props.empty()?"":props.compile(o)+"\n";extension=extension?this.idt()+extension.compile(o)+";\n":"";returns=this.returns?new ReturnNode(this.variable).compile(o):"";return""+construct+extension+props+returns};return ClassNode})();statement(ClassNode);exports.AssignNode=(function(){AssignNode=function AssignNode(variable,value,context){this.children=[(this.variable=variable),(this.value=value)];this.context=context;return this};__extends(AssignNode,BaseNode);AssignNode.prototype.PROTO_ASSIGN=/^(\S+)\.prototype/;AssignNode.prototype.LEADING_DOT=/^\.(prototype\.)?/;AssignNode.prototype.top_sensitive=function top_sensitive(){return true};AssignNode.prototype.is_value=function is_value(){return this.variable instanceof ValueNode};AssignNode.prototype.make_return=function make_return(){return new Expressions([this,new ReturnNode(this.variable)])};AssignNode.prototype.is_statement=function is_statement(){return this.is_value()&&(this.variable.is_array()||this.variable.is_object())};AssignNode.prototype.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}}val=this.value.compile(o);if(this.context==="object"){return(""+name+": "+val)}if(!(this.is_value()&&this.variable.has_properties())){o.scope.find(name)}val=(""+name+" = "+val);if(stmt){return(""+this.tab+val+";")}if(top){return val}else{return"("+val+")"}};AssignNode.prototype.compile_pattern_match=function compile_pattern_match(o){var _a,_b,_c,access_class,assigns,code,i,idx,obj,oindex,olength,splat,val,val_var,value;val_var=o.scope.free_variable();value=this.value.is_statement()?ClosureNode.wrap(this.value):this.value;assigns=[(""+this.tab+val_var+" = "+(value.compile(o))+";")];o.top=true;o.as_statement=true;splat=false;_a=this.variable.base.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];idx=i;if(this.variable.is_object()){_c=[obj.value,obj.variable.base];obj=_c[0];idx=_c[1]}access_class=this.variable.is_array()?IndexNode:AccessorNode;if(obj instanceof SplatNode&&!splat){val=literal(obj.compile_value(o,val_var,(oindex=this.variable.base.objects.indexOf(obj)),(olength=this.variable.base.objects.length)-oindex-1));splat=true}else{if(typeof idx!=="object"){idx=literal(splat?(""+(val_var)+".length - "+(olength-idx)):idx)}val=new ValueNode(literal(val_var),[new access_class(idx)])}assigns.push(new AssignNode(obj,val).compile(o))}code=assigns.join("\n");return code};AssignNode.prototype.compile_splice=function compile_splice(o){var from,l,name,plus,range,to,val;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;val=this.value.compile(o);return""+(name)+".splice.apply("+name+", ["+from+", "+to+"].concat("+val+"))"};return AssignNode})();exports.CodeNode=(function(){CodeNode=function CodeNode(params,body,tag){this.params=params||[];this.body=body||new Expressions();this.bound=tag==="boundfunc";return this};__extends(CodeNode,BaseNode);CodeNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,_h,_i,_j,code,func,i,name_part,param,params,ref,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.top=true;o.indent=this.idt(this.bound?2:1);del(o,"no_wrap");del(o,"globals");i=0;splat=undefined;params=[];_b=this.params;for(_a=0,_c=_b.length;_a<_c;_a++){param=_b[_a];if(param instanceof SplatNode&&!(typeof splat!=="undefined"&&splat!==null)){splat=param;splat.index=i;this.body.unshift(splat);splat.trailings=[]}else{if((typeof splat!=="undefined"&&splat!==null)){splat.trailings.push(param)}else{params.push(param)}}i+=1}params=(function(){_d=[];_f=params;for(_e=0,_g=_f.length;_e<_g;_e++){param=_f[_e];_d.push(param.compile(o))}return _d})();this.body.make_return();_i=params;for(_h=0,_j=_i.length;_h<_j;_h++){param=_i[_h];(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}utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[literal(func),literal("this")])).compile(o)};CodeNode.prototype.top_sensitive=function top_sensitive(){return true};CodeNode.prototype.real_children=function real_children(){return flatten([this.params,this.body.expressions])};CodeNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,child;block(this);_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.traverse(block))}return _a};CodeNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child,children;idt=idt||"";children=(function(){_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("");return"\n"+idt+children};return CodeNode})();exports.SplatNode=(function(){SplatNode=function SplatNode(name){if(!(name.compile)){name=literal(name)}this.children=[(this.name=name)];return this};__extends(SplatNode,BaseNode);SplatNode.prototype.compile_node=function compile_node(o){var _a;if((typeof(_a=this.index)!=="undefined"&&_a!==null)){return this.compile_param(o)}else{return this.name.compile(o)}};SplatNode.prototype.compile_param=function compile_param(o){var _a,_b,_c,i,name,trailing;name=this.name.compile(o);o.scope.find(name);i=0;_b=this.trailings;for(_a=0,_c=_b.length;_a<_c;_a++){trailing=_b[_a];o.scope.assign(trailing.compile(o),("arguments[arguments.length - "+this.trailings.length+" + "+i+"]"));i+=1}return""+name+" = "+(utility("slice"))+".call(arguments, "+this.index+", arguments.length - "+(this.trailings.length)+")"};SplatNode.prototype.compile_value=function compile_value(o,name,index,trailings){var trail;trail=trailings?(", "+(name)+".length - "+trailings):"";return""+(utility("slice"))+".call("+name+", "+index+trail+")"};SplatNode.compile_mixed_array=function compile_mixed_array(list,o){var _a,_b,_c,arg,args,code,i,prev;args=[];i=0;_b=list;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];code=arg.compile(o);if(!(arg instanceof SplatNode)){prev=args[i-1];if(i===1&&prev.substr(0,1)==="["&&prev.substr(prev.length-1,1)==="]"){args[i-1]=(""+(prev.substr(0,prev.length-1))+", "+code+"]");continue}else{if(i>1&&prev.substr(0,9)===".concat(["&&prev.substr(prev.length-2,2)==="])"){args[i-1]=(""+(prev.substr(0,prev.length-2))+", "+code+"])");continue}else{code=("["+code+"]")}}}args.push(i===0?code:(".concat("+code+")"));i+=1}return args.join("")};return SplatNode}).call(this);exports.WhileNode=(function(){WhileNode=function WhileNode(condition,opts){this.children=[(this.condition=condition)];this.filter=opts&&opts.filter;return this};__extends(WhileNode,BaseNode);WhileNode.prototype.add_body=function add_body(body){this.children.push((this.body=body));return this};WhileNode.prototype.make_return=function make_return(){this.returns=true;return this};WhileNode.prototype.top_sensitive=function top_sensitive(){return true};WhileNode.prototype.compile_node=function compile_node(o){var cond,post,pre,rvar,set,top;top=del(o,"top")&&!this.returns;o.indent=this.idt(1);o.top=true;cond=this.condition.compile(o);set="";if(!top){rvar=o.scope.free_variable();set=(""+this.tab+rvar+" = [];\n");if(this.body){this.body=PushNode.wrap(rvar,this.body)}}pre=(""+set+(this.tab)+"while ("+cond+")");if(!this.body){return(""+pre+" null;"+post)}if(this.filter){this.body=Expressions.wrap([new IfNode(this.filter,this.body)])}this.returns?(post=new ReturnNode(literal(rvar)).compile(merge(o,{indent:this.idt()}))):(post="");return""+pre+" {\n"+(this.body.compile(o))+"\n"+this.tab+"}\n"+post};return WhileNode})();statement(WhileNode);exports.OpNode=(function(){OpNode=function OpNode(operator,first,second,flip){this.constructor.name+=" "+operator;this.children=compact([(this.first=first),(this.second=second)]);this.operator=this.CONVERSIONS[operator]||operator;this.flip=!!flip;return this};__extends(OpNode,BaseNode);OpNode.prototype.CONVERSIONS={"==":"===","!=":"!=="};OpNode.prototype.CHAINABLE=["<",">",">=","<=","===","!=="];OpNode.prototype.ASSIGNMENT=["||=","&&=","?="];OpNode.prototype.PREFIX_OPERATORS=["typeof","delete"];OpNode.prototype.is_unary=function is_unary(){return !this.second};OpNode.prototype.is_chainable=function is_chainable(){return this.CHAINABLE.indexOf(this.operator)>=0};OpNode.prototype.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)].join(" ")};OpNode.prototype.compile_chain=function compile_chain(o){var _a,_b,first,second,shared;shared=this.first.unwrap().second;if(shared.contains_type(CallNode)){_a=shared.compile_reference(o);this.first.second=_a[0];shared=_a[1]}_b=[this.first.compile(o),this.second.compile(o),shared.compile(o)];first=_b[0];second=_b[1];shared=_b[2];return"("+first+") && ("+shared+" "+this.operator+" "+second+")"};OpNode.prototype.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};OpNode.prototype.compile_existence=function compile_existence(o){var _a,first,second,test;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];test=ExistenceNode.compile_test(o,this.first);return""+test+" ? "+first+" : "+second};OpNode.prototype.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("")};return OpNode})();exports.TryNode=(function(){TryNode=function TryNode(attempt,error,recovery,ensure){this.children=compact([(this.attempt=attempt),(this.recovery=recovery),(this.ensure=ensure)]);this.error=error;this;return this};__extends(TryNode,BaseNode);TryNode.prototype.make_return=function make_return(){if(this.attempt){this.attempt=this.attempt.make_return()}if(this.recovery){this.recovery=this.recovery.make_return()}return this};TryNode.prototype.compile_node=function compile_node(o){var attempt_part,catch_part,error_part,finally_part;o.indent=this.idt(1);o.top=true;attempt_part=this.attempt.compile(o);error_part=this.error?(" ("+(this.error.compile(o))+") "):" ";catch_part=this.recovery?(" catch"+error_part+"{\n"+(this.recovery.compile(o))+"\n"+this.tab+"}"):"";finally_part=(this.ensure||"")&&" finally {\n"+this.ensure.compile(merge(o))+("\n"+this.tab+"}");return""+(this.tab)+"try {\n"+attempt_part+"\n"+this.tab+"}"+catch_part+finally_part};return TryNode})();statement(TryNode);exports.ThrowNode=(function(){ThrowNode=function ThrowNode(expression){this.children=[(this.expression=expression)];return this};__extends(ThrowNode,BaseNode);ThrowNode.prototype.make_return=function make_return(){return this};ThrowNode.prototype.compile_node=function compile_node(o){return""+(this.tab)+"throw "+(this.expression.compile(o))+";"};return ThrowNode})();statement(ThrowNode);exports.ExistenceNode=(function(){ExistenceNode=function ExistenceNode(expression){this.children=[(this.expression=expression)];return this};__extends(ExistenceNode,BaseNode);ExistenceNode.prototype.compile_node=function compile_node(o){return ExistenceNode.compile_test(o,this.expression)};ExistenceNode.compile_test=function compile_test(o,variable){var _a,_b,_c,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]}_c=[first.compile(o),second.compile(o)];first=_c[0];second=_c[1];return"(typeof "+first+' !== "undefined" && '+second+" !== null)"};return ExistenceNode}).call(this);exports.ParentheticalNode=(function(){ParentheticalNode=function ParentheticalNode(expression){this.children=[(this.expression=expression)];return this};__extends(ParentheticalNode,BaseNode);ParentheticalNode.prototype.is_statement=function is_statement(){return this.expression.is_statement()};ParentheticalNode.prototype.make_return=function make_return(){return this.expression.make_return()};ParentheticalNode.prototype.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)}if(this.expression instanceof AssignNode){return code}else{return"("+code+")"}};return ParentheticalNode})();exports.ForNode=(function(){ForNode=function ForNode(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]);this.returns=false;return this};__extends(ForNode,BaseNode);ForNode.prototype.top_sensitive=function top_sensitive(){return true};ForNode.prototype.make_return=function make_return(){this.returns=true;return this};ForNode.prototype.compile_return_value=function compile_return_value(val,o){if(this.returns){return new ReturnNode(literal(val)).compile(o)}return val||""};ForNode.prototype.compile_node=function compile_node(o){var body,body_dent,close,for_part,index,index_var,ivar,lvar,name,range,return_result,rvar,scope,set_result,source,source_part,step_part,svar,top_level,var_part,vars;top_level=del(o,"top")&&!this.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);if(name){scope.find(name)}if(index){scope.find(index)}body_dent=this.idt(1);if(!(top_level)){rvar=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=source.compile(merge(o,{index:ivar,step:this.step}));for_part=(""+index_var+" = 0, "+for_part+", "+index_var+"++")}else{svar=scope.free_variable();index_var=null;source_part=(""+svar+" = "+(this.source.compile(o))+";\n"+this.tab);if(name){var_part=(""+body_dent+name+" = "+svar+"["+ivar+"];\n")}if(!this.object){lvar=scope.free_variable();step_part=this.step?(""+ivar+" += "+(this.step.compile(o))):(""+ivar+"++");for_part=(""+ivar+" = 0, "+lvar+" = "+(svar)+".length; "+ivar+" < "+lvar+"; "+step_part)}}set_result=rvar?this.idt()+rvar+" = []; ":this.idt();return_result=this.compile_return_value(rvar,o);if(top_level&&body.contains(function(n){return n instanceof CodeNode})){body=ClosureNode.wrap(body,true)}if(!(top_level)){body=PushNode.wrap(rvar,body)}this.filter?(body=Expressions.wrap([new IfNode(this.filter,body)])):null;this.object?(for_part=(""+ivar+" in "+svar+") { if ("+(utility("hasProp"))+".call("+svar+", "+ivar+")")):null;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.tab+close+return_result};return ForNode})();statement(ForNode);exports.IfNode=(function(){IfNode=function IfNode(condition,body,else_body,tags){this.condition=condition;this.body=body&&body.unwrap();this.else_body=else_body&&else_body.unwrap();this.children=compact(flatten([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};__extends(IfNode,BaseNode);IfNode.prototype.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};IfNode.prototype.force_statement=function force_statement(){this.tags.statement=true;return this};IfNode.prototype.rewrite_condition=function rewrite_condition(expression){this.switcher=expression;return this};IfNode.prototype.rewrite_switch=function rewrite_switch(o){var _a,_b,_c,assigner,cond,i,variable;assigner=this.switcher;if(!(this.switcher.unwrap() instanceof LiteralNode)){variable=literal(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,_c=_b.length;i<_c;i++){cond=_b[i];_a.push(new OpNode("==",(i===0?assigner:this.switcher),cond))}return _a}else{return new OpNode("==",assigner,this.condition)}}).call(this);if(this.is_chain()){this.else_body.rewrite_condition(this.switcher)}return this};IfNode.prototype.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};IfNode.prototype.is_chain=function is_chain(){return this.chain=this.chain||this.else_body&&this.else_body instanceof IfNode};IfNode.prototype.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()))};IfNode.prototype.compile_condition=function compile_condition(o){var _a,_b,_c,_d,cond;return(function(){_a=[];_c=flatten([this.condition]);for(_b=0,_d=_c.length;_b<_d;_b++){cond=_c[_b];_a.push(cond.compile(o))}return _a}).call(this).join(" || ")};IfNode.prototype.compile_node=function compile_node(o){if(this.is_statement()){return this.compile_statement(o)}else{return this.compile_ternary(o)}};IfNode.prototype.make_return=function make_return(){this.body=this.body&&this.body.make_return();this.else_body=this.else_body&&this.else_body.make_return();return this};IfNode.prototype.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);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.tab+"}");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.tab+"}");return""+if_part+else_part};IfNode.prototype.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};return IfNode})();PushNode=(exports.PushNode={wrap:function wrap(array,expressions){var expr;expr=expressions.unwrap();if(expr.is_pure_statement()||expr.contains_pure_statement()){return expressions}return Expressions.wrap([new CallNode(new ValueNode(literal(array),[new AccessorNode(literal("push"))]),[expr])])}});ClosureNode=(exports.ClosureNode={wrap:function wrap(expressions,statement){var args,call,func,mentions_args,mentions_this,meth;if(expressions.contains_pure_statement()){return expressions}func=new ParentheticalNode(new CodeNode([],Expressions.wrap([expressions])));args=[];mentions_args=expressions.contains(function(n){return(n instanceof LiteralNode)&&(n.value==="arguments")});mentions_this=expressions.contains(function(n){return(n instanceof LiteralNode)&&(n.value==="this")});if(mentions_args||mentions_this){meth=literal(mentions_args?"apply":"call");args=[literal("this")];if(mentions_args){args.push(literal("arguments"))}func=new ValueNode(func,[new AccessorNode(meth)])}call=new CallNode(func,args);if(statement){return Expressions.wrap([call])}else{return call}}});UTILITIES={__extends:"function(child, parent) {\n var ctor = function(){ };\n ctor.prototype = parent.prototype;\n child.__superClass__ = parent.prototype;\n child.prototype = new ctor();\n child.prototype.constructor = child;\n }",__bind:"function(func, obj, args) {\n return function() {\n return func.apply(obj || {}, args ? args.concat(__slice.call(arguments, 0)) : arguments);\n };\n }",__hasProp:"Object.prototype.hasOwnProperty",__slice:"Array.prototype.slice"};TAB=" ";TRAILING_WHITESPACE=/\s+$/gm;IDENTIFIER=/^[a-zA-Z\$_](\w|\$)*$/;literal=function literal(name){return new LiteralNode(name)};utility=function utility(name){var ref;ref=("__"+name);Scope.root.assign(ref,UTILITIES[ref]);return ref}})();(function(){var Lexer,compile,helpers,lexer,parser,path,process_scripts;if((typeof process!=="undefined"&&process!==null)){path=require("path");Lexer=require("./lexer").Lexer;parser=require("./parser").parser;helpers=require("./helpers").helpers;helpers.extend(global,require("./nodes"));require.registerExtension?require.registerExtension(".coffee",function(content){return compile(content)}):null}else{this.exports=(this.CoffeeScript={});Lexer=this.Lexer;parser=this.parser;helpers=this.helpers}exports.VERSION="0.6.1";lexer=new Lexer();exports.compile=(compile=function compile(code,options){options=options||{};try{return(parser.parse(lexer.tokenize(code))).compile(options)}catch(err){if(options.source){err.message=("In "+options.source+", "+err.message)}throw err}});exports.tokens=function tokens(code){return lexer.tokenize(code)};exports.nodes=function nodes(code){return parser.parse(lexer.tokenize(code))};exports.run=(function(code,options){var __dirname,__filename;module.filename=(__filename=options.source);__dirname=path.dirname(__filename);return eval(exports.compile(code,options))});exports.extend=function extend(func){return Lexer.extensions.push(func)};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;this.pos=0;return this.pos},upcomingInput:function upcomingInput(){return""},showPosition:function showPosition(){return this.pos}};if((typeof document!=="undefined"&&document!==null)&&document.getElementsByTagName){process_scripts=function process_scripts(){var _a,_b,_c,_d,tag;_a=[];_c=document.getElementsByTagName("script");for(_b=0,_d=_c.length;_b<_d;_b++){tag=_c[_b];tag.type==="text/coffeescript"?_a.push(eval(exports.compile(tag.innerHTML))):null}return _a};if(window.addEventListener){window.addEventListener("load",process_scripts,false)}else{if(window.attachEvent){window.attachEvent("onload",process_scripts)}}}})();
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright(c) 2010 Sencha Inc.
3
+ licensing@sencha.com
4
+ http://www.sencha.com/touchlicense
5
+ */
6
+ window.undefined=window.undefined;Ext={version:"0.9.0",versionDetail:{major:0,minor:9,patch:0}};Ext.setup=function(b){if(Ext.isObject(b)){if(b.addMetaTags!==false){var f=Ext.get(document.createElement("meta")),c=Ext.get(document.createElement("meta")),h=Ext.get(document.createElement("meta")),a=Ext.get(document.createElement("link")),d=Ext.get(document.createElement("link"));f.set({name:"viewport",content:"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0;"});if(b.fullscreen!==false){c.set({name:"apple-mobile-web-app-capable",content:"yes"});if(Ext.isString(b.statusBarStyle)){h.set({name:"apple-mobile-web-app-status-bar-style",content:b.statusBarStyle})}}if(Ext.isString(b.tabletStartupScreen)&&Ext.platform.isTablet){a.set({rel:"apple-touch-startup-image",href:b.tabletStartupScreen})}else{if(Ext.isString(b.phoneStartupScreen)&&Ext.platform.isPhone){a.set({rel:"apple-touch-startup-image",href:b.phoneStartupScreen})}}if(b.icon){b.phoneIcon=b.tabletIcon=b.icon}var j=(b.glossOnIcon==false)?"-precomposed":"";if(Ext.isString(b.tabletIcon)&&Ext.platform.isTablet){d.set({rel:"apple-touch-icon"+j,href:b.tabletIcon})}else{if(Ext.isString(b.phoneIcon)&&Ext.platform.isPhone){d.set({el:"apple-touch-icon"+j,href:b.phoneIcon})}}var g=Ext.get(document.getElementsByTagName("head")[0]);g.appendChild(f);if(c.getAttribute("name")){g.appendChild(c)}if(h.getAttribute("name")){g.appendChild(h)}if(d.getAttribute("href")){g.appendChild(d)}if(a.getAttribute("href")){g.appendChild(a)}}if(Ext.isArray(b.preloadImages)){for(var e=b.preloadImages.length-1;e>=0;e--){(new Image()).src=b.preloadImages[e]}}if(Ext.isFunction(b.onReady)){Ext.onReady(b.onReady,b.scope||window)}}};Ext.apply=function(b,a,d){if(d){Ext.apply(b,d)}if(b&&a&&typeof a=="object"){for(var c in a){b[c]=a[c]}}return b};Ext.apply(Ext,{userAgent:navigator.userAgent.toLowerCase(),cache:{},idSeed:1000,BLANK_IMAGE_URL:"data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==",isStrict:document.compatMode=="CSS1Compat",emptyFn:function(){},isSecure:/^https/i.test(window.location.protocol),isReady:false,enableGarbageCollector:true,enableListenerCollection:true,applyIf:function(b,a){var c,d;if(b){for(c in a){if(b[c]===d){b[c]=a[c]}}}return b},repaint:function(){var a=Ext.getBody().createChild({cls:"x-mask x-mask-transparent"});setTimeout(function(){a.remove()},0)},id:function(a,b){return(a=Ext.getDom(a)||{}).id=a.id||(b||"ext-gen")+(++Ext.idSeed)},extend:function(){var b=function(d){for(var c in d){this[c]=d[c]}};var a=Object.prototype.constructor;return function(c,h,f){if(Ext.isObject(h)){f=h;h=c;c=f.constructor!=a?f.constructor:function(){h.apply(this,arguments)}}var e=function(){},d,g=h.prototype;e.prototype=g;d=c.prototype=new e();d.constructor=c;c.superclass=g;if(g.constructor==a){g.constructor=h}c.override=function(i){Ext.override(c,i)};d.superclass=d.supr=(function(){return g});d.override=b;c.override(f);c.extend=function(i){return Ext.extend(c,i)};return c}}(),override:function(a,b){if(b){Ext.apply(a.prototype,b)}},namespace:function(){var d=arguments.length,c,e,b,a,f;for(c=0;c<d;c++){e=arguments[c];parts=e.split(".");object=window[parts[0]]=Object(window[parts[0]]);for(a=1,f=parts.length;a<f;a++){object=object[parts[a]]=Object(object[parts[a]])}}return object},urlEncode:function(f,d){var b,a=[],c=encodeURIComponent;Ext.iterate(f,function(e,g){b=Ext.isEmpty(g);Ext.each(b?e:g,function(h){a.push("&",c(e),"=",(!Ext.isEmpty(h)&&(h!=e||!b))?(Ext.isDate(h)?Ext.encode(h).replace(/"/g,""):c(h)):"")})});if(!d){a.shift();d=""}return d+a.join("")},urlDecode:function(c,b){if(Ext.isEmpty(c)){return{}}var g={},f=c.split("&"),h=decodeURIComponent,a,e;Ext.each(f,function(d){d=d.split("=");a=h(d[0]);e=h(d[1]);g[a]=b||!g[a]?e:[].concat(g[a]).concat(e)});return g},htmlEncode:function(a){return Ext.util.Format.htmlEncode(a)},htmlDecode:function(a){return Ext.util.Format.htmlDecode(a)},urlAppend:function(a,b){if(!Ext.isEmpty(b)){return a+(a.indexOf("?")===-1?"?":"&")+b}return a},toArray:function(c,b,a){return Array.prototype.slice.call(c,b||0,a||c.length)},each:function(e,d,c){if(Ext.isEmpty(e,true)){return 0}if(!Ext.isIterable(e)||Ext.isPrimitive(e)){e=[e]}for(var b=0,a=e.length;b<a;b++){if(d.call(c||e[b],e[b],b,e)===false){return b}}return true},iterate:function(c,b,a){if(Ext.isEmpty(c)){return}if(Ext.isIterable(c)){Ext.each(c,b,a);return}else{if(Ext.isObject(c)){for(var d in c){if(c.hasOwnProperty(d)){if(b.call(a||c,d,c[d],c)===false){return}}}}}},getDom:function(a){if(!a||!document){return null}return a.dom?a.dom:(typeof a=="string"?document.getElementById(a):a)},getBody:function(){return Ext.get(document.body||false)},getDoc:function(){return Ext.get(document)},getCmp:function(a){return Ext.ComponentMgr.get(a)},getOrientation:function(){return window.innerHeight>window.innerWidth?"portrait":"landscape"},removeNode:function(a){if(a&&a.parentNode&&a.tagName!="BODY"){Ext.EventManager.removeAll(a);a.parentNode.removeChild(a);delete Ext.cache[a.id]}},destroy:function(){var c=arguments.length,b,a;for(b=0;b<c;b++){a=arguments[b];if(a){if(Ext.isArray(a)){this.destroy.apply(this,a)}else{if(Ext.isFunction(a.destroy)){a.destroy()}else{if(a.dom){a.remove()}}}}}},isIterable:function(a){if(Ext.isArray(a)||a.callee){return true}if(/NodeList|HTMLCollection/.test(Object.prototype.toString.call(a))){return true}return((typeof a.nextNode!="undefined"||a.item)&&Ext.isNumber(a.length))},num:function(b,a){b=Number(Ext.isEmpty(b)||Ext.isArray(b)||typeof b=="boolean"||(typeof b=="string"&&b.trim().length==0)?NaN:b);return isNaN(b)?a:b},isEmpty:function(b,a){return b==null||((Ext.isArray(b)&&!b.length))||(!a?b==="":false)},isArray:function(a){return Object.prototype.toString.apply(a)==="[object Array]"},isDate:function(a){return Object.prototype.toString.apply(a)==="[object Date]"},isObject:function(a){return !!a&&Object.prototype.toString.call(a)==="[object Object]"},isPrimitive:function(a){return Ext.isString(a)||Ext.isNumber(a)||Ext.isBoolean(a)},isFunction:function(a){return Object.prototype.toString.apply(a)==="[object Function]"},isNumber:function(a){return Object.prototype.toString.apply(a)==="[object Number]"&&isFinite(a)},isString:function(a){return Object.prototype.toString.apply(a)==="[object String]"},isBoolean:function(a){return Object.prototype.toString.apply(a)==="[object Boolean]"},isElement:function(a){return !!a&&a.tagName},isDefined:function(a){return typeof a!=="undefined"},escapeRe:function(a){return a.replace(/([-.*+?^${}()|[\]\/\\])/g,"\\$1")}});Ext.SSL_SECURE_URL=Ext.isSecure&&"about:blank";Ext.ns=Ext.namespace;Ext.ns("Ext.util","Ext.data","Ext.list","Ext.form","Ext.menu","Ext.state","Ext.layout","Ext.app","Ext.ux","Ext.plugins","Ext.direct");Ext.apply(Function.prototype,{createInterceptor:function(b,a){if(!Ext.isFunction(b)){return this}else{var c=this;return function(){var e=this,d=arguments;b.target=e;b.method=c;if(b.apply(a||e||window,d)!==false){return c.apply(e||window,d)}return null}}},createDelegate:function(c,b,a){var d=this;return function(){var f=b||arguments;if(a===true){f=Array.prototype.slice.call(arguments,0);f=f.concat(b)}else{if(Ext.isNumber(a)){f=Array.prototype.slice.call(arguments,0);var e=[a,0].concat(b);Array.prototype.splice.apply(f,e)}}return d.apply(c||window,f)}},defer:function(c,e,b,a){var d=this.createDelegate(e,b,a);if(c>0){return setTimeout(d,c)}d();return 0}});Ext.applyIf(String.prototype,{escape:function(a){return a.replace(/('|\\)/g,"\\$1")},toggle:function(b,a){return this==b?a:b},trim:function(){var a=/^\s+|\s+$/g;return function(){return this.replace(a,"")}}()});Ext.applyIf(String,{escape:function(a){return a.replace(/('|\\)/g,"\\$1")},leftPad:function(d,b,c){var a=String(d);if(!c){c=" "}while(a.length<b){a=c+a}return a},format:function(b){var a=Ext.toArray(arguments,1);return b.replace(/\{(\d+)\}/g,function(c,d){return a[d]})}});Ext.applyIf(Date.prototype,{getElapsed:function(a){return Math.abs((a||new Date()).getTime()-this.getTime())}});Ext.applyIf(Array.prototype,{indexOf:function(b,c){var a=this.length;c=c||0;c+=(c<0)?a:0;for(;c<a;++c){if(this[c]===b){return c}}return -1},remove:function(b){var a=this.indexOf(b);if(a!=-1){this.splice(a,1)}return this},contains:function(a){return this.indexOf(a)!==-1}});Ext.applyIf(Number.prototype,{constrain:function(b,a){var c=parseInt(this,10);if(typeof b=="number"){c=Math.max(c,b)}if(typeof a=="number"){c=Math.min(c,a)}return c}});(function(){Ext.Element=Ext.extend(Object,{defaultUnit:"px",constructor:function(c,d){var e=typeof c=="string"?document.getElementById(c):c,f;if(!e){return null}f=e.id;if(!d&&f&&Ext.cache[f]){return Ext.cache[f].el}this.dom=e;this.id=f||Ext.id(e);return this},set:function(g,d){var e=this.dom,c,f;for(c in g){if(g.hasOwnProperty(c)){f=g[c];if(c=="style"){this.applyStyles(f)}else{if(c=="cls"){e.className=f}else{if(d!==false){e.setAttribute(c,f)}else{e[c]=f}}}}}return this},is:function(c){return Ext.DomQuery.is(this.dom,c)},getValue:function(c){var d=this.dom.value;return c?parseInt(d,10):d},addListener:function(c,f,e,d){Ext.EventManager.on(this.dom,c,f,e||this,d);return this},removeListener:function(c,e,d){Ext.EventManager.un(this.dom,c,e,d);return this},removeAllListeners:function(){Ext.EventManager.removeAll(this.dom);return this},purgeAllListeners:function(){Ext.EventManager.purgeElement(this,true);return this},remove:function(){var c=this,d=c.dom;if(d){delete c.dom;Ext.removeNode(d)}},isAncestor:function(e){var d=this.dom;e=Ext.getDom(e);if(d&&e){return d.contains(e)}return false},isDescendent:function(c){return Ext.fly(c).isAncestorOf(this)},contains:function(c){return !c?false:this.isAncestor(c)},getAttribute:function(c,e){var f=this.dom;return f.getAttributeNS(e,c)||f.getAttribute(e+":"+c)||f.getAttribute(c)||f[c]},setHTML:function(c){if(this.dom){this.dom.innerHTML=c}return this},getHTML:function(){return this.dom?this.dom.innerHTML:""},hide:function(){this.setVisible(false);return this},show:function(){this.setVisible(true);return this},setVisible:function(g,c){var d=this,f=d.dom,e=this.getVisibilityMode();switch(e){case Ext.Element.VISIBILITY:this.removeClass(["x-hidden-display","x-hidden-offsets"]);this[g?"removeClass":"addClass"]("x-hidden-visibility");break;case Ext.Element.DISPLAY:this.removeClass(["x-hidden-visibility","x-hidden-offsets"]);this[g?"removeClass":"addClass"]("x-hidden-display");break;case Ext.Element.OFFSETS:this.removeClass(["x-hidden-visibility","x-hidden-display"]);this[g?"removeClass":"addClass"]("x-hidden-offsets");break}return d},getVisibilityMode:function(){var d=this.dom,c=Ext.Element.data(d,"visibilityMode");if(c===undefined){Ext.Element.data(d,"visibilityMode",c=Ext.Element.DISPLAY)}return c},setDisplayMode:function(c){Ext.Element.data(this.dom,"visibilityMode",c);return this}});var b=Ext.Element;b.VISIBILITY=1;b.DISPLAY=2;b.OFFSETS=3;b.addMethods=function(c){Ext.apply(b.prototype,c)};b.prototype.on=b.prototype.addListener;b.prototype.un=b.prototype.removeListener;b.prototype.update=b.prototype.setHTML;b.get=function(c){var f,e,g;if(!c){return null}if(typeof c=="string"){if(!(e=document.getElementById(c))){return null}if(Ext.cache[c]&&Ext.cache[c].el){f=Ext.cache[c].el;f.dom=e}else{f=b.addToCache(new b(e))}return f}else{if(c.tagName){if(!(g=c.id)){g=Ext.id(c)}if(Ext.cache[g]&&Ext.cache[g].el){f=Ext.cache[g].el;f.dom=c}else{f=b.addToCache(new b(c))}return f}else{if(c instanceof b){if(c!=b.docEl){c.dom=document.getElementById(c.id)||c.dom}return c}else{if(c.isComposite){return c}else{if(Ext.isArray(c)){return b.select(c)}else{if(c==document){if(!b.docEl){var d=function(){};d.prototype=b.prototype;b.docEl=new d();b.docEl.dom=document}return b.docEl}}}}}}return null};b.addToCache=function(c,d){d=d||c.id;Ext.cache[d]={el:c,data:{},events:{}};return c};b.data=function(e,d,f){e=b.get(e);if(!e){return null}var g=Ext.cache[e.id].data;if(arguments.length==2){return g[d]}else{return(g[d]=f)}};b.garbageCollect=function(){if(!Ext.enableGarbageCollector){clearInterval(b.collectorThreadId)}else{var f,c,e,d;for(f in Ext.cache){d=Ext.cache[f];if(d.skipGarbageCollection){continue}c=d.el;e=c.dom;if(!e||!e.parentNode||(!e.offsetParent&&!document.getElementById(f))){if(Ext.enableListenerCollection){Ext.EventManager.removeAll(e)}delete Ext.cache[eid]}}}};b.Flyweight=function(c){this.dom=c};var a=function(){};a.prototype=b.prototype;b.Flyweight.prototype=new a;b.Flyweight.prototype.isFlyweight=true;b._flyweights={};b.fly=function(e,c){var d=null;c=c||"_global";e=Ext.getDom(e);if(e){(b._flyweights[c]=b._flyweights[c]||new b.Flyweight()).dom=e;d=b._flyweights[c]}return d};Ext.get=b.get;Ext.fly=b.fly})();Ext.applyIf(Ext.Element,{unitRe:/\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i,camelRe:/(-[a-z])/gi,opacityRe:/alpha\(opacity=(.*)\)/i,propertyCache:{},borders:{l:"border-left-width",r:"border-right-width",t:"border-top-width",b:"border-bottom-width"},paddings:{l:"padding-left",r:"padding-right",t:"padding-top",b:"padding-bottom"},margins:{l:"margin-left",r:"margin-right",t:"margin-top",b:"margin-bottom"},addUnits:function(a){if(a===""||a=="auto"||a===undefined){a=a||""}else{if(!isNaN(a)||!this.unitRe.test(a)){a=a+(this.defaultUnit||"px")}}return a},parseBox:function(b){if(typeof b!="string"){b=b.toString()}var c=b.split(" "),a=c.length;if(a==1){c[1]=c[2]=c[3]=c[0]}else{if(a==2){c[2]=c[0];c[3]=c[1]}else{if(a==3){c[3]=c[1]}}}return{top:parseInt(c[0],10)||0,right:parseInt(c[1],10)||0,bottom:parseInt(c[2],10)||0,left:parseInt(c[3],10)||0}},camelReplaceFn:function(b,c){return c.charAt(1).toUpperCase()},normalize:function(a){return this.propertyCache[a]||(this.propertyCache[a]=a=="float"?"cssFloat":a.replace(this.camelRe,this.camelReplaceFn))},getDocumentHeight:function(){return Math.max(!Ext.isStrict?document.body.scrollHeight:document.documentElement.scrollHeight,this.getViewportHeight())},getDocumentWidth:function(){return Math.max(!Ext.isStrict?document.body.scrollWidth:document.documentElement.scrollWidth,this.getViewportWidth())},getViewportHeight:function(){return window.innerHeight},getViewportWidth:function(){return window.innerWidth},getViewSize:function(){return{width:window.innerWidth,height:window.innerHeight}},getOrientation:function(){return(window.innerHeight>window.innerWidth)?"portrait":"landscape"},fromPoint:function(a,b){return Ext.get(document.elementFromPoint(a,b))}});Ext.Element.addMethods({getY:function(a){return this.getXY(a)[1]},getX:function(a){return this.getXY(a)[0]},getXY:(function(){return function(){var b=document.body||document.documentElement,c=parent=this.dom,a=y=0;if(!c||c===b){return[0,0]}while(parent){a+=parent.offsetLeft;y+=parent.offsetTop;if(parent!=c){a+=parent.clientLeft||0;y+=parent.clientTop||0}parent=parent.offsetParent}if(Ext.platform.isWebkit&&this.isStyle("position","absolute")){y-=b.offsetTop}parent=c.parentNode;while(parent&&parent!=b){a-=parent.scrollLeft;y-=parent.scrollTop;parent=parent.parentNode}return[a,y]}})(),getOffsetsTo:function(a){var c=this.getXY(),b=Ext.fly(a,"_internal").getXY();return[c[0]-b[0],c[1]-b[1]]},setXY:function(d){var b=this;if(arguments.length>1){d=[d,arguments[1]]}var c=b.translatePoints(d),a=b.dom.style;for(d in c){if(!isNaN(c[d])){a[d]=c[d]+"px"}}return b},setX:function(a){return this.setXY([a,this.getY()])},setY:function(a){return this.setXY([this.getX(),a])},setLeft:function(a){this.setStyle("left",Ext.Element.addUnits(a));return this},setTop:function(a){this.setStyle("top",Ext.Element.addUnits(a));return this},setTopLeft:function(c,b){var a=Ext.Element.addUnits;this.setStyle("top",a(c));this.setStyle("left",a(b));return this},setRight:function(a){this.setStyle("right",Ext.Element.addUnits(a));return this},setBottom:function(a){this.setStyle("bottom",Ext.Element.addUnits(a));return this},getLeft:function(a){return parseInt(this.getStyle("left"),10)||0},getRight:function(a){return parseInt(this.getStyle("right"),10)||0},getTop:function(a){return parseInt(this.getStyle("top"),10)||0},getBottom:function(a){return parseInt(this.getStyle("bottom"),10)||0},setBox:function(d,c,b,a){var e;if(Ext.isObject(d)){b=d.width;a=d.height;c=d.top;d=d.left}if(d!==e||c!==e||b!==e||a!==e){if(d!==e){this.setLeft(d)}if(c!==e){this.setTop(c)}if(b!==e){this.setWidth(b)}if(a!==e){this.setHeight(a)}}return this},getBox:function(g,j){var h=this,e=h.dom,c=e.offsetWidth,k=e.offsetHeight,n,f,d,a,m,i;if(!j){n=h.getXY()}else{if(g){n=[0,0]}else{n=[parseInt(h.getStyle("left"),10)||0,parseInt(h.getStyle("top"),10)||0]}}if(!g){f={x:n[0],y:n[1],0:n[0],1:n[1],width:c,height:k}}else{d=h.getBorderWidth.call(h,"l")+h.getPadding.call(h,"l");a=h.getBorderWidth.call(h,"r")+h.getPadding.call(h,"r");m=h.getBorderWidth.call(h,"t")+h.getPadding.call(h,"t");i=h.getBorderWidth.call(h,"b")+h.getPadding.call(h,"b");f={x:n[0]+d,y:n[1]+m,0:n[0]+d,1:n[1]+m,width:c-(d+a),height:k-(m+i)}}f.left=f.x;f.top=f.y;f.right=f.x+f.width;f.bottom=f.y+f.height;return f},getPageBox:function(e){var g=this,c=g.dom,j=c.offsetWidth,f=c.offsetHeight,m=g.getXY(),k=m[1],a=m[0]+j,i=m[1]+f,d=m[0];if(e){return new Ext.util.Region(k,a,i,d)}else{return{left:d,top:k,width:j,height:f,right:a,bottom:i}}},translatePoints:function(a,g){g=isNaN(a[1])?g:a[1];a=isNaN(a[0])?a:a[0];var d=this,e=d.isStyle("position","relative"),f=d.getXY(),b=parseInt(d.getStyle("left"),10),c=parseInt(d.getStyle("top"),10);b=!isNaN(b)?b:(e?0:d.dom.offsetLeft);c=!isNaN(c)?c:(e?0:d.dom.offsetTop);return{left:(a-f[0]+b),top:(g-f[1]+c)}}});Ext.Element.classReCache={};Ext.Element.addMethods({marginRightRe:/marginRight/i,trimRe:/^\s+|\s+$/g,spacesRe:/\s+/,addClass:function(e){var f=this,d,a,c,b=[];if(!Ext.isArray(e)){if(e&&!this.hasClass(e)){f.dom.className+=" "+e}}else{for(d=0,a=e.length;d<a;d++){c=e[d];if(c&&!f.hasClass(c)){b.push(c)}}if(b.length){f.dom.className+=" "+b.join(" ")}}return f},removeClass:function(f){var g=this,e,b,a,d,c;if(!Ext.isArray(f)){f=[f]}if(g.dom&&g.dom.className){c=g.dom.className.replace(this.trimRe,"").split(this.spacesRe);for(e=0,a=f.length;e<a;e++){d=f[e];if(typeof d=="string"){d=d.replace(this.trimRe,"");b=c.indexOf(d);if(b!=-1){c.splice(b,1)}}}g.dom.className=c.join(" ")}return g},mask:function(f,b){var d=this,e=d.dom,c=Ext.Element.data(e,"mask"),a;d.addClass("x-masked");if(d.getStyle("position")=="static"){d.addClass("x-masked-relative")}if(c){c.remove()}a=d.createChild({cls:"x-mask"+(f?" x-mask-transparent":""),html:b||""});Ext.Element.data(e,"mask",a)},unmask:function(){var b=this,c=b.dom,a=Ext.Element.data(c,"mask");if(a){a.remove();Ext.Element.data(c,"mask",undefined)}b.removeClass(["x-masked","x-masked-relative"])},radioClass:function(d){var e=this.dom.parentNode.childNodes,b;d=Ext.isArray(d)?d:[d];for(var c=0,a=e.length;c<a;c++){b=e[c];if(b&&b.nodeType==1){Ext.fly(b,"_internal").removeClass(d)}}return this.addClass(d)},toggleClass:function(a){return this.hasClass(a)?this.removeClass(a):this.addClass(a)},hasClass:function(a){return a&&(" "+this.dom.className+" ").indexOf(" "+a+" ")!=-1},replaceClass:function(b,a){return this.removeClass(b).addClass(a)},isStyle:function(a,b){return this.getStyle(a)==b},getStyle:function(f){var e=this.dom,c,b,a,d;if(e==document){return null}f=Ext.Element.normalize(f);a=(c=e.style[f])?c:(b=window.getComputedStyle(e,null))?b[f]:null;if(Ext.platform.hasRightMarginBug&&marginRightRe.test(f)&&out!="0px"){d=this.getStyle("display");el.style.display="inline-block";a=view.getComputedStyle(el,"");el.style.display=d}if(a=="rgba(0, 0, 0, 0)"){a="transparent"}return a},setStyle:function(d,c){var a,b;if(!Ext.isObject(d)){a={};a[d]=c;d=a}for(b in d){c=d[b];b=Ext.Element.normalize(b);this.dom.style[b]=c}return this},applyStyles:function(c){if(c){var b,a;if(typeof c=="function"){c=c.call()}if(typeof c=="string"){c=c.trim().split(/\s*(?::|;)\s*/);for(b=0,a=c.length;b<a;){this.setStyle(c[b++],c[b++])}}else{if(Ext.isObject(c)){this.setStyle(c)}}}},getHeight:function(b){var c=this.dom,a=b?(c.clientHeight-this.getPadding("tb")):c.offsetHeight;return a>0?a:0},getWidth:function(a){var c=this.dom,b=a?(c.clientWidth-this.getPadding("lr")):c.offsetWidth;return b>0?b:0},setWidth:function(a){var b=this;b.dom.style.width=Ext.Element.addUnits(a);return b},setHeight:function(a){var b=this;b.dom.style.height=Ext.Element.addUnits(a);return b},setSize:function(b,a){var c=this;if(Ext.isObject(b)){a=b.height;b=b.width}c.dom.style.width=Ext.Element.addUnits(b);c.dom.style.height=Ext.Element.addUnits(a);return c},getBorderWidth:function(a){return this.sumStyles(a,Ext.Element.borders)},getPadding:function(a){return this.sumStyles(a,Ext.Element.paddings)},getMargin:function(a){return this.sumStyles(a,Ext.Element.margins)},getViewSize:function(){var a=document,b=this.dom;if(b==a||b==a.body){return{width:Ext.Element.getViewportWidth(),height:Ext.Element.getViewportHeight()}}else{return{width:b.clientWidth,height:b.clientHeight}}},getSize:function(a){return{width:this.getWidth(a),height:this.getHeight(a)}},repaint:function(){var a=this.dom;this.addClass("x-repaint");a.style.background="transparent none";setTimeout(function(){a.style.background=null;Ext.get(a).removeClass("x-repaint")},1);return this},getOuterWidth:function(){return this.getWidth()+this.getMargin("lr")},getOuterHeight:function(){return this.getHeight()+this.getMargin("tb")},sumStyles:function(f,e){var g=0,b=f.match(/\w/g),a=b.length,d,c;for(c=0;c<a;c++){d=b[c]&&parseInt(this.getStyle(e[b[c]]),10);if(d){g+=Math.abs(d)}}return g}});Ext.Element.addMethods({findParent:function(h,g,c){var e=this.dom,a=document.body,f=0,d;g=g||50;if(isNaN(g)){d=Ext.getDom(g);g=Number.MAX_VALUE}while(e&&e.nodeType==1&&f<g&&e!=a&&e!=d){if(Ext.DomQuery.is(e,h)){return c?Ext.get(e):e}f++;e=e.parentNode}return null},findParentNode:function(d,c,a){var b=Ext.fly(this.dom.parentNode,"_internal");return b?b.findParent(d,c,a):null},up:function(b,a){return this.findParentNode(b,a,true)},select:function(a,b){return Ext.Element.select(a,this.dom,b)},query:function(a){return Ext.DomQuery.select(a,this.dom)},down:function(a,b){var c=Ext.DomQuery.selectNode(a,this.dom);return b?c:Ext.get(c)},child:function(a,b){var d,c=this,e;e=Ext.get(c).id;e=e.replace(/[\.:]/g,"\\$0");d=Ext.DomQuery.selectNode("#"+e+" > "+a,c.dom);return b?d:Ext.get(d)},parent:function(a,b){return this.matchNode("parentNode","parentNode",a,b)},next:function(a,b){return this.matchNode("nextSibling","nextSibling",a,b)},prev:function(a,b){return this.matchNode("previousSibling","previousSibling",a,b)},first:function(a,b){return this.matchNode("nextSibling","firstChild",a,b)},last:function(a,b){return this.matchNode("previousSibling","lastChild",a,b)},matchNode:function(b,e,a,c){var d=this.dom[e];while(d){if(d.nodeType==1&&(!a||Ext.DomQuery.is(d,a))){return !c?Ext.get(d):d}d=d[b]}return null}});Ext.Element.addMethods({appendChild:function(a){return Ext.get(a).appendTo(this)},appendTo:function(a){Ext.getDom(a).appendChild(this.dom);return this},insertBefore:function(a){a=Ext.getDom(a);a.parentNode.insertBefore(this.dom,a);return this},insertAfter:function(a){a=Ext.getDom(a);a.parentNode.insertBefore(this.dom,a.nextSibling);return this},insertFirst:function(b,a){b=b||{};if(b.nodeType||b.dom||typeof b=="string"){b=Ext.getDom(b);this.dom.insertBefore(b,this.dom.firstChild);return !a?Ext.get(b):b}else{return this.createChild(b,this.dom.firstChild,a)}},insertSibling:function(e,c,d){var f=this,b,a=(c||"before").toLowerCase()=="after",g;if(Ext.isArray(e)){g=f;Ext.each(e,function(h){b=Ext.fly(g,"_internal").insertSibling(h,c,d);if(a){g=b}});return b}e=e||{};if(e.nodeType||e.dom){b=f.dom.parentNode.insertBefore(Ext.getDom(e),a?f.dom.nextSibling:f.dom);if(!d){b=Ext.get(b)}}else{if(a&&!f.dom.nextSibling){b=Ext.DomHelper.append(f.dom.parentNode,e,!d)}else{b=Ext.DomHelper[a?"insertAfter":"insertBefore"](f.dom,e,!d)}}return b},replace:function(a){a=Ext.get(a);this.insertBefore(a);a.remove();return this},createChild:function(b,a,c){b=b||{tag:"div"};if(a){return Ext.DomHelper.insertBefore(a,b,c!==true)}else{return Ext.DomHelper[!this.dom.firstChild?"overwrite":"append"](this.dom,b,c!==true)}},wrap:function(a,b){var c=Ext.DomHelper.insertBefore(this.dom,a||{tag:"div"},!b);c.dom?c.dom.appendChild(this.dom):c.appendChild(this.dom);return c},insertHtml:function(b,c,a){var d=Ext.DomHelper.insertHtml(b,this.dom,c);return a?Ext.get(d):d}});Ext.platform={isWebkit:/webkit/i.test(Ext.userAgent),isPhone:/android|iphone/i.test(Ext.userAgent)&&!(/ipad/i.test(Ext.userAgent)),isTablet:/ipad/i.test(Ext.userAgent),isChrome:/chrome/i.test(Ext.userAgent),isAndroidOS:/android/i.test(Ext.userAgent),isIPhoneOS:/iphone|ipad/i.test(Ext.userAgent),hasOrientationChange:("onorientationchange" in window),hasTouch:("ontouchstart" in window)};Ext.util.Observable=Ext.extend(Object,{isObservable:true,constructor:function(a){var b=this,c=b.events;Ext.apply(b,a);if(b.listeners){b.on(b.listeners);delete b.listeners}b.events=c||{}},filterOptRe:/^(?:scope|delay|buffer|single)$/,fireEvent:function(){var h=this,c=Ext.toArray(arguments),e=c[0].toLowerCase(),d=true,g=h.events[e],b=h.eventQueue,f;if(h.eventsSuspended===true&&b){b.push(c)}else{if(Ext.isObject(g)&&g.bubble){if(g.fire.apply(g,c.slice(1))===false){return false}f=h.getBubbleTarget&&h.getBubbleTarget();if(f&&f.isObservable){if(!f.events[e]||!Ext.isObject(f.events[e])||!f.events[e].bubble){f.enableBubble(e)}return f.fireEvent.apply(f,c)}}else{if(Ext.isObject(g)){c.shift();d=g.fire.apply(g,c)}}}return d},addListener:function(b,d,c,g){var f=this,a,e;if(Ext.isObject(b)){g=b;for(b in g){a=g[b];if(!f.filterOptRe.test(b)){f.addListener(b,a.fn||a,a.scope||g.scope,a.fn?a:g)}}}else{b=b.toLowerCase();f.events[b]=f.events[b]||true;e=f.events[b]||true;if(Ext.isBoolean(e)){f.events[b]=e=new Ext.util.Event(f,b)}e.addListener(d,c,Ext.isObject(g)?g:{})}},removeListener:function(b,d,c){var f=this,a,e;if(Ext.isObject(b)){o=b;for(b in o){a=o[b];if(!f.filterOptRe.test(b)){f.removeListener(b,a.fn||a,a.scope||o.scope)}}}else{b=b.toLowerCase();e=f.events[b];if(e.isEvent){e.removeListener(d,c)}}},purgeListeners:function(){var b=this.events,c,a;for(a in b){c=b[a];if(c.isEvent){c.clearListeners()}}},addEvents:function(e){var d=this;d.events=d.events||{};if(Ext.isString(e)){var b=arguments,c=b.length;while(c--){d.events[b[c]]=d.events[b[c]]||true}}else{Ext.applyIf(d.events,e)}},hasListener:function(a){var b=this.events[a];return b.isEvent&&b.listeners.length>0},suspendEvents:function(a){this.eventsSuspended=true;if(a&&!this.eventQueue){this.eventQueue=[]}},resumeEvents:function(){var a=this,b=a.eventQueue||[];a.eventsSuspended=false;delete a.eventQueue;Ext.each(b,function(c){a.fireEvent.apply(a,c)})},relayEvents:function(d,a){var c=this;function b(e){return function(){return c.fireEvent.apply(c,[e].concat(Ext.toArray(arguments)))}}Ext.each(a,function(e){c.events[e]=c.events[e]||true;d.on(e,b(e),c)})},enableBubble:function(a){var b=this;if(!Ext.isEmpty(a)){a=Ext.isArray(a)?a:Ext.toArray(arguments);Ext.each(a,function(c){c=c.toLowerCase();var d=b.events[c]||true;if(Ext.isBoolean(d)){d=new Ext.util.Event(b,c);b.events[c]=d}d.bubble=true})}}});Ext.override(Ext.util.Observable,{on:Ext.util.Observable.prototype.addListener,un:Ext.util.Observable.prototype.removeListener});Ext.util.Observable.releaseCapture=function(a){a.fireEvent=Ext.util.Observable.prototype.fireEvent};Ext.util.Observable.capture=function(c,b,a){c.fireEvent=c.fireEvent.createInterceptor(b,a)};Ext.util.Observable.observe=function(a,b){if(a){if(!a.fireEvent){Ext.applyIf(a,new Ext.util.Observable());Ext.util.Observable.capture(a.prototype,a.fireEvent,a)}if(typeof b=="object"){a.on(b)}return a}};Ext.util.Event=Ext.extend(Object,(function(){function b(e,f,g,d){f.task=new Ext.util.DelayedTask();return function(){f.task.delay(g.buffer,e,d,Ext.toArray(arguments))}}function a(e,f,g,d){return function(){var h=new Ext.util.DelayedTask();if(!f.tasks){f.tasks=[]}f.tasks.push(h);h.delay(g.delay||10,e,d,Ext.toArray(arguments))}}function c(e,f,g,d){return function(){f.ev.removeListener(f.fn,d);return e.apply(d,arguments)}}return{constructor:function(e,d){this.name=d;this.observable=e;this.listeners=[]},addListener:function(f,e,d){var g=this,h;e=e||g.observable;if(!g.isListening(f,e)){h=g.createListener(f,e,d);if(g.firing){g.listeners=g.listeners.slice(0)}g.listeners.push(h)}},createListener:function(f,e,h){h=h||{};e=e||this.observable;var g={fn:f,scope:e,o:h,ev:this},d=f;if(h.delay){d=a(d,g,h,e)}if(h.buffer){d=b(d,g,h,e)}if(h.single){d=c(d,g,h,e)}g.fireFn=d;return g},findListener:function(h,g){var f=this.listeners,d=f.length,j,e;while(d--){j=f[d];if(j){e=j.scope;if(j.fn==h&&(e==g||e==this.observable)){return d}}}return -1},isListening:function(e,d){return this.findListener(e,d)!==-1},removeListener:function(g,f){var h=this,e,i,d;if((e=h.findListener(g,f))!=-1){i=h.listeners[e];if(h.firing){h.listeners=h.listeners.slice(0)}if(i.task){i.task.cancel();delete l.task}d=i.tasks&&i.tasks.length;if(d){while(d--){i.tasks[d].cancel()}delete i.tasks}h.listeners.splice(e,1);return true}return false},clearListeners:function(){var e=me.listeners,d=e.length;while(d--){this.removeListener(e[d].fn,e[d].scope)}},fire:function(){var h=this,f=h.listeners,g=f.length,e,d,j;if(g>0){h.firing=true;for(e=0;e<g;e++){j=f[e];d=arguments.length?Array.prototype.slice.call(arguments,0):[];if(j.o){d.push(j.o)}if(j&&j.fireFn.apply(j.scope||h.observable,d)===false){return(h.firing=false)}}}h.firing=false;return true}}})());Ext.EventManager={optionsRe:/^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate|horizontal|vertical)$/,touchRe:/^(?:pinch|pinchstart|tap|doubletap|swipe|swipeleft|swiperight|scroll|scrollstart|scrollend|touchstart|touchmove|touchend|taphold|tapstart|tapcancel)$/i,windowId:"ext-window",documentId:"ext-document",addListener:function(b,a,e,d,g){if(Ext.isObject(a)){this.handleListenerConfig(b,a);return}var f=Ext.getDom(b);if(!f){throw'Error listening for "'+a+'". Element "'+b+"\" doesn't exist."}if(!e){throw'Error listening for "'+a+'". No handler function specified'}var h=this.touchRe.test(a);var c=this.createListenerWrap(f,a,e,d,g,h);this.getEventListenerCache(f,a).push({fn:e,wrap:c,scope:d});if(h){Ext.TouchEventManager.addEventListener(f,a,c,g)}else{f.addEventListener(a,c,false)}},removeListener:function(g,k,m,n){if(Ext.isObject(k)){this.handleListenerConfig(g,k,true);return}var e=Ext.getDom(g),a=this.getEventListenerCache(e,k),h=a.length,f,c,b,d;while(h--){c=a[h];if(c&&(!m||c.fn==m)&&(!n||c.scope===n)){b=c.wrap;if(b.task){clearTimeout(b.task);delete b.task}f=b.tasks&&b.tasks.length;if(f){while(f--){clearTimeout(b.tasks[f])}delete b.tasks}if(this.touchRe.test(k)){Ext.TouchEventManager.removeEventListener(e,k,b)}else{e.removeEventListener(k,b,false)}a.splice(h,1)}}},removeAll:function(b){var d=Ext.getDom(b),a=this.getElementEventCache(d),c;for(c in a){this.removeListener(c)}Ext.cache[d.id].events={}},purgeElement:function(d,e,b){var f=Ext.getDom(d),c=0,a;if(b){this.removeListener(f,b)}else{this.removeAll(f)}if(e&&f&&f.childNodes){for(a=d.childNodes.length;c<a;c++){this.purgeElement(d.childNodes[c],e,b)}}},handleListenerConfig:function(d,b,a){var c,e;for(c in b){if(!this.optionsRe.test(c)){e=b[c];if(Ext.isFunction(e)){this[(a?"remove":"add")+"Listener"](d,c,e,b.scope,b)}else{this[(a?"remove":"add")+"Listener"](d,c,b.fn,b.scope,b)}}}},getId:function(a){var b=true,c;a=Ext.getDom(a);if(a===document){c=this.documentId}else{if(a===window){c=this.windowId}else{c=Ext.id(a);b=false}}if(!Ext.cache[c]){Ext.Element.addToCache(new Ext.Element(a),c);if(b){Ext.cache[c].skipGarbageCollection=true}}return c},createListenerWrap:function(h,a,c,b,g,i){g=!Ext.isObject(g)?{}:g;var d=["if(!window.Ext) {return;}"];if(i){d.push("e = new Ext.TouchEventObjectImpl(e);")}else{if(g.buffer||g.delay){d.push("e = new Ext.EventObjectImpl(e);")}else{d.push("e = Ext.EventObject.setEvent(e);")}}if(g.delegate){d.push('var t = e.getTarget("'+g.delegate+'", this);');d.push("if(!t) {return;}")}else{d.push("var t = e.target;")}if(g.target){d.push("if(e.target !== o.target) {return;}")}if(g.stopEvent){d.push("e.stopEvent();")}else{if(g.preventDefault){d.push("e.preventDefault();")}if(g.stopPropagation){d.push("e.stopPropagation();")}}if(g.normalized){d.push("e = e.browserEvent;")}if(g.buffer){d.push("(wrap.task && clearTimeout(wrap.task));");d.push("wrap.task = setTimeout(function(){")}if(g.delay){d.push("wrap.tasks = wrap.tasks || [];");d.push("wrap.tasks.push(setTimeout(function(){")}d.push("fn.call(scope || dom, e, t, o);");if(g.single){d.push("Ext.EventManager.removeListener(dom, ename, fn, scope);")}if(g.delay){d.push("}, "+g.delay+"));")}if(g.buffer){d.push("}, "+g.buffer+");")}var e=new Function("e","o","fn","scope","ename","dom","wrap",d.join("\n"));return function(f){e.call(h,f,g,c,b,a,h,arguments.callee)}},getEventListenerCache:function(c,a){var b=this.getElementEventCache(c);return b[a]||(b[a]=[])},getElementEventCache:function(b){var a=Ext.cache[this.getId(b)];return a.events||(a.events={})},onDocumentReady:function(d,c,b){var f=this,g=f.readyEvent;if(Ext.isReady){g||(g=new Ext.util.Event());g.addListener(d,c,b);g.fire();g.listeners=[]}else{if(!g){g=f.readyEvent=new Ext.util.Event();var a=function(){Ext.isReady=true;Ext.TouchEventManager.init();document.removeEventListener("DOMContentLoaded",arguments.callee,false);window.removeEventListener("load",arguments.callee,false);if(e){clearInterval(e)}var i=Ext.Element.getViewportWidth(),j=Ext.Element.getViewportHeight();Ext.orientation=Ext.Element.getOrientation();g.fire({orientation:Ext.orientation,width:i,height:j});g.listeners=[]};document.addEventListener("DOMContentLoaded",a,false);if(Ext.platform.isWebKit){var e=setInterval(function(){if(/loaded|complete/.test(document.readyState)){clearInterval(e);e=null;a()}},10)}window.addEventListener("load",a,false)}b=b||{};b.delay=b.delay||1;g.addListener(d,c,b)}},onWindowResize:function(c,b,a){var e=this,f=e.resizeEvent;if(!f){e.resizeEvent=f=new Ext.util.Event();var d=function(){f.fire(Ext.Element.getViewportWidth(),Ext.Element.getViewportHeight())};this.addListener(window,"resize",d,this)}f.addListener(c,b,a)},onOrientationChange:function(c,b,a){var e=this,d=e.orientationEvent;if(!d){e.orientationEvent=d=new Ext.util.Event();var f=function(k){var g=Ext.Element.getViewportWidth(),j=Ext.Element.getViewportHeight(),i=Ext.Element.getOrientation();if(i!=Ext.orientation){Ext.orientation=i;d.fire(i,g,j)}return i};if(Ext.platform.hasOrientationChange&&!Ext.platform.isAndroidOS){this.addListener(window,"orientationchange",f,this,{delay:50})}else{this.addListener(window,"resize",f,this,{buffer:10})}}d.addListener(c,b,a)}};Ext.EventManager.on=Ext.EventManager.addListener;Ext.EventManager.un=Ext.EventManager.removeListener;Ext.onReady=Ext.EventManager.onDocumentReady;Ext.EventObjectImpl=Ext.extend(Object,{constructor:function(a){if(a){this.setEvent(a.browserEvent||a)}},setEvent:function(c){var b=this;if(c==b||(c&&c.browserEvent)){return c}b.browserEvent=c;if(c){b.type=c.type;var a=c.target;b.target=a&&a.nodeType==3?a.parentNode:a;b.xy=[c.pageX,c.pageY];b.timestamp=c.timeStamp}else{b.target=null;b.xy=[0,0]}return b},stopEvent:function(){this.stopPropagation();this.preventDefault()},preventDefault:function(){if(this.browserEvent){this.browserEvent.preventDefault()}},stopPropagation:function(){if(this.browserEvent){this.browserEvent.stopPropagation()}},getPageX:function(){return this.xy[0]},getPageY:function(){return this.xy[1]},getXY:function(){return this.xy},getTarget:function(b,c,a){return b?Ext.fly(this.target).findParent(b,c,a):(a?Ext.get(this.target):this.target)},getTime:function(){return this.timestamp}});Ext.EventObject=new Ext.EventObjectImpl();(function(){var a=function(){var c=Ext.getBody(),b=[];if(!c){return false}if(Ext.platform.isPhone){b.push("x-phone")}if(Ext.platform.isTablet){b.push("x-tablet")}if(Ext.platform.isIPhoneOS){b.push("x-iphone-os")}if(Ext.platform.isAndroidOS){b.push("x-android-os")}if(b.length){c.addClass(b)}return true};if(!a()){Ext.onReady(a)}})();Ext.TouchEventManager=Ext.apply({},{swipeThreshold:35,scrollThreshold:10,touchEndThreshold:25,tapThreshold:8,tapHoldInterval:250,swipeTime:1000,scrollResetTime:300,doubleTapThreshold:800,multiTouchendThreshold:50,init:function(){this.targets={all:[],touchstart:[],touchmove:[],touchend:[],tap:[],tapstart:[],taphold:[],tapcancel:[],doubletap:[],swipe:[],scrollstart:[],scroll:[],scrollend:[],pinch:[],pinchstart:[]};this.listeners={};this.tracks={};this.doubleTapTargets={};this.pinchTargets={};this.useTouch=Ext.platform.hasTouch&&!Ext.platform.isChrome;if(this.useTouch){var a=Ext.platform.isAndroidOS?document.body:document;a.addEventListener("touchstart",this.onTouchStart,false);a.addEventListener("touchmove",this.onTouchMove,false);a.addEventListener("touchend",this.onTouchEnd,false)}else{document.addEventListener("mousedown",this.onTouchStart,false);document.addEventListener("mousemove",this.onTouchMove,false);document.addEventListener("mouseup",this.onTouchEnd,false)}},onTouchStart:function(f){var c=Ext.TouchEventManager,d=c.useTouch?(f.touches||f.touch&&[f.touch]||null):[f],b=d.length,a,g;for(a=0;a<b;a++){g=d[a];if(!c.tracks[g.identifier||Ext.id()]){c.startTrack(g,f)}}if(Ext.platform.isAndroidOS){f.preventDefault();f.stopPropagation()}c.multiTouch=(b>1);c.currentTouches=f.touches},startTrack:function(d,g){var i=this,h=(d.target.nodeType==3)?d.target.parentNode:d.target,k=h,f=i.targets,m=d.identifier,j,c,a,b;b=i.tracks[m]={browserEvent:g,startTime:g.timeStamp,previousTime:g.timeStamp,startX:d.pageX,startY:d.pageY,previousX:d.pageX,previousY:d.pageY,touch:d,target:h,scrolling:false,end:false,move:false,targets:{}};while(k){if(i.targets.all.indexOf(k)!==-1){a=k.id;j=i.listeners[a];b.events=b.events||{};for(c in j){b.events[c]=b.events[c]||{};b.events[c][a]=j[c];b.targets[a]=j[c]}}k=k.parentNode}i.lastTouchId=m;if(b.events){g={time:g.timeStamp,pageX:d.pageX,pageY:d.pageY,touch:d,touches:g.touches?g.touches:[g.touch],browserEvent:g};if(b.events.touchstart&&i.fireListeners("touchstart",b,g)===false){b.end=true;return}if(b.events.tapstart&&i.fireListeners("tapstart",b,g)===false){b.end=true;return}if(b.events.taphold){b.tapHoldIntervalId=setInterval(i.tapHoldHandler.createDelegate(b),i.tapHoldInterval)}b.move=b.end=true}},onTouchMove:function(J){var N=Ext.TouchEventManager,A=N.useTouch?J.changedTouches:[J],w=A.length,F,u,E,D;J.preventDefault();J.stopPropagation();for(F=0;F<w;F++){u=A[F];E=N.tracks[u.identifier];if(!E||!E.move){continue}var I=E.startX,H=E.startY,c=u.pageX,b=u.pageY,j=E.previousX,g=E.previousY,M=c-I,K=b-H,d=Math.abs(M),a=Math.abs(K),k=c-j,h=b-g,t=J.timeStamp,C=E.startTime,r=E.previousTime,p=t-C,B=t-r,q=J;if(d>N.tapThreshold||a>N.tapThreshold){if(E.events.taphold){clearInterval(E.tapHoldIntervalId);E.tapHoldIntervalId=null;delete E.events.taphold}if(E.events.tapcancel){N.fireListeners("tapcancel",E,{originalEvent:J});delete E.events.tapcancel}if(E.events.doubletap){delete E.events.doubletap}delete E.events.tap}J={pageX:c,pageY:b,touches:q.touches,startX:I,startY:H,previousX:E.previousX,previousY:E.previousY,deltaX:M,deltaY:K,previousDeltaX:k,previousDeltaY:h,time:t,startTime:C,previousTime:r,deltaTime:p,previousDeltaTime:B,browserEvent:q};if(E.events.touchmove&&N.fireListeners("touchmove",E,J)===false){E.previousTime=t;E.previousX=c;E.previousY=b;E.previousDeltaX=k;E.previousDeltaY=h;return}if(!E.scrolling&&E.events.swipe){if(a-d>2||p>N.swipeTime){delete E.events.swipe}else{if(d>N.swipeThreshold&&d>a){delete E.events.scroll;delete E.events.scrollstart;delete E.events.scrollend;N.fireListeners("swipe",E,{browserEvent:q,direction:(M<0)?"left":"right",distance:d,time:t,deltaTime:p});delete E.events.swipe}}return}if(N.multiTouch&&!E.scrolling&&E.events.pinch){var v,n,O,f=N.pinch;if(!E.pinching&&!f){for(D in E.events.pinch){v=N.pinchTargets[D];if(v&&v!=E){delete E.events.scroll;delete E.events.scrollstart;delete E.events.scrollend;delete E.events.swipe;delete v.events.scroll;delete v.events.scrollstart;delete v.events.scrollend;delete v.events.swipe;J=f=N.pinch={browserEvent:q,touches:[E.touch,v.touch],distance:Math.sqrt(Math.pow(Math.abs(E.touch.pageX-v.touch.pageX),2)+Math.pow(Math.abs(E.touch.pageY-v.touch.pageY),2))};E.pinching=v.pinching=true;N.fireListeners("pinchstart",E,J);f.previousDistance=f.distance;f.previousScale=1;return}else{N.pinchTargets[D]=E}}}if(E.pinching&&f){n=Math.sqrt(Math.pow(Math.abs(f.touches[0].pageX-f.touches[1].pageX),2)+Math.pow(Math.abs(f.touches[0].pageY-f.touches[1].pageY),2));O=n/f.distance;J={browserEvent:E.browserEvent,time:t,touches:f.touches,scale:O,deltaScale:O-1,previousScale:f.previousScale,previousDeltaScale:O-f.previousScale,distance:n,deltaDistance:n-f.distance,startDistance:f.distance,previousDistance:f.previousDistance,previousDeltaDistance:n-f.previousDistance};N.fireListeners("pinch",E,J);f.previousScale=O;f.previousDistance=n;return}}if(E.events.scroll||E.events.scrollstart||E.events.scrollend){if(!E.scrolling&&(d>=N.scrollThreshold||a>=N.scrollThreshold)){E.scrolling=true;delete E.events.swipe;var L=E.targets,m,s,z,G;G=0;for(D in L){G++}if(G>1){for(D in L){for(z=0,G=L[D].length;z<G;z++){m=L[D][z].options;if(!m){continue}if(m&&(m.vertical===true&&m.horizontal===false&&d>=a)||(m.vertical===false&&m.horizontal===true&&d<=a)){for(s in E.events){delete E.events[s][D]}}}}}E.scrollBounds={right:Ext.Element.getViewportWidth(),bottom:Ext.Element.getViewportHeight()};if(E.events.scrollstart){N.fireListeners("scrollstart",E,{browserEvent:E.browserEvent,time:t,pageX:c,pageY:b})}}else{if(E.scrolling){N.fireListeners("scroll",E,J);if(d>a){if(M>0){if(E.scrollBounds.right-c<N.touchEndThreshold){N.onTouchEnd(q)}}else{if(c<N.touchEndThreshold){N.onTouchEnd(q)}}}else{if(K>0){if(E.scrollBounds.bottom-b<N.touchEndThreshold){N.onTouchEnd(q)}}else{if(b<N.touchEndThreshold){N.onTouchEnd(q)}}}}}}E.previousTime=t;E.previousX=c;E.previousY=b;E.previousDeltaX=k;E.previousDeltaY=h}},onTouchEnd:function(g){var k=Ext.TouchEventManager,j=k.tracks,f=k.useTouch?g.changedTouches:[g],h=f.length,c,a,d,m,b;for(d=0;d<h;d++){c=f[d];a=j[c.identifier];if(!a||!a.end){continue}b={browserEvent:g,pageX:a.previousX,pageY:a.previousY,deltaX:a.previousX-a.startX,deltaY:a.previousY-a.startY,previousDeltaX:a.previousDeltaX,previousDeltaY:a.previousDeltaY,deltaTime:g.timeStamp-a.startTime,previousDeltaTime:g.timeStamp-a.previousTime,time:g.timeStamp};if(a.events.touchend&&k.fireListeners("touchend",a,b)===false){return}if(a.events.taphold){clearInterval(a.tapHoldIntervalId);k.tapHoldIntervalId=null}if(a.scrolling&&a.events.scrollend){k.fireListeners("scrollend",a,b)}else{if(a.events.tap){k.fireListeners("tap",a,{browserEvent:g,time:g.timeStamp,pageX:a.startX,pageY:a.startY,touch:a.touch})}}if(a.events.doubletap&&!k.multiTouch){m=a.target.id;if(!k.doubleTapTargets[m]){k.doubleTapTargets[m]=g.timeStamp}else{if(g.timeStamp-k.doubleTapTargets[m]<=k.doubleTapThreshold){k.fireListeners("doubletap",a,{browserEvent:g,time:g.timeStamp,pageX:a.startX,pageY:a.startY,touch:a.touch});delete k.doubleTapTargets[m]}else{k.doubleTapTargets[m]=g.timeStamp}}}}k.tracks={};k.pinchTargets={};k.pinch=null},tapHoldHandler:function(){var b=Ext.TouchEventManager,a=this,c=(new Date()).getTime();b.fireListeners("taphold",a,{time:c,startTime:a.startTime,deltaTime:c-a.startTime,pageX:a.startX,pageY:a.startY,touch:a.touch})},addEventListener:function(e,b,c,d){if(!this.targets[b]){return}if(!this.targets.all.contains(e)){this.targets.all.push(e)}if(!this.targets[b].contains(e)){this.targets[b].push(e)}var f=Ext.id(e),a;c.options=d;c.ename=b;this.listeners[f]=this.listeners[f]||{};this.listeners[f][b]=this.listeners[f][b]||[];this.listeners[f][b].push(c);for(f in this.tracks){a=this.tracks[f];if(a&&(e==document||e===a.target||Ext.get(e).contains(a.target))){a.events[b]=a.events[b]||{};a.events[b][f]=a.events[b][f]||[];a.events[b][f].push(c);if(/touchmove|scroll|swipe|tap|doubletap/i.test(b)){a.move=true}if(/touchend|scrollend|tapcancel|tap|doubletap|/i.test(b)){a.end=true}}}},removeEventListener:function(f,b,d){if(!this.targets[b]){return}this.targets[b].remove(f);var g=Ext.id(f),c=this.listeners[g],e,a=false;if(c&&c[b]){c[b].remove(d);for(e in c){a=true;break}if(!c[b].length){delete c[b]}if(!a){this.targets.all.remove(f);delete c[g]}}},fireListeners:function(d,b,h){var m=Ext.TouchEventManager;h.type=d;h.target=b.target;h.touch=b.touch;h.identifier=b.touch.identifier;var g=b.events[d],j,n,c,a,f,k;if(g){for(a in g){n=g[a];for(f=0,k=n.length;f<k;f++){c=n[f];if(c.call(Ext.getDom(a),h)===false||h.cancel===true){if(h.browserEvent){}return false}}}}return true},createListenerWrap:Ext.EventManager.createListenerWrap});Ext.TouchEventObjectImpl=Ext.extend(Object,{constructor:function(a){if(a){this.setEvent(a)}},setEvent:function(a){this.event=a;Ext.apply(this,a);return this},stopEvent:function(){this.stopPropagation();this.preventDefault()},stopPropagation:function(){this.event.cancel=true},preventDefault:function(){this.event.prevent=true},getTarget:function(b,c,a){if(b){return Ext.fly(this.target).findParent(b,c,a)}else{return a?Ext.get(this.target):this.target}}});Ext.TouchEventObject=new Ext.TouchEventObjectImpl();Ext.util.OfflineDebug=function(){var d=["uncached","idle","checking","downloading","updateready","obsolete"],c=["cached","checking","downloading","error","noupdate","obsolete","progress","updateready"],b=window.applicationCache;logEvent=function(j){var g=(navigator.onLine)?"yes":"no",f=d[b.status],h=j.type;var i="online: "+g;i+=", event: "+h;i+=", status: "+f;if(h=="error"&&navigator.onLine){i+=" There was an unknown error, check your Cache Manifest."}console.log(i)};for(var a=c.length-1;a>=0;a--){b.addEventListener(c[a],logEvent,false)}b.addEventListener("updateready",function(f){if(d[cache.status]!="idle"){cache.swapCache();console.log("Swapped/updated the Cache Manifest.")}},false);checkForUpdates=function(){b.update()};return{checkForUpdates:checkForUpdates}};Ext.util.GeoLocation=Ext.extend(Ext.util.Observable,{coords:null,hasGeoLocation:false,autoUpdate:true,constructor:function(a){a=a||{};Ext.apply(this,a);this.hasGeoLocation=!!navigator.geolocation;this.addEvents("beforeupdate","update");Ext.util.GeoLocation.superclass.constructor.call(this);if(this.autoUpdate){this.updateLocation()}},getLocation:function(c,a){var b=this;if(b.hasGeoLocation&&!b.coords){b.updateLocation(c,a)}else{if(b.hasGeoLocation&&c){setTimeout(function(){c.call(a||b,b.coords,b)},0)}else{if(c){setTimeout(function(){c.call(a||b,null,b)},0)}}}},updateLocation:function(c,a){var b=this;if(b.hasGeoLocation){b.fireEvent("beforeupdate",b);navigator.geolocation.getCurrentPosition(function(d){b.coords=b.parseCoords(d);if(c){c.call(a||b,b.coords,b)}b.fireEvent("update",b.coords,b)})}else{setTimeout(function(){if(c){c.call(a||b,null,b)}b.fireEvent("update",false,b)},0)}},parseCoords:function(a){return{latitude:a.coords.latitude,longitude:a.coords.longitude,original:a}}});Ext.util.MixedCollection=function(b,a){this.items=[];this.map={};this.keys=[];this.length=0;this.addEvents("clear","add","replace","remove","sort");this.allowFunctions=b===true;if(a){this.getKey=a}Ext.util.MixedCollection.superclass.constructor.call(this)};Ext.extend(Ext.util.MixedCollection,Ext.util.Observable,{allowFunctions:false,add:function(b,c){if(arguments.length==1){c=arguments[0];b=this.getKey(c)}if(typeof b!="undefined"&&b!==null){var a=this.map[b];if(typeof a!="undefined"){return this.replace(b,c)}this.map[b]=c}this.length++;this.items.push(c);this.keys.push(b);this.fireEvent("add",this.length-1,c,b);return c},getKey:function(a){return a.id},addAll:function(e){if(arguments.length>1||Ext.isArray(e)){var b=arguments.length>1?arguments:e;for(var d=0,a=b.length;d<a;d++){this.add(b[d])}}else{for(var c in e){if(this.allowFunctions||typeof e[c]!="function"){this.add(c,e[c])}}}},each:function(e,d){var b=[].concat(this.items);for(var c=0,a=b.length;c<a;c++){if(e.call(d||b[c],b[c],c,a)===false){break}}},eachKey:function(d,c){for(var b=0,a=this.keys.length;b<a;b++){d.call(c||window,this.keys[b],this.items[b],b,a)}},replace:function(c,d){if(arguments.length==1){d=arguments[0];c=this.getKey(d)}var a=this.map[c];if(typeof c=="undefined"||c===null||typeof a=="undefined"){return this.add(c,d)}var b=this.indexOfKey(c);this.items[b]=d;this.map[c]=d;this.fireEvent("replace",c,a,d);return d},find:function(d,c){for(var b=0,a=this.items.length;b<a;b++){if(d.call(c||window,this.items[b],this.keys[b])){return this.items[b]}}return null},insert:function(a,b,c){if(arguments.length==2){c=arguments[1];b=this.getKey(c)}if(this.containsKey(b)){this.suspendEvents();this.removeKey(b);this.resumeEvents()}if(a>=this.length){return this.add(b,c)}this.length++;this.items.splice(a,0,c);if(typeof b!="undefined"&&b!==null){this.map[b]=c}this.keys.splice(a,0,b);this.fireEvent("add",a,c,b);return c},remove:function(a){return this.removeAt(this.indexOf(a))},removeAt:function(a){if(a<this.length&&a>=0){this.length--;var c=this.items[a];this.items.splice(a,1);var b=this.keys[a];if(typeof b!="undefined"){delete this.map[b]}this.keys.splice(a,1);this.fireEvent("remove",c,b);return c}return false},removeKey:function(a){return this.removeAt(this.indexOfKey(a))},getCount:function(){return this.length},indexOf:function(a){return this.items.indexOf(a)},indexOfKey:function(a){return this.keys.indexOf(a)},item:function(b){var a=this.map[b],c=a!==undefined?a:(typeof b=="number")?this.items[b]:undefined;return !Ext.isFunction(c)||this.allowFunctions?c:null},itemAt:function(a){return this.items[a]},key:function(a){return this.map[a]},contains:function(a){return this.indexOf(a)!=-1},containsKey:function(a){return typeof this.map[a]!="undefined"},clear:function(){this.length=0;this.items=[];this.keys=[];this.map={};this.fireEvent("clear")},first:function(){return this.items[0]},last:function(){return this.items[this.length-1]},_sort:function(j,a,h){var d,e,b=String(a).toUpperCase()=="DESC"?-1:1,g=[],k=this.keys,f=this.items;h=h||function(i,c){return i-c};for(d=0,e=f.length;d<e;d++){g[g.length]={key:k[d],value:f[d],index:d}}g.sort(function(i,c){var m=h(i[j],c[j])*b;if(m===0){m=(i.index<c.index?-1:1)}return m});for(d=0,e=g.length;d<e;d++){f[d]=g[d].value;k[d]=g[d].key}this.fireEvent("sort",this)},sort:function(a,b){this._sort("value",a,b)},getRange:function(e,a){var b=this.items;if(b.length<1){return[]}e=e||0;a=Math.min(typeof a=="undefined"?this.length-1:a,this.length-1);var c,d=[];if(e<=a){for(c=e;c<=a;c++){d[d.length]=b[c]}}else{for(c=e;c>=a;c--){d[d.length]=b[c]}}return d},filter:function(n,m,g,h,e){if(Ext.isObject(n)){n=[n]}if(Ext.isArray(n)){var b=[];for(var f=0,d=n.length;f<d;f++){var a=n[f],c=a.fn,p=a.scope||this;if(typeof c!="function"){c=this.createFilterFn(a.property,a.value,a.anyMatch,a.caseSensitive,a.exactMatch)}b.push({fn:c,scope:p})}var k=this.createMultipleFilterFn(b)}else{var k=this.createFilterFn(n,m,g,h,e)}return(k===false?this:this.filterBy(k))},filterBy:function(f,e){var g=new Ext.util.MixedCollection();g.getKey=this.getKey;var b=this.keys,d=this.items;for(var c=0,a=d.length;c<a;c++){if(f.call(e||this,d[c],b[c])){g.add(b[c],d[c])}}return g},findIndex:function(c,b,e,d,a){if(Ext.isEmpty(b,false)){return -1}b=this.createValueMatcher(b,d,a);return this.findIndexBy(function(f){return f&&b.test(f[c])},null,e)},findIndexBy:function(f,e,g){var b=this.keys,d=this.items;for(var c=(g||0),a=d.length;c<a;c++){if(f.call(e||this,d[c],b[c])){return c}}return -1},createFilterFn:function(d,c,e,a,b){if(Ext.isEmpty(c,false)){return false}c=this.createValueMatcher(c,e,a,b);return function(f){return c.test(f[d])}},createMultipleFilterFn:function(a){return function(b){var h=true;for(var d=0,c=a.length;d<c;d++){var g=a[d],f=g.fn,e=g.scope;h=h&&f.call(e,b);if(h!==true){break}}return h}},createValueMatcher:function(c,e,a,b){if(!c.exec){var d=Ext.escapeRe;c=String(c);if(e===true){c=d(c)}else{c="^"+d(c);if(b===true){c+="$"}}c=new RegExp(c,a?"":"i")}return c},clone:function(){var e=new Ext.util.MixedCollection();var b=this.keys,d=this.items;for(var c=0,a=d.length;c<a;c++){e.add(b[c],d[c])}e.getKey=this.getKey;return e}});Ext.util.MixedCollection.prototype.get=Ext.util.MixedCollection.prototype.item;Ext.util.TapRepeater=Ext.extend(Ext.util.Observable,{constructor:function(b,a){this.el=Ext.get(b);Ext.apply(this,a);this.addEvents("touchstart","tap","touchend");this.el.on({touchstart:this.onTouchStart,touchend:this.onTouchEnd,scope:this});if(this.preventDefault||this.stopDefault){this.el.on("tap",this.eventOptions,this)}Ext.util.TapRepeater.superclass.constructor.call(this)},interval:10,delay:250,preventDefault:true,stopDefault:false,timer:0,eventOptions:function(a){if(this.preventDefault){a.preventDefault()}if(this.stopDefault){a.stopEvent()}},destroy:function(){Ext.destroy(this.el);this.purgeListeners()},onTouchStart:function(a){clearTimeout(this.timer);if(this.pressClass){this.el.addClass(this.pressClass)}this.tapStartTime=new Date();this.fireEvent("touchstart",this,a);this.fireEvent("tap",this,a);if(this.accelerate){this.delay=400}this.timer=this.tap.defer(this.delay||this.interval,this,[a])},tap:function(a){this.fireEvent("tap",this,a);this.timer=this.tap.defer(this.accelerate?this.easeOutExpo(this.tapStartTime.getElapsed(),400,-390,12000):this.interval,this,[a])},easeOutExpo:function(e,a,g,f){return(e==f)?a+g:g*(-Math.pow(2,-10*e/f)+1)+a},onTouchEnd:function(a){clearTimeout(this.timer);this.el.removeClass(this.pressClass);this.fireEvent("touchend",this,a)}});Ext.util.Region=Ext.extend(Object,{constructor:function(d,f,a,c){var e=this;e.top=d;e[1]=d;e.right=f;e.bottom=a;e.left=c;e[0]=c},contains:function(b){var a=this;return(b.left>=a.left&&b.right<=a.right&&b.top>=a.top&&b.bottom<=a.bottom)},intersect:function(g){var f=this,d=Math.max(f.top,g.top),e=Math.min(f.right,g.right),a=Math.min(f.bottom,g.bottom),c=Math.max(f.left,g.left);if(a>=d&&e>=c){return new Ext.util.Region(d,e,a,c)}else{return false}},union:function(g){var f=this,d=Math.min(f.top,g.top),e=Math.max(f.right,g.right),a=Math.max(f.bottom,g.bottom),c=Math.min(f.left,g.left);return new Ext.util.Region(d,e,a,c)},constrainTo:function(b){var a=this;a.top=a.top.constrain(b.top,b.bottom);a.bottom=a.bottom.constrain(b.top,b.bottom);a.left=a.left.constrain(b.left,b.right);a.right=a.right.constrain(b.left,b.right);return a},adjust:function(d,f,a,c){var e=this;e.top+=d;e.left+=c;e.right+=f;e.bottom+=a;return e}});Ext.util.Region.getRegion=function(a){return Ext.fly(a).getPageBox(true)};Ext.CompositeElement=function(b,a){this.elements=[];this.add(b,a);this.el=new Ext.Element.Flyweight()};Ext.CompositeElement.prototype={isComposite:true,getElement:function(a){var b=this.el;b.dom=a;b.id=a.id;return b},transformElement:function(a){return Ext.getDom(a)},getCount:function(){return this.elements.length},add:function(d,b){var e=this,f=e.elements;if(!d){return this}if(typeof d=="string"){d=Ext.Element.selectorFunction(d,b)}else{if(d.isComposite){d=d.elements}else{if(!Ext.isIterable(d)){d=[d]}}}for(var c=0,a=d.length;c<a;++c){f.push(e.transformElement(d[c]))}return e},invoke:function(f,b){var g=this,d=g.elements,a=d.length,h,c;for(c=0;c<a;c++){h=d[c];if(h){Ext.Element.prototype[f].apply(g.getElement(h),b)}}return g},item:function(b){var d=this,c=d.elements[b],a=null;if(c){a=d.getElement(c)}return a},addListener:function(b,h,g,f){var d=this.elements,a=d.length,c,j;for(c=0;c<a;c++){j=d[c];if(j){Ext.EventManager.on(j,b,h,g||j,f)}}return this},each:function(f,d){var g=this,c=g.elements,a=c.length,b,h;for(b=0;b<a;b++){h=c[b];if(h){h=this.getElement(h);if(f.call(d||h,h,g,b)){break}}}return g},fill:function(a){var b=this;b.elements=[];b.add(a);return b},filter:function(a){var b=[],d=this,e=d.elements,c=Ext.isFunction(a)?a:function(f){return f.is(a)};d.each(function(h,f,g){if(c(h,g)!==false){b[b.length]=d.transformElement(h)}});d.elements=b;return d},first:function(){return this.item(0)},last:function(){return this.item(this.getCount()-1)},contains:function(a){return this.indexOf(a)!=-1},indexOf:function(a){return this.elements.indexOf(this.transformElement(a))},clear:function(){this.elements=[]}};Ext.CompositeElement.prototype.on=Ext.CompositeElement.prototype.addListener;(function(){var c,b=Ext.Element.prototype,a=Ext.CompositeElement.prototype;for(c in b){if(Ext.isFunction(b[c])){(function(d){a[d]=a[d]||function(){return this.invoke(d,arguments)}}).call(a,c)}}})();if(Ext.DomQuery){Ext.Element.selectorFunction=Ext.DomQuery.select}Ext.Element.select=function(a,b,d){var c;d=(d===false)?false:true;if(typeof a=="string"){c=Ext.Element.selectorFunction(a,b)}else{if(a.length!==undefined){c=a}else{throw"Invalid selector"}}return d?new Ext.CompositeElement(c):c};Ext.select=Ext.Element.select;Ext.CompositeElementLite=Ext.CompositeElement;Ext.apply(Ext.CompositeElementLite.prototype,{addElements:function(c,a){if(!c){return this}if(typeof c=="string"){c=Ext.Element.selectorFunction(c,a)}var b=this.elements;Ext.each(c,function(d){b.push(Ext.get(d))});return this},first:function(){return this.item(0)},last:function(){return this.item(this.getCount()-1)},contains:function(a){return this.indexOf(a)!=-1},removeElement:function(d,e){var c=this,a=this.elements,b;Ext.each(d,function(f){if((b=(a[f]||a[f=c.indexOf(f)]))){if(e){if(b.dom){b.remove()}else{Ext.removeNode(b)}}a.splice(f,1)}});return this},replaceElement:function(e,c,a){var b=!isNaN(e)?e:this.indexOf(e),f;if(b>-1){c=Ext.getDom(c);if(a){f=this.elements[b];f.parentNode.insertBefore(c,f);Ext.removeNode(f)}this.elements.splice(b,1,c)}return this}});Ext.DomHelper={emptyTags:/^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i,confRe:/tag|children|cn|html$/i,endRe:/end/i,markup:function(h){var d="",c,g,f,a,j;if(typeof h=="string"){d=h}else{if(Ext.isArray(h)){for(var e=0;e<h.length;e++){if(h[e]){d+=this.markup(h[e])}}}else{d+="<"+(h.tag=h.tag||"div");for(c in h){g=h[c];if(!this.confRe.test(c)){if(typeof g=="object"){d+=" "+c+'="';for(f in g){d+=f+":"+g[f]+";"}d+='"'}else{d+=" "+({cls:"class",htmlFor:"for"}[c]||c)+'="'+g+'"'}}}if(this.emptyTags.test(h.tag)){d+="/>"}else{d+=">";if((j=h.children||h.cn)){d+=this.markup(j)}else{if(h.html){d+=h.html}}d+="</"+h.tag+">"}}}return d},applyStyles:function(d,e){if(e){var b=0,a,c;d=Ext.fly(d);if(typeof e=="function"){e=e.call()}if(typeof e=="string"){e=e.trim().split(/\s*(?::|;)\s*/);for(a=e.length;b<a;){d.setStyle(e[b++],e[b++])}}else{if(Ext.isObject(e)){d.setStyle(e)}}}},insertHtml:function(f,a,g){var e={},c,i,h,j,d,b;f=f.toLowerCase();e.beforebegin=["BeforeBegin","previousSibling"];e.afterend=["AfterEnd","nextSibling"];h=a.ownerDocument.createRange();i="setStart"+(this.endRe.test(f)?"After":"Before");if(e[f]){h[i](a);j=h.createContextualFragment(g);a.parentNode.insertBefore(j,f=="beforebegin"?a:a.nextSibling);return a[(f=="beforebegin"?"previous":"next")+"Sibling"]}else{d=(f=="afterbegin"?"first":"last")+"Child";if(a.firstChild){h[i](a[d]);j=h.createContextualFragment(g);if(f=="afterbegin"){a.insertBefore(j,a.firstChild)}else{a.appendChild(j)}}else{a.innerHTML=g}return a[d]}throw'Illegal insertion point -> "'+f+'"'},insertBefore:function(a,c,b){return this.doInsert(a,c,b,"beforebegin")},insertAfter:function(a,c,b){return this.doInsert(a,c,b,"afterend","nextSibling")},insertFirst:function(a,c,b){return this.doInsert(a,c,b,"afterbegin","firstChild")},append:function(a,c,b){return this.doInsert(a,c,b,"beforeend","",true)},overwrite:function(a,c,b){a=Ext.getDom(a);a.innerHTML=this.markup(c);return b?Ext.get(a.firstChild):a.firstChild},doInsert:function(d,f,e,g,c,a){var b=this.insertHtml(g,Ext.getDom(d),this.markup(f));return e?Ext.get(b,true):b}};Ext.DomQuery={select:function(h,b){var g=[],d,f,e,c,a;b=b||document;if(typeof b=="string"){b=document.getElementById(b)}h=h.split(",");for(f=0,c=h.length;f<c;f++){if(typeof h[f]=="string"){d=b.querySelectorAll(h[f]);for(e=0,a=d.length;e<a;e++){g.push(d[e])}}}return g},selectNode:function(b,a){return Ext.DomQuery.select(b,a)[0]},is:function(a,b){if(typeof a=="string"){a=document.getElementById(a)}return Ext.DomQuery.select(b).indexOf(a)!==-1}};Ext.Element.selectorFunction=Ext.DomQuery.select;Ext.query=Ext.DomQuery.select;Ext.Anim=Ext.extend(Object,{defaultConfig:{from:{},to:{},duration:250,delay:0,easing:"ease-in-out",autoClear:true,autoReset:false,autoShow:true,out:true,direction:null,reverse:false},opposites:{left:"right",right:"left",up:"down",down:"up"},constructor:function(a){a=Ext.apply({},a||{},this.defaultConfig);this.config=a;Ext.Anim.superclass.constructor.call(this);this.running=[]},initConfig:function(c,b){var e=this,d={},a=Ext.apply({},b||{},e.config);a.el=c=Ext.get(c);if(a.reverse&&e.opposites[a.direction]){a.direction=e.opposites[a.direction]}if(e.config.before){e.config.before.call(a,c,a)}if(b.before){b.before.call(a.scope||a,c,a)}return a},run:function(c,a){c=Ext.get(c);a=a||{};var d=this,b=c.dom.style,e,f=a.after;a=this.initConfig(c,a);if(d.running[c.id]){c.un("webkitTransitionEnd",d.onTransitionEnd,d)}b.webkitTransitionDuration="0ms";for(e in a.from){b[e]=a.from[e]}setTimeout(function(){if(a.is3d===true){c.parent().setStyle({"-webkit-perspective":"1200","-webkit-transform-style":"preserve-3d"})}b.webkitTransitionDuration=a.duration+"ms";b.webkitTransitionProperty="all";b.webkitTransitionTimingFunction=a.easing;c.on("webkitTransitionEnd",d.onTransitionEnd,d,{single:true,config:a,after:f});for(e in a.to){b[e]=a.to[e]}},a.delay||5);d.running[c.id]=a;return d},onTransitionEnd:function(e,c,g){c=Ext.get(c);var b=c.dom.style,a=g.config,f,d=this;if(d.config.after){d.config.after.call(a,c,a)}if(g.after){g.after.call(a.scope||d,c,a)}if(a.autoClear){for(f in a.to){b[f]=""}}b.webkitTransitionDuration=null;b.webkitTransitionProperty=null;b.webkitTransitionTimingFunction=null;if(a.is3d){c.parent().setStyle({"-webkit-perspective":"","-webkit-transform-style":""})}delete d.running[c.id]}});Ext.Anim.seed=1000;Ext.anims={fade:new Ext.Anim({before:function(b){var c=1,a=1,e=b.getStyle("z-index")=="auto"?0:b.getStyle("z-index"),d=e;if(this.out){a=0}else{d=e+1;c=0}this.from={opacity:c,"z-index":d};this.to={opacity:a,"z-index":d}}}),slide:new Ext.Anim({direction:"left",cover:false,before:function(b){var a=b.getStyle("z-index")=="auto"?0:b.getStyle("z-index"),e=a+1,h=0,f=0,i=0,g=0,c=b.getHeight(),d=b.getWidth();if(this.direction=="left"||this.direction=="right"){if(this.out==true){h=-d}else{i=d}}else{if(this.direction=="up"||this.direction=="down"){if(this.out==true){f=-c}else{g=c}}}if(this.direction=="right"||this.direction=="down"){f*=-1;h*=-1;g*=-1;i*=-1}if(this.cover&&this.out){h=0;f=0;e=a}else{if(this.reveal&&!this.out){i=0;g=0;e=a}}this.from={"-webkit-transform":"translate3d("+i+"px, "+g+"px, 0)","z-index":e,opacity:0.99};this.to={"-webkit-transform":"translate3d("+h+"px, "+f+"px, 0)","z-index":e,opacity:1}}}),flip:new Ext.Anim({is3d:true,direction:"left",before:function(c){var f="Y",a=1,b=1,e=0,d=0;if(this.out){d=-180;b=0.8}else{e=180;a=0.8}if(this.direction=="up"||this.direction=="down"){f="X"}if(this.direction=="right"||this.direction=="down"){d*=-1;e*=-1}this.from={"-webkit-transform":"rotate"+f+"("+e+"deg) scale("+a+")","-webkit-backface-visibility":"hidden"};this.to={"-webkit-transform":"rotate"+f+"("+d+"deg) scale("+b+")","-webkit-backface-visibility":"hidden"}}}),cube:new Ext.Anim({is3d:true,direction:"left",style:"outer",before:function(b){var p="0% 0%",q=0,a=0,k="Y",h=0,i=0,m=1,e=1,g,f=b.getWidth(),d=b.getHeight(),n=true,c=" translateX(0)",j="";if(this.direction=="left"||this.direction=="right"){if(this.out){p="100% 100%";i=f;e=0.5;a=-90}else{p="0% 0%";h=f;m=0.5;q=90}}else{if(this.direction=="up"||this.direction=="down"){k="X";if(this.out){p="100% 100%";i=d;a=90}else{p="0% 0%";h=d;q=-90}}}if(this.direction=="down"||this.direction=="right"){q*=-1;a*=-1;p=(p=="0% 0%")?"100% 100%":"0% 0%"}if(this.style=="inner"){h*=-1;i*=-1;q*=-1;a*=-1;if(!this.out){j=" translateX(0px)";p="0% 50%"}else{j=c;p="100% 50%"}}this.from={"-webkit-transform":"rotate"+k+"("+q+"deg)"+(n?" translateZ("+h+"px)":"")+c,"-webkit-transform-origin":p};this.to={"-webkit-transform":"rotate"+k+"("+a+"deg) translateZ("+i+"px)"+j,"-webkit-transform-origin":p}},duration:250}),pop:new Ext.Anim({scaleOnExit:false,before:function(d){var b=1,c=1,g=1,a=1,h=d.getStyle("z-index")=="auto"?0:d.getStyle("z-index"),f=h,e=h;if(!this.out){b=0.01;f=h+1;e=h+1;g=0}else{if(this.scaleOnExit){c=0.01;a=0}else{a=0.8}}this.from={"-webkit-transform":"scale("+b+")","-webkit-transform-origin":"50% 50%",opacity:g,"z-index":f};this.to={"-webkit-transform":"scale("+c+")","-webkit-transform-origin":"50% 50%",opacity:a,"z-index":e}}}),wipe:new Ext.Anim({before:function(d){var e=d.getStyle("z-index"),a="",b="100%",c="100%";if(!this.out){zindex=e+1;a="-webkit-gradient(linear, left bottom, right bottom, from(transparent), to(#000), color-stop(66%, #000), color-stop(33%, transparent))";b=d.getHeight()*100+"px";c=d.getHeight();this.from={"-webkit-mask-image":a,"-webkit-mask-size":d.getWidth()*3+"px "+d.getHeight()+"px","z-index":zIndex,"-webkit-mask-position-x":0};this.to={"-webkit-mask-image":a,"-webkit-mask-size":d.getWidth()*3+"px "+d.getHeight()+"px","z-index":zIndex,"-webkit-mask-position-x":-d.getWidth()*2+"px"}}},duration:500})};if(!this.JSON){this.JSON={}}(function(){function f(n){return n<10?"0"+n:n}if(typeof Date.prototype.toJSON!=="function"){Date.prototype.toJSON=function(key){return isFinite(this.valueOf())?this.getUTCFullYear()+"-"+f(this.getUTCMonth()+1)+"-"+f(this.getUTCDate())+"T"+f(this.getUTCHours())+":"+f(this.getUTCMinutes())+":"+f(this.getUTCSeconds())+"Z":null};String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(key){return this.valueOf()}}var cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,escapable=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,gap,indent,meta={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},rep;function quote(string){escapable.lastIndex=0;return escapable.test(string)?'"'+string.replace(escapable,function(a){var c=meta[a];return typeof c==="string"?c:"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+string+'"'}function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==="object"&&typeof value.toJSON==="function"){value=value.toJSON(key)}if(typeof rep==="function"){value=rep.call(holder,key,value)}switch(typeof value){case"string":return quote(value);case"number":return isFinite(value)?String(value):"null";case"boolean":case"null":return String(value);case"object":if(!value){return"null"}gap+=indent;partial=[];if(Object.prototype.toString.apply(value)==="[object Array]"){length=value.length;for(i=0;i<length;i+=1){partial[i]=str(i,value)||"null"}v=partial.length===0?"[]":gap?"[\n"+gap+partial.join(",\n"+gap)+"\n"+mind+"]":"["+partial.join(",")+"]";gap=mind;return v}if(rep&&typeof rep==="object"){length=rep.length;for(i=0;i<length;i+=1){k=rep[i];if(typeof k==="string"){v=str(k,value);if(v){partial.push(quote(k)+(gap?": ":":")+v)}}}}else{for(k in value){if(Object.hasOwnProperty.call(value,k)){v=str(k,value);if(v){partial.push(quote(k)+(gap?": ":":")+v)}}}}v=partial.length===0?"{}":gap?"{\n"+gap+partial.join(",\n"+gap)+"\n"+mind+"}":"{"+partial.join(",")+"}";gap=mind;return v}}if(typeof JSON.stringify!=="function"){JSON.stringify=function(value,replacer,space){var i;gap="";indent="";if(typeof space==="number"){for(i=0;i<space;i+=1){indent+=" "}}else{if(typeof space==="string"){indent=space}}rep=replacer;if(replacer&&typeof replacer!=="function"&&(typeof replacer!=="object"||typeof replacer.length!=="number")){throw new Error("JSON.stringify")}return str("",{"":value})}}if(typeof JSON.parse!=="function"){JSON.parse=function(text,reviver){var j;function walk(holder,key){var k,v,value=holder[key];if(value&&typeof value==="object"){for(k in value){if(Object.hasOwnProperty.call(value,k)){v=walk(value,k);if(v!==undefined){value[k]=v}else{delete value[k]}}}}return reviver.call(holder,key,value)}text=String(text);cx.lastIndex=0;if(cx.test(text)){text=text.replace(cx,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})}if(/^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){j=eval("("+text+")");return typeof reviver==="function"?walk({"":j},""):j}throw new SyntaxError("JSON.parse")}}}());Ext.util.JSON={encode:function(a){return JSON.stringify(a)},decode:function(a){return JSON.parse(a)}};Ext.encode=Ext.util.JSON.encode;Ext.decode=Ext.util.JSON.decode;Ext.util.JSONP={queue:[],current:null,request:function(d){d=d||{};if(!d.url){return}var b=this;d.params=d.params||{};if(d.callbackKey){d.params[d.callbackKey]="Ext.util.JSONP.callback"}var c=Ext.urlEncode(d.params);var a=document.createElement("script");a.type="text/javascript";this.queue.push({url:d.url,script:a,callback:d.callback||function(){},scope:d.scope||window,params:c||null});if(!this.current){this.next()}},next:function(){this.current=null;if(this.queue.length){this.current=this.queue.shift();this.current.script.src=this.current.url+"?"+this.current.params;document.getElementsByTagName("head")[0].appendChild(this.current.script)}},callback:function(a){this.current.callback.call(this.current.scope,a);document.getElementsByTagName("head")[0].removeChild(this.current.script);this.next()}};Ext.util.Scroller=Ext.extend(Ext.util.Observable,{bounces:true,momentum:true,horizontal:false,vertical:true,momentumResetTime:150,transitionDuration:500,deceleration:0.0018,friction:0.4,bounceFriction:0.55,transitionEasing:"cubic-bezier(0.4, .75, 0.5, .95)",snapping:false,snapY:0,snapX:0,scrollbars:true,constructor:function(c,b){b=b||{};Ext.apply(this,b);this.addEvents("scrollstart","scrollend","touchstart","touchend");Ext.util.Scroller.superclass.constructor.call(this);var a=this.scroller=Ext.get(c);if(Ext.platform.isAndroidOS){if(!b.bounces){this.bounces=false}}a.addClass("x-scroller");this.parent=a.parent();this.parent.addClass("x-scroller-parent");this.offset={x:0,y:0};this.parent.on({touchstart:this.onTouchStart,touchend:this.onTouchEnd,scrollstart:this.onScrollStart,scrollend:this.onScrollEnd,scroll:this.onScroll,horizontal:this.horizontal,vertical:this.vertical,scope:this});if(this.scrollbars&&this.vertical){this.scrollbarY=new Ext.util.Scroller.Scrollbar(this,"vertical")}this.scroller.on("webkitTransitionEnd",this.onTransitionEnd,this)},onTouchStart:function(c){var a=this.scroller,b=a.dom.style;if(Ext.platform.isAndroidOS){c.browserEvent.preventDefault();c.browserEvent.stopPropagation()}if(c.touches.length>1){return}this.followTouch=c.touch;if(this.animating&&!this.bouncing){this.animating=false;b.webkitTransitionDuration="0ms";if(this.scrollbarY){this.scrollbarY.stop()}if(this.scrollbarX){this.scrollbarX.stop()}transform=new WebKitCSSMatrix(window.getComputedStyle(a.dom).webkitTransform);b.webkitTransform="translate3d("+transform.m41+"px, "+transform.m42+"px, 0)";this.offset={x:transform.m41,y:transform.m42};this.fireEvent("scrollend",this,this.offset)}this.updateBounds();this.fireEvent("touchstart",c,this)},onScrollStart:function(b,a){Ext.getDoc().on("click",function(c){c.preventDefault()},this,{single:true});if(b.touch!=this.followTouch){return}this.momentum=this.momentum?{}:false;if(this.horizontal&&this.momentum){this.momentum.horizontal={startTime:b.time,startX:this.offset.x}}if(this.vertical&&this.momentum){this.momentum.vertical={startTime:b.time,startY:this.offset.y}}this.fireEvent("scrollstart",b,this)},onScroll:function(f,b){if(f.touch!=this.followTouch){return}var g=this.horizontal?(this.offset.x+f.previousDeltaX):0,d=this.vertical?(this.offset.y+f.previousDeltaY):0,h;if(this.bounces){if(this.horizontal){if(g<this.bounds.x){g=this.offset.x+(f.previousDeltaX/2)}else{if(g>0){g=this.offset.x+(f.previousDeltaX/2)}}}if(this.vertical){if(d<this.bounds.y){d=this.offset.y+(f.previousDeltaY/2)}else{if(d>0){d=this.offset.y+(f.previousDeltaY/2)}}}}h={x:Math.round(g),y:Math.round(d)};this.scrollTo({x:h.x,y:h.y},false);var c=(f.previousDeltaX>0)?"right":"left",a=(f.previousDeltaY>0)?"down":"up";if(this.horizontal&&this.momentum&&this.momentum.horizontal.direction!=c){if(this.momentum.horizontal.direction){this.momentum.horizontal={startTime:f.time,startX:h.x,direction:c}}else{this.momentum.horizontal.direction=c}}if(this.vertical&&this.momentum&&this.momentum.vertical.direction!=a){if(this.momentum.vertical.direction){this.momentum.vertical={startTime:f.time,startY:h.y,direction:a}}else{this.momentum.vertical.direction=a}}},onTouchEnd:function(b,a){if(b.touch!=this.followTouch){return}this.fireEvent("touchend",b,this)},onScrollEnd:function(b,a){if(b.touch!=this.followTouch){return}if(this.momentum){if(b.previousDeltaTime<=this.momentumResetTime&&(Math.abs(b.previousDeltaY)>2||Math.abs(b.previousDeltaX)>2)){this.startDeceleration(b)}else{this.snapToBounds(true)}}if(!this.animating){this.snapToBounds(true)}if(!this.animating){this.fireEvent("scrollend",this)}},scrollTo:function(e,b,d,a){e={x:Math.round(e.x),y:Math.round(e.y)};if(!this.bounces||a){e=this.constrainToBounds(e)}this.offset=e;var c=this.scroller.dom.style;if(b){this.animating=true;c.webkitTransitionTimingFunction=d||this.transitionEasing;c.webkitTransitionDuration=(typeof b=="number")?(b+"ms"):(this.transitionDuration+"ms");c.webkitTransform="translate3d("+e.x+"px, "+e.y+"px, 0)"}else{c.webkitTransitionDuration="0ms";c.webkitTransform="translate3d("+e.x+"px, "+e.y+"px, 0)"}if(this.scrollbarX){this.scrollbarX.scrollTo(e,b,d||this.transitionEasing)}if(this.scrollbarY){this.scrollbarY.scrollTo(e,b,d||this.transitionEasing)}this.fireEvent("scroll",this,e)},onTransitionEnd:function(){if(this.animating){this.animating=false;this.snapToBounds(350,this.bounceEasing);if(!this.animating){this.bouncing=false;this.fireEvent("scrollend",this,this.offset)}}},updateBounds:function(){this.parentSize={width:this.parent.getWidth(true),height:this.parent.getHeight(true)};this.contentSize={width:this.scroller.dom.scrollWidth,height:this.scroller.dom.scrollHeight};this.size={width:Math.max(this.contentSize.width,this.parentSize.width),height:Math.max(this.contentSize.height,this.parentSize.height)};this.bounds={x:this.parentSize.width-this.size.width,y:this.parentSize.height-this.size.height};if(this.scrollbarX){this.scrollbarX.update()}if(this.scrollbarY){this.scrollbarY.update()}},snapToBounds:function(a,c){if(!this.bounds){this.updateBounds()}var b=this.constrainToBounds(this.offset);if(this.snapping){if(this.snapY){b.y=Math.round(b.y/this.snapY)*this.snapY}if(this.snapX){b.x=Math.round(b.x/this.snapX)*this.snapX}}if(b.x!=this.offset.x||b.y!=this.offset.y){this.scrollTo(b,a,c||this.transitionEasing);this.bouncing=true}},constrainToBounds:function(a){if(!this.bounds){this.updateBounds()}return{x:Math.min(Math.max(this.bounds.x,a.x),0),y:Math.min(Math.max(this.bounds.y,a.y),0)}},startDeceleration:function(z){var m=this.momentum,d=this.offset,i=this.bounds,a=z.previousDeltaY>0?1:-1,b=z.previousDeltaX>0?1:-1,w=d.y,A=d.x,B=i.y,C=i.x,v=Math.abs(w-(this.vertical&&m.vertical&&m.vertical.startY))||0,x=Math.abs(A-(this.horizontal&&m.horizontal&&m.horizontal.startX))||0,c=v>x,h=z.time-Math.max((m.vertical&&m.vertical.startTime)||0,(m.horizontal&&m.horizontal.startTime)||0),f=v/h,g=x/h,u=0,t=0,j,k,n=false,p=false,r=0,s=0,q=this.transitionEasing;if(c){t=f/this.deceleration;j=this.parent.dom.clientHeight/4;if(a<0){if(w<B){t=j*0.2*f;n=B-w+t}else{if(t>w-B){t=Math.min(w-B+(this.bounceFriction*this.friction*f*j),w-B+j);n=w-B+t}}}else{if(a>0){if(w>0){t=j*0.2*f;n=w+t}else{if(t>-w+j){t=Math.min(-w+(this.bounceFriction*this.friction*f*j),-w+j);n=-w+t}}}}r=t/((this.friction*1.6)*f);this.bounceY=n;this.durationYBeforeBounce=r;this.distanceYBeforeBounce=t;this.speedYBeforeBounce=f;q=this.transitionEasing}else{u=g/this.deceleration;k=this.parent.dom.clientWidth/4;if(b<0){if(A<C){u=k*0.2*f;p=C-A+u}else{if(u>A-C){u=Math.min(w-C+(this.bounceFriction*this.friction*g*k),A-C+k);p=A-C+u}}}else{if(b>0){if(A>0){u=k*0.2*g;p=A+u}else{if(u>-A+k){u=Math.min(-A+(this.bounceFriction*this.friction*g*k),-A+k);p=-A+u}}}}s=u/((this.friction*1.6)*g);this.bounceX=p;this.durationXBeforeBounce=s;this.distanceXBeforeBounce=u;this.speedXBeforeBounce=g;q=this.transitionEasing}this.scrollTo({x:A+(b*Math.round(u)),y:w+(a*Math.round(t))},Math.max(s,r),q)}});Ext.util.Scroller.Scrollbar=Ext.extend(Object,{size:0,maxSize:0,maxScroll:0,scrollbarOffset:4,constructor:function(a,b){this.scroller=a;this.container=a.parent;this.direction=b;this.bar=this.container.createChild({cls:"x-scrollbar x-scrollbar-"+b});this.hide()},update:function(){var b=this.scroller,f=b.contentSize,e=b.parentSize,c=b.size,a,d;if(this.direction=="vertical"){if(f.height>e.height){a=Math.round((e.height*e.height)/c.height);this.bar.setHeight(a);this.scrollMax=e.height-a-(this.scrollbarOffset*2);this.autoShow=true}else{this.autoShow=false}}else{if(f.width>e.width){d=Math.round((e.width*e.width)/c.width);this.bar.setWidth(d);this.scrollMax=e.width-d-(this.scrollbarOffset*2);this.autoShow=true}else{this.autoShow=false}}},scrollTo:function(g,b,f){var e=this,a=e.scroller,d=e.bar.dom.style,c;if(!e.autoShow){return}if(e.hidden){e.show()}if(e.hideTimeout){clearTimeout(e.hideTimeout)}e.hideTimeout=setTimeout(function(){e.hide();e.hideTimeout=null},800);d.webkitTransitionTimingFunction=f||a.transitionEasing;if(b){d.webkitTransitionDuration=(typeof b=="number")?(b+"ms, 500ms"):(a.transitionDuration+"ms, 500ms")}else{d.webkitTransitionDuration="0ms, 500ms"}if(e.direction=="horizontal"){c=(e.scrollMax/a.bounds.x*a.offset.x)+this.scrollbarOffset;d.webkitTransform="translate3d("+c+"px, 0px, 0px)"}else{c=(e.scrollMax/a.bounds.y*a.offset.y)+this.scrollbarOffset;d.webkitTransform="translate3d(0px, "+c+"px, 0px)"}},hide:function(){this.bar.setStyle("opacity","0");this.hidden=true},show:function(){this.bar.setStyle("opacity","1");this.hidden=false},stop:function(){var b=this.bar.dom.style,a;b.webkitTransitionDuration="0ms";a=new WebKitCSSMatrix(window.getComputedStyle(this.bar.dom).webkitTransform);b.webkitTransform="translate3d("+a.m41+"px, "+a.m42+"px, 0)"}});Ext.util.Draggable=Ext.extend(Ext.util.Observable,{baseCls:"x-draggable",dragCls:"x-dragging",proxyCls:"x-draggable-proxy",direction:"both",delay:0,cancelSelector:null,disabled:false,revert:false,constrain:window,group:"base",grid:null,snap:null,proxy:null,stack:false,constrainRegion:null,dragging:false,vertical:false,horizontal:false,threshold:0,constructor:function(b,a){a=a||{};Ext.apply(this,a);this.addEvents("dragstart","beforedragend","dragend","drag");this.el=Ext.get(b);Ext.util.Draggable.superclass.constructor.call(this);if(this.direction=="both"){this.horizontal=true;this.vertical=true}else{if(this.direction=="horizontal"){this.horizontal=true}else{this.vertical=true}}this.el.addClass(this.baseCls);this.tapEvent=(this.delay>0)?"taphold":"tapstart";if(!this.disabled){this.enable()}},onTapEvent:function(b,a){if(Ext.platform.isAndroidOS){b.browserEvent.preventDefault();b.browserEvent.stopPropagation()}if(this.cancelSelector&&b.getTarget(this.cancelSelector)){return}if(!this.dragging&&(b.type==="tapstart"||b.deltaTime>=this.delay)){this.canDrag=true}},prepareDrag:function(c){this.reset();if(this.constrain){if(this.constrain===window){var a=window.innerWidth,b=window.innerHeight;this.constrainRegion=new Ext.util.Region(0,a,b,0)}else{this.constrainRegion=Ext.fly(this.constrain).getPageBox(true)}}this.startRegion=this.getProxyEl().getPageBox(true);this.offsetToCorner={x:c.pageX-this.startRegion.left,y:c.pageY-this.startRegion.top}},onDragStart:function(a){this.prepareDrag(a);if(!this.dragging){this.el.addClass(this.dragCls);this.dragging=true;this.fireEvent("dragstart",this,a)}},onTouchMove:function(c){c.stopEvent();if(!this.canDrag){return}if(!this.dragging){if(Math.abs(c.deltaX)>=this.threshold||Math.abs(c.deltaY)>=this.threshold){this.onDragStart(c)}else{return}}var a=0,f=0,b=this.initialRegion,d=this.constrainRegion;if(this.horizontal){a=c.pageX-this.initialRegion.left-this.offsetToCorner.x}if(this.vertical){f=c.pageY-this.initialRegion.top-this.offsetToCorner.y}if(this.constrain){if(b.left+a<d.left){a=d.left-b.left}if(b.right+a>d.right){a=d.right-b.right}if(b.top+f<d.top){f=d.top-b.top}if(b.bottom+f>d.bottom){f=d.bottom-b.bottom}}this.transformTo(a,f);this.fireEvent("drag",this,c)},transformTo:function(b,e){var a=this.getProxyEl(),c=this.initialRegion,d=this.startPosition||{x:0,y:0};a.dom.style.webkitTransform="translate3d("+b+"px, "+e+"px, 0px)";this.transform={x:b,y:e};this.position={x:d.x+b,y:d.y+e};this.region=new Ext.util.Region(c.top+e,c.right+b,c.bottom+e,c.left+b)},moveTo:function(a,b){this.transformTo(a-this.initialRegion.left,b-this.initialRegion.top)},reset:function(){var a=this.getProxyEl();this.startPosition=this.position={x:a.getLeft()||0,y:a.getTop()||0};this.initialRegion=this.region=a.getPageBox(true);this.transform={x:0,y:0}},onTouchEnd:function(d){this.canDrag=false;this.dragging=false;this.fireEvent("beforedragend",this,d);var b=this.getProxyEl();if(this.revert&&!this.cancelRevert&&this.transform){new Ext.Anim({from:{"-webkit-transform":"translate3d("+this.transform.x+"px, "+this.transform.y+"px, 0px)"},to:{"-webkit-transform":"translate3d(0px, 0px, 0px)"},duration:200}).run(b)}else{if(this.transform){var c=b.dom.style,a=this.position;c.webkitTransform=null;c.left=a.x+"px";c.top=a.y+"px"}}this.transform=this.startPosition=null;this.el.removeClass(this.dragCls);this.fireEvent("dragend",this,d)},enable:function(){this.el.on(this.tapEvent,this.onTapEvent,this,{horizontal:this.horizontal,vertical:this.vertical});this.el.on({touchmove:this.onTouchMove,touchend:this.onTouchEnd,scope:this});this.disabled=false},disable:function(){this.el.un(this.tapEvent,this.onTapEvent,this);this.disabled=true},destroy:function(){this.el.removeClass(this.baseCls);this.purgeListeners();this.el.un(this.tapEvent,this.onTapEvent,this);this.el.un({touchmove:this.onTouchMove,touchend:this.onTouchEnd,scope:this})},getProxyEl:function(){return this.proxy||this.el}});Ext.util.Droppable=Ext.extend(Ext.util.Observable,{baseCls:"x-droppable",activeCls:"x-drop-active",invalidCls:"x-drop-invalid",hoverCls:"x-drop-hover",validDropMode:"intersect",disabled:false,group:"base",tolerance:null,constructor:function(b,a){a=a||{};Ext.apply(this,a);this.addEvents("dropactivate","dropdeactivate","dropenter","dropleave","drop");this.el=Ext.get(b);Ext.util.Droppable.superclass.constructor.call(this);if(!this.disabled){this.enable()}this.el.addClass(this.baseCls)},onDragStart:function(a,b){if(a.group===this.group){this.monitoring=true;this.el.addClass(this.activeCls);this.region=this.el.getPageBox(true);a.on({drag:this.onDrag,beforedragend:this.onBeforeDragEnd,dragend:this.onDragEnd,scope:this});if(this.isDragOver(a)){this.setCanDrop(true,a,b)}this.fireEvent("dropactivate",this,a,b)}else{a.on({dragend:function(){this.el.removeClass(this.invalidCls)},scope:this,single:true});this.el.addClass(this.invalidCls)}},isDragOver:function(a,b){return this.region[this.validDropMode](a.region)},onDrag:function(a,b){this.setCanDrop(this.isDragOver(a),a,b)},setCanDrop:function(c,a,b){if(c&&!this.canDrop){this.canDrop=true;this.el.addClass(this.hoverCls);this.fireEvent("dropenter",this,a,b)}else{if(!c&&this.canDrop){this.canDrop=false;this.el.removeClass(this.hoverCls);this.fireEvent("dropleave",this,a,b)}}},onBeforeDragEnd:function(a,b){a.cancelRevert=this.canDrop},onDragEnd:function(a,b){this.monitoring=false;this.el.removeClass(this.activeCls);a.un({drag:this.onDrag,beforedragend:this.onBeforeDragEnd,dragend:this.onDragEnd,scope:this});if(this.canDrop){this.canDrop=false;this.el.removeClass(this.hoverCls);this.fireEvent("drop",this,a,b)}this.fireEvent("dropdeactivate",this,a,b)},enable:function(){if(!this.mgr){this.mgr=Ext.util.Observable.observe(Ext.util.Draggable)}this.mgr.on({dragstart:this.onDragStart,scope:this});this.disabled=false},disable:function(){this.mgr.un({dragstart:this.onDragStart,scope:this});this.disabled=true}});Ext.util.Sortable=Ext.extend(Ext.util.Observable,{baseCls:"x-sortable",direction:"vertical",cancelSelector:null,constrain:window,group:"base",revert:true,itemSelector:null,handleSelector:null,disabled:false,delay:0,sorting:false,vertical:false,horizontal:false,constructor:function(b,a){a=a||{};Ext.apply(this,a);this.addEvents("sortstart","sortend","sortchange");this.el=Ext.get(b);Ext.util.Sortable.superclass.constructor.call(this);if(this.direction=="horizontal"){this.horizontal=true}else{if(this.direction=="vertical"){this.vertical=true}else{this.horizontal=this.vertical=true}}this.el.addClass(this.baseCls);this.tapEvent=(this.delay>0)?"taphold":"tapstart";if(!this.disabled){this.enable()}},onTapEvent:function(b,a){if(this.cancelSelector&&b.getTarget(this.cancelSelector)){return}if(this.handleSelector&&!b.getTarget(this.handleSelector)){return}if(!this.sorting&&(b.type==="tapstart"||b.deltaTime>=this.delay)){this.onSortStart(b,b.getTarget(this.itemSelector))}},onSortStart:function(c,b){this.sorting=true;var a=new Ext.util.Draggable(b,{delay:this.delay,revert:this.revert,direction:this.direction,constrain:this.constrain===true?this.el:this.constrain});a.on({drag:this.onDrag,dragend:this.onDragEnd,scope:this});this.dragEl=b;this.calculateBoxes();a.canDrag=true;this.fireEvent("sortstart",this,c)},calculateBoxes:function(){this.items=[];var b=this.el.select(this.itemSelector,false),f=b.length,a,e,c,d;for(a=0;a<f;a++){c=b[a];if(c!=this.dragEl){e=Ext.fly(c).getPageBox(true);e.el=c;this.items.push(e)}}},onDrag:function(m,c){var g=this.items,f=g.length,h=m.region,d=false,b,a,j,k;for(b=0;b<f;b++){k=g[b];a=h.intersect(k);if(a){if(this.vertical&&Math.abs(a.top-a.bottom)>(h.bottom-h.top)/2){if(h.bottom>k.top&&k.top>h.top){m.el.insertAfter(k.el)}else{m.el.insertBefore(k.el)}d=true}else{if(this.horizontal&&Math.abs(a.left-a.right)>(h.right-h.left)/2){if(h.right>k.left&&k.left>h.left){m.el.insertAfter(k.el)}else{m.el.insertBefore(k.el)}d=true}}if(d){m.reset();m.moveTo(h.left,h.top);this.calculateBoxes();this.fireEvent("sortchange",this,m.el,this.el.select(this.itemSelector,false).indexOf(m.el.dom));return}}}},onDragEnd:function(a,b){a.destroy();this.sorting=false;this.fireEvent("sortend",this,a,b)},enable:function(){this.el.on(this.tapEvent,this.onTapEvent,this);this.disabled=false},disable:function(){this.el.un(this.tapEvent,this.onTapEvent,this);this.disabled=true}});Ext.util.Format=function(){return{ellipsis:function(c,a,d){if(c&&c.length>a){if(d){var e=c.substr(0,a-2),b=Math.max(e.lastIndexOf(" "),e.lastIndexOf("."),e.lastIndexOf("!"),e.lastIndexOf("?"));if(b==-1||b<(a-15)){return c.substr(0,a-3)+"..."}else{return e.substr(0,b)+"..."}}else{return c.substr(0,a-3)+"..."}}return c},htmlEncode:function(a){return !a?a:String(a).replace(/&/g,"&amp;").replace(/>/g,"&gt;").replace(/</g,"&lt;").replace(/"/g,"&quot;")},htmlDecode:function(a){return !a?a:String(a).replace(/&gt;/g,">").replace(/&lt;/g,"<").replace(/&quot;/g,'"').replace(/&amp;/g,"&")},date:function(a,b){if(!a){return""}if(!Ext.isDate(a)){a=new Date(Date.parse(a))}return a.dateFormat(b||"m/d/Y")}}}();(function(){Date.useStrict=false;function b(d){var c=Array.prototype.slice.call(arguments,1);return d.replace(/\{(\d+)\}/g,function(e,f){return c[f]})}Date.formatCodeToRegex=function(d,c){var e=Date.parseCodes[d];if(e){e=typeof e=="function"?e():e;Date.parseCodes[d]=e}return e?Ext.applyIf({c:e.c?b(e.c,c||"{0}"):e.c},e):{g:0,c:null,s:Ext.escapeRe(d)}};var a=Date.formatCodeToRegex;Ext.apply(Date,{parseFunctions:{"M$":function(d,c){var e=new RegExp("\\/Date\\(([-+])?(\\d+)(?:[+-]\\d{4})?\\)\\/");var f=(d||"").match(e);return f?new Date(((f[1]||"")+f[2])*1):null}},parseRegexes:[],formatFunctions:{"M$":function(){return"\\/Date("+this.getTime()+")\\/"}},y2kYear:50,MILLI:"ms",SECOND:"s",MINUTE:"mi",HOUR:"h",DAY:"d",MONTH:"mo",YEAR:"y",defaults:{},dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNumbers:{Jan:0,Feb:1,Mar:2,Apr:3,May:4,Jun:5,Jul:6,Aug:7,Sep:8,Oct:9,Nov:10,Dec:11},getShortMonthName:function(c){return Date.monthNames[c].substring(0,3)},getShortDayName:function(c){return Date.dayNames[c].substring(0,3)},getMonthNumber:function(c){return Date.monthNumbers[c.substring(0,1).toUpperCase()+c.substring(1,3).toLowerCase()]},formatCodes:{d:"String.leftPad(this.getDate(), 2, '0')",D:"Date.getShortDayName(this.getDay())",j:"this.getDate()",l:"Date.dayNames[this.getDay()]",N:"(this.getDay() ? this.getDay() : 7)",S:"this.getSuffix()",w:"this.getDay()",z:"this.getDayOfYear()",W:"String.leftPad(this.getWeekOfYear(), 2, '0')",F:"Date.monthNames[this.getMonth()]",m:"String.leftPad(this.getMonth() + 1, 2, '0')",M:"Date.getShortMonthName(this.getMonth())",n:"(this.getMonth() + 1)",t:"this.getDaysInMonth()",L:"(this.isLeapYear() ? 1 : 0)",o:"(this.getFullYear() + (this.getWeekOfYear() == 1 && this.getMonth() > 0 ? +1 : (this.getWeekOfYear() >= 52 && this.getMonth() < 11 ? -1 : 0)))",Y:"this.getFullYear()",y:"('' + this.getFullYear()).substring(2, 4)",a:"(this.getHours() < 12 ? 'am' : 'pm')",A:"(this.getHours() < 12 ? 'AM' : 'PM')",g:"((this.getHours() % 12) ? this.getHours() % 12 : 12)",G:"this.getHours()",h:"String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0')",H:"String.leftPad(this.getHours(), 2, '0')",i:"String.leftPad(this.getMinutes(), 2, '0')",s:"String.leftPad(this.getSeconds(), 2, '0')",u:"String.leftPad(this.getMilliseconds(), 3, '0')",O:"this.getGMTOffset()",P:"this.getGMTOffset(true)",T:"this.getTimezone()",Z:"(this.getTimezoneOffset() * -60)",c:function(){for(var j="Y-m-dTH:i:sP",g=[],f=0,d=j.length;f<d;++f){var h=j.charAt(f);g.push(h=="T"?"'T'":Date.getFormatCode(h))}return g.join(" + ")},U:"Math.round(this.getTime() / 1000)"},isValid:function(p,c,n,j,f,g,e){j=j||0;f=f||0;g=g||0;e=e||0;var k=new Date(p,c-1,n,j,f,g,e);return p==k.getFullYear()&&c==k.getMonth()+1&&n==k.getDate()&&j==k.getHours()&&f==k.getMinutes()&&g==k.getSeconds()&&e==k.getMilliseconds()},parseDate:function(d,f,c){var e=Date.parseFunctions;if(e[f]==null){Date.createParser(f)}return e[f](d,Ext.isDefined(c)?c:Date.useStrict)},getFormatCode:function(d){var c=Date.formatCodes[d];if(c){c=typeof c=="function"?c():c;Date.formatCodes[d]=c}return c||("'"+String.escape(d)+"'")},createFormat:function(g){var f=[],c=false,e="";for(var d=0;d<g.length;++d){e=g.charAt(d);if(!c&&e=="\\"){c=true}else{if(c){c=false;f.push("'"+String.escape(e)+"'")}else{f.push(Date.getFormatCode(e))}}}Date.formatFunctions[g]=new Function("return "+f.join("+"))},createParser:function(){var c=["var dt, y, m, d, h, i, s, ms, o, z, zz, u, v,","def = Date.defaults,","results = String(input).match(Date.parseRegexes[{0}]);","if(results){","{1}","if(u != null){","v = new Date(u * 1000);","}else{","dt = (new Date()).clearTime();","y = Ext.num(y, Ext.num(def.y, dt.getFullYear()));","m = Ext.num(m, Ext.num(def.m - 1, dt.getMonth()));","d = Ext.num(d, Ext.num(def.d, dt.getDate()));","h = Ext.num(h, Ext.num(def.h, dt.getHours()));","i = Ext.num(i, Ext.num(def.i, dt.getMinutes()));","s = Ext.num(s, Ext.num(def.s, dt.getSeconds()));","ms = Ext.num(ms, Ext.num(def.ms, dt.getMilliseconds()));","if(z >= 0 && y >= 0){","v = new Date(y, 0, 1, h, i, s, ms);","v = !strict? v : (strict === true && (z <= 364 || (v.isLeapYear() && z <= 365))? v.add(Date.DAY, z) : null);","}else if(strict === true && !Date.isValid(y, m + 1, d, h, i, s, ms)){","v = null;","}else{","v = new Date(y, m, d, h, i, s, ms);","}","}","}","if(v){","if(zz != null){","v = v.add(Date.SECOND, -v.getTimezoneOffset() * 60 - zz);","}else if(o){","v = v.add(Date.MINUTE, -v.getTimezoneOffset() + (sn == '+'? -1 : 1) * (hr * 60 + mn));","}","}","return v;"].join("\n");return function(m){var e=Date.parseRegexes.length,n=1,f=[],k=[],j=false,d="";for(var h=0;h<m.length;++h){d=m.charAt(h);if(!j&&d=="\\"){j=true}else{if(j){j=false;k.push(String.escape(d))}else{var g=a(d,n);n+=g.g;k.push(g.s);if(g.g&&g.c){f.push(g.c)}}}}Date.parseRegexes[e]=new RegExp("^"+k.join("")+"$");Date.parseFunctions[m]=new Function("input","strict",b(c,e,f.join("")))}}(),parseCodes:{d:{g:1,c:"d = parseInt(results[{0}], 10);\n",s:"(\\d{2})"},j:{g:1,c:"d = parseInt(results[{0}], 10);\n",s:"(\\d{1,2})"},D:function(){for(var c=[],d=0;d<7;c.push(Date.getShortDayName(d)),++d){}return{g:0,c:null,s:"(?:"+c.join("|")+")"}},l:function(){return{g:0,c:null,s:"(?:"+Date.dayNames.join("|")+")"}},N:{g:0,c:null,s:"[1-7]"},S:{g:0,c:null,s:"(?:st|nd|rd|th)"},w:{g:0,c:null,s:"[0-6]"},z:{g:1,c:"z = parseInt(results[{0}], 10);\n",s:"(\\d{1,3})"},W:{g:0,c:null,s:"(?:\\d{2})"},F:function(){return{g:1,c:"m = parseInt(Date.getMonthNumber(results[{0}]), 10);\n",s:"("+Date.monthNames.join("|")+")"}},M:function(){for(var c=[],d=0;d<12;c.push(Date.getShortMonthName(d)),++d){}return Ext.applyIf({s:"("+c.join("|")+")"},a("F"))},m:{g:1,c:"m = parseInt(results[{0}], 10) - 1;\n",s:"(\\d{2})"},n:{g:1,c:"m = parseInt(results[{0}], 10) - 1;\n",s:"(\\d{1,2})"},t:{g:0,c:null,s:"(?:\\d{2})"},L:{g:0,c:null,s:"(?:1|0)"},o:function(){return a("Y")},Y:{g:1,c:"y = parseInt(results[{0}], 10);\n",s:"(\\d{4})"},y:{g:1,c:"var ty = parseInt(results[{0}], 10);\ny = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",s:"(\\d{1,2})"},a:{g:1,c:"if (results[{0}] == 'am') {\nif (!h || h == 12) { h = 0; }\n} else { if (!h || h < 12) { h = (h || 0) + 12; }}",s:"(am|pm)"},A:{g:1,c:"if (results[{0}] == 'AM') {\nif (!h || h == 12) { h = 0; }\n} else { if (!h || h < 12) { h = (h || 0) + 12; }}",s:"(AM|PM)"},g:function(){return a("G")},G:{g:1,c:"h = parseInt(results[{0}], 10);\n",s:"(\\d{1,2})"},h:function(){return a("H")},H:{g:1,c:"h = parseInt(results[{0}], 10);\n",s:"(\\d{2})"},i:{g:1,c:"i = parseInt(results[{0}], 10);\n",s:"(\\d{2})"},s:{g:1,c:"s = parseInt(results[{0}], 10);\n",s:"(\\d{2})"},u:{g:1,c:"ms = results[{0}]; ms = parseInt(ms, 10)/Math.pow(10, ms.length - 3);\n",s:"(\\d+)"},O:{g:1,c:["o = results[{0}];","var sn = o.substring(0,1),","hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60),","mn = o.substring(3,5) % 60;","o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))? (sn + String.leftPad(hr, 2, '0') + String.leftPad(mn, 2, '0')) : null;\n"].join("\n"),s:"([+-]\\d{4})"},P:{g:1,c:["o = results[{0}];","var sn = o.substring(0,1),","hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60),","mn = o.substring(4,6) % 60;","o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))? (sn + String.leftPad(hr, 2, '0') + String.leftPad(mn, 2, '0')) : null;\n"].join("\n"),s:"([+-]\\d{2}:\\d{2})"},T:{g:0,c:null,s:"[A-Z]{1,4}"},Z:{g:1,c:"zz = results[{0}] * 1;\nzz = (-43200 <= zz && zz <= 50400)? zz : null;\n",s:"([+-]?\\d{1,5})"},c:function(){var e=[],c=[a("Y",1),a("m",2),a("d",3),a("h",4),a("i",5),a("s",6),{c:"ms = results[7] || '0'; ms = parseInt(ms, 10)/Math.pow(10, ms.length - 3);\n"},{c:["if(results[8]) {","if(results[8] == 'Z'){","zz = 0;","}else if (results[8].indexOf(':') > -1){",a("P",8).c,"}else{",a("O",8).c,"}","}"].join("\n")}];for(var f=0,d=c.length;f<d;++f){e.push(c[f].c)}return{g:1,c:e.join(""),s:[c[0].s,"(?:","-",c[1].s,"(?:","-",c[2].s,"(?:","(?:T| )?",c[3].s,":",c[4].s,"(?::",c[5].s,")?","(?:(?:\\.|,)(\\d+))?","(Z|(?:[-+]\\d{2}(?::)?\\d{2}))?",")?",")?",")?"].join("")}},U:{g:1,c:"u = parseInt(results[{0}], 10);\n",s:"(-?\\d+)"}}})}());Ext.apply(Date.prototype,{dateFormat:function(a){if(Date.formatFunctions[a]==null){Date.createFormat(a)}return Date.formatFunctions[a].call(this)},getTimezone:function(){return this.toString().replace(/^.* (?:\((.*)\)|([A-Z]{1,4})(?:[\-+][0-9]{4})?(?: -?\d+)?)$/,"$1$2").replace(/[^A-Z]/g,"")},getGMTOffset:function(a){return(this.getTimezoneOffset()>0?"-":"+")+String.leftPad(Math.floor(Math.abs(this.getTimezoneOffset())/60),2,"0")+(a?":":"")+String.leftPad(Math.abs(this.getTimezoneOffset()%60),2,"0")},getDayOfYear:function(){var b=0,e=this.clone(),a=this.getMonth(),c;for(c=0,e.setDate(1),e.setMonth(0);c<a;e.setMonth(++c)){b+=e.getDaysInMonth()}return b+this.getDate()-1},getWeekOfYear:function(){var a=86400000,b=7*a;return function(){var d=Date.UTC(this.getFullYear(),this.getMonth(),this.getDate()+3)/a,c=Math.floor(d/7),e=new Date(c*b).getUTCFullYear();return c-Math.floor(Date.UTC(e,0,7)/b)+1}}(),isLeapYear:function(){var a=this.getFullYear();return !!((a&3)==0&&(a%100||(a%400==0&&a)))},getFirstDayOfMonth:function(){var a=(this.getDay()-(this.getDate()-1))%7;return(a<0)?(a+7):a},getLastDayOfMonth:function(){return this.getLastDateOfMonth().getDay()},getFirstDateOfMonth:function(){return new Date(this.getFullYear(),this.getMonth(),1)},getLastDateOfMonth:function(){return new Date(this.getFullYear(),this.getMonth(),this.getDaysInMonth())},getDaysInMonth:function(){var a=[31,28,31,30,31,30,31,31,30,31,30,31];return function(){var b=this.getMonth();return b==1&&this.isLeapYear()?29:a[b]}}(),getSuffix:function(){switch(this.getDate()){case 1:case 21:case 31:return"st";case 2:case 22:return"nd";case 3:case 23:return"rd";default:return"th"}},clone:function(){return new Date(this.getTime())},isDST:function(){return new Date(this.getFullYear(),0,1).getTimezoneOffset()!=this.getTimezoneOffset()},clearTime:function(f){if(f){return this.clone().clearTime()}var b=this.getDate();this.setHours(0);this.setMinutes(0);this.setSeconds(0);this.setMilliseconds(0);if(this.getDate()!=b){for(var a=1,e=this.add(Date.HOUR,a);e.getDate()!=b;a++,e=this.add(Date.HOUR,a)){}this.setDate(b);this.setHours(e.getHours())}return this},add:function(b,c){var e=this.clone();if(!b||c===0){return e}switch(b.toLowerCase()){case Date.MILLI:e.setMilliseconds(this.getMilliseconds()+c);break;case Date.SECOND:e.setSeconds(this.getSeconds()+c);break;case Date.MINUTE:e.setMinutes(this.getMinutes()+c);break;case Date.HOUR:e.setHours(this.getHours()+c);break;case Date.DAY:e.setDate(this.getDate()+c);break;case Date.MONTH:var a=this.getDate();if(a>28){a=Math.min(a,this.getFirstDateOfMonth().add("mo",c).getLastDateOfMonth().getDate())}e.setDate(a);e.setMonth(this.getMonth()+c);break;case Date.YEAR:e.setFullYear(this.getFullYear()+c);break}return e},between:function(c,a){var b=this.getTime();return c.getTime()<=b&&b<=a.getTime()}});Date.prototype.format=Date.prototype.dateFormat;if(Ext.isSafari&&(navigator.userAgent.match(/WebKit\/(\d+)/)[1]||NaN)<420){Ext.apply(Date.prototype,{_xMonth:Date.prototype.setMonth,_xDate:Date.prototype.setDate,setMonth:function(a){if(a<=-1){var d=Math.ceil(-a),c=Math.ceil(d/12),b=(d%12)?12-d%12:0;this.setFullYear(this.getFullYear()-c);return this._xMonth(b)}else{return this._xMonth(a)}},setDate:function(a){return this.setTime(this.getTime()-(this.getDate()-a)*86400000)}})}Ext.Template=function(d){var e=this,b=arguments,c=[];if(Ext.isArray(d)){d=d.join("")}else{if(b.length>1){Ext.each(b,function(a){if(Ext.isObject(a)){Ext.apply(e,a)}else{c.push(a)}});d=c.join("")}}e.html=d;if(e.compiled){e.compile()}};Ext.Template.prototype={re:/\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,argsRe:/^\s*['"](.*)["']\s*$/,compileARe:/\\/g,compileBRe:/(\r\n|\n)/g,compileCRe:/'/g,disableFormats:false,applyTemplate:function(h){var e=this,a=e.disableFormats!==true,g=Ext.util.Format,c=e,j,b,d;if(e.compiled){return e.compiled(h)}function f(i,n,p,k){if(p&&a){if(p.substr(0,5)=="this."){return c.call(p.substr(5),h[n],h)}else{if(k){j=e.argsRe;k=k.split(",");for(b=0,d=k.length;b<d;b++){k[b]=k[b].replace(j,"$1")}k=[h[n]].concat(k)}else{k=[h[n]]}return g[p].apply(g,k)}}else{return h[n]!==undefined?h[n]:""}}return e.html.replace(e.re,f)},set:function(a,c){var b=this;b.html=a;b.compiled=null;return c?b.compile():b},compile:function(){var me=this,fm=Ext.util.Format,useF=me.disableFormats!==true,body;function fn(m,name,format,args){if(format&&useF){args=args?","+args:"";if(format.substr(0,5)!="this."){format="fm."+format+"("}else{format='this.call("'+format.substr(5)+'", ';args=", values"}}else{args="";format="(values['"+name+"'] == undefined ? '' : "}return"',"+format+"values['"+name+"']"+args+") ,'"}if(Ext.isGecko){body="this.compiled = function(values){ return '"+me.html.replace(me.compileARe,"\\\\").replace(me.compileBRe,"\\n").replace(me.compileCRe,"\\'").replace(me.re,fn)+"';};"}else{body=["this.compiled = function(values){ return ['"];body.push(me.html.replace(me.compileARe,"\\\\").replace(me.compileBRe,"\\n").replace(me.compileCRe,"\\'").replace(me.re,fn));body.push("'].join('');};");body=body.join("")}eval(body);return me},insertFirst:function(b,a,c){return this.doInsert("afterBegin",b,a,c)},insertBefore:function(b,a,c){return this.doInsert("beforeBegin",b,a,c)},insertAfter:function(b,a,c){return this.doInsert("afterEnd",b,a,c)},append:function(b,a,c){return this.doInsert("beforeEnd",b,a,c)},doInsert:function(c,e,b,a){e=Ext.getDom(e);var d=Ext.DomHelper.insertHtml(c,e,this.applyTemplate(b));return a?Ext.get(d,true):d},overwrite:function(b,a,c){b=Ext.getDom(b);b.innerHTML=this.applyTemplate(a);return c?Ext.get(b.firstChild,true):b.firstChild},call:function(c,b,a){return this[c](b,a)}};Ext.Template.prototype.apply=Ext.Template.prototype.applyTemplate;Ext.Template.from=function(b,a){b=Ext.getDom(b);return new Ext.Template(b.value||b.innerHTML,a||"")};Ext.XTemplate=function(){Ext.XTemplate.superclass.constructor.apply(this,arguments);var A=this,h=A.html,r=/<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,d=/^<tpl\b[^>]*?for="(.*?)"/,w=/^<tpl\b[^>]*?if="(.*?)"/,z=/^<tpl\b[^>]*?exec="(.*?)"/,t,q=0,j=[],p="values",x="parent",k="xindex",n="xcount",e="return ",c="with(values){ ";h=["<tpl>",h,"</tpl>"].join("");while((t=h.match(r))){var b=t[0].match(d),a=t[0].match(w),C=t[0].match(z),f=null,g=null,u=null,B=b&&b[1]?b[1]:"",v;if(a){f=a&&a[1]?a[1]:null;if(f){g=new Function(p,x,k,n,c+"try{"+e+(Ext.util.Format.htmlDecode(f))+";}catch(e){return;}}")}}if(C){f=C&&C[1]?C[1]:null;if(f){u=new Function(p,x,k,n,c+(Ext.util.Format.htmlDecode(f))+"; }")}}if(B){switch(B){case".":B=new Function(p,x,c+e+p+"; }");break;case"..":B=new Function(p,x,c+e+x+"; }");break;default:B=new Function(p,x,c+e+B+"; }")}}j.push({id:q,target:B,exec:u,test:g,body:t[1]||""});h=h.replace(t[0],"{xtpl"+q+"}");++q}for(v=j.length-1;v>=0;--v){A.compileTpl(j[v])}A.master=j[j.length-1];A.tpls=j};Ext.extend(Ext.XTemplate,Ext.Template,{re:/\{([\w-\.\#]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?(\s?[\+\-\*\\]\s?[\d\.\+\-\*\\\(\)]+)?\}/g,codeRe:/\{\[((?:\\\]|.|\n)*?)\]\}/g,applySubTemplate:function(a,j,h,d,c){var g=this,f,m=g.tpls[a],k,b=[],e;if((m.test&&!m.test.call(g,j,h,d,c))||(m.exec&&m.exec.call(g,j,h,d,c))){return""}k=m.target?m.target.call(g,j,h):j;f=k.length;h=m.target?j:h;if(m.target&&Ext.isArray(k)){for(e=0,f=k.length;e<f;e++){b[b.length]=m.compiled.call(g,k[e],h,e+1,f)}return b.join("")}return m.compiled.call(g,k,h,d,c)},compileTpl:function(tpl){var fm=Ext.util.Format,useF=this.disableFormats!==true,body;function fn(m,name,format,args,math){var v;if(name.substr(0,4)=="xtpl"){return"',this.applySubTemplate("+name.substr(4)+", values, parent, xindex, xcount),'"}if(name=="."){v='typeof values == "string" ? values : ""'}else{if(name=="#"){v="xindex"}else{if(name.indexOf(".")!=-1){v="values."+name}else{v="values['"+name+"']"}}}if(math){v="("+v+math+")"}if(format&&useF){args=args?","+args:"";if(format.substr(0,5)!="this."){format="fm."+format+"("}else{format='this.call("'+format.substr(5)+'", ';args=", values"}}else{args="";format="("+v+" === undefined ? '' : "}return"',"+format+v+args+"),'"}function codeFn(m,code){return"',("+code.replace(/\\'/g,"'")+"),'"}body=["tpl.compiled = function(values, parent, xindex, xcount){return ['"];body.push(tpl.body.replace(/(\r\n|\n)/g,"\\n").replace(/'/g,"\\'").replace(this.re,fn).replace(this.codeRe,codeFn));body.push("'].join('');};");body=body.join("");eval(body);return this},applyTemplate:function(a){return this.master.compiled.call(this,a,{},1,1)},compile:function(){return this}});Ext.XTemplate.prototype.apply=Ext.XTemplate.prototype.applyTemplate;Ext.XTemplate.from=function(b,a){b=Ext.getDom(b);return new Ext.XTemplate(b.value||b.innerHTML,a||{})};Ext.util.DelayedTask=function(d,c,a){var e=this,f,b=function(){clearInterval(f);f=null;d.apply(c,a||[])};this.delay=function(h,j,i,g){e.cancel();d=j||d;c=i||c;a=g||a;f=setInterval(b,h)};this.cancel=function(){if(f){clearInterval(f);f=null}}};Ext.data.Connection=Ext.extend(Ext.util.Observable,{method:"post",url:null,disableCaching:true,disableCachingParam:"_dc",timeout:30000,useDefaultHeader:true,defaultPostHeader:"application/x-www-form-urlencoded; charset=UTF-8",useDefaultXhrHeader:true,defaultXhrHeader:"XMLHttpRequest",requests:{},constructor:function(a){a=a||{};Ext.apply(this,a);this.addEvents("beforerequest","requestcomplete","requestexception");Ext.data.Connection.superclass.constructor.call(this)},request:function(c){var k=this;if(k.fireEvent("beforerequest",k,c)!==false){var g=c.params,b=c.url||k.url,h,i,f,d=c.urlParams,a,m,n;if(Ext.isFunction(g)){g=g.call(c.scope||window,c)}if(Ext.isFunction(b)){b=b.call(c.scope||window,c)}i=c.rawData||c.xmlData||c.jsonData||null;if(c.jsonData&&!Ext.isPrimitive(c.jsonData)){i=Ext.encode(i)}g=Ext.isObject(g)?Ext.urlEncode(g):g;d=Ext.isObject(d)?Ext.urlEncode(d):d;a=(c.method||k.method||((g||i)?"POST":"GET")).toUpperCase();if(a==="GET"&&c.disableCaching!==false&&!k.disableCaching){b=Ext.urlAppend(b,c.disableCachingParam||k.disableCachingParam+"="+(new Date().getTime()))}if((a=="GET"||i)&&g){b=Ext.urlAppend(b,g);g=null}if(d){b=Ext.urlAppend(b,d)}if(c.autoAbort===true||k.autoAbort){k.abort()}n=new XMLHttpRequest();n.open(a.toUpperCase(),b,true);f=Ext.apply({},c.headers||{},k.defaultHeaders||{});if(!f["Content-Type"]&&(i||g)){f["Content-Type"]=i?(c.rawData?"text/plain":(c.xmlData?"text/xml":"application/json")):k.defaultPostHeader}if(k.useDefaultXhrHeader&&!f["X-Requested-With"]){f["X-Requested-With"]=k.defaultXhrHeader}for(m in f){try{n.setRequestHeader(m,f[m])}catch(j){k.fireEvent("exception",m,f[m])}}h={id:++Ext.data.Connection.requestId,xhr:n,headers:f,options:c,timeout:setTimeout(function(){h.timedout=true;k.abort(h)},c.timeout||k.timeout)};k.requests[h.id]=h;n.onreadystatechange=k.onStateChange.createDelegate(k,[h]);n.send(i||g||null);return null}else{return c.callback?c.callback.apply(c.scope,[c,undefined,undefined]):null}},isLoading:function(a){return a&&!{0:true,4:true}[a.xhr.readyState]},abort:function(a){if(a&&this.isLoading(a)){a.xhr.abort();clearTimeout(a.timeout);delete (a.timeout);a.aborted=true;this.onComplete(a)}else{if(!a){var b;for(b in this.requests){this.abort(this.requests[b])}}}},onStateChange:function(a){if(a.xhr.readyState==4){clearTimeout(a.timeout);delete a.timeout;this.onComplete(a)}},onComplete:function(d){var a=d.xhr.status,c=d.options,b;if(a>=200&&a<300){b=this.createResponse(d);this.fireEvent("requestcomplete",b);if(c.success){if(!c.scope){c.success(b)}else{c.success.call(c.scope,b)}}}else{switch(a){case 12002:case 12029:case 12030:case 12031:case 12152:case 13030:b=this.createException(d);default:b=this.createResponse(d)}this.fireEvent("requestexception",b);if(c.failure){if(!c.scope){c.failure(b)}else{c.failure.call(c.scope,b)}}}delete this.requests[d.id]},createResponse:function(a){var g=a.xhr,b={},h=g.getAllResponseHeaders().replace(/\r\n/g,"\n").split("\n"),c=h.length,i,d,f,e;while(c--){i=h[c];d=i.indexOf(":");if(d>=0){f=i.substr(0,d).toLowerCase();if(i.charAt(d+1)==" "){++d}b[f]=i.substr(d+1)}}delete a.xhr;return{request:a,requestId:a.id,status:g.status,statusText:g.statusText,getResponseHeader:function(j){return b[j.toLowerCase()]},getAllResponseHeaders:function(){return b},responseText:g.responseText,responseXML:g.responseXML}},createException:function(a){return{request:a,requestId:a.id,status:a.aborted?-1:0,statusText:a.aborted?"transaction aborted":"communication failure",aborted:a.aborted,timedout:a.timedout}}});Ext.data.Connection.requestId=0;Ext.Ajax=new Ext.data.Connection({autoAbort:false});Ext.AbstractManager=Ext.extend(Object,{typeName:"type",constructor:function(a){Ext.apply(this,a||{});this.all=new Ext.util.MixedCollection();this.types={}},get:function(a){return this.all.get(a)},register:function(a){this.all.add(a)},unregister:function(a){this.all.remove(a)},registerType:function(b,a){this.types[b]=a;a[this.typeName]=b},isRegistered:function(a){return this.types[a]!==undefined},create:function(a,d){var b=a[this.typeName]||a.type||d,c=this.types[b];if(c==undefined){throw new Error(String.format("The '{0}' type has not been registered with this manager",b))}return new c(a)},onAvailable:function(d,c,b){var a=this.all;a.on("add",function(e,f){if(f.id==d){c.call(b||f,f);a.un("add",c,b)}})}});Ext.PluginMgr=new Ext.AbstractManager({typeName:"ptype",create:function(b,c){var a=this.types[b.ptype||c];if(a.init){return a}else{return new a(b)}},findByType:function(c,f){var e=[],b=this.types;for(var a in b){var d=b[a];if(d.type==c&&(f===true&&d.isDefault)){e.push(d)}}return e}});Ext.preg=function(){return Ext.PluginMgr.registerType.apply(Ext.PluginMgr,arguments)};Ext.ComponentMgr=new Ext.AbstractManager({typeName:"xtype",create:function(a,b){return a.render?a:new this.types[a.xtype||b](a)}});Ext.reg=function(){return Ext.ComponentMgr.registerType.apply(Ext.ComponentMgr,arguments)};Ext.create=function(){return Ext.ComponentMgr.create.apply(Ext.ComponentMgr,arguments)};Ext.data.Batch=Ext.extend(Ext.util.Observable,{autoStart:false,current:-1,total:0,running:false,complete:false,exception:false,pauseOnException:true,constructor:function(a){Ext.apply(this,a||{});this.operations=[];this.addEvents("complete","exception","operation-complete");Ext.data.Batch.superclass.constructor.call(this,a)},add:function(a){this.total++;a.setBatch(this);this.operations.push(a)},start:function(){this.exception=false;this.running=true;this.runNextOperation()},runNextOperation:function(){this.runOperation(this.current+1)},pause:function(){this.running=false},runOperation:function(d){var c=this.operations,b=c[d];if(b==undefined){this.running=false;this.complete=true;this.fireEvent("complete",this,c[c.length-1])}else{this.current=d;var a=function(e){var f=e.hasException();if(f){this.fireEvent("exception",this,e)}else{this.fireEvent("operation-complete",this,e)}if(f&&this.pauseOnException){this.pause()}else{e.markCompleted();this.runNextOperation()}};b.markStarted();this.proxy[b.action](b,a,this)}}});Ext.data.Model=Ext.extend(Ext.util.Observable,{evented:false,dirty:false,phantom:false,editing:false,idProperty:"id",constructor:function(e,g){e=e||{};if(this.evented){this.addEvents()}Ext.data.Model.superclass.constructor.apply(this,arguments);var a=this.fields.items,d=a.length,f,b,c;for(c=0;c<d;c++){f=a[c];b=f.name;if(e[b]==undefined){e[b]=f.defaultValue}}this.id=(g||g===0)?g:Ext.data.Model.id(this);this.data=e;this.modified={}},markDirty:function(){this.dirty=true;if(!this.modified){this.modified={}}this.fields.each(function(a){this.modified[a.name]=this.data[a.name]},this)},getId:function(){return this.get(this.idProperty)},setId:function(a){this.set(this.idProperty,a)},get:function(a){return this.data[a]},set:function(b,a){this.data[b]=a;this.dirty=true;if(!this.editing){this.afterEdit()}},getChanges:function(){var a=this.modified,b={},c;for(c in a){if(a.hasOwnProperty(c)){b[c]=this.data[c]}}return b},isModified:function(a){return !!(this.modified&&this.modified.hasOwnProperty(a))},copy:function(a){return new this.constructor(Ext.apply({},this.data),a||this.id)},reject:function(a){var b=this.modified,c;for(c in b){if(typeof b[c]!="function"){this.data[c]=b[c]}}this.dirty=false;this.editing=false;delete this.modified;if(a!==true){this.afterReject()}},commit:function(a){this.dirty=false;this.editing=false;delete this.modified;if(a!==true){this.afterCommit()}},join:function(a){this.store=a},unjoin:function(a){delete this.store},afterEdit:function(){this.callStore("afterEdit")},afterReject:function(){this.callStore("afterReject")},afterCommit:function(){this.callStore("afterCommit")},callStore:function(b){var a=this.store;if(a!=undefined&&typeof a[b]=="function"){a[b](this)}}});Ext.data.Model.id=function(a){a.phantom=true;return[Ext.data.Model.PREFIX,"-",Ext.data.Model.AUTO_ID++].join("")};Ext.ns("Ext.data.Record");Ext.data.Record.id=Ext.data.Model.id;Ext.data.Model.PREFIX="ext-record";Ext.data.Model.AUTO_ID=1;Ext.data.Model.EDIT="edit";Ext.data.Model.REJECT="reject";Ext.data.Model.COMMIT="commit";Ext.data.Field=Ext.extend(Object,{constructor:function(b){if(Ext.isString(b)){b={name:b}}Ext.apply(this,b);var d=Ext.data.Types,a=this.sortType,c;if(this.type){if(Ext.isString(this.type)){this.type=Ext.data.Types[this.type.toUpperCase()]||d.AUTO}}else{this.type=d.AUTO}if(Ext.isString(a)){this.sortType=Ext.data.SortTypes[a]}else{if(Ext.isEmpty(a)){this.sortType=this.type.sortType}}if(!this.convert){this.convert=this.type.convert}},dateFormat:null,defaultValue:"",mapping:null,sortType:null,sortDir:"ASC",allowBlank:true});Ext.data.SortTypes={none:function(a){return a},stripTagsRE:/<\/?[^>]+>/gi,asText:function(a){return String(a).replace(this.stripTagsRE,"")},asUCText:function(a){return String(a).toUpperCase().replace(this.stripTagsRE,"")},asUCString:function(a){return String(a).toUpperCase()},asDate:function(a){if(!a){return 0}if(Ext.isDate(a)){return a.getTime()}return Date.parse(String(a))},asFloat:function(a){var b=parseFloat(String(a).replace(/,/g,""));return isNaN(b)?0:b},asInt:function(a){var b=parseInt(String(a).replace(/,/g,""),10);return isNaN(b)?0:b}};Ext.data.Types=new function(){var a=Ext.data.SortTypes;Ext.apply(this,{stripRe:/[\$,%]/g,AUTO:{convert:function(b){return b},sortType:a.none,type:"auto"},STRING:{convert:function(b){return(b===undefined||b===null)?"":String(b)},sortType:a.asUCString,type:"string"},INT:{convert:function(b){return b!==undefined&&b!==null&&b!==""?parseInt(String(b).replace(Ext.data.Types.stripRe,""),10):0},sortType:a.none,type:"int"},FLOAT:{convert:function(b){return b!==undefined&&b!==null&&b!==""?parseFloat(String(b).replace(Ext.data.Types.stripRe,""),10):0},sortType:a.none,type:"float"},BOOL:{convert:function(b){return b===true||b==="true"||b==1},sortType:a.none,type:"bool"},DATE:{convert:function(c){var d=this.dateFormat;if(!c){return null}if(Ext.isDate(c)){return c}if(d){if(d=="timestamp"){return new Date(c*1000)}if(d=="time"){return new Date(parseInt(c,10))}return Date.parseDate(c,d)}var b=Date.parse(c);return b?new Date(b):null},sortType:a.asDate,type:"date"}});Ext.apply(this,{BOOLEAN:this.BOOL,INTEGER:this.INT,NUMBER:this.FLOAT})};Ext.ModelMgr=new Ext.AbstractManager({typeName:"mtype",registerType:function(a,c){var g=Ext.PluginMgr,d=g.findByType("model",true),h=c.fields||[],f=Ext.extend(Ext.data.Model,c);var j=c.plugins||[];for(var i=0,b=j.length;i<b;i++){d.push(g.create(j[i]))}var e=new Ext.util.MixedCollection(false,function(k){return k.name});for(var i=0,b=h.length;i<b;i++){e.add(new Ext.data.Field(h[i]))}Ext.override(f,{fields:e,plugins:d});for(var i=0,b=d.length;i<b;i++){d[i].bootstrap(f,c)}this.types[a]=f;return f},create:function(c,b){var a=typeof b=="function"?b:this.types[b||c.name];return new a(c)}});Ext.regModel=function(){return Ext.ModelMgr.registerType.apply(Ext.ModelMgr,arguments)};Ext.data.Operation=Ext.extend(Object,{synchronous:true,action:undefined,filters:undefined,sorters:undefined,group:undefined,start:undefined,limit:undefined,batch:undefined,started:false,running:false,complete:false,success:true,exception:false,error:undefined,constructor:function(a){Ext.apply(this,a||{})},markStarted:function(){this.started=true;this.running=true},markCompleted:function(){this.complete=true;this.running=false},markException:function(a){this.exception=true;this.successful=false;this.error=a},hasException:function(){return this.exception===true},getError:function(){return this.error},getRecords:function(){var a=this.getResultSet();return(a==undefined?[]:a.records)},getResultSet:function(){return this.resultSet},isStarted:function(){return this.started===true},isRunning:function(){return this.running===true},isComplete:function(){return this.complete===true},wasSuccessful:function(){return this.isComplete()&&this.success===true},setBatch:function(a){this.batch=a}});Ext.data.ProxyMgr=new Ext.AbstractManager({});Ext.data.ReaderMgr=new Ext.AbstractManager({typeName:"rtype"});Ext.data.Request=Ext.extend(Object,{action:undefined,params:undefined,method:"GET",url:undefined,constructor:function(a){Ext.apply(this,a||{})}});Ext.data.ResultSet=Ext.extend(Object,{loaded:true,count:0,total:0,success:false,constructor:function(a){Ext.apply(this,a||{});if(a.count==undefined){this.count=this.records.length}}});Ext.data.Store=Ext.extend(Ext.util.Observable,{remoteSort:false,remoteFilter:false,groupField:undefined,groupDir:"ASC",pageSize:25,batchUpdateMode:"operation",filterOnLoad:true,sortOnLoad:true,currentPage:1,constructor:function(a){this.addEvents("datachanged");this.removed=[];this.sortToggle={};this.data=new Ext.util.MixedCollection(false,function(b){return b.id});if(a.data){this.inlineData=a.data;delete a.data}Ext.data.Store.superclass.constructor.apply(this,arguments);if(typeof this.model=="string"){this.model=Ext.ModelMgr.types[this.model]}if(this.proxy&&this.model){this.proxy.setModel(this.model)}if(this.id){this.storeId=this.id;delete this.id;Ext.StoreMgr.register(this)}if(this.inlineData){this.loadData(this.inlineData);delete this.inlineData}else{if(this.autoLoad){this.load.defer(10,this,[typeof this.autoLoad=="object"?this.autoLoad:undefined])}}},getGroups:function(){var d=this.data.items,f=d.length,a=[],c={},b,g,h,e;for(e=0;e<f;e++){b=d[e];g=this.getGroupString(b);h=c[g];if(h==undefined){h={name:g,children:[]};a.push(h);c[g]=h}h.children.push(b)}return a},getGroupString:function(a){return a.get(this.groupField)},insert:function(c,b){b=[].concat(b);for(var d=0,a=b.length;d<a;d++){this.data.insert(c,b[d]);b[d].join(this)}if(this.snapshot){this.snapshot.addAll(b)}this.fireEvent("add",this,b,c)},add:function(){var b=arguments,e=b.length,f=this.data,d=[];for(var c=0;c<e;c++){var a=b[c];if(a instanceof Ext.data.Model){f.add(a)}else{f.add(Ext.ModelMgr.create(a,this.model))}d.push(a)}if(e>0){this.fireEvent("datachanged",this)}return d},create:function(b){b=b||{};Ext.applyIf(b,{action:"create",records:this.getNewRecords()});var a=new Ext.data.Operation(b);return this.proxy.create(a,this.onProxyWrite,this)},remove:function(a){if(Ext.isArray(a)){for(var c=0,d=a.length;c<d;c++){this.remove(a[c])}return}this.removed.push(a);var b=this.data.indexOf(a);if(this.snapshot){this.snapshot.remove(a)}if(b>-1){a.unjoin(this);this.data.removeAt(b);this.fireEvent("remove",this,a,b);this.fireEvent("datachanged",this)}},destroy:function(b){b=b||{};Ext.applyIf(b,{action:"destroy",records:this.getRemovedRecords()});var a=new Ext.data.Operation(b);return this.proxy.destroy(a,this.onProxyWrite,this)},update:function(b){b=b||{};Ext.applyIf(b,{action:"update",records:this.getUpdatedRecords()});var a=new Ext.data.Operation(b);return this.proxy.update(a,this.onProxyWrite,this)},read:function(b){b=b||{};Ext.applyIf(b,{action:"read",filters:this.filters,sorters:this.sorters,group:{field:this.groupField,direction:this.groupDir},start:0,limit:this.pageSize,addRecords:false});var a=new Ext.data.Operation(b);return this.proxy.read(a,this.onProxyRead,this)},onProxyRead:function(b){var a=b.getRecords();this.loadRecords(a,b.addRecords);var c=b.callback;if(typeof c=="function"){c.call(b.scope||this,a,b,b.wasSuccessful())}},onProxyWrite:function(c){var g=this.data,f=c.action,b=c.getRecords(),e=b.length,a,d;if(f=="create"||f=="update"){for(d=0;d<e;d++){a=b[d];a.phantom=false;a.join(this);g.replace(a)}}else{if(f=="destroy"){for(d=0;d<e;d++){a=b[d];a.unjoin(this);g.remove(a)}this.removed=[]}}this.fireEvent("datachanged");var h=c.callback;if(typeof h=="function"){h.call(c.scope||this,b,c,c.wasSuccessful())}},onBatchOperationComplete:function(b,a){},onBatchComplete:function(c,a){var b=c.operations,e=b.length,d;this.suspendEvents();for(d=0;d<e;d++){this.onProxyWrite(b[d])}this.resumeEvents();this.fireEvent("datachanged",this)},onBatchException:function(b,a){},getNewRecords:function(){return this.data.filter("phantom",true).items},getUpdatedRecords:function(){return this.data.filter("dirty",true).items},getRemovedRecords:function(){return this.removed},defaultSortDirection:"ASC",sort:function(h,g,a){h=h||this.sorters;g=(this.sortToggle[name]||this.defaultSortDirection).toggle("ASC","DESC");this.sortToggle[name]=g;if(typeof h=="string"){h=[{field:h,direction:g}]}this.sortInfo={sorters:h,direction:g};if(this.remoteSort){this.read()}else{if(h==undefined||h.length==0){return}var b=[],e=h.length,c;for(c=0;c<e;c++){b.push(this.createSortFunction(h[c].field,h[c].direction))}var f=g.toUpperCase()=="DESC"?-1:1;var d=function(n,m){var k=b[0].call(this,n,m);if(b.length>1){for(var q=1,p=b.length;q<p;q++){k=k||b[q].call(this,n,m)}}return f*k};this.data.sort(g,d);if(!a){this.fireEvent("datachanged",this)}}},createSortFunction:function(d,c){c=c||"ASC";var b=c.toUpperCase()=="DESC"?-1:1;var a=this.model.prototype.fields,e=a.get(d).sortType;return function(g,f){var i=e(g.data[d]),h=e(f.data[d]);return b*(i>h?1:(i<h?-1:0))}},filter:function(b,a){this.filters=b||this.filters;if(this.remoteFilter){this.read()}else{this.snapshot=this.snapshot||this.data;this.data=(this.snapshot||this.data).filter(this.filters);if(!a){this.fireEvent("datachanged",this)}}},clearFilter:function(a){if(this.isFiltered()){this.data=this.snapshot;delete this.snapshot;if(a!==true){this.fireEvent("datachanged",this)}}},isFiltered:function(){return !!this.snapshot&&this.snapshot!=this.data},sync:function(){this.proxy.batch({create:this.getNewRecords(),update:this.getUpdatedRecords(),destroy:this.getRemovedRecords()},this.getBatchListeners())},getBatchListeners:function(){var a={scope:this,exception:this.onBatchException};if(this.batchUpdateMode=="operation"){a.operationComplete=this.onBatchOperationComplete}else{a.complete=this.onBatchComplete}return a},save:function(){return this.sync.apply(this,arguments)},load:function(){return this.read.apply(this,arguments)},loadRecords:function(a,d){if(!d){this.data.clear()}for(var b=0,c=a.length;b<c;b++){a[b].join(this)}this.data.addAll(a);if(this.filterOnLoad){this.filter()}if(this.sortOnLoad){this.sort()}this.fireEvent("datachanged",this)},afterEdit:function(a){this.fireEvent("update",this,a,Ext.data.Model.EDIT)},loadData:function(f,a){var c=this.model;for(var d=0,e=f.length;d<e;d++){var b=f[d];if(!(b instanceof Ext.data.Model)){f[d]=Ext.ModelMgr.create(b,c)}}this.loadRecords(f,a)},loadPage:function(a){this.currentPage=a;this.read({start:(a-1)*this.pageSize,limit:this.pageSize})},nextPage:function(){this.loadPage(this.currentPage+1)},previousPage:function(){this.loadPage(this.currentPage-1)},destroyStore:function(){if(!this.isDestroyed){if(this.storeId){Ext.StoreMgr.unregister(this)}this.clearData();this.data=null;Ext.destroy(this.proxy);this.reader=this.writer=null;this.purgeListeners();this.isDestroyed=true}},clearData:function(){this.data.each(function(a){a.unjoin()});this.data.clear()},find:function(d,c,f,e,a){var b=this.data.createFilterFn(d,c,e,a);return b?this.data.findIndexBy(b,null,f):-1},findExact:function(b,a,c){return this.data.findIndexBy(function(d){return d.get(b)===a},this,c)},findBy:function(b,a,c){return this.data.findIndexBy(b,a,c)},getCount:function(){return this.data.length||0},getAt:function(a){return this.data.itemAt(a)},getRange:function(b,a){return this.data.getRange(b,a)},getById:function(a){return(this.snapshot||this.data).key(a)},indexOf:function(a){return this.data.indexOf(a)},indexOfId:function(a){return this.data.indexOfKey(a)},getSortState:function(){return this.sortInfo}});Ext.StoreMgr=Ext.apply(new Ext.util.MixedCollection(),{register:function(){for(var a=0,b;(b=arguments[a]);a++){this.add(b)}},unregister:function(){for(var a=0,b;(b=arguments[a]);a++){this.remove(this.lookup(b))}},lookup:function(e){if(Ext.isArray(e)){var b=["field1"],d=!Ext.isArray(e[0]);if(!d){for(var c=2,a=e[0].length;c<=a;++c){b.push("field"+c)}}return new Ext.data.ArrayStore({fields:b,data:e,expandData:d,autoDestroy:true,autoCreated:true})}return Ext.isObject(e)?(e.events?e:Ext.create(e,"store")):this.get(e)},getKey:function(a){return a.storeId}});Ext.data.WriterMgr=new Ext.AbstractManager({});Ext.data.Tree=Ext.extend(Ext.util.Observable,{constructor:function(a){this.nodeHash={};this.root=null;if(a){this.setRootNode(a)}this.addEvents("append","remove","move","insert","beforeappend","beforeremove","beforemove","beforeinsert");Ext.data.Tree.superclass.constructor.call(this)},pathSeparator:"/",proxyNodeEvent:function(){return this.fireEvent.apply(this,arguments)},getRootNode:function(){return this.root},setRootNode:function(a){this.root=a;a.ownerTree=this;a.isRoot=true;this.registerNode(a);return a},getNodeById:function(a){return this.nodeHash[a]},registerNode:function(a){this.nodeHash[a.id]=a},unregisterNode:function(a){delete this.nodeHash[a.id]},toString:function(){return"[Tree"+(this.id?" "+this.id:"")+"]"}});Ext.data.Node=Ext.extend(Ext.util.Observable,{constructor:function(a){this.attributes=a||{};this.leaf=this.attributes.leaf;this.id=this.attributes.id;if(!this.id){this.id=Ext.id(null,"xnode-");this.attributes.id=this.id}this.childNodes=[];this.parentNode=null;this.firstChild=null;this.lastChild=null;this.previousSibling=null;this.nextSibling=null;this.addEvents({append:true,remove:true,move:true,insert:true,beforeappend:true,beforeremove:true,beforemove:true,beforeinsert:true});this.listeners=this.attributes.listeners;Ext.data.Node.superclass.constructor.call(this)},fireEvent:function(b){if(Ext.data.Node.superclass.fireEvent.apply(this,arguments)===false){return false}var a=this.getOwnerTree();if(a){if(a.proxyNodeEvent.apply(a,arguments)===false){return false}}return true},isLeaf:function(){return this.leaf===true},setFirstChild:function(a){this.firstChild=a},setLastChild:function(a){this.lastChild=a},isLast:function(){return(!this.parentNode?true:this.parentNode.lastChild==this)},isFirst:function(){return(!this.parentNode?true:this.parentNode.firstChild==this)},hasChildNodes:function(){return !this.isLeaf()&&this.childNodes.length>0},isExpandable:function(){return this.attributes.expandable||this.hasChildNodes()},appendChild:function(e){var f=false;if(Ext.isArray(e)){f=e}else{if(arguments.length>1){f=arguments}}if(f){for(var d=0,a=f.length;d<a;d++){this.appendChild(f[d])}}else{if(this.fireEvent("beforeappend",this.ownerTree,this,e)===false){return false}var b=this.childNodes.length;var c=e.parentNode;if(c){if(e.fireEvent("beforemove",e.getOwnerTree(),e,c,this,b)===false){return false}c.removeChild(e)}b=this.childNodes.length;if(b===0){this.setFirstChild(e)}this.childNodes.push(e);e.parentNode=this;var g=this.childNodes[b-1];if(g){e.previousSibling=g;g.nextSibling=e}else{e.previousSibling=null}e.nextSibling=null;this.setLastChild(e);e.setOwnerTree(this.getOwnerTree());this.fireEvent("append",this.ownerTree,this,e,b);if(c){e.fireEvent("move",this.ownerTree,e,c,this,b)}return e}},removeChild:function(c,b){var a=this.childNodes.indexOf(c);if(a==-1){return false}if(this.fireEvent("beforeremove",this.ownerTree,this,c)===false){return false}this.childNodes.splice(a,1);if(c.previousSibling){c.previousSibling.nextSibling=c.nextSibling}if(c.nextSibling){c.nextSibling.previousSibling=c.previousSibling}if(this.firstChild==c){this.setFirstChild(c.nextSibling)}if(this.lastChild==c){this.setLastChild(c.previousSibling)}this.fireEvent("remove",this.ownerTree,this,c);if(b){c.destroy(true)}else{c.clear()}return c},clear:function(a){this.setOwnerTree(null,a);this.parentNode=this.previousSibling=this.nextSibling=null;if(a){this.firstChild=this.lastChild=null}},destroy:function(a){if(a===true){this.purgeListeners();this.clear(true);Ext.each(this.childNodes,function(b){b.destroy(true)});this.childNodes=null}else{this.remove(true)}},insertBefore:function(d,a){if(!a){return this.appendChild(d)}if(d==a){return false}if(this.fireEvent("beforeinsert",this.ownerTree,this,d,a)===false){return false}var b=this.childNodes.indexOf(a);var c=d.parentNode;var e=b;if(c==this&&this.childNodes.indexOf(d)<b){e--}if(c){if(d.fireEvent("beforemove",d.getOwnerTree(),d,c,this,b,a)===false){return false}c.removeChild(d)}if(e===0){this.setFirstChild(d)}this.childNodes.splice(e,0,d);d.parentNode=this;var f=this.childNodes[e-1];if(f){d.previousSibling=f;f.nextSibling=d}else{d.previousSibling=null}d.nextSibling=a;a.previousSibling=d;d.setOwnerTree(this.getOwnerTree());this.fireEvent("insert",this.ownerTree,this,d,a);if(c){d.fireEvent("move",this.ownerTree,d,c,this,e,a)}return d},remove:function(a){if(this.parentNode){this.parentNode.removeChild(this,a)}return this},removeAll:function(a){var c=this.childNodes,b;while((b=c[0])){this.removeChild(b,a)}return this},item:function(a){return this.childNodes[a]},replaceChild:function(a,c){var b=c?c.nextSibling:null;this.removeChild(c);this.insertBefore(a,b);return c},indexOf:function(a){return this.childNodes.indexOf(a)},getOwnerTree:function(){if(!this.ownerTree){var a=this;while(a){if(a.ownerTree){this.ownerTree=a.ownerTree;break}a=a.parentNode}}return this.ownerTree},getDepth:function(){var b=0;var a=this;while(a.parentNode){++b;a=a.parentNode}return b},setOwnerTree:function(a,b){if(a!=this.ownerTree){if(this.ownerTree){this.ownerTree.unregisterNode(this)}this.ownerTree=a;if(b!==true){Ext.each(this.childNodes,function(c){c.setOwnerTree(a)})}if(a){a.registerNode(this)}}},setId:function(b){if(b!==this.id){var a=this.ownerTree;if(a){a.unregisterNode(this)}this.id=this.attributes.id=b;if(a){a.registerNode(this)}this.onIdChange(b)}},onIdChange:Ext.emptyFn,getPath:function(c){c=c||"id";var e=this.parentNode;var a=[this.attributes[c]];while(e){a.unshift(e.attributes[c]);e=e.parentNode}var d=this.getOwnerTree().pathSeparator;return d+a.join(d)},bubble:function(c,b,a){var d=this;while(d){if(c.apply(b||d,a||[d])===false){break}d=d.parentNode}},cascade:function(f,e,b){if(f.apply(e||this,b||[this])!==false){var d=this.childNodes;for(var c=0,a=d.length;c<a;c++){d[c].cascade(f,e,b)}}},eachChild:function(f,e,b){var d=this.childNodes;for(var c=0,a=d.length;c<a;c++){if(f.apply(e||this,b||[d[c]])===false){break}}},findChild:function(b,c,a){return this.findChildBy(function(){return this.attributes[b]==c},null,a)},findChildBy:function(g,f,b){var e=this.childNodes,a=e.length,d=0,h,c;for(;d<a;d++){h=e[d];if(g.call(f||h,h)===true){return h}else{if(b){c=h.findChildBy(g,f,b);if(c!=null){return c}}}}return null},sort:function(e,d){var c=this.childNodes;var a=c.length;if(a>0){var f=d?function(){e.apply(d,arguments)}:e;c.sort(f);for(var b=0;b<a;b++){var g=c[b];g.previousSibling=c[b-1];g.nextSibling=c[b+1];if(b===0){this.setFirstChild(g)}if(b==a-1){this.setLastChild(g)}}}},contains:function(a){return a.isAncestor(this)},isAncestor:function(a){var b=this.parentNode;while(b){if(b==a){return true}b=b.parentNode}return false},toString:function(){return"[Node"+(this.id?" "+this.id:"")+"]"}});Ext.data.Proxy=Ext.extend(Ext.util.Observable,{batchOrder:"create,update,destroy",constructor:function(a){Ext.data.Proxy.superclass.constructor.call(this,a);Ext.apply(this,a||{})},setModel:function(a){if(typeof a=="string"){a=Ext.ModelMgr.types[a]}this.model=a},create:Ext.emptyFn,read:Ext.emptyFn,update:Ext.emptyFn,destroy:Ext.emptyFn,batch:function(b,c){var a=new Ext.data.Batch({proxy:this,listeners:c||{}});Ext.each(this.batchOrder.split(","),function(d){a.add(new Ext.data.Operation({action:d,records:b[d]}))},this);a.start();return a}});Ext.data.DataProxy=Ext.data.Proxy;Ext.data.ServerProxy=Ext.extend(Ext.data.Proxy,{noCache:true,cacheString:"_dc",defaultReaderType:"json",defaultWriterType:"json",constructor:function(a){Ext.data.ServerProxy.superclass.constructor.call(this,a);this.extraParams=a.extraParams||{};this.nocache=this.noCache},create:function(){return this.doRequest.apply(this,arguments)},read:function(){return this.doRequest.apply(this,arguments)},update:function(){return this.doRequest.apply(this,arguments)},destroy:function(){return this.doRequest.apply(this,arguments)},buildRequest:function(a){var c=Ext.applyIf(a.params||{},this.extraParams||{});var b=new Ext.data.Request({params:c,action:a.action,records:a.records,operation:a});b.url=this.buildUrl(b);a.request=b;return b},buildUrl:function(b){var a=b.url||this.url;if(this.noCache){a=Ext.urlAppend(a,String.format("{0}={1}",this.cacheString,(new Date().getTime())))}return a},doRequest:function(a,c,b){throw new Error("The doRequest function has not been implemented on your Ext.data.ServerProxy subclass. See src/data/ServerProxy.js for details")},afterRequest:Ext.emptyFn,getReader:function(){var a=this.reader;if(a==undefined||!(a instanceof Ext.data.Reader)){if(typeof a=="string"){a={type:a}}Ext.applyIf(a,{model:this.model});this.reader=Ext.data.ReaderMgr.create(a||{},this.defaultReaderType)}return this.reader},getWriter:function(){var a=this.writer;if(a==undefined||!(a instanceof Ext.data.Writer)){if(typeof a=="string"){a={type:a}}Ext.applyIf(a,{model:this.model});this.writer=Ext.data.WriterMgr.create(a||{},this.defaultWriterType)}return this.writer},onDestroy:function(){Ext.destroy(this.reader,this.writer);Ext.data.ServerProxy.superclass.destroy.apply(this,arguments)}});Ext.data.AjaxProxy=Ext.extend(Ext.data.ServerProxy,{actionMethods:{create:"POST",read:"GET",update:"POST",destroy:"POST"},doRequest:function(a,e,b){var d=this.getWriter(),c=d.write(this.buildRequest(a,e,b));Ext.apply(c,{scope:this,callback:this.createRequestCallback(c,a,e,b),method:this.getMethod(c)});Ext.Ajax.request(c);return c},getMethod:function(a){return this.actionMethods[a.action]},createRequestCallback:function(d,a,e,b){var c=this;return function(i,j,h){if(j===true){var g=c.getReader(),f=g.read(h);Ext.apply(a,{response:h,resultSet:f});a.markCompleted()}else{this.fireEvent("exception",this,"response",a);a.markException()}if(typeof e=="function"){e.call(b||c,a)}c.afterRequest(d,true)}}});Ext.data.ProxyMgr.registerType("ajax",Ext.data.AjaxProxy);Ext.data.HttpProxy=Ext.data.AjaxProxy;Ext.data.RestProxy=Ext.extend(Ext.data.HttpProxy,{actionMethods:{create:"POST",read:"GET",update:"PUT",destroy:"DELETE"},api:{create:"create",read:"read",update:"update",destroy:"destroy"}});Ext.data.ProxyMgr.registerType("rest",Ext.data.RestProxy);Ext.apply(Ext,{getHead:function(){var a;return function(){if(a==undefined){a=Ext.get(document.getElementsByTagName("head")[0])}return a}}()});Ext.data.ScriptTagProxy=Ext.extend(Ext.data.ServerProxy,{defaultWriterType:"base",timeout:30000,callbackParam:"callback",scriptIdPrefix:"stcScript",callbackPrefix:"stcCallback",recordParam:"records",lastRequest:undefined,doRequest:function(f,j,k){var i=String.format,a=++Ext.data.ScriptTagProxy.TRANS_ID,c=i("{0}{1}",this.scriptIdPrefix,a),d=i("{0}{1}",this.callbackPrefix,a);var e=this.getWriter(),g=e.write(this.buildRequest(f)),b=Ext.urlAppend(g.url,i("{0}={1}",this.callbackParam,d));Ext.apply(g,{url:b,transId:a,scriptId:c,stCallback:d});g.timeoutId=this.createTimeoutHandler.defer(this.timeout,this,[g]);window[d]=this.createRequestCallback(g,f,j,k);var h=document.createElement("script");h.setAttribute("src",b);h.setAttribute("type","text/javascript");h.setAttribute("id",c);Ext.getHead().appendChild(h);f.markStarted();this.lastRequest=g;return g},createRequestCallback:function(d,a,e,b){var c=this;return function(h){var g=c.getReader(),f=g.read(h);Ext.apply(a,{response:h,resultSet:f});a.markCompleted();if(typeof e=="function"){e.call(b||c,a)}c.afterRequest(d,true)}},afterRequest:function(){var a=function(b){return function(){window[b]=undefined;try{delete window[b]}catch(c){}}};return function(c,b){Ext.get(c.scriptId).remove();clearTimeout(c.timeoutId);var d=c.stCallback;if(b){a(d)();this.lastRequest.completed=true}else{window[d]=a(d)}}}(),buildUrl:function(c){var b=Ext.data.ScriptTagProxy.superclass.buildUrl.call(this,c);b=Ext.urlAppend(b,Ext.urlEncode(c.params));var a=c.records;if(Ext.isArray(a)&&a.length>0){b=Ext.urlAppend(b,String.format("{0}={1}",this.recordParam,this.encodeRecords(a)))}return b},destroy:function(){this.abort();Ext.data.ScriptTagProxy.superclass.destroy.apply(this,arguments)},isLoading:function(){var a=this.lastRequest;return(a!=undefined&&!a.completed)},abort:function(){if(this.isLoading()){this.afterRequest(this.lastRequest)}},encodeRecords:function(a){var d="";for(var b=0,c=a.length;b<c;b++){d+=Ext.urlEncode(a[b].data)}return d},createTimeoutHandler:function(a){this.afterRequest(a,false);this.fireEvent("exception",this,"response",a.action,{response:null,options:a.options});if(typeof a.callback=="function"){a.callback.call(a.scope||window,null,a.options,false)}}});Ext.data.ScriptTagProxy.TRANS_ID=1000;Ext.data.ClientProxy=Ext.extend(Ext.data.Proxy,{clear:function(){throw new Error("The Ext.data.ClientProxy subclass that you are using has not defined a 'clear' function. See src/data/ClientProxy.js for details.")}});Ext.data.MemoryProxy=Ext.extend(Ext.data.ClientProxy,{constructor:function(a){Ext.data.MemoryProxy.superclass.constructor.call(this,a);this.data={}}});Ext.data.WebStorageProxy=Ext.extend(Ext.data.ClientProxy,{id:undefined,constructor:function(a){Ext.data.WebStorageProxy.superclass.constructor.call(this,a);if(this.getStorageObject()==undefined){throw new Error("Local Storage is not supported in this browser, please use another type of data proxy")}this.id=this.id||(this.store?this.store.storeId:undefined);if(this.id==undefined){throw new Error("No unique id was provided to the local storage proxy. See Ext.data.LocalStorageProxy documentation for details")}this.initialize()},create:function(e,h,j){var d=e.records,c=d.length,a=this.getIds(),f,g;for(f=0;f<c;f++){g=d[f];if(g.phantom){g.phantom=false;var b=this.getNextId();this.setRecord(g,b);a.push(b)}}this.setIds(a);if(typeof h=="function"){h.call(j||this,e)}},read:function(e,h,j){var d=[],a=this.getIds(),c=a.length,f,b,g;for(f=0;f<c;f++){d.push(this.getRecord(a[f]))}e.resultSet=new Ext.data.ResultSet({records:d,total:d.length,loaded:true});if(typeof h=="function"){h.call(j||this,e)}},update:function(b,f,d){var a=b.records,e=a.length,c;for(c=0;c<e;c++){this.setRecord(a[c])}if(typeof f=="function"){f.call(d||this,b)}},destroy:function(b,h,e){var a=b.records,f=a.length,d=this.getIds(),g=[].concat(d),c;for(c=0;c<f;c++){g.remove(d[c]);this.removeRecord(d[c],false)}this.setIds(g);if(typeof h=="function"){h.call(e||this,b)}},getRecord:function(c){var a=Ext.decode(this.getStorageObject().getItem(this.getRecordKey(c))),e={},h=this.model,j=h.prototype.fields.items,d=j.length,f,k,b;for(f=0;f<d;f++){k=j[f];b=k.name;if(typeof k.decode=="function"){e[b]=k.decode(a[b])}else{e[b]=a[b]}}var g=new h(e);g.phantom=false;return g},setRecord:function(j,c){if(c){j.setId(c)}else{c=j.getId()}var a=j.data,f={},h=this.model,k=h.prototype.fields.items,d=k.length,g,m,b;for(g=0;g<d;g++){m=k[g];b=m.name;if(typeof m.encode=="function"){f[b]=m.encode(a[b],j)}else{f[b]=a[b]}}var e=this.getStorageObject(),n=this.getRecordKey(c);e.removeItem(n);e.setItem(n,Ext.encode(f))},removeRecord:function(c,b){if(c instanceof Ext.data.Model){c=c.getId()}if(b!==false){var a=this.getIds();a.remove(c);this.setIds(a)}this.getStorageObject().removeItem(this.getRecordKey(c))},getRecordKey:function(a){if(a instanceof Ext.data.Model){a=a.getId()}return String.format("{0}-{1}",this.id,a)},getRecordCounterKey:function(){return String.format("{0}-counter",this.id)},getIds:function(){var a=(this.getStorageObject().getItem(this.id)||"").split(",");if(a.length==1&&a[0]==""){a=[]}return a},setIds:function(a){var b=this.getStorageObject(),c=a.join(",");if(Ext.isEmpty(c)){b.removeItem(this.id)}else{b.setItem(this.id,c)}},getNextId:function(){var c=this.getStorageObject(),a=this.getRecordCounterKey(),b=+c[a],d=b?b+1:1;c.setItem(a,d);return parseInt(d,10)},initialize:function(){var a=this.getStorageObject();a.setItem(this.id,a.getItem(this.id)||"")},clear:function(){var d=this.getStorageObject(),c=this.getIds(),a=c.length,b;for(b=0;b<a;b++){this.removeRecord(c[b])}d.removeItem(this.getRecordCounterKey());d.removeItem(this.id)},getStorageObject:function(){throw new Error("The getStorageObject function has not been defined in your Ext.data.WebStorageProxy subclass")}});Ext.data.LocalStorageProxy=Ext.extend(Ext.data.WebStorageProxy,{getStorageObject:function(){return localStorage}});Ext.data.SessionStorageProxy=Ext.extend(Ext.data.WebStorageProxy,{getStorageObject:function(){return sessionStorage}});Ext.data.Reader=Ext.extend(Object,{idProperty:"id",totalProperty:"total",successProperty:"success",root:"",constructor:function(a){Ext.apply(this,a||{});this.buildExtractors()},read:function(a){var b=a;if(a.responseText){b=this.getResponseData(a)}return this.readRecords(b)},readRecords:function(e){this.rawData=e;var e=this.getData(e),a=this.getRoot(e),c=a.length,f=true;if(this.totalProperty){var d=parseInt(this.getTotal(e),10);if(!isNaN(d)){c=d}}if(this.successProperty){var d=this.getSuccess(e);if(d===false||d==="false"){f=false}}var b=this.extractData(a,true);return new Ext.data.ResultSet({total:c||b.length,count:b.length,records:b,success:f})},extractData:function(j,a){var k=[],e=[],h=this.model,c=j.length,m=this.idProperty;for(var f=0;f<c;f++){var d=j[f],k=this.extractValues(d),b=this.getId(d);if(a===true){var g=new h(k,b);g.raw=d;e.push(g)}else{k[idProperty]=b;e.push(k)}}return e},extractValues:function(f){var a=this.model.prototype.fields.items,d=a.length,b={};for(var c=0;c<d;c++){var g=a[c],e=this.extractorFunctions[c](f)||g.defaultValue;b[g.name]=g.convert(e,f)}return b},getData:function(a){return a},getRoot:function(a){return a},getResponseData:function(a){throw new Error("getResponseData must be implemented in the Ext.data.Reader subclass")},onMetaChange:function(a){Ext.apply(this,a||{});delete this.extractorFunctions;this.buildExtractors()},buildExtractors:function(){if(this.extractorFunctions){return}var m=this.id||this.idProperty,k=this.totalProperty,f=this.successProperty,j=this.messageProperty;if(k){this.getTotal=this.createAccessor(k)}if(f){this.getSuccess=this.createAccessor(f)}if(j){this.getMessage=this.createAccessor(j)}if(m){var d=this.createAccessor(m);this.getId=function(i){var n=d(i);return(n==undefined||n=="")?null:n}}else{this.getId=function(){return null}}var e=this.model.prototype.fields.items,g=[];for(var c=0,b=e.length;c<b;c++){var h=e[c],a=(h.mapping!==undefined&&h.mapping!==null)?h.mapping:h.name;g.push(this.createAccessor(a))}this.extractorFunctions=g}});Ext.data.Writer=Ext.extend(Object,{constructor:function(a){Ext.apply(this,a)},write:function(a){return a}});Ext.data.WriterMgr.registerType("base",Ext.data.Writer);Ext.data.JsonWriter=Ext.extend(Ext.data.Writer,{root:"records",write:function(a){return this.writeRecords(a)},writeRecords:function(e){var b=e.operation,g=b.action,a=b.records||[],f=[];for(var c=0,d=a.length;c<d;c++){f.push(a[c].data)}if(this.encode===true){f=Ext.encode(f)}e.jsonData=e.jsonData||{};e.jsonData[this.root]=f;return e}});Ext.data.WriterMgr.registerType("json",Ext.data.JsonWriter);Ext.data.JsonReader=Ext.extend(Ext.data.Reader,{readRecords:function(a){if(a.metaData){this.onMetaChange(a.metaData)}this.jsonData=a;return Ext.data.JsonReader.superclass.readRecords.call(this,a)},getResponseData:function(a){var b=Ext.decode(a.responseText);if(!b){throw {message:"Ext.data.JsonReader.read: Json object not found"}}return b},buildExtractors:function(){Ext.data.JsonReader.superclass.buildExtractors.apply(this,arguments);if(this.root){this.getRoot=this.createAccessor(this.root)}else{this.getRoot=function(a){return a}}},createAccessor:function(){var a=/[\[\.]/;return function(c){if(Ext.isEmpty(c)){return Ext.emptyFn}if(Ext.isFunction(c)){return c}var b=String(c).search(a);if(b>=0){return new Function("obj","return obj"+(b>0?".":"")+c)}return function(d){return d[c]}}}()});Ext.data.ReaderMgr.registerType("json",Ext.data.JsonReader);Ext.data.ArrayReader=Ext.extend(Ext.data.JsonReader,{buildExtractors:function(){Ext.data.ArrayReader.superclass.buildExtractors.apply(this,arguments);var a=this.model.prototype.fields.items,c=a.length,d=[],b;for(b=0;b<c;b++){d.push(function(e){return function(f){return f[e]}}(a[b].mapping||b))}this.extractorFunctions=d}});Ext.data.ReaderMgr.registerType("array",Ext.data.ArrayReader);Ext.data.ArrayStore=Ext.extend(Ext.data.Store,{constructor:function(a){Ext.data.ArrayStore.superclass.constructor.call(this,Ext.apply(a,{reader:new Ext.data.ArrayReader(a)}))},loadData:function(e,b){if(this.expandData===true){var d=[];for(var c=0,a=e.length;c<a;c++){d[d.length]=[e[c]]}e=d}Ext.data.ArrayStore.superclass.loadData.call(this,e,b)}});Ext.reg("arraystore",Ext.data.ArrayStore);Ext.data.SimpleStore=Ext.data.ArrayStore;Ext.reg("simplestore",Ext.data.SimpleStore);Ext.data.JsonStore=Ext.extend(Ext.data.Store,{constructor:function(a){Ext.data.JsonStore.superclass.constructor.call(this,Ext.apply(a,{reader:new Ext.data.JsonReader(a)}))}});Ext.reg("jsonstore",Ext.data.JsonStore);Ext.data.JsonPStore=Ext.extend(Ext.data.Store,{constructor:function(a){Ext.data.JsonPStore.superclass.constructor.call(this,Ext.apply(a,{reader:new Ext.data.JsonReader(a),proxy:new Ext.data.ScriptTagProxy(a)}))}});Ext.reg("jsonpstore",Ext.data.JsonPStore);Ext.data.XmlReader=Ext.extend(Ext.data.Reader,{createAccessor:function(){var a=Ext.DomQuery;return function(b){var d=this.meta,c;if(b==d.totalProperty){c=function(e,f){return a.selectNumber(b,e,f)}}else{if(b==d.successProperty){c=function(e,g){var f=a.selectValue(b,e,true);return(f!==false&&f!=="false")}}else{c=function(e,f){return a.selectValue(b,e,f)}}}return c}}(),getData:function(a){return a.documentElement||a},getRoot:function(b){var c=this.meta,a=Ext.isEmpty(c.record)?c.root:c.record;return Ext.DomQuery.select(a,b)},constructor:function(a){a=a||{};Ext.applyIf(a,{idProperty:a.idPath||a.id,successProperty:a.success});Ext.data.XmlReader.superclass.constructor.call(this,a)},readRecords:function(a){this.xmlData=a;return Ext.data.XmlReader.superclass.readRecords.call(this,a)}});Ext.data.ReaderMgr.registerType("xml",Ext.data.XmlReader);Ext.data.XmlStore=Ext.extend(Ext.data.Store,{constructor:function(a){Ext.data.XmlStore.superclass.constructor.call(this,Ext.apply(a,{reader:new Ext.data.XmlReader(a)}))}});Ext.reg("xmlstore",Ext.data.XmlStore);Ext.Component=Ext.extend(Ext.util.Observable,{disabled:false,hidden:false,renderTpl:new Ext.XTemplate('<div <tpl if="id">id="{id}" </tpl>class="{baseCls} {cls} {cmpCls}<tpl if="ui"> {uiBase}-{ui}</tpl>"<tpl if="style"> style="{style}"</tpl></div>',{compiled:true}),disabledClass:"x-item-disabled",styleHtmlContent:false,allowDomMove:true,autoShow:false,rendered:false,tplWriteMode:"overwrite",bubbleEvents:[],isComponent:true,autoRender:true,actionMode:"el",baseCls:"x-component",monPropRe:/^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/,domEventsRe:/^(?:tap|doubletap|pinch|unpich|swipe|swipeleft|swiperight|scroll|scrollstart|scrollend|touchstart|touchmove|touchend|taphold|tapstart|tapcancel)$/i,floatingCls:"x-floating",modal:false,floating:false,centered:false,hideOnMaskTap:true,showAnimation:null,constructor:function(b){b=b||{};this.initialConfig=b;Ext.apply(this,b);this.addEvents("beforeactivate","activate","beforedeactivate","deactivate","added","disable","enable","beforeshow","show","beforehide","hide","removed","beforerender","render","afterrender","beforedestroy","destroy","resize","move","beforeorientationchange","orientationchange");this.getId();Ext.ComponentMgr.register(this);Ext.Component.superclass.constructor.call(this);this.mons=[];this.renderData=this.renderData||{};this.renderSelectors=this.renderSelectors||{};this.initComponent();if(this.plugins){if(Ext.isArray(this.plugins)){for(var c=0,a=this.plugins.length;c<a;c++){this.plugins[c]=this.initPlugin(this.plugins[c])}}else{this.plugins=this.initPlugin(this.plugins)}}if(this.renderTo){this.render(this.renderTo);delete this.renderTo}if(this.fullscreen||this.floating){this.monitorOrientation=true}if(this.fullscreen){this.width=window.innerWidth;this.height=window.innerHeight;this.cls=(this.cls||"")+" x-fullscreen";this.render(document.body)}},initComponent:function(){this.enableBubble(this.bubbleEvents)},initPlugin:function(a){if(a.ptype&&typeof a.init!="function"){a=Ext.PluginMgr.create(a)}else{if(typeof a=="string"){a=Ext.PluginMgr.create({ptype:a})}}a.init(this);return a},initLayout:function(a,c){var b={};if(!a){a=c}if(Ext.isObject(a)&&!a.layout){b=a;a=b.type}if(typeof a=="string"){a=new Ext.layout.TYPES[a.toLowerCase()](b)}return a},render:function(b,a){var c=[];if(!this.rendered&&this.fireEvent("beforerender",this)!==false){if(!b&&this.el){this.el=Ext.get(this.el);b=this.el.dom.parentNode;this.allowDomMove=false}this.container=Ext.get(b);if(this.ctCls){this.container.addClass(this.ctCls)}this.rendered=true;if(a!==undefined){if(Ext.isNumber(a)){a=this.container.dom.childNodes[a]}else{a=Ext.getDom(a)}}this.onRender(this.container,a||null);if(this.autoShow){this.el.show()}delete this.style;delete this.cls;if(this.floating){this.setFloating(true)}if(this.draggable){this.setDraggable(true)}this.fireEvent("render",this);if(this.scroll){this.setScrollable(this.scroll)}var e=this.getContentTarget();if(this.html){e.update(Ext.DomHelper.markup(this.html));delete this.html}if(this.contentEl){var d=Ext.getDom(this.contentEl);Ext.fly(d).show();e.appendChild(d)}if(this.tpl){if(!this.tpl.compile){this.tpl=new Ext.XTemplate(this.tpl)}if(this.data){this.tpl[this.tplWriteMode](e,this.data);delete this.data}}this.afterRender(this.container);if(this.styleHtmlContent){e.addClass("x-htmlcontent")}if(this.hidden){this.onHide()}if(this.disabled){this.disable(true)}this.fireEvent("afterrender",this)}return this},onRender:function(b,a){var c=this.el,d=this.renderTpl;if(!c){if(d){Ext.applyIf(this.renderData,{id:this.id,baseCls:this.baseCls,cls:this.cls,cmpCls:this.cmpCls,uiBase:this.cmpCls?this.cmpCls:this.baseCls,ui:this.ui,style:this.style});if(typeof a=="number"){a=b.dom.childNodes[a]||null}if(a){c=d.insertBefore(a,this.renderData,true)}else{c=d.append(b,this.renderData,true)}}}else{c=Ext.get(c);if(this.allowDomMove!==false){b.dom.insertBefore(c.dom,a)}}Ext.apply(this,this.applyRefs(c.dom));this.el=c},applyRefs:function(c){var d,b=this.renderSelectors||{},a={};for(d in b){a[d]=Ext.get(Ext.DomQuery.selectNode(b[d],c))}return a},afterRender:function(){this.componentLayout=this.initLayout(this.componentLayout,"component");this.setComponentLayout(this.componentLayout);if(!this.ownerCt){this.setSize(this.width,this.height)}if(this.x||this.y){this.setPosition(this.x,this.y)}if(this.minWidth){this.el.setStyle("min-width",this.minWidth+"px")}if(this.maxWidth){this.el.setStyle("max-width",this.maxWidth+"px")}if(this.minHeight){this.el.setStyle("min-height",this.minHeight+"px")}if(this.maxHeight){this.el.setStyle("max-height",this.maxHeight+"px")}if(this.relayDomEvents){this.relayEvents(this.el,this.relayDomEvents)}if(this.monitorOrientation){if(this.fullscreen){this.setOrientation(Ext.Element.getOrientation())}Ext.EventManager.onOrientationChange(this.setOrientation,this)}this.initEvents()},setOrientation:function(b,a,c){if(b!=this.orientation){if(this.fireEvent("beforeorientationchange",this,b,a,c)!==false){if(this.fullscreen){this.setSize(a,c)}if(this.floating&&this.centered){this.setCentered(true,true)}if(this.orientation){this.el.removeClass("x-"+this.orientation)}this.el.addClass("x-"+b);this.orientation=b;this.onOrientationChange(b,a,c);this.fireEvent("orientationchange",this,b,a,c)}}},onOrientationChange:function(b,a,c){Ext.repaint.defer(50)},addListener:function(a){if(!Ext.isObject(a)&&this.domEventsRe.test(a)){if(this.rendered){this.relayEvents(this.el,a)}else{this.relayDomEvents=this.relayDomEvents||[];this.relayDomEvents.push(a)}return null}return Ext.Component.superclass.addListener.apply(this,arguments)},setScrollable:function(c){if(c!==false){var e=Ext.isObject(c)?c.direction:c,d=e==="both",a=d||e==="horizontal",b=d||e===true||e==="vertical";c=Ext.apply({},Ext.isObject(c)?c:{},{jumpTo:this.jumpTo,momentum:true,horizontal:a,vertical:b});this.scrollEl=this.getContentTarget().createChild();this.originalGetContentTarget=this.getContentTarget;this.getContentTarget=function(){return this.scrollEl};this.scroller=new Ext.util.Scroller(this.scrollEl,c)}else{this.getContentTarget=this.originalGetContentTarget;this.scroller.destroy()}},setFloating:function(b,a){this.floating=b;if(this.rendered){if(b!==false){this.el.addClass(this.floatingCls);if(a){this.show()}}else{this.el.removeClass(this.floatingCls);Ext.getDoc().un("touchstart",this.onFloatingTouchStart,this)}}},setDraggable:function(a,b){this.draggable=a;if(this.rendered){if(a!==false){this.draggable=new Ext.util.Draggable(this.el,Ext.apply({},this.dragConfig||{}));this.relayEvents(this.draggable,["dragstart","drag","dragend"])}}},initEvents:function(){if(this.monitorResize===true){Ext.EventManager.onWindowResize(this.setSize,this)}},setComponentLayout:function(a){if(this.componentLayout&&this.componentLayout!=a){this.componentLayout.setOwner(null)}this.componentLayout=a;a.setOwner(this)},doComponentLayout:function(a,b){if(this.rendered&&this.componentLayout){this.componentLayout.layout(a,b)}},afterComponentLayout:function(){if(this.scrollEl){if(this.scroller.horizontal){this.scrollEl.setStyle("min-width",(this.body||this.el).getWidth(true)+"px");this.scrollEl.setHeight((this.body||this.el).getHeight(true)||null)}else{this.scrollEl.setStyle("min-height",(this.body||this.el).getHeight(true)+"px");this.scrollEl.setWidth((this.body||this.el).getWidth(true)||null)}}},setPosition:function(a,e){if(Ext.isObject(a)){e=a.y;a=a.x}if(!this.rendered){return this}var b=this.adjustPosition(a,e),c=this.getPositionEl(),d;a=b.x;e=b.y;if(a!==d||e!==d){if(e!==d&&a!==d){c.setBox(a,e)}else{if(a!==d){c.setLeft(a)}else{if(e!==d){c.setTop(e)}}}this.onPosition(a,e);this.fireEvent("move",this,a,e)}return this},onPosition:Ext.emptyFn,setSize:function(a,b){if(Ext.isObject(a)){b=a.height;a=a.width}a=a!==undefined?a:this.width;b=b!==undefined?b:this.height;if(a!==undefined){a=a.constrain(this.boxMinWidth,this.boxMaxWidth)}if(b!==undefined){b=b.constrain(this.boxMinHeight,this.boxMaxHeight)}if(!this.rendered){this.width=a;this.height=b;return this}if(this.cacheSizes!==false&&this.lastSize&&this.lastSize.width==a&&this.lastSize.height==b){return this}this.lastSize={width:a,height:b};var c=this.adjustSize(a,b);a=c.width;b=c.height;if(a!==undefined||b!==undefined){this.doComponentLayout(a,b);this.onResize(a,b);this.fireEvent("resize",this,a,b)}return this},setWidth:function(a){return this.setSize(a)},setHeight:function(a){return this.setSize(undefined,a)},getSize:function(){return this.getResizeEl().getSize()},getWidth:function(){return this.getResizeEl().getWidth()},getHeight:function(){return this.getResizeEl().getHeight()},getOuterSize:function(){var a=this.getResizeEl();return{width:a.getOuterWidth(),height:a.getOuterHeight()}},getTargetBox:function(){return this.el.getBox(true,true)},getResizeEl:function(){return this.el},onResize:Ext.emptyFn,adjustSize:function(a,b){if(this.autoWidth){a="auto"}if(this.autoHeight){b="auto"}return{width:a,height:b}},adjustPosition:function(a,b){return{x:a,y:b}},getId:function(){return this.id||(this.id="ext-comp-"+(++Ext.Component.AUTO_ID))},getItemId:function(){return this.itemId||this.getId()},getEl:function(){return this.el},getActionEl:function(){return this[this.actionMode]},getBubbleTarget:function(){return this.ownerCt},getContentTarget:function(){return this.el},addClass:function(a){if(this.el){this.el.addClass(a)}else{this.cls=this.cls?this.cls+" "+a:a}return this},removeClass:function(a){if(this.el){this.el.removeClass(a)}else{if(this.cls){this.cls=this.cls.split(" ").remove(a).join(" ")}}return this},enable:function(a){if(this.rendered){this.onEnable()}this.disabled=false;if(a!==true){this.fireEvent("enable",this)}return this},disable:function(a){if(this.rendered){this.onDisable()}this.disabled=true;if(a!==true){this.fireEvent("disable",this)}return this},onEnable:function(){this.getActionEl().removeClass(this.disabledClass);this.el.dom.disabled=false},onDisable:function(){this.getActionEl().addClass(this.disabledClass);this.el.dom.disabled=true},setDisabled:function(a){return this[a?"disable":"enable"]()},show:function(a){if(this.fireEvent("beforeshow",this)!==false){if(this.anchorEl){this.anchorEl.hide()}this.hidden=false;if(!this.rendered&&this.autoRender){this.render(Ext.isBoolean(this.autoRender)?Ext.getBody():this.autoRender)}if(this.rendered){this.onShow(a)}this.fireEvent("show",this)}return this},showBy:function(b,d,e){e=e||[0,20];if(!this.floating){return this}if(b.isComponent){b=b.el}else{b=Ext.get(b)}var h=b.getPageBox();this.x=h.left+e[0];this.y=h.bottom+e[1];this.show(d);if(!this.anchorEl){this.anchorEl=this.el.createChild({cls:"x-anchor"})}this.anchorEl.show();var g=Ext.Element.getViewSize(),c=this.el.getPageBox(),a,f;if(c.right>g.width){a=h.right-e[0]-c.width;this.anchorEl.removeClass("x-anchor-left").addClass("x-anchor-right")}else{this.anchorEl.removeClass("x-anchor-right").addClass("x-anchor-left")}if(c.bottom>g.height){f=h.top-e[1]-c.height;this.anchorEl.removeClass("x-anchor-top").addClass("x-anchor-bottom")}else{this.anchorEl.removeClass("x-anchor-bottom").addClass("x-anchor-top")}if(a!=undefined||f!=undefined){this.setPosition(a!=undefined?a:this.x,f!=undefined?f:this.y)}return this},setCentered:function(b,d){this.centered=b;if(this.rendered&&d){var a,c;if(!this.ownerCt){a=(Ext.Element.getViewportWidth()/2)-(this.getWidth()/2);c=(Ext.Element.getViewportHeight()/2)-(this.getHeight()/2)}else{a=(this.ownerCt.getContentTarget().getWidth()/2)-(this.getWidth()/2);c=(this.ownerCt.getContentTarget().getHeight()/2)-(this.getHeight()/2)}this.setPosition(a,c)}return this},hide:function(a){if(this.fireEvent("beforehide",this)!==false){this.hidden=true;if(this.rendered){this.onHide(a)}this.fireEvent("hide",this)}return this},onShow:function(a){a=a||this.showAnimation;if(this.floating){this.el.appendTo(document.body);this.getVisibilityEl().show();if(a){this.el.setStyle("opacity",0.01)}if(this.centered){this.setCentered(true,true)}else{this.setPosition(this.x,this.y)}if(a){Ext.anims[a].run(this.el,{out:false});this.showAnimation=a}delete this.lastSize;this.doComponentLayout(this.width,this.height);if(this.modal){if(this.ownerCt){this.ownerCt.el.mask()}else{Ext.getBody().mask()}}if(this.hideOnMaskTap){Ext.getDoc().on("touchstart",this.onFloatingTouchStart,this)}}else{this.getVisibilityEl().show()}},onFloatingTouchStart:function(c,a){var b=Ext.getDoc();if(!this.el.contains(a)){b.on("touchend",function(d){this.hide();d.stopEvent()},this,{single:true});c.stopEvent()}},onHide:function(a){a=a||this.showAnimation;if(this.hideOnMaskTap&&this.floating){Ext.getDoc().un("touchstart",this.onFloatingTouchStart,this)}if(this.floating&&this.modal){if(this.ownerCt){this.ownerCt.el.unmask()}else{Ext.getBody().unmask()}}if(a){Ext.anims[a].run(this.el,{out:true,after:function(){this.getVisibilityEl().hide()},scope:this})}else{this.getVisibilityEl().hide()}},mon:function(f,b,d,c,a){if(Ext.isObject(b)){var h=b,g;for(g in h){if(this.monPropRe.test(g)){continue}this.mons.push({item:f,ename:g,fn:h[g],scope:h.scope});if(typeof h[g]=="function"){f.on(g,h[g],h.scope,h)}else{f.on(g,h[g])}}return}this.mons.push({item:f,ename:b,fn:d,scope:c});f.on(b,d,c,a)},mun:function(j,b,h,k){if(Ext.isObject(b)){for(var f in b){if(this.monPropRe.test(f)){continue}if(typeof b[f]=="function"){this.mun(j,f,b[f],b.scope)}else{this.mun(j,f,b[f].fn,b[f].scope)}}return}var c=this.mons.slice(),g=c.length,d,a;for(d=0;d<g;d++){a=c[d];if(a.item===j&&a.ename===b&&(!h||a.fn===h)&&(!k||a.scope===k)){this.mons.remove(a);j.un(a.ename,a.fn,a.scope)}}},purgeListeners:function(){Ext.Component.superclass.purgeListeners.call(this);this.clearMons()},clearMons:function(){var b=this.mons,d=b.length,a,c;for(a=0;a<d;a++){c=b[a];c.item.un(c.ename,c.fn,c.scope)}this.mons=[]},beforeDestroy:function(){this.clearMons();if(this.monitorResize){Ext.EventManager.removeResizeListener(this.doComponentLayout,this)}},destroy:function(){if(!this.isDestroyed){if(this.fireEvent("beforedestroy",this)!==false){this.destroying=true;this.beforeDestroy();if(this.ownerCt&&this.ownerCt.remove){this.ownerCt.remove(this,false)}if(this.rendered){this.el.remove();if(this.actionMode=="container"||this.removeMode=="container"){this.container.remove()}}this.onDestroy();Ext.ComponentMgr.unregister(this);this.fireEvent("destroy",this);this.purgeListeners();this.destroying=false;this.isDestroyed=true}}},onDestroy:Ext.emptyFn,update:function(b,d,a){var c=this.getContentTarget();if(this.tpl&&typeof b!=="string"){this.data=b;this.tpl[this.tplWriteMode](c,b||{})}else{var e=Ext.isObject(b)?Ext.DomHelper.markup(b):b;if(this.rendered){c.update(e,d,a)}else{this.html=e}}this.doComponentLayout();Ext.repaint()},onAdded:function(a,b){this.ownerCt=a;this.fireEvent("added",this,a,b)},onRemoved:function(){this.fireEvent("removed",this,this.ownerCt);delete this.ownerCt},setVisible:function(a){return this[a?"show":"hide"]()},isVisible:function(){if(!this.rendered){return false}var b=this,a=false;while(b){if(b.hidden){a=true;break}b=b.ownerCt}return a},getPositionEl:function(){return this.positionEl||this.el},getVisibilityEl:function(){return this.el}});Ext.layout.TYPES={};Ext.Component.AUTO_ID=1000;Ext.BoxComponent=Ext.Component;Ext.reg("component",Ext.Component);Ext.reg("box",Ext.BoxComponent);Ext.Component.prototype.on=Ext.Component.prototype.addListener;Ext.Button=Ext.extend(Ext.Component,{hidden:false,disabled:false,pressEvent:"tap",baseCls:"x-button",pressedCls:"x-button-pressed",badgeCls:"x-badge",hasBadgeCls:"x-hasbadge",ui:"normal",isButton:true,pressedDelay:0,afterRender:function(c,a){this.mon(this.el,this.pressEvent,this.onPress,this);this.mon(this.el,"tapstart",this.onTapStart,this);this.mon(this.el,"tapcancel",this.onTapCancel,this);Ext.Button.superclass.afterRender.call(this,c,a);var f=this.text,d=this.icon,b=this.iconCls,e=this.badgeText;this.text=this.icon=this.iconCls=this.badgeText=null;this.setText(f);this.setIcon(d);this.setIconClass(b);this.setBadge(e)},onTapStart:function(){if(!this.disabled){var a=this;if(a.pressedDelay){a.pressedTimeout=setTimeout(function(){a.el.addClass(a.pressedCls)},Ext.isNumber(a.pressedDelay)?a.pressedDelay:100)}else{a.el.addClass(a.pressedCls)}}},onTapCancel:function(){if(this.pressedTimeout){clearTimeout(this.pressedTimeout);delete this.pressedTimeout}this.el.removeClass(this.pressedCls)},setHandler:function(b,a){this.handler=b;this.scope=a;return this},setText:function(a){if(this.rendered){if(!this.textEl&&a){this.textEl=this.el.createChild({tag:"span",html:a})}else{if(this.textEl&&a!=this.text){if(a){this.textEl.setHTML(a)}else{this.textEl.remove();this.textEl=null}}}}this.text=a;return this},setIcon:function(a){if(this.rendered){if(!this.iconEl&&a){this.iconEl=this.el.createChild({tag:"img",src:Ext.BLANK_IMAGE_URL,style:"background-image: "+(a?"url("+a+")":"")})}else{if(this.iconEl&&a!=this.icon){if(a){this.iconEl.setStyle("background-image",a?"url("+a+")":"")}else{this.iconEl.remove();this.iconEl=null}}}}this.icon=a;return this},setIconClass:function(a){if(this.rendered){if(!this.iconEl&&a){this.iconEl=this.el.createChild({tag:"img",src:Ext.BLANK_IMAGE_URL,cls:a})}else{if(this.iconEl&&a!=this.iconCls){if(a){if(this.iconCls){this.iconEl.removeClass(this.iconCls)}this.iconEl.addClass(a)}else{this.iconEl.remove();this.iconEl=null}}}}this.iconCls=a;return this},setBadge:function(a){if(this.rendered){if(!this.badgeEl&&a){this.badgeEl=this.el.createChild({tag:"span",cls:this.badgeCls,html:a});this.el.addClass(this.hasBadgeCls)}else{if(this.badgeEl&&a!=this.badgeText){if(a){this.badgeEl.setHTML(a);this.el.addClass(this.hasBadgeCls)}else{this.badgeEl.remove();this.badgeEl=null;this.el.removeClass(this.hasBadgeCls)}}}}this.badgeText=a;return this},getText:function(){return this.text},getBadgeText:function(){return this.badgeText},onDisable:function(){this.onDisableChange(true)},onEnable:function(){this.onDisableChange(false)},onDisableChange:function(a){if(this.el){this.el[a?"addClass":"removeClass"](this.disabledClass);this.el.dom.disabled=a}this.disabled=a},onPress:function(a){if(!this.disabled){this.onTapCancel();if(this.handler){this.handler.call(this.scope||this,this,a)}}}});Ext.reg("button",Ext.Button);Ext.Container=Ext.extend(Ext.Component,{autoDestroy:true,defaultType:"panel",isContainer:true,baseCls:"x-container",initComponent:function(){Ext.Container.superclass.initComponent.call(this);this.addEvents("afterlayout","beforeadd","beforeremove","add","remove");this.initItems()},initItems:function(){var a=this.items;this.items=new Ext.util.MixedCollection(false,this.getComponentId);if(a){this.add(a)}},setLayout:function(a){if(this.layout&&this.layout!=a){this.layout.setOwner(null)}this.layout=a;a.setOwner(this)},prepareItems:function(a,c){if(!Ext.isArray(a)){a=[a]}var e,b,d;for(b=0,d=a.length;b<d;b++){e=a[b];if(c){e=this.applyDefaults(e)}a[b]=this.lookupComponent(e)}return a},applyDefaults:function(b){var a=this.defaults;if(a){if(Ext.isFunction(a)){a=a.call(this,b)}if(typeof b=="string"){b=Ext.ComponentMgr.get(b);Ext.apply(b,a)}else{if(!b.events){Ext.applyIf(b,a)}else{Ext.apply(b,a)}}}return b},lookupComponent:function(a){if(typeof a=="string"){return Ext.ComponentMgr.get(a)}else{if(!a.events){return this.createComponent(a)}}return a},createComponent:function(a,d){if(a.render){return a}var b=Ext.create(Ext.apply({ownerCt:this},a),d||this.defaultType);delete b.initialConfig.ownerCt;delete b.ownerCt;return b},afterRender:function(){this.layout=this.initLayout(this.layout,"auto");this.setLayout(this.layout);Ext.Container.superclass.afterRender.call(this)},doLayout:function(){if(this.rendered&&this.layout){this.layout.layout()}},afterLayout:function(a){if(this.floating&&this.centered){this.setCentered(true,true)}this.fireEvent("afterlayout",this,a)},getLayoutTarget:function(){return this.el},getComponentId:function(a){return a.getItemId()},add:function(){var f=Array.prototype.slice.call(arguments),d=-1;if(typeof f[0]=="number"){d=f.shift()}var a=f.length>1;if(a||Ext.isArray(f[0])){var g=a?f:f[0],b=[],c,e,j;for(c=0,e=g.length;c<e;c++){j=g[c];if(d!=-1){j=this.add(d+c,j)}else{j=this.add(j)}b.push(j)}return b}var h=this.prepareItems(f[0],true)[0];d=(d!==-1)?d:this.items.length;if(this.fireEvent("beforeadd",this,h,d)!==false&&this.onBeforeAdd(h)!==false){this.items.insert(d,h);h.onAdded(this,d);this.onAdd(h);this.fireEvent("add",this,h,d)}return h},onAdd:Ext.emptyFn,onRemove:Ext.emptyFn,insert:function(b,a){this.add(b,a)},onBeforeAdd:function(a){if(a.ownerCt){a.ownerCt.remove(a,false)}if(this.hideBorders===true){a.border=(a.border===true)}},remove:function(a,b){var d=this.getComponent(a);if(d&&this.fireEvent("beforeremove",this,d)!==false){this.doRemove(d,b);this.fireEvent("remove",this,d)}return d},doRemove:function(c,b){var d=this.layout,a=d&&this.rendered;if(a){d.onRemove(c)}this.items.remove(c);c.onRemoved();this.onRemove(c);if(b===true||(b!==false&&this.autoDestroy)){c.destroy()}if(a){d.afterRemove(c)}},removeAll:function(b){var f,d=this.items.items.slice(),a=[],e=d.length,c;for(c=0;c<e;c++){f=d[c];this.remove(f,b);if(f.ownerCt!==this){a.push(f)}}return a},getComponent:function(a){if(Ext.isObject(a)){a=a.getItemId()}return this.items.get(a)},onShow:function(){Ext.Container.superclass.onShow.apply(this,arguments);if(Ext.isDefined(this.deferLayout)){delete this.deferLayout;this.doLayout(true)}},getLayout:function(){if(!this.layout){var a=new Ext.layout.AutoLayout(this.layoutConfig);this.setLayout(a)}return this.layout},setScrollable:function(a){Ext.Container.superclass.setScrollable.call(this,a);if(a!==false){this.originalGetLayoutTarget=this.getLayoutTarget;this.getLayoutTarget=function(){return this.scrollEl}}else{this.getLayoutTarget=this.originalGetLayoutTarget}},beforeDestroy:function(){var a;if(this.items){a=this.items.first();while(a){this.doRemove(a,true);a=this.items.first()}}Ext.destroy(this.layout);Ext.Container.superclass.beforeDestroy.call(this)},getActiveItem:function(){if(this.layout&&this.layout.type==="card"){return this.layout.activeItem}else{return null}}});Ext.Container.LAYOUTS=Ext.layout.TYPES;Ext.reg("container",Ext.Container);Ext.SplitButton=Ext.extend(Ext.Container,{defaultType:"button",cmpCls:"x-splitbutton",activeCls:"x-button-active",allowMultiple:false,initComponent:function(){this.layout={type:"hbox",align:"stretch"};Ext.SplitButton.superclass.initComponent.call(this)},afterRender:function(){Ext.SplitButton.superclass.afterRender.call(this);this.mon(this.el,{tap:this.onTap,scope:this})},afterLayout:function(a){Ext.SplitButton.superclass.afterLayout.call(this,a);if(!this.initialized){this.items.each(function(b){if(b.active){this.setActive(b)}},this);this.initialized=true}},onTap:function(b,a){a=b.getTarget(".x-button");if(a&&!this.disabled){this.setActive(Ext.getCmp(a.id))}},getActive:function(){return this.allowMultiple?this.activeButtons:this.activeButton},setActive:function(a){if(Ext.isNumber(a)){a=this.items.get(a)}else{if(Ext.isString(a)){a=Ext.getCmp(a)}else{if(!a.isButton){a=null}}}if(this.allowMultiple){this.activeButtons=this.activeButtons||[];if(a){if(!this.activeButtons.indexOf(a)){this.activeButtons.push(a)}a.el.addClass(this.activeCls)}}else{this.activeButton=a;if(this.activeButton){a.el.radioClass(this.activeCls)}}},disable:function(){this.items.each(function(a){a.disable()},this);Ext.SplitButton.superclass.disable.apply(this,arguments)},enable:function(){this.items.each(function(a){a.enable()},this);Ext.SplitButton.superclass.enable.apply(this,arguments)}});Ext.reg("splitbutton",Ext.SplitButton);Ext.Panel=Ext.extend(Ext.Container,{baseCls:"x-panel",padding:undefined,scroll:false,fullscreen:false,isPanel:true,componentLayout:"dock",renderTpl:new Ext.XTemplate('<div <tpl if="id">id="{id}"</tpl> class="{baseCls} {cls} {cmpCls}<tpl if="ui"> {uiBase}-{ui}</tpl>"><div class="{baseCls}-body"<tpl if="bodyStyle"> style="{bodyStyle}"</tpl></div></div>',{compiled:true}),monitorOrientation:false,initComponent:function(){Ext.Panel.superclass.initComponent.call(this);this.addEvents("bodyresize","activate","deactivate")},initItems:function(){Ext.Panel.superclass.initItems.call(this);var a=this.dockedItems;this.dockedItems=new Ext.util.MixedCollection(false,this.getComponentId);if(a){this.addDocked(a)}},onRender:function(c,b){var a=[],d;if(this.padding!=d){a.push("padding: "+Ext.Element.parseBox((this.padding===true)?5:this.padding))}if(this.margin!=d){a.push("margin: "+Ext.Element.parseBox((this.margin===true)?1:this.margin))}if(this.border!=d){a.push("border-width: "+Ext.Element.parseBox((this.border===true)?1:this.border))}Ext.applyIf(this.renderData,{bodyStyle:a.length?a.join(";"):d});Ext.applyIf(this.renderSelectors,{body:":first-child"});Ext.Panel.superclass.onRender.call(this,c,b)},addDocked:function(a,e){a=this.prepareItems(a);var d,b,c;for(b=0,c=a.length;b<c;b++){d=a[b];if(e!==undefined){this.dockedItems.insert(e+b,d)}else{this.dockedItems.add(d)}d.onAdded(this,b);this.onDockedAdd(d)}if(this.rendered){this.doComponentLayout()}},onDockedAdd:Ext.emptyFn,onDockedRemove:Ext.emptyFn,insertDocked:function(b,a){this.addDocked(a,b)},removeDocked:function(d,b){if(!this.dockedItems.contains(d)){return d}var c=this.componentLayout,a=c&&this.rendered;if(a){c.onRemove(d)}this.dockedItems.remove(d);d.onRemoved();this.onDockedRemove(d);if(b===true||(b!==false&&this.autoDestroy)){d.destroy()}if(a){c.afterRemove(d)}if(this.rendered){this.doComponentLayout()}return d},getDockedItems:function(){if(this.dockedItems&&this.dockedItems.items.length){return this.dockedItems.items.slice()}},getLayoutTarget:function(){return this.body},getContentTarget:function(){return this.body},getTargetSize:function(){ret=this.body.getViewSize();ret.width-=this.body.getPadding("lr");ret.height-=this.body.getPadding("tb");return ret}});Ext.reg("panel",Ext.Panel);Ext.DataPanel=Ext.extend(Ext.Panel,{blockRefresh:false,initComponent:function(){if(Ext.isString(this.tpl)||Ext.isArray(this.tpl)){this.tpl=new Ext.XTemplate(this.tpl)}this.store=Ext.StoreMgr.lookup(this.store);this.all=new Ext.CompositeElementLite();Ext.DataPanel.superclass.initComponent.call(this)},afterRender:function(){Ext.DataPanel.superclass.afterRender.call(this);if(this.store){this.bindStore(this.store,true)}},getStore:function(){return this.store},refresh:function(){if(!this.rendered){return}var b=this.getTemplateTarget(),a=this.store.getRange();if(a.length<1){this.all.clear()}else{this.tpl.overwrite(b,this.collectData(a,0));this.all.fill(Ext.query(this.itemSelector,b.dom));this.updateIndexes(0)}},getTemplateTarget:function(){return this.scrollEl||this.body},prepareData:function(a){return a},collectData:function(a,e){var c=[],b,d=a.length;for(b=0;b<d;b++){c[c.length]=this.prepareData(a[b].data,e+b,a[b])}return c},bindStore:function(a,b){if(!this.rendered){this.store=a;return}if(!b&&this.store){if(a!==this.store&&this.store.autoDestroy){this.store.destroyStore()}else{a.un({scope:this,beforeload:this.onBeforeLoad,datachanged:this.onDataChanged,add:this.onAdd,remove:this.onRemove,update:this.onUpdate,clear:this.refresh})}if(!a){this.store=null}}if(a){a=Ext.StoreMgr.lookup(a);a.on({scope:this,beforeload:this.onBeforeLoad,datachanged:this.onDataChanged,add:this.onAdd,remove:this.onRemove,update:this.onUpdate,clear:this.refresh})}this.store=a;if(a){this.refresh()}},onBeforeLoad:Ext.emptyFn,bufferRender:function(a){var b=document.createElement("div");this.tpl.overwrite(b,this.collectData(a));return Ext.query(this.itemSelector,b)},onUpdate:function(f,a){var b=this.store.indexOf(a),e,c,d;if(b>-1){e=this.isSelected(b);c=this.all.elements[b];d=this.bufferRender([a],b)[0];this.all.replaceElement(b,d,true);if(e){this.selected.replaceElement(c,d);this.all.item(b).addClass(this.selectedClass)}this.updateIndexes(b,b)}},onAdd:function(f,d,e){if(this.all.getCount()===0){this.refresh();return}var c=this.bufferRender(d,e),g,b=this.all.elements;if(e<this.all.getCount()){g=this.all.item(e).insertSibling(c,"before",true);b.splice.apply(b,[e,0].concat(c))}else{g=this.all.last().insertSibling(c,"after",true);b.push.apply(b,c)}this.updateIndexes(e)},onRemove:function(c,a,b){this.deselect(b);this.all.removeElement(b,true);this.updateIndexes(b);if(this.store.getCount()===0){this.refresh()}},refreshNode:function(a){this.onUpdate(this.store,this.store.getAt(a))},updateIndexes:function(d,c){var b=this.all.elements;d=d||0;c=c||((c===0)?0:(b.length-1));for(var a=d;a<=c;a++){b[a].viewIndex=a}},onDataChanged:function(){if(this.blockRefresh!==true){this.refresh.apply(this,arguments)}},findItemFromChild:function(a){return Ext.fly(a).findParent(this.itemSelector,this.getTemplateTarget())},getRecords:function(b){var e=[],d=b,a=d.length,c;for(c=0;c<a;c++){e[e.length]=this.store.getAt(d[c].viewIndex)}return e},getRecord:function(a){return this.store.getAt(a.viewIndex)},getNode:function(b){if(Ext.isString(b)){return document.getElementById(b)}else{if(Ext.isNumber(b)){return this.all.elements[b]}else{if(b instanceof Ext.data.Model){var a=this.store.indexOf(b);return this.all.elements[a]}}}return b},getNodes:function(e,a){var d=this.all.elements,b=[],c;e=e||0;a=!Ext.isDefined(a)?Math.max(d.length-1,0):a;if(e<=a){for(c=e;c<=a&&d[c];c++){b.push(d[c])}}else{for(c=e;c>=a&&d[c];c--){b.push(d[c])}}return b},indexOf:function(a){a=this.getNode(a);if(Ext.isNumber(a.viewIndex)){return a.viewIndex}return this.all.indexOf(a)},onDestroy:function(){this.all.clear();Ext.DataPanel.superclass.onDestroy.call(this);this.bindStore(null)}});Ext.reg("datapanel",Ext.DataPanel);Ext.DataView=Ext.extend(Ext.DataPanel,{scroll:"vertical",selectedCls:"x-item-selected",pressedCls:"x-item-pressed",pressedDelay:100,emptyText:"",deferEmptyText:true,last:false,initComponent:function(){Ext.DataView.superclass.initComponent.call(this);this.addEvents("itemtap","containertap","selectionchange","beforeselect");this.selected=new Ext.CompositeElementLite()},afterRender:function(){Ext.DataView.superclass.afterRender.call(this);this.mon(this.getTemplateTarget(),{tap:this.onTap,tapstart:this.onTapStart,tapcancel:this.onTapCancel,doubletap:this.onDoubleTap,scope:this})},refresh:function(){if(!this.rendered){return}var a=this.getTemplateTarget();a.update("");this.clearSelections(false,true);if(this.store.getRange().length<1&&(!this.deferEmptyText||this.hasSkippedEmptyText)){a.update(this.emptyText)}this.hasSkippedEmptyText=true;Ext.DataView.superclass.refresh.call(this)},onTap:function(c){var b=c.getTarget(this.itemSelector,this.getTemplateTarget());if(b){Ext.fly(b).removeClass(this.pressedCls);var a=this.indexOf(b);if(this.onItemTap(b,a,c)!==false){c.stopEvent();this.fireEvent("itemtap",this,a,b,c)}}else{if(this.fireEvent("containertap",this,c)!==false){this.onContainerTap(c)}}},onTapStart:function(d,a){var c=this,b=d.getTarget(c.itemSelector,c.getTemplateTarget());if(b){if(c.pressedDelay){if(c.pressedTimeout){clearTimeout(c.pressedTimeout)}c.pressedTimeout=setTimeout(function(){Ext.fly(b).addClass(c.pressedCls)},Ext.isNumber(c.pressedDelay)?c.pressedDelay:100)}else{Ext.fly(b).addClass(c.pressedCls)}}},onTapCancel:function(d,a){var c=this,b=d.getTarget(c.itemSelector,c.getTemplateTarget());if(c.pressedTimeout){clearTimeout(c.pressedTimeout);delete c.pressedTimeout}if(b){Ext.fly(b).removeClass(c.pressedCls)}},onContainerTap:function(a){this.clearSelections()},onDoubleTap:function(b){var a=b.getTarget(this.itemSelector,this.getTemplateTarget());if(a){this.fireEvent("itemdoubletap",this,this.indexOf(a),a,b)}},onItemTap:function(b,a,c){if(this.pressedTimeout){clearTimeout(this.pressedTimeout);delete this.pressedTimeout}if(this.multiSelect){this.doMultiSelection(b,a,c);c.preventDefault()}else{if(this.singleSelect){this.doSingleSelection(b,a,c);c.preventDefault()}}return true},doSingleSelection:function(b,a,c){if(this.isSelected(a)){this.deselect(a)}else{this.select(a,false)}},doMultiSelection:function(b,a,c){if(this.isSelected(a)){this.deselect(a)}else{this.select(a,true)}},getSelectionCount:function(){return this.selected.getCount()},getSelectedNodes:function(){return this.selected.elements},getSelectedIndexes:function(){var b=[],d=this.selected.elements,a=d.length,c;for(c=0;c<a;c++){b.push(d[c].viewIndex)}return b},getSelectedRecords:function(){var d=[],c=this.selected.elements,a=c.length,b;for(b=0;b<a;b++){d[d.length]=this.store.getAt(c[b].viewIndex)}return d},clearSelections:function(a,b){if((this.multiSelect||this.singleSelect)&&this.selected.getCount()>0){if(!b){this.selected.removeClass(this.selectedCls)}this.selected.clear();this.last=false;if(!a){this.fireEvent("selectionchange",this,this.selected.elements,this.getSelectedRecords())}}},isSelected:function(a){return this.selected.contains(this.getNode(a))},deselect:function(a){if(this.isSelected(a)){a=this.getNode(a);this.selected.removeElement(a);if(this.last==a.viewIndex){this.last=false}Ext.fly(a).removeClass(this.selectedCls);this.fireEvent("selectionchange",this,this.selected.elements,[])}},select:function(d,f,b){if(Ext.isArray(d)){if(!f){this.clearSelections(true)}for(var c=0,a=d.length;c<a;c++){this.select(d[c],true,true)}if(!b){this.fireEvent("selectionchange",this,this.selected.elements,this.getSelectedRecords())}}else{var e=this.getNode(d);if(!f){this.clearSelections(true)}if(e&&!this.isSelected(e)){if(this.fireEvent("beforeselect",this,e,this.selected.elements)!==false){Ext.fly(e).addClass(this.selectedCls);this.selected.add(e);this.last=e.viewIndex;if(!b){this.fireEvent("selectionchange",this,this.selected.elements,this.getSelectedRecords())}}}}},selectRange:function(c,a,b){if(!b){this.clearSelections(true)}this.select(this.getNodes(c,a),true)},onBeforeLoad:function(){if(this.loadingText){this.clearSelections(false,true);this.getTemplateTarget().update('<div class="loading-indicator">'+this.loadingText+"</div>");this.all.clear()}},onDestroy:function(){this.selected.clear();Ext.DataView.superclass.onDestroy.call(this)}});Ext.DataView.prototype.setStore=Ext.DataView.prototype.bindStore;Ext.reg("dataview",Ext.DataView);Ext.List=Ext.extend(Ext.DataView,{cmpCls:"x-list",pinHeaders:true,indexBar:false,grouped:false,groupTpl:new Ext.XTemplate('<tpl for=".">','<div class="x-list-group x-group-{id}">',"<h3>{group}</h3>",'<div class="x-list-group-items">',"{items}","</div>","</div>","</tpl>",{compile:true}),initComponent:function(){if(this.scroll!==false){this.scroll={direction:"vertical",scrollbars:false}}if(Ext.platform.isAndroidOS&&this.initialConfig.pinHeaders===undefined){this.pinHeaders=false}if(this.grouped){this.itemTpl=this.tpl;if(Ext.isString(this.itemTpl)||Ext.isArray(this.itemTpl)){this.itemTpl=new Ext.XTemplate(this.itemTpl)}this.tpl=this.groupTpl}else{this.indexBar=false}if(this.indexBar){var a=Ext.apply({},Ext.isObject(this.indexBar)?this.indexBar:{},{xtype:"indexbar",dock:"right",overlay:true,alphabet:true});this.indexBar=new Ext.IndexBar(a);this.dockedItems=this.dockedItems||[];this.dockedItems.push(this.indexBar)}else{if(this.scroll){this.scroll.scrollbars=true}}Ext.List.superclass.initComponent.call(this);this.on("deactivate",this.onDeactivate,this)},onDeactivate:function(){this.clearSelections()},afterRender:function(){Ext.List.superclass.afterRender.call(this);if(!this.grouped){this.el.addClass("x-list-flat")}this.getTemplateTarget().addClass("x-list-parent")},initEvents:function(){Ext.List.superclass.initEvents.call(this);if(this.pinHeaders&&this.scroll){this.mon(this.scroller,{scrollstart:this.onScrollStart,scroll:this.onScroll,scope:this})}if(this.indexBar){this.mon(this.indexBar,{index:this.onIndex,scope:this})}this.pageBox=this.body.getPageBox()},onScrollStart:function(){this.pageBox=this.body.getPageBox()},onScroll:function(a,g,c){if(!a.animating){var e=this.getActiveGroupNode();if(!e){return}var f=e.down("h3"),b,d;if(this.activeHeader!=f){if(this.activeHeader){this.activeHeader.setStyle("-webkit-transform","translate3d(0px, 0px, 0px)")}d=e.next();this.nextGroupY=d?(d.dom.offsetTop-f.dom.offsetHeight):null;this.activeOffsetY=f.dom.offsetTop;this.activeHeader=f}b=((-1*g.y)-this.activeOffsetY);if(this.nextGroupY&&-1*g.y>=this.nextGroupY){b-=(-1*g.y-this.nextGroupY)}if(b!=0){if(c.animate&&!Ext.platform.isAndroidOS){new Ext.Anim({from:{"-webkit-transform":"translate3d(0px, 0px, 0px)"},to:{"-webkit-transform":"translate3d(0px, "+b+"px, 0px)"},autoClear:false}).run(f)}else{f.setStyle("-webkit-transform","translate3d(0, "+b+"px, 0)")}}}else{if(this.activeHeader){this.activeHeader.setStyle("-webkit-transform",null);a.on("scrollend",this.onScroll,this,{single:true,animate:true})}}},onIndex:function(d,f,e){var j=d.get("key").toLowerCase(),b=this.store.getGroups(),g=b.length,h,c,a;for(c=0;c<g;c++){h=b[c].name.toLowerCase();if(h===j||h>j){a=h;break}else{a=h}}a=this.body.down(".x-group-"+a);if(a){this.scroller.scrollTo({x:0,y:-a.getOffsetsTo(this.scrollEl)[1]},false,null,true)}},getActiveGroupNode:function(){var a=this.pageBox.left+(this.pageBox.width/2),c=this.pageBox.top+0,b=Ext.Element.fromPoint(a,c);return b.findParent(".x-list-group",null,true)},collectData:function(b,g){this.store.sort(null,null,true);if(!this.grouped){return Ext.List.superclass.collectData.call(this,b,g)}var d=[],a=this.store.getGroups(),e=a.length,f,c;for(c=0,e=a.length;c<e;c++){f=a[c];d.push({group:f.name,id:f.name.toLowerCase(),items:this.itemTpl.apply(f.children)})}return d},onUpdate:function(b,a){this.refresh()},onAdd:function(c,a,b){this.refresh()},onRemove:function(c,a,b){this.refresh()}});Ext.reg("list",Ext.List);Ext.IndexBar=Ext.extend(Ext.DataPanel,{cmpCls:"x-indexbar",direction:"vertical",tpl:'<tpl for="."><span class="x-indexbar-item">{value}</span></tpl>',itemSelector:"span.x-indexbar-item",initComponent:function(){this.componentLayout=new Ext.layout.AutoComponentLayout();if(!this.store){this.store=new Ext.data.Store({model:"IndexBarModel"})}if(this.alphabet==true){this.ui=this.ui||"alphabet"}if(this.direction=="horizontal"){this.horizontal=true}else{this.vertical=true}this.addEvents("index");Ext.IndexBar.superclass.initComponent.call(this)},afterRender:function(){Ext.IndexBar.superclass.afterRender.call(this);if(this.alphabet===true){this.loadAlphabet()}if(this.vertical){this.el.addClass(this.cmpCls+"-vertical")}else{if(this.horizontal){this.el.addClass(this.cmpCls+"-horizontal")}}},loadAlphabet:function(){var e="ABCDEFGHIJKLMNOPQRSTUVWXYZ",c=e.length,d=[],a,b;for(a=0;a<c;a++){b=e[a];d.push({key:b.toLowerCase(),value:b})}this.store.loadData(d)},initEvents:function(){Ext.IndexBar.superclass.initEvents.call(this);this.mon(this.body,{touchstart:this.onTouchStart,touchend:this.onTouchEnd,touchmove:this.onTouchMove,scope:this})},onTouchStart:function(b,a){this.el.addClass(this.cmpCls+"-pressed");this.pageBox=this.body.getPageBox();this.onTouchMove(b)},onTouchEnd:function(b,a){this.el.removeClass(this.cmpCls+"-pressed")},onTouchMove:function(d){var c,b=this,a,f=b.pageBox;if(!f){f=b.pageBox=b.body.getPageBox()}if(b.vertical){if(d.pageY>f.bottom||d.pageY<f.top){return}c=Ext.Element.fromPoint(f.left+(f.width/2),d.pageY)}else{if(b.horizontal){if(d.pageX>f.right||d.pageX<f.left){return}c=Ext.Element.fromPoint(d.pageX,f.top+(f.height/2))}}if(c){a=b.getRecord(c.dom);if(a){b.fireEvent("index",a,c,b.indexOf(c))}}}});Ext.reg("indexbar",Ext.IndexBar);Ext.regModel("IndexBarModel",{fields:["key","value"]});Ext.Toolbar=Ext.extend(Ext.Container,{defaultType:"button",baseCls:"x-toolbar",titleCls:"x-toolbar-title",ui:null,layout:null,titleEl:null,initComponent:function(){this.layout=Ext.apply({},this.layout||{},{type:"hbox",align:"center"});Ext.Toolbar.superclass.initComponent.call(this)},afterRender:function(){Ext.Toolbar.superclass.afterRender.call(this);if(this.title){this.titleEl=this.el.createChild({cls:this.titleCls,html:this.title})}},setTitle:function(a){this.title=a;if(this.rendered){if(!this.titleEl){this.titleEl=this.el.createChild({cls:this.titleCls,html:this.title})}this.titleEl.setHTML(a)}},showTitle:function(){if(this.titleEl){this.titleEl.show()}},hideTitle:function(){if(this.titleEl){this.titleEl.hide()}}});Ext.reg("toolbar",Ext.Toolbar);Ext.Spacer=Ext.extend(Ext.Component,{initComponent:function(){if(!this.width){this.flex=1}Ext.Spacer.superclass.initComponent.call(this)},onRender:function(){Ext.Spacer.superclass.onRender.apply(this,arguments);if(this.flex){this.el.setStyle("-webkit-box-flex",this.flex)}}});Ext.reg("spacer",Ext.Spacer);Ext.TabBar=Ext.extend(Ext.Panel,{cmpCls:"x-tabbar",activeTab:null,animation:null,defaultType:"tab",sortable:false,sortHoldThreshold:350,initComponent:function(){this.addEvents("change");this.layout=Ext.apply({},this.layout||{},{type:"hbox",align:"middle"});Ext.TabBar.superclass.initComponent.call(this);var a=this.cardLayout;if(a){this.cardLayout=null;this.setCardLayout(a)}},initEvents:function(){if(this.sortable){this.sortable=new Ext.util.Sortable(this.el,{itemSelector:".x-tab",direction:"horizontal",delay:this.sortHoldThreshold,constrain:true});this.mon(this.sortable,"sortchange",this.onSortChange,this)}this.mon(this.el,{tap:this.onTap,scope:this});Ext.TabBar.superclass.initEvents.call(this)},onTap:function(b,a){a=b.getTarget(".x-tab");if(a){this.onTabTap(Ext.getCmp(a.id))}},onSortChange:function(c,b,a){},onTabTap:function(a){this.activeTab=a;if(this.cardLayout){this.cardLayout.setActiveItem(a.card,this.animation)}this.fireEvent("change",this,a,a.card)},setCardLayout:function(a){if(this.cardLayout){this.mun(this.cardLayout.owner,{add:this.onCardAdd,remove:this.onCardRemove,scope:this})}this.cardLayout=a;if(a){this.mon(a.owner,{add:this.onCardAdd,remove:this.onCardRemove,scope:this})}},onCardAdd:function(a,b){this.add({xtype:"tab",card:b})},onCardRemove:function(a,c){var b=this.items.items,f=b.length,d,e;for(d=0;d<f;d++){e=b[d];if(e.card===c){this.remove(e,true);return}}},getCardLayout:function(){return this.cardLayout}});Ext.reg("tabbar",Ext.TabBar);Ext.Tab=Ext.extend(Ext.Button,{isTab:true,baseCls:"x-tab",pressedCls:"x-tab-pressed",activeCls:"x-tab-active",initComponent:function(){this.addEvents("activate","deactivate");Ext.Tab.superclass.initComponent.call(this);var a=this.card;if(a){this.card=null;this.setCard(a)}},setCard:function(a){if(this.card){this.mun(this.card,{activate:this.activate,deactivate:this.deactivate,scope:this})}this.card=a;if(a){Ext.apply(this,a.tab||{});this.setText(this.title||a.title||this.text);this.setIconClass(this.iconCls||a.iconCls);this.setBadge(this.badgeText||a.badgeText);this.mon(a,{beforeactivate:this.activate,beforedeactivate:this.deactivate,scope:this})}},getCard:function(){return this.card},activate:function(){this.el.addClass(this.activeCls);this.fireEvent("activate",this)},deactivate:function(){this.el.removeClass(this.activeCls);this.fireEvent("deactivate",this)}});Ext.reg("tab",Ext.Tab);Ext.TabPanel=Ext.extend(Ext.Panel,{animation:null,tabBarPosition:"top",cmpCls:"x-tabpanel",ui:"dark",initComponent:function(){var a=new Ext.layout.CardLayout();this.layout=null;this.setLayout(a);this.tabBar=new Ext.TabBar(Ext.apply({},this.tabBar||{},{cardLayout:a,animation:this.animation,dock:this.tabBarPosition,ui:this.ui,sortable:this.sortable}));if(this.dockedItems&&!Ext.isArray(this.dockedItems)){this.dockedItems=[this.dockedItems]}else{if(!this.dockedItems){this.dockedItems=[]}}this.dockedItems.push(this.tabBar);Ext.TabPanel.superclass.initComponent.call(this)},getTabBar:function(){return this.tabBar}});Ext.reg("tabpanel",Ext.TabPanel);Ext.Carousel=Ext.extend(Ext.Container,{baseCls:"x-carousel",indicator:true,ui:null,initComponent:function(){this.layout=new Ext.layout.ContainerLayout();this.scroll={bounces:false,momentum:false,horizontal:true,vertical:false};this.addEvents("cardswitch");if(this.indicator){var a=Ext.isObject(this.indicator)?this.indicator:{};this.indicator=new Ext.Carousel.Indicator(Ext.apply({},a,{carousel:this,ui:this.ui}))}Ext.Carousel.superclass.initComponent.call(this)},afterRender:function(){Ext.Carousel.superclass.afterRender.call(this);this.scroller.on({touchend:this.onTouchEnd,scrollend:this.onScrollEnd,scope:this})},afterLayout:function(h){var g=this,c=this.el.getSize(),a=this.items.items,f=a.length,d=0,b,e;for(b=0;b<f;b++){e=a[b];e.show();e.setSize(c);d+=c.width}if(this.activeItem){var e=this.activeItem;delete this.activeItem;this.setActiveItem(e,true)}else{this.setActiveItem(this.items.items[0])}Ext.repaint()},setActiveItem:function(d,b,a){if(typeof d=="number"||d==undefined){d=this.items.items[d||0]}else{if(d&&!d.isComponent){d=this.getComponent(d)}}if(d&&this.activeItem!=d){if(this.activeItem){this.activeItem.fireEvent("deactivate",this.activeItem,d)}d.fireEvent("activate",d,this.activeItem);var c=this.items.items.indexOf(d);this.activeItem=d;this.activeItemX=c*this.el.getWidth()*-1;if(b&&this.activeItemX!=this.scroller.offset.x){this.scroller.scrollTo({x:this.activeItemX,y:0},a?"ease-out":false)}this.fireEvent("cardswitch",this,d,c)}},next:function(c,f,b){var a=this.items.items,d=a.indexOf(this.activeItem),e=a[d+1]||(f?a[0]:false);if(e){this.setActiveItem(e,c,b)}},previous:function(c,e,b){var a=this.items.items,d=a.indexOf(this.activeItem),f=a[d-1]||(e?a[a.length-1]:false);if(f){this.setActiveItem(f,c,b)}},getActiveItem:function(){return this.activeItem},onTouchEnd:function(i,a){var d=this.activeItemX,b=a.offset.x-d,g=this.layout,f=this.el.getWidth(),c=d,h=2;if(b<0&&Math.abs(b)>3&&i.previousDeltaX<=0){c-=f}else{if(b>0&&Math.abs(b)>3&&i.previousDeltaX>=0){c+=f}}a.scrollTo({x:c,y:0},Math.min(h*Math.abs(a.offset.x-c),350),"ease-out")},onScrollEnd:function(a){var c=this.activeItemX,b=a.offset.x-c,d=this.el.getWidth();if(b<0&&Math.abs(b)>d/2){this.next()}else{if(b>0&&Math.abs(b)>d/2){this.previous()}}}});Ext.reg("carousel",Ext.Carousel);Ext.Carousel.Indicator=Ext.extend(Ext.Component,{baseCls:"x-carousel-indicator",initComponent:function(){if(this.carousel.rendered){this.render(this.carousel.el)}else{this.carousel.on("render",function(){this.render(this.carousel.el)},this,{single:true})}},onRender:function(){Ext.Carousel.Indicator.superclass.onRender.apply(this,arguments);for(var a=0,b=this.carousel.items.length;a<b;a++){this.createIndicator()}this.mon(this.carousel,{cardswitch:this.onCardSwitch,add:this.onCardAdd,remove:this.onCardRemove,scope:this});this.mon(this.el,{tap:this.onTap,scope:this})},onTap:function(d,a){var b=this.el.getPageBox(),c=b.left+(b.width/2);if(d.pageX>c){this.carousel.next(true,false,true)}else{this.carousel.previous(true,false,true)}},createIndicator:function(){this.indicators=this.indicators||[];this.indicators.push(this.el.createChild({tag:"span"}))},onCardSwitch:function(c,b,a){this.indicators[a].radioClass("x-carousel-indicator-active")},onCardAdd:function(){this.createIndicator()},onCardRemove:function(){this.indicators.pop().remove()}});Ext.reg("carouselindicator",Ext.Carousel.Indicator);Ext.Map=Ext.extend(Ext.Component,{baseCls:"x-map",getLocation:false,map:null,geo:null,maskMap:false,initComponent:function(){this.mapOptions=this.mapOptions||{};Ext.Map.superclass.initComponent.call(this);if(this.getLocation){this.geo=new Ext.util.GeoLocation();this.geo.on("update",this.onGeoUpdate,this)}else{this.on({afterrender:this.update,activate:this.onUpdate,scope:this,single:true})}},onGeoUpdate:function(a){if(a){this.mapOptions.center=new google.maps.LatLng(a.latitude,a.longitude)}if(this.rendered){this.update()}else{this.on("activate",this.onUpdate,this,{single:true})}},onUpdate:function(c,b,a){this.update(a.data||null)},update:function(a){var b;if(Ext.platform.isTablet&&Ext.platform.isIPhoneOS){Ext.apply(this.mapOptions,{navigationControlOptions:{style:google.maps.NavigationControlStyle.ZOOM_PAN}})}Ext.applyIf(this.mapOptions,{center:new google.maps.LatLng(37.381592,-122.135672),zoom:10,mapTypeId:google.maps.MapTypeId.ROADMAP});if(!this.hidden&&this.rendered){if(this.maskMap&&!this.mask){this.el.mask();this.mask=true}if(this.map&&this.el&&this.el.dom&&this.el.dom.firstChild){Ext.fly(this.el.dom.firstChild).remove()}this.map=new google.maps.Map(this.el.dom,this.mapOptions)}else{this.on("activate",this.onUpdate,this,{single:true,data:a})}}});Ext.reg("map",Ext.Map);Ext.NestedList=Ext.extend(Ext.Panel,{cmpCls:"x-nested-list",layout:"card",animation:"slide",backButton:null,initComponent:function(){this.backButton=new Ext.Button({text:"Back",ui:"back",handler:this.onBackTap,scope:this,hidden:true});if(!this.toolbar||!this.toolbar.isComponent){this.toolbar=Ext.apply({},this.toolbar||{},{dock:"top",xtype:"toolbar",ui:"light",items:[]});this.toolbar.items.unshift(this.backButton);this.toolbar=new Ext.Toolbar(this.toolbar);this.dockedItems=this.dockedItems||[];this.dockedItems.push(this.toolbar)}else{this.toolbar.insert(0,this.backButton)}var a=this.items;this.items=null;Ext.NestedList.superclass.initComponent.call(this);this.addEvents("listchange");this.listIndex=0;this.setList(a,true);this.on({beforeactivate:this.onBeforeActivate,beforedeactivate:this.onBeforeDeactivate,scope:this})},setList:function(c,d){var a=d?c:c.items;if(!c.isList){c=new Ext.Container({isList:true,baseCls:"x-list",cls:"x-list-flat",defaults:{xtype:"button",baseCls:"x-list-item",pressedCls:"x-item-pressed",ui:null,pressedDelay:true},listeners:{afterrender:function(){this.getContentTarget().addClass("x-list-parent")}},scroll:"vertical",items:a,text:c.text})}this.lists=this.lists||[];if(!this.lists.contains(c)){this.lists.push(this.add(c))}var b=(this.lists.indexOf(c)<this.lists.indexOf(this.activeItem));if(this.rendered){this.setCard(c,d?false:{type:this.animation,reverse:b})}this.activeItem=c},afterRender:function(){Ext.NestedList.superclass.afterRender.call(this);this.mon(this.body,{tap:this.onTap,scope:this})},onTap:function(b,a){a=b.getTarget(".x-list-item");if(a){this.onItemTap(Ext.getCmp(a.id))}},onItemTap:function(a){a.el.radioClass("x-item-selected");if(a.items){this.backButton.show();this.setList(a);this.listIndex++}this.fireEvent("listchange",this,a)},onBackTap:function(){this.listIndex--;var b=this.lists[this.listIndex];if(this.listIndex===0){this.backButton.hide()}this.activeItem.on("deactivate",function(c){this.lists.remove(c);c.destroy()},this,{single:true});this.setList(b);var a=this;setTimeout(function(){b.el.select(".x-item-selected").removeClass("x-item-selected")},500);this.fireEvent("listchange",this,b)},onBeforeDeactivate:function(){this.backButton.hide();this.toolbar.doLayout();this.initialActivate=true},onBeforeActivate:function(){if(this.initialActivate&&this.listIndex!==0){this.backButton.show();this.toolbar.doLayout()}var a=this;setTimeout(function(){a.activeItem.el.select(".x-item-selected").removeClass("x-item-selected")},500)}});Ext.reg("nestedlist",Ext.NestedList);Ext.regModel("KeyValueModel",{fields:[{name:"key",type:"string"},{name:"value",type:"auto"}]});Ext.Picker=Ext.extend(Ext.Panel,{cmpCls:"x-picker",centered:true,displayField:"key",valueField:"value",useTitles:true,activeCls:"x-picker-active-item",rowHeight:false,align:"left",pickerItemCls:"li.x-picker-item",chosenCls:"x-picker-chosen-item",model:"KeyValueModel",initComponent:function(){var a=[],b,e,c,d;this.layout={type:"hbox",align:"stretch"};for(b=0,d=this.slots.length;b<d;b++){e=this.slots[b];c={xtype:"dataview",itemSelector:this.pickerItemCls,isSlot:true,flex:1,listeners:{itemtap:this.onItemTap,scope:this},scroll:{direction:"vertical",scrollbars:false,snapping:true,deceleration:0.006,friction:0.2,index:b,listeners:{scrollend:this.onScrollEnd,scope:this}},tpl:'<ul class="x-picker-{align}"><tpl for="."><li class="x-picker-item {cls} <tpl if="extra">x-picker-invalid</tpl>">{'+this.displayField+"}</li></tpl></ul>",store:new Ext.data.Store({model:this.model,data:e.items})};if(this.useTitles){c.dockedItems=[{xtype:"toolbar",dock:"top",title:e.title||e.text}]}a.push(c)}this.items=a;this.activeEls=[];this.lastEls=[];Ext.Picker.superclass.initComponent.call(this);this.addEvents("pick")},getSelectedEls:function(){var d,g,a,c=[],b=0,f=this.slots.length,h=this.pickerItemCls+":not(.x-picker-invalid)";for(;b<f;b++){d=this.activeEls[b];g=d.getXY();g[0]+=(d.getWidth()/2);g[1]+=(d.getHeight()/2);d.hide();a=document.elementFromPoint(g[0],g[1]);if(a.innerText===""){var e=Ext.fly(a).next(h)||Ext.fly(a).prev(h);if(e){a=e.dom;this.scrollToNode(this.items.itemAt(b),a)}}c.push(a);d.show()}this.lastEls=c;return c},getValue:function(){var f={},c=this.getSelectedEls(),b,a,e,d;for(b=0,d=c.length;b<d;b++){if(Ext.DomQuery.is(c[b],this.pickerItemCls)){a=this.slots[b].name||Ext.id();e=this.items.itemAt(b).getRecord(c[b]);f[a]=e.get(this.valueField)}}return f},scrollToNode:function(b,e,a){var d=Ext.fly(e).getOffsetsTo(b.body),c=this.items.indexOf(b);if(a!==false){a=true}b.scroller.scrollTo({x:0,y:(-d[1]+this.activeEls[c].getTop())},a?200:false)},onItemTap:function(b,a,c){this.scrollToNode(b,c)},afterLayout:function(){Ext.Picker.superclass.afterLayout.apply(this,arguments);if(this.initialized){return}if(!this.rowHeight){var p=this.el.down(this.pickerItemCls);var b=p.getHeight();this.rowHeight=b;this.items.each(function(i){if(i.scroller){i.scroller.snapY=b}})}var a,s,n,u,c,t,r,f,e,g=this.slots.length,q,k,m,h=this.items.itemAt(0).body;a=h.getHeight();s=Math.ceil(a/this.rowHeight);n=Math.max((Math.floor(s/2))-1,1);u=(a/this.rowHeight)-n-1;c=Math.floor(u)+0.5>u;t=c?0:-1;r=Math.floor(a/this.rowHeight);for(f=0;f<g;f++){q=this.slots[f];var d=this.items.itemAt(f).store;k=q.items;for(e=0;e<r;e++){if(e<n){d.insert(0,Ext.ModelMgr.create({key:"",value:"",extra:true},this.model))}else{if(e>(n+t)){d.add(Ext.ModelMgr.create({key:"",value:"",extra:true},this.model))}}}m=Ext.DomHelper.append(this.items.itemAt(f).body,{cls:"x-picker-chosen"},true);m.setTop((n)*this.rowHeight+h.getTop());m.setWidth(h.getWidth());this.activeEls[f]=m}if(this.value!==undefined){this.setValue(this.value,false)}else{this.onScrollEnd()}this.initialized=true},setValue:function(e,c){var f=0,g=this.slots.length,b,h=this.items,j;for(;f<g;f++){j=this.value[this.slots[f].name];if(j){b=h.itemAt(f);var k=b.store.find(this.valueField,j),a=b.store.getAt(k),d=b.getNode(a);this.scrollToNode(b,d,c)}}},onScrollEnd:function(h){if(h){var j=h.index,c=this.items.itemAt(j),d=this.lastEls[j],g=d?c.getRecord(d):undefined,b=g?g.get(this.valueField):undefined,e=this.getSelectedEls(),a=c.getRecord(e[j]);if(d){Ext.fly(d).removeClass(this.chosenCls)}Ext.fly(e[j]).addClass(this.chosenCls);this.fireEvent("pick",this,this.slots[j].name,a.get(this.valueField),b,a)}else{var f=0,e=this.getSelectedEls(),k=e.length;for(;f<k;f++){Ext.fly(e[f]).addClass(this.chosenCls)}}}});Ext.reg("picker",Ext.Picker);Date.monthNames=["January","February","March","April","May","June","July","August","September","October","November","December"];Ext.DatePicker=Ext.extend(Ext.Picker,{yearFrom:1980,yearTo:new Date().getFullYear(),initComponent:function(){var b=this.yearFrom;var d=this.yearTo;var g=[];if(b>d){var f=b;b=d;d=f}for(var e=b;e<=d;e++){g.push({key:e,value:e})}var c;if(this.value){c=this.getDaysInMonth(this.value.month,this.value.year)}else{c=this.getDaysInMonth(0,new Date().getFullYear())}var h=[];for(e=0;e<c;e++){h.push({key:e+1,value:e+1})}var a=[];for(e=0,ln=Date.monthNames.length;e<ln;e++){a.push({key:Date.monthNames[e],value:e})}this.slots=[{text:"Month",name:"month",align:"left",items:a},{text:"Day",name:"day",align:"center",items:h},{text:"Year",name:"year",align:"right",items:g}];Ext.DatePicker.superclass.initComponent.call(this);this.on("pick",this.onPick,this)},getValue:function(){var d=Ext.DatePicker.superclass.getValue.call(this),c,b=this.getDaysInMonth(d.month,d.year);if(d.day!==""){c=Math.min(d.day,b)}else{c=b;var e=this.items.itemAt(1),a=e.store.find(this.valueField,b),f=e.store.getAt(a),g=e.getNode(f);this.scrollToNode(e,g)}return new Date(d.year,d.month,c)},onPick:function(e,d,g,f){if(d==="month"||d==="year"){var h=this.items.itemAt(1);var b=h.store;var c=this.getValue();var a=this.getDaysInMonth(c.getMonth(),c.getFullYear());b.filter([{fn:function(i){return i.get("extra")===true||i.get("value")<=a}}]);this.onScrollEnd(h.scroller)}},getDaysInMonth:function(c,b){var a=[31,28,31,30,31,30,31,31,30,31,30,31];return c==1&&this.isLeapYear(b)?29:a[c]},isLeapYear:function(a){return !!((a&3)===0&&(a%100||(a%400===0&&a)))}});Ext.reg("datepicker",Ext.DatePicker);Ext.Video=Ext.extend(Ext.Container,{url:"",poster:"",enableControls:true,cmpCls:"x-video",autoPlay:false,autoPause:true,afterRender:function(){var a={tag:"video",src:this.src||this.url,preload:"true",width:"100%",height:"100%"};if(this.loop){a.loop="loop"}if(this.enableControls){a.controls="controls"}this.video=this.el.createChild(a);this.video.hide();if(this.poster){this.ghost=this.el.createChild({cls:"x-video-ghost",style:"width: 100%; height: 100%; background: #000 url("+this.poster+") center center no-repeat; -webkit-background-size: 100% auto;"});this.ghost.on("tap",function(){this.video.show();this.ghost.hide();this.video.dom.play()},this)}this.on("activate",function(){if(this.autoPlay){this.play()}});this.on("deactivate",function(){if(this.autoPause){this.pause()}});Ext.Video.superclass.afterRender.call(this)},play:function(){this.video.dom.play()},pause:function(){this.video.dom.pause()}});Ext.reg("video",Ext.Video);Ext.Audio=Ext.extend(Ext.Container,{url:"",showControls:true,cmpCls:"x-audio",autoResume:false,autoPause:true,preload:true,playing:false,afterRender:function(){var a;if(Ext.platform.isPhone){a={tag:"embed",type:"audio/mpeg",target:"myself",src:this.src||this.url,controls:"true"}}else{a={tag:"audio",src:this.src||this.url}}if(this.loop){a.loop="loop"}if(this.showControls){a.controls="controls";a.hidden=false}else{a.hidden=true}a.preload=this.preload;this.audio=this.el.createChild(a);this.on({activate:this.onActivate,beforedeactivate:this.onBeforeDeactivate,scope:this});Ext.Audio.superclass.afterRender.call(this)},onActivate:function(){if(this.autoResume){this.play()}if(Ext.platform.isPhone){this.audio.show()}},onBeforeDeactivate:function(){if(this.autoPause&&this.playing){this.pause()}if(Ext.platform.isPhone){this.audio.hide()}},play:function(){this.audio.dom.play();this.playing=true},pause:function(){this.audio.dom.pause();this.playing=false},toggle:function(){this[this.playing==true?"pause":"play"]()}});Ext.reg("audio",Ext.Audio);Ext.form.FormPanel=Ext.extend(Ext.Panel,{standardSubmit:false,cmpCls:"x-form",renderTpl:new Ext.XTemplate('<form <tpl if="id">id="{id}"</tpl> class="{baseCls} {cls} {cmpCls}<tpl if="ui"> {uiBase}-{ui}</tpl>"><div class="{baseCls}-body"<tpl if="bodyStyle"> style="{bodyStyle}"</tpl></div></form>',{compiled:true}),initComponent:function(){this.addEvents("submit");Ext.form.FormPanel.superclass.initComponent.call(this)},afterRender:function(){Ext.form.FormPanel.superclass.afterRender.call(this);this.el.on("submit",this.onSubmit,this)},onSubmit:function(b,a){if(!this.standardSubmit){b.preventDefault()}this.fireEvent("submit",this,this.getValues())},load:function(a){this.setValues(a.data)},setValues:function(b){var a=this.getFields(),d=b.length,c,e;for(c in b){e=a[c];if(e){e.setValue(b[c])}}},getValues:function(){var a=this.getFields(),d=a.length,b={},c;for(c in a){b[c]=a[c].getValue()}return b},reset:function(){var a=this.getFields(),b;for(b in a){a[b].reset()}},getFields:function(){var a={};var b=function(c){if(c.isField){a[c.name||c.id]=c}if(c.isContainer){c.items.each(b)}};this.items.each(b);return a}});Ext.reg("form",Ext.form.FormPanel);Ext.form.FieldSet=Ext.extend(Ext.Panel,{cmpCls:"x-form-fieldset",initComponent:function(){this.componentLayout=new Ext.layout.AutoComponentLayout();Ext.form.FieldSet.superclass.initComponent.call(this)},afterLayout:function(a){Ext.form.FieldSet.superclass.afterLayout.call(this,a);if(this.title&&!this.titleEl){this.titleEl=this.el.insertFirst({cls:this.cmpCls+"-title",html:this.title})}else{if(this.titleEl){this.el.insertFirst(this.titleEl)}}if(this.instructions&&!this.instructionsEl){this.instructionsEl=this.el.createChild({cls:this.cmpCls+"-instructions",html:this.instructions})}else{if(this.instructionsEl){this.el.appendChild(this.instructionsEl)}}}});Ext.reg("fieldset",Ext.form.FieldSet);Ext.form.Field=Ext.extend(Ext.Component,{ui:"text",isField:true,baseCls:"x-field",inputCls:undefined,focusClass:"x-field-focus",renderTpl:new Ext.XTemplate('<div <tpl if="id">id="{id}" </tpl>class="{baseCls}<tpl if="required"> {required}</tpl><tpl if="cls"> {cls}</tpl><tpl if="cmpCls"> {cmpCls}</tpl><tpl if="ui"> {uiBase}-{ui}</tpl> <tpl if="label">{labelAlign}</tpl>" <tpl if="style"> style="{style}"</tpl>>','<tpl if="label"><label <tpl if="fieldEl">for="{inputId}"</tpl>><span>{label}</span></label></tpl>','<tpl if="fieldEl"><input id="{inputId}" type="{type}" name="{name}" class="{fieldCls}"','<tpl if="tabIndex">tabIndex="{tabIndex}" </tpl>','<tpl if="placeholder">placeholder="{placeholder}" </tpl>','<tpl if="style">style="{style}" </tpl>','<tpl if="autocomplete">autocomplete="{autocomplete}" </tpl>',"/></tpl>",'<tpl if="maskField"><div class="x-field-mask"></div></tpl>',"</div>",{compiled:true}),disabled:false,isFormField:true,hasFocus:false,autoCreateField:true,inputType:"text",label:null,labelWidth:100,labelAlign:"left",required:false,maskField:false,initComponent:function(){this.label=this.label||this.fieldLabel;Ext.form.Field.superclass.initComponent.call(this);this.addEvents("focus","blur","change")},getName:function(){return this.name||this.id||""},onRender:function(b,a){Ext.applyIf(this.renderData,{disabled:this.disabled,fieldCls:this.inputCls||"x-input-"+this.inputType,fieldEl:!this.fieldEl&&this.autoCreateField,inputId:Ext.id(),label:this.label,labelAlign:"x-label-align-"+this.labelAlign,name:this.name||this.id,placeholder:this.placeholder,required:this.required?"x-field-required":undefined,style:this.style,tabIndex:this.tabIndex,type:this.inputType,maskField:this.maskField});Ext.applyIf(this.renderSelectors,{labelEl:"label",fieldEl:"."+this.renderData.fieldCls,mask:".x-field-mask"});Ext.form.Field.superclass.onRender.call(this,b,a);if(this.fieldEl){this.mon(this.fieldEl,{focus:this.onFocus,blur:this.onBlur,change:this.onChange,keyup:this.onKeyUp,scope:this});if(this.maskField){this.mon(this.mask,{tap:this.onMaskTap,scope:this})}}},onEnable:function(){this.getActionEl().removeClass(this.disabledClass);this.el.dom.disabled=false;this.fieldEl.dom.disabled=false},onDisable:function(){this.getActionEl().addClass(this.disabledClass);this.el.dom.disabled=true;this.fieldEl.dom.disabled=true},initValue:function(){if(this.value!==undefined){this.setValue(this.value)}this.originalValue=this.getValue()},isDirty:function(){if(this.disabled||!this.rendered){return false}return String(this.getValue())!==String(this.originalValue)},afterRender:function(){Ext.form.Field.superclass.afterRender.call(this);this.initValue()},onKeyUp:function(a){this.fireEvent("keyup",this,this.getValue())},onMaskTap:function(a){this.mask.hide()},onChange:function(a){this.fireEvent("change",this,this.getValue())},reset:function(){this.setValue(this.originalValue)},beforeFocus:Ext.emptyFn,undoNativeScroll:function(){var a=this.el.parent();while(a){if(a.getStyle("overflow")=="hidden"){a.dom.scrollTop=0}a=a.parent()}},onFocus:function(){var a=this;setTimeout(function(){a.undoNativeScroll()},0);this.beforeFocus();if(this.focusClass){this.el.addClass(this.focusClass)}if(!this.hasFocus){this.hasFocus=true;this.startValue=this.getValue();this.fireEvent("focus",this)}},beforeBlur:Ext.emptyFn,onBlur:function(){this.beforeBlur();if(this.focusClass){this.el.removeClass(this.focusClass)}this.hasFocus=false;var a=this.getValue();if(String(a)!==String(this.startValue)){this.fireEvent("change",this,a,this.startValue)}this.fireEvent("blur",this);if(this.maskField){this.mask.show()}this.postBlur()},postBlur:Ext.emptyFn,getValue:function(){if(!this.rendered||!this.fieldEl){return this.value}return this.fieldEl.getValue()||""},setValue:function(a){this.value=a;if(this.rendered&&this.fieldEl){this.fieldEl.dom.value=(Ext.isEmpty(a)?"":a)}return this}});Ext.reg("field",Ext.form.Field);Ext.form.Slider=Ext.extend(Ext.form.Field,{ui:"slider",inputCls:"x-slider",minValue:0,maxValue:100,animate:true,value:0,renderTpl:new Ext.XTemplate('<div <tpl if="id">id="{id}" </tpl>class="{baseCls} {cls} {cmpCls}<tpl if="ui"> {uiBase}-{ui}</tpl> <tpl if="label">{labelAlign}</tpl>" <tpl if="style"> style="{style}"</tpl>>','<tpl if="label"><label <tpl if="fieldEl">for="{inputId}"</tpl>>{label}</label></tpl>','<tpl if="fieldEl"><div id="{inputId}" name="{name}" class="{fieldCls}"','<tpl if="tabIndex">tabIndex="{tabIndex}" </tpl>','<tpl if="style">style="{style}" </tpl>',"/></tpl>",'<div class="x-field-mask"></div>',"</div>",{compiled:true}),increment:1,constructor:function(a){this.addEvents("beforechange","change");Ext.form.Slider.superclass.constructor.call(this,a)},initComponent:function(){this.values=[this.value];Ext.form.Slider.superclass.initComponent.apply(this,arguments);if(this.thumbs==undefined){var a=[],b=this.values,d=b.length,c;for(c=0;c<d;c++){a[a.length]=new Ext.form.Slider.Thumb({value:b[c],slider:this,listeners:{scope:this,dragend:this.onThumbDragEnd}})}this.thumbs=a}},setValue:function(d){var c=this,a=c.getThumb(),b=a.getValue(),e=c.constrain(d);if(c.fireEvent("beforechange",c,a,b,e)!==false){this.moveThumb(a,this.getPixelValue(e,a));a.setValue(e);c.doComponentLayout();c.fireEvent("change",c,a,b,e)}},constrain:function(e){var b=this.increment,g=Math.floor(Math.abs(e/b)),c=this.minValue+(g*b),a=Math.min(c+b,this.maxValue),f=e-c,d=a-e;return(f<d)?c:a},getValue:function(){return this.getThumb().getValue()},getThumb:function(){return this.thumbs[0]},getSliderValue:function(b,d){var f=d.el.getOuterWidth(),g=f/2,a=this.fieldEl.getWidth()-f,c=this.maxValue-this.minValue,e=c/a;return this.minValue+(e*(b-g))},getPixelValue:function(f,c){var e=c.el.getOuterWidth(),g=e/2,a=this.fieldEl.getWidth()-e,b=this.maxValue-this.minValue,d=a/b;return(d*(f-this.minValue))+g},renderThumbs:function(){var a=this.thumbs,c=a.length,b;for(b=0;b<c;b++){a[b].render(this.fieldEl)}},onThumbDragEnd:function(b){var d=b.thumb,e=this.fieldEl.getPageBox(),c=d.el.getPageBox(),f=c.width,g=f/2,a=(c.left-e.left)+g;this.setValue(this.getSliderValue(a,d))},onTap:function(d){var b=this.fieldEl.getPageBox(),c=d.pageX-b.left,a=this.getNearest(c);this.setValue(this.getSliderValue(c,a))},moveThumb:function(b,c,a){var d=b.el.getOuterWidth()/2;b.el.setLeft(c-d)},afterRender:function(a){this.renderThumbs();Ext.form.Slider.superclass.afterRender.apply(this,arguments);this.fieldEl.on({scope:this,tap:this.onTap})},getNearest:function(a){return this.thumbs[0]}});Ext.reg("slider",Ext.form.Slider);Ext.form.Slider.Thumb=Ext.extend(Ext.form.Field,{isField:false,ui:"thumb",autoCreateField:false,draggable:true,value:0,onRender:function(){Ext.form.Slider.Thumb.superclass.onRender.apply(this,arguments);this.dragConfig={direction:"horizontal",constrain:this.slider.fieldEl,revert:false,thumb:this}},setValue:function(a){this.value=a},getValue:function(){return this.value}});Ext.reg("thumb",Ext.form.Slider.Thumb);Ext.form.Toggle=Ext.extend(Ext.form.Slider,{minValue:0,maxValue:1,ui:"toggle",minValueCls:"x-toggle-off",maxValueCls:"x-toggle-on",toggle:function(){var a=this.thumbs[0],b=a.getValue();this.setValue(b==this.minValue?this.maxValue:this.minValue)},setValue:function(a){Ext.form.Toggle.superclass.setValue.apply(this,arguments);var b=this.fieldEl;if(this.constrain(a)===this.minValue){b.addClass(this.minValueCls);b.removeClass(this.maxValueCls)}else{b.addClass(this.maxValueCls);b.removeClass(this.minValueCls)}},onTap:function(){this.toggle()}});Ext.reg("toggle",Ext.form.Toggle);Ext.form.TextField=Ext.extend(Ext.form.Field,{type:"text",maskField:true});Ext.reg("textfield",Ext.form.TextField);Ext.form.PasswordField=Ext.extend(Ext.form.Field,{maskField:true,inputType:"password"});Ext.reg("passwordfield",Ext.form.PasswordField);Ext.form.EmailField=Ext.extend(Ext.form.TextField,{inputType:"email"});Ext.reg("emailfield",Ext.form.EmailField);Ext.form.UrlField=Ext.extend(Ext.form.TextField,{inputType:"url"});Ext.reg("urlfield",Ext.form.UrlField);Ext.form.SearchField=Ext.extend(Ext.form.Field,{inputType:"search"});Ext.reg("searchfield",Ext.form.SearchField);Ext.form.NumberField=Ext.extend(Ext.form.Field,{inputType:"number",ui:"number",maskField:true});Ext.reg("numberfield",Ext.form.NumberField);Ext.form.SpinnerField=Ext.extend(Ext.form.NumberField,{cmpCls:"x-spinner",minValue:Number.NEGATIVE_INFINITY,maxValue:Number.MAX_VALUE,incrementValue:1,accelerate:true,defaultValue:0,cycle:false,disableInput:false,renderTpl:new Ext.XTemplate('<div <tpl if="id">id="{id}" </tpl>class="{baseCls} {cls} {cmpCls}<tpl if="ui"> {uiBase}-{ui}</tpl> <tpl if="label">{labelAlign}</tpl>" <tpl if="style"> style="{style}"</tpl>>','<tpl if="label"><label <tpl if="fieldEl">for="{inputId}"</tpl>>{label}</label></tpl>','<tpl if="fieldEl">','<div class="{cmpCls}-body">','<div class="{cmpCls}-down"><span>-</span></div>','<input id="{inputId}" type="number" name="{name}" class="{fieldCls}"','<tpl if="disableInput">disabled </tpl>','<tpl if="tabIndex">tabIndex="{tabIndex}" </tpl>','<tpl if="placeholder">placeholder="{placeholder}" </tpl>','<tpl if="style">style="{style}" </tpl>','<tpl if="autocomplete">autocomplete="{autocomplete}" </tpl>',"/>",'<div class="{cmpCls}-up"><span>+</span></div>',"</div>","</tpl>",'<div class="x-field-mask"></div>',"</div>",{compiled:true}),onRender:function(b,a){this.renderData.disableInput=this.disableInput;Ext.applyIf(this.renderSelectors,{spinUpEl:".x-spinner-up",spinDownEl:".x-spinner-down"});Ext.form.SpinnerField.superclass.onRender.call(this,b,a);this.downRepeater=new Ext.util.TapRepeater(this.spinDownEl,{accelerate:this.accelerate});this.upRepeater=new Ext.util.TapRepeater(this.spinUpEl,{accelerate:this.accelerate});this.mon(this.downRepeater,{tap:this.onSpinDown,touchstart:this.onTouchStart,touchend:this.onTouchEnd,preventDefault:true,scope:this});this.mon(this.upRepeater,{tap:this.onSpinUp,touchstart:this.onTouchStart,touchend:this.onTouchEnd,preventDefault:true,scope:this})},onSpinDown:function(){if(!this.disabled){this.spin(true)}},onSpinUp:function(){if(!this.disabled){this.spin(false)}},onTouchStart:function(a){a.el.addClass("x-button-pressed")},onTouchEnd:function(a){a.el.removeClass("x-button-pressed")},spin:function(c){var a=parseFloat(this.getValue()),b=this.incrementValue;c?a-=b:a+=b;a=(isNaN(a))?this.defaultValue:a;if(a<this.minValue){a=this.cycle?this.maxValue:this.minValue}else{if(a>this.maxValue){a=this.cycle?this.minValue:this.maxValue}}this.setValue(a)},destroy:function(){Ext.destroy(this.downRepeater,this.upRepeater);Ext.form.SpinnerField.superclass.destroy.call(this,arguments)}});Ext.reg("spinnerfield",Ext.form.SpinnerField);Ext.form.HiddenField=Ext.extend(Ext.form.Field,{inputType:"hidden",ui:"hidden",autoCreateField:false});Ext.reg("hidden",Ext.form.HiddenField);Ext.form.UrlField=Ext.extend(Ext.form.TextField,{inputType:"url"});Ext.reg("urlfield",Ext.form.UrlField);Ext.form.Checkbox=Ext.extend(Ext.form.Field,{inputType:"checkbox",ui:"checkbox",checked:false,constructor:function(a){this.addEvents("check");Ext.form.Checkbox.superclass.constructor.call(this,a)},onRender:function(b,a){Ext.form.Checkbox.superclass.onRender.call(this,b,a);if(this.checked){this.setValue(true)}else{this.checked=this.fieldEl.dom.checked}},getValue:function(){if(this.rendered){return this.fieldEl.dom.checked}return this.checked},setValue:function(a){Ext.form.Checkbox.superclass.setValue.apply(this,arguments);var b=this.checked;this.checked=(a===true||a==="true"||a=="1"||String(a).toLowerCase()=="on");if(this.rendered){this.fieldEl.dom.checked=this.checked;this.fieldEl.dom.defaultChecked=this.checked}if(b!=this.checked){this.fireEvent("check",this,this.checked)}}});Ext.reg("checkbox",Ext.form.Checkbox);Ext.form.Radio=Ext.extend(Ext.form.Checkbox,{inputType:"radio",ui:"radio",getGroupValue:function(){var a=this.el.up("form")||Ext.getBody(),b=a.child("input[name="+this.fieldEl.dom.name+"]:checked",true);return b?b.value:null},onClick:function(){if(this.fieldEl.dom.checked!=this.checked){var a=this.getCheckEl().select("input[name="+this.fieldEl.dom.name+"]");a.each(function(b){if(b.dom.id==this.id){this.setValue(true)}else{Ext.getCmp(b.dom.id).setValue(false)}},this)}},setValue:function(a){if(typeof a=="boolean"){Ext.form.Radio.superclass.setValue.call(this,a)}else{if(this.rendered&&a!=undefined){var b=this.getCheckEl().child("input[name="+this.fieldEl.dom.name+"][value="+a+"]",true);if(b){Ext.getCmp(b.id).setValue(true)}}}},getCheckEl:function(){if(this.inGroup){return this.el.up(".x-form-radio-group")}return this.el.up("form")||Ext.getBody()}});Ext.reg("radio",Ext.form.Radio);Ext.form.Select=Ext.extend(Ext.form.Field,{ui:"select",valueField:"value",displayField:"text",initComponent:function(){this.renderTpl=new Ext.XTemplate('<div <tpl if="id">id="{id}" </tpl>class="{baseCls} {cls} {cmpCls}<tpl if="ui"> {uiBase}-{ui}</tpl> <tpl if="label">{labelAlign}</tpl>" <tpl if="style"> style="{style}"</tpl>>','<tpl if="label"><label <tpl if="fieldEl">for="{inputId}"</tpl>>{label}</label></tpl>','<tpl if="fieldEl"><select id="{inputId}" type="{type}" name="{name}" class="{fieldCls}"','<tpl if="tabIndex">tabIndex="{tabIndex}" </tpl>','<tpl if="placeholder">placeholder="{placeholder}" </tpl>','<tpl if="style">style="{style}" </tpl>','<tpl if="autocomplete">autocomplete="false" </tpl>',">",'<tpl for="options">','<option value="{'+this.valueField+'}">{'+this.displayField+"}</option>","</tpl>","</select></tpl>","</div>",{compiled:true});Ext.form.Select.superclass.initComponent.call(this)},onRender:function(b,a){Ext.applyIf(this.renderData,{options:this.options});Ext.form.Select.superclass.onRender.call(this,b,a)}});Ext.reg("select",Ext.form.Select);Ext.form.TextArea=Ext.extend(Ext.form.Field,{maskField:true,renderTpl:new Ext.XTemplate('<div <tpl if="id">id="{id}" </tpl>class="{baseCls} {cls} {cmpCls}<tpl if="ui"> {uiBase}-{ui}</tpl> <tpl if="label">{labelAlign}</tpl>" <tpl if="style"> style="{style}"</tpl>>','<tpl if="label"><label <tpl if="fieldEl">for="{inputId}"</tpl>>{label}</label></tpl>','<tpl if="fieldEl"><textarea id="{inputId}" type="{type}" name="{name}" class="{fieldCls}"','<tpl if="tabIndex">tabIndex="{tabIndex}" </tpl>','<tpl if="placeholder">placeholder="{placeholder}" </tpl>','<tpl if="style">style="{style}" </tpl>','<tpl if="autocomplete">autocomplete="{autocomplete}" </tpl>',"></textarea></tpl>",'<div class="x-field-mask"></div>',"</div>",{compiled:true}),ui:"textarea"});Ext.reg("textarea",Ext.form.TextArea);Ext.layout.Layout=Ext.extend(Object,{type:"layout",constructor:function(a){this.id=Ext.id(null,"ext-layout-");Ext.apply(this,a)},setOwner:function(a){this.owner=a},layout:function(){var a=this.owner,b=this.getTarget();if(!this.layedOut&&!Ext.isEmpty(this.targetCls)){b.addClass(this.targetCls)}this.onLayout(a,b,arguments.length?arguments:[]);this.layedOut=true;this.afterLayout()},afterLayout:Ext.emptyFn,getLayoutItems:Ext.emptyFn,getTarget:Ext.emptyFn,onLayout:Ext.emptyFn,onRemove:Ext.emptyFn,onDestroy:Ext.emptyFn,isValidParent:function(a,b){var c=a.el?a.el.dom:Ext.getDom(a);return b&&(c.parentNode==(b.dom||b))},renderItems:function(a,e){var d=a.length,b,c;for(b=0;b<d;b++){c=a[b];if(c&&!c.rendered){this.renderItem(c,b,e)}else{if(!this.isValidParent(c,e)){this.moveItem(c,b,e)}}this.configureItem(c,b)}},renderItem:function(b,a,c){if(!b.rendered){b.render(c,a)}},getTargetBox:function(){return this.getTarget().getBox(true,true)},moveItem:function(b,a,c){if(typeof a=="number"){a=c.dom.childNodes[a]}c=c.dom||c;c.insertBefore(b.getPositionEl().dom,a||null);b.container=c;this.configureItem(b,a)},configureItem:function(b,a){if(this.extraCls){b.getPositionEl().addClass(this.extraCls)}},afterRemove:function(a){if(this.extraCls){a.getPositionEl().removeClass(this.extraCls)}},destroy:function(){if(!Ext.isEmpty(this.targetCls)){var a=this.owner.getLayoutTarget();if(a){a.removeClass(this.targetCls)}}this.onDestroy()}});Ext.layout.ComponentLayout=Ext.extend(Ext.layout.Layout,{onLayout:function(a,d,b){var c=a.layout;a.afterComponentLayout(this);if(c&&typeof c.layout=="function"){c.layout()}},getLayoutItems:function(){return[]},getTarget:function(){return this.owner.getResizeEl()},setTargetSize:function(a,b){var c=this.getTarget();if(a!==undefined&&b!==undefined){c.setSize(a,b)}else{if(b!==undefined){c.setHeight(b)}else{if(a!==undefined){c.setWidth(a)}}}}});Ext.layout.AutoComponentLayout=Ext.extend(Ext.layout.ComponentLayout,{type:"component",onLayout:function(a,e,c){var b=c[0],d=c[1];b=(typeof b=="number"||b=="auto")?c[0]:undefined;d=(typeof d=="number"||d=="auto")?c[1]:undefined;this.setTargetSize(b,d);Ext.layout.AutoComponentLayout.superclass.onLayout.call(this,a,e,c)}});Ext.layout.TYPES.component=Ext.layout.AutoComponentLayout;Ext.layout.DockLayout=Ext.extend(Ext.layout.ComponentLayout,{type:"dock",renderHidden:false,extraCls:"x-docked",onLayout:function(a,g,d){var c=this.getLayoutItems(),b=d[0],e=d[1];var f=this.info={boxes:[],panelSize:{width:b,height:e}};this.renderItems(c,g);this.setTargetSize(b,e);this.dockItems(c);Ext.layout.DockLayout.superclass.onLayout.call(this,a,g)},getLayoutItems:function(){return this.owner.getDockedItems()||[]},configureItem:function(a,b){Ext.layout.DockLayout.superclass.configureItem.call(this,a,b);if(this.extraCls){a.getPositionEl().addClass(this.extraCls+"-"+a.dock)}if(a.overlay){a.getPositionEl().addClass(this.extraCls+"-overlay")}},afterRemove:function(a){Ext.layout.DockLayout.superclass.afterRemove.call(this,a);if(this.extraCls){a.getPositionEl().removeClass(this.extraCls+"-"+a.dock)}if(a.overlay){a.getPositionEl().removeClass(this.extraCls+"-overlay")}},dockItems:function(j,a){this.calculateDockBoxes(j,a);var c=this.info,f=c.boxes,h=f.length,b=this.owner,g=this.getTarget(),e,d;b.body.setBox({width:c.targetBox.width||null,height:c.targetBox.height||null,top:(c.targetBox.top-b.el.getPadding("t")),left:(c.targetBox.left-b.el.getPadding("l"))});for(d=0;d<h;d++){e=f[d];e.item.setPosition(e.left,e.top)}},calculateDockBoxes:function(k,a){var g=this.getTarget(),b=this.owner,p=b.body,c=this.info,j=k.length,n,d,f,m,e;c.panelSize=g.getSize();c.targetBox=this.getTargetBox();c.targetBox.left-=g.getBorderWidth("l");c.targetBox.top-=g.getBorderWidth("t");for(d=0;d<j;d++){n=k[d];if(n.hidden&&!this.renderHidden){continue}f=this.initBox(n);n.setSize(f);if(f.width==undefined){f.width=n.getWidth()}if(f.height==undefined){f.height=n.getHeight()}f=this.adjustSizedBox(f,d);c.boxes.push(f)}},adjustSizedBox:function(d,b){var a=this.info.targetBox,c=d.item;switch(d.type){case"top":d.top=a.top;if(!c.overlay){a.top+=d.height;a.height-=d.height}break;case"left":d.left=a.left;if(!c.overlay){a.left+=d.width;a.width-=d.width}break;case"bottom":d.top=(a.top+a.height)-d.height;if(!c.overlay){a.height-=d.height}break;case"right":d.left=(a.left+a.width)-d.width;if(!c.overlay){a.width-=d.width}break}return d},initBox:function(d){var b=this.info.targetBox,a=(d.dock=="top"||d.dock=="bottom"),c={item:d,type:d.dock};if(d.stretch!==false){if(a){c.left=b.left;c.width=b.width}else{c.top=b.top;c.height=b.height}c.stretched=true}else{d.setSize(d.width||undefined,d.height||undefined);c.width=d.getWidth();c.height=d.getHeight();if(a){c.left=b.left;if(d.align=="right"){c.left+=(b.width-c.width)}else{if(d.align=="center"){c.left+=((b.width-c.width)/2)}}}else{c.top=b.top;if(d.align=="bottom"){c.top+=(b.height-c.height)}else{if(d.align=="center"){c.top+=((b.height-c.height)/2)}}}}return c}});Ext.layout.TYPES.dock=Ext.layout.DockLayout;Ext.layout.FieldLayout=Ext.extend(Ext.layout.ComponentLayout,{type:"field",onLayout:function(a,e,c){var b=c[0],d=c[1];this.owner=a;this.handleLabel();a.el.setSize(b,d);Ext.layout.FieldLayout.superclass.onLayout.call(this,a,e)},handleLabel:function(){this.owner.labelEl.setWidth(this.owner.labelWidth)}});Ext.layout.TYPES.field=Ext.layout.FieldLayout;Ext.layout.ContainerLayout=Ext.extend(Ext.layout.Layout,{onLayout:function(a,b){this.renderItems(this.getLayoutItems(),b)},afterLayout:function(){this.owner.afterLayout(this)},getLayoutItems:function(){return this.owner&&this.owner.items&&this.owner.items.items||[]},getTarget:function(){return this.owner.getLayoutTarget()},getRenderedItems:function(){var f=this.getTarget(),a=this.getLayoutItems(),d=a.length,e=[],b,c;for(b=0;b<d;b++){c=a[b];if(c.rendered&&this.isValidParent(c,f)){e.push(c)}}return e},getVisibleItems:function(){var f=this.getTarget(),b=this.getLayoutItems(),e=b.length,a=[],c,d;for(c=0;c<e;c++){d=b[c];if(d.rendered&&this.isValidParent(d,f)&&d.hidden!==true){a.push(d)}}return a}});Ext.layout.TYPES.container=Ext.layout.ContainerLayout;Ext.layout.AutoContainerLayout=Ext.extend(Ext.layout.ContainerLayout,{type:"container",onLayout:function(a,e){var b=this.getLayoutItems(),d=b.length,c;this.renderItems(b,e);for(c=0;c<d;c++){b[c].doComponentLayout(b[c].width||undefined,b[c].height||undefined)}}});Ext.layout.TYPES.auto=Ext.layout.AutoContainerLayout;Ext.layout.BoxLayout=Ext.extend(Ext.layout.ContainerLayout,{type:"box",targetCls:"x-layout-box",innerCls:"x-layout-box-inner",pack:"start",direction:"normal",align:"center",onLayout:function(b,d){Ext.layout.BoxLayout.superclass.onLayout.call(this,b,d);if(this.pack==="left"||this.pack==="top"){this.pack="start"}else{if(this.pack==="right"||this.pack==="bottom"){this.pack="end"}}this.innerCt.setStyle({"-webkit-box-orient":this.orientation,"-webkit-box-direction":this.direction,"-webkit-box-pack":this.pack,"-webkit-box-align":this.align});if(d!=this.innerCt){c=d.getWidth(true);a=d.getHeight(true);if(c>0){this.innerCt.setWidth(c)}if(a>0){this.innerCt.setHeight(a)}this.innerCt.setSize(d.getWidth(true),d.getHeight(true))}this.handleBoxes(d);if(this.totalWidth){this.innerCt.setWidth(Math.max(d.getWidth(true),this.totalWidth));var a=d.getHeight(true);if(a>0){this.innerCt.setHeight(a)}}if(this.totalHeight){this.innerCt.setHeight(Math.max(d.getHeight(true),this.totalHeight));var c=d.getWidth(true);if(c>0){this.innerCt.setWidth(c)}}},renderItems:function(a){if(!this.innerCt){if(this.owner.scrollEl){this.innerCt=this.owner.scrollEl.addClass(this.innerCls)}else{this.innerCt=this.getTarget().createChild({cls:this.innerCls})}}Ext.layout.BoxLayout.superclass.renderItems.call(this,a,this.innerCt)}});Ext.layout.TYPES.hbox=Ext.layout.HBoxLayout=Ext.extend(Ext.layout.BoxLayout,{orientation:"horizontal",handleBoxes:function(g){var a=this.getLayoutItems(),f=a.length,d,e,c,b;if(g===this.innerCt){g.setWidth(g.parent().getWidth(true))}for(c=0;c<f;c++){e=a[c];if(e.flex!=undefined){e.el.setWidth(0);e.el.setStyle("-webkit-box-flex",e.flex)}else{e.doComponentLayout(e.width,e.height)}}this.totalWidth=0;for(c=0;c<f;c++){e=a[c];if(e.flex!=undefined){d=e.el.getWidth();e.el.setStyle("-webkit-box-flex",null);e.doComponentLayout(d,e.height||undefined)}this.totalWidth+=(e.el.getWidth()+e.el.getMargin("lr"))}}});Ext.layout.TYPES.vbox=Ext.layout.VBoxLayout=Ext.extend(Ext.layout.BoxLayout,{orientation:"vertical",handleBoxes:function(g){var b=this.getLayoutItems(),f=b.length,e,d,c,a;if(g===this.innerCt){g.setHeight(g.parent().getHeight(true))}for(d=0;d<f;d++){e=b[d];if(e.flex!=undefined){e.el.setHeight(0);e.el.setStyle("-webkit-box-flex",e.flex)}else{e.doComponentLayout(e.width,e.height)}}this.totalHeight=0;for(d=0;d<f;d++){e=b[d];if(e.flex!=undefined){a=e.el.getHeight();e.el.setStyle("-webkit-box-flex",null);e.doComponentLayout(e.width||undefined,a)}this.totalHeight+=(e.el.getHeight()+e.el.getMargin("tb"))}}});Ext.layout.FitLayout=Ext.extend(Ext.layout.ContainerLayout,{extraCls:"x-fit-item",targetCls:"x-layout-fit",type:"fit",onLayout:function(a,c){Ext.layout.FitLayout.superclass.onLayout.call(this,a,c);var b=this.getTargetBox();if(!this.lastTargetBox||b.width!=this.lastTargetBox.width||b.height!=this.lastTargetBox.height){this.setItemBox(this.activeItem,b);this.lastTargetBox=b}},setOwner:function(a){Ext.layout.FitLayout.superclass.setOwner.call(this,a);this.activeItem=this.parseActiveItem(a.activeItem)},setItemBox:function(b,a){if(b&&a.height>0){a.width-=b.el.getMargin("lr");a.height-=b.el.getMargin("tb");b.setSize(a);b.setPosition(a)}},configureItem:function(b,a){Ext.layout.FitLayout.superclass.configureItem.call(this,b,a);if(this.activeItem!==b){b.hide()}},parseActiveItem:function(a){if(a&&a.isComponent){return a}else{if(typeof a=="number"||a==undefined){return this.getLayoutItems()[a||0]}else{return this.owner.getComponent(a)}}}});Ext.layout.TYPES.fit=Ext.layout.FitLayout;Ext.layout.CardLayout=Ext.extend(Ext.layout.FitLayout,{type:"card",hideOnDeactivate:true,onLayout:function(){Ext.layout.CardLayout.superclass.onLayout.apply(this,arguments);if(!this.layedOut&&this.activeItem){if(this.activeItem.fireEvent("beforeactivate",this.activeItem)!==false){this.activeItem.fireEvent("activate",this.activeItem)}}},setOwner:function(a){Ext.layout.CardLayout.superclass.setOwner.call(this,a);Ext.applyIf(a,{setCard:function(b,c){this.layout.setActiveItem(b,c)}})},setActiveItem:function(j,d){var g=this,i=Ext.getDoc(),b=g.activeItem;j=this.parseActiveItem(j);if(j&&b!=j){if(!j.rendered){this.renderItem(j,this.owner.items.length,this.getTarget());this.configureItem(j,0)}j.show();this.setItemBox(j,this.getTargetBox());if(j.fireEvent("beforeactivate",j,b)===false){return}if(b&&b.fireEvent("beforedeactivate",b,j)===false){return}if(d){function f(k){k.preventDefault()}i.on("click",f,this,{single:true});var a={},e;if(Ext.isObject(d)&&!d.run){a=Ext.apply({},d||{});e=a.type}else{if(Ext.isString(d)){e=d}else{if(d.run){}}}a.after=function(){(function(){i.un("click",f,this)}).defer(50,this);j.fireEvent("activate",j,b)};a.scope=this;a.out=false;a.autoClear=true;Ext.anims[e].run(j.el,a)}else{Ext.repaint();j.fireEvent("activate",j,b)}if(b&&d){var c={},h;if(Ext.isObject(d)&&!d.run){c=Ext.apply({},d||{});h=c.type}else{if(Ext.isString(d)){h=d}}c.after=function(){b.fireEvent("deactivate",b,j);if(g.hideOnDeactivate&&g.activeItem!=b){b.hide()}};c.out=true;c.autoClear=true;Ext.anims[h].run(b.el,c)}else{if(b){if(g.hideOnDeactivate){b.hide()}b.fireEvent("deactivate",b,j)}}g.activeItem=j;g.owner.fireEvent("cardswitch",j,b)}},getNext:function(c){var a=this.getLayoutItems(),b=a.indexOf(this.activeItem);return a[b+1]||(c?a[0]:false)},next:function(b,a){this.setActiveItem(this.getNext(a),b)},getPrev:function(c){var a=this.getLayoutItems(),b=a.indexOf(this.activeItem);return a[b-1]||(c?a[a.length-1]:false)},prev:function(b,a){this.setActiveItem(this.getPrev(a),b)}});Ext.layout.TYPES.card=Ext.layout.CardLayout;
@@ -0,0 +1 @@
1
+ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:"";}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}html,body,*{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,sans-serif;-webkit-text-size-adjust:none;-webkit-touch-callout:none;font-weight:normal;-webkit-tap-highlight-color:rgba(0,0,0,0);}html,body{width:100%;height:100%;}::-webkit-scrollbar{width:6px;height:6px;}body{font-size:100%;}body.x-android-os.x-phone{font-size:120%;}body.x-iphone-os.x-phone{font-size:114%;}input,textarea{-webkit-user-select:text;}.x-hidden-visibility{visibility:hidden!important;}.x-hidden-display{display:none!important;}.x-hidden-offsets{position:absolute!important;left:-10000em;top:-10000em;visibility:hidden;}.x-fullscreen{position:absolute!important;top:0;left:0;}.x-scroller-parent{overflow:hidden!important;}.x-scroller{position:relative;-webkit-transform:translate3d(0px,0px,0px);-webkit-transition-property:-webkit-transform;-webkit-transition-duration:0;}.x-draggable{z-index:1;webkit-transform:translate3d(0px,0px,0px);}.x-scrollbar{position:absolute;top:0;z-index:10;-webkit-transition-property:-webkit-transform,opacity;-webkit-border-radius:2px;background-color:rgba(0,0,0,0.6);border:1px solid rgba(255,255,255,0.2);opacity:0;}.x-scrollbar-vertical{right:4px;width:4px;-webkit-transform:translate3d(0px,4px,0px);}.x-mask{position:absolute;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);z-index:9999;}.x-mask.x-mask-transparent{background-color:transparent;}.x-floating{position:absolute!important;z-index:10000!important;}.x-dragging{opacity:.7;}.x-panel-list{background-color:#eff4f6;}.x-map{background-color:#edeae2;width:100%;height:100%;}.x-htmlcontent{-webkit-user-select:auto;-webkit-touch-callout:inherit;line-height:1.5;color:#333;font-size:.8em;padding:1.5em;}.x-htmlcontent body{line-height:1.5;font-family:"Helvetica Neue",Arial,Helvetica,sans-serif;color:#333;font-size:75%;}.x-htmlcontent h1,.x-htmlcontent h2,.x-htmlcontent h3,.x-htmlcontent h4,.x-htmlcontent h5,.x-htmlcontent h6{font-weight:normal;color:#222;}.x-htmlcontent h1 img,.x-htmlcontent h2 img,.x-htmlcontent h3 img,.x-htmlcontent h4 img,.x-htmlcontent h5 img,.x-htmlcontent h6 img{margin:0;}.x-htmlcontent h1{font-size:3em;line-height:1;margin-bottom:.5em;}.x-htmlcontent h2{font-size:2em;margin-bottom:.75em;}.x-htmlcontent h3{font-size:1.5em;line-height:1;margin-bottom:1em;}.x-htmlcontent h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em;}.x-htmlcontent h5{font-size:1em;font-weight:bold;margin-bottom:1.5em;}.x-htmlcontent h6{font-size:1em;font-weight:bold;}.x-htmlcontent p{margin:0 0 1.5em;}.x-htmlcontent p img.left{display:inline;float:left;margin:1.5em 1.5em 1.5em 0;padding:0;}.x-htmlcontent p img.right{display:inline;float:right;margin:1.5em 0 1.5em 1.5em;padding:0;}.x-htmlcontent a{text-decoration:underline;color:#009;}.x-htmlcontent a:visited{color:#006;}.x-htmlcontent a:focus{color:black;}.x-htmlcontent a:hover{color:black;}.x-htmlcontent a:active{color:#c09;}.x-htmlcontent blockquote{margin:1.5em;color:#666;font-style:italic;}.x-htmlcontent strong{font-weight:bold;}.x-htmlcontent em{font-style:italic;}.x-htmlcontent dfn{font-style:italic;font-weight:bold;}.x-htmlcontent sup,.x-htmlcontent sub{line-height:0;}.x-htmlcontent abbr,.x-htmlcontent acronym{border-bottom:1px dotted #666;}.x-htmlcontent address{margin:0 0 1.5em;font-style:italic;}.x-htmlcontent del{color:#666;}.x-htmlcontent pre{margin:1.5em 0;white-space:pre;}.x-htmlcontent pre,.x-htmlcontent code,.x-htmlcontent tt{font:1em "andale mono","lucida console",monospace;line-height:1.5;}.x-htmlcontent li ul,.x-htmlcontent li ol{margin:0;}.x-htmlcontent ul,.x-htmlcontent ol{margin:0 1.5em 1.5em 0;padding-left:3.333em;}.x-htmlcontent ul{list-style-type:disc;}.x-htmlcontent ol{list-style-type:decimal;}.x-htmlcontent dl{margin:0 0 1.5em 0;}.x-htmlcontent dl dt{font-weight:bold;}.x-htmlcontent dd{margin-left:1.5em;}.x-htmlcontent table{margin-bottom:1.4em;width:100%;}.x-htmlcontent th{font-weight:bold;}.x-htmlcontent thead th{background:#c3d9ff;}.x-htmlcontent th,.x-htmlcontent td,.x-htmlcontent caption{padding:4px 10px 4px 5px;}.x-htmlcontent tr.even td{background:#e5ecf9;}.x-htmlcontent tfoot{font-style:italic;}.x-htmlcontent caption{background:#eee;}.x-htmlcontent .quiet{color:#666;}.x-htmlcontent .loud{color:#111;}.x-htmlcontent ul li{list-style-type:circle;}.x-htmlcontent ol li{list-style-type:decimal;}.x-video{background-color:#000;}.x-sortable .x-dragging{opacity:.5;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0 2em;}.loading-indicator{display:block;text-align:center;padding:1em;text-shadow:rgba(255,255,255,0.25) 0 1px 0;font-size:1.1em;}.x-container{-webkit-transform:translate3d(0,0,0);}.x-panel{position:relative;-webkit-transform:translate3d(0,0,0);}.x-panel-body{position:relative;}.x-panel.x-floating{padding:6px;-webkit-border-radius:8px;-webkit-box-shadow:rgba(0,0,0,0.8) 0 2px 10px;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#617385),color-stop(2%,#252c32),color-stop(50%,#272e35),color-stop(51%,#21272c),color-stop(100%,#0b0d0f));}.x-panel.x-floating.x-panel-light{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#d4d9de),color-stop(2%,#8393a0),color-stop(50%,#8695a2),color-stop(51%,#7e8d9b),color-stop(100%,#647482));}.x-panel.x-floating>.x-panel-body{background-color:#fff;-webkit-border-radius:4px;}.x-anchor{width:.7em;height:.7em;position:absolute;z-index:1;}.x-anchor:before,.x-anchor:after{content:"\00a0";position:absolute;width:1.631em;height:.7em;top:0;left:0;-webkit-mask:0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat;-webkit-mask-size:1.631em .7em;overflow:hidden;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#b7c0c8),color-stop(2%,#7e8d9b),color-stop(100%,#596774));}.x-anchor.x-anchor-left{left:1.4em;}.x-anchor.x-anchor-right{right:2.1em;}.x-anchor.x-anchor-top{top:-0.7em;}.x-anchor.x-anchor-bottom{-webkit-transform:rotate(180deg);bottom:-0.7em;}.x-anchor.x-anchor-bottom:before,.x-anchor.x-anchor-bottom:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#637483),color-stop(2%,#374149),color-stop(100%,#161a1d));}.x-anchor.x-anchor-bottom.x-anchor-left{left:2.1em;}.x-anchor.x-anchor-bottom.x-anchor-right{right:1.4em;}.x-button{-webkit-border-radius:.4em;height:2.2em;line-height:1.5em;padding:.3em .8em;vertical-align:middle;position:relative;border:1px solid #ccc;color:#333;display:block;border:1px solid #999;border-top-color:#a6a6a6;-webkit-box-shadow:inset #d9d9d9 0 0 .1em .1em,rgba(255,255,255,0.25) 0 .1em 0;text-shadow:rgba(255,255,255,0.25) 0 1px 0;overflow:hidden;}.x-button.x-button-back:before,.x-button.x-button-forward:before{background:#999;}.x-button,.x-button.x-button-back:after,.x-button.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#e6e6e6),color-stop(100%,#bfbfbf));}.x-button.x-button-pressed,.x-button.x-button-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#bfbfbf),color-stop(4%,#b2b2b2),color-stop(10%,#bcbcbc),color-stop(65%,#bfbfbf),color-stop(100%,#c0c0c0));-webkit-box-shadow:inset #c7c1c1 0 0 .5em,rgba(255,255,255,0.25) 0 .1em 0;}.x-button.x-button-pressed.x-button-back:after,.x-button.x-button-pressed.x-button-forward:after,.x-button.x-button-active.x-button-back:after,.x-button.x-button-active.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#bfbfbf),color-stop(4%,#b2b2b2),color-stop(10%,#bcbcbc),color-stop(65%,#bfbfbf),color-stop(100%,#c0c0c0));}.x-button.x-button-pressed.x-button-back:after,.x-button.x-button-active.x-button-back:after{-webkit-box-shadow:inset #d9d9d9 0 0 .1em .1em;}.x-button.x-button-pressed.x-button-forward:after,.x-button.x-button-active.x-button-forward:after{-webkit-box-shadow:inset #d9d9d9 0 0 -0.1em .1em;}.x-button span{width:100%;display:inline-block;white-space:nowrap;text-overflow:ellipsis;text-align:center;overflow:hidden;}.x-button.x-item-disabled{color:#999;}.x-button.x-button-action,.x-button.x-button-drastic,.x-button.x-button-action_round,.x-button.x-button-drastic_round{color:#fff;font-weight:100;border:1px solid #640303;border-top-color:#7c0303;-webkit-box-shadow:inset #e00606 0 0 .1em .1em,rgba(255,255,255,0.25) 0 .1em 0;text-shadow:rgba(0,0,0,0.5) 0 -1px 0;}.x-button.x-button-action.x-button-back:before,.x-button.x-button-action.x-button-forward:before,.x-button.x-button-drastic.x-button-back:before,.x-button.x-button-drastic.x-button-forward:before,.x-button.x-button-action_round.x-button-back:before,.x-button.x-button-action_round.x-button-forward:before,.x-button.x-button-drastic_round.x-button-back:before,.x-button.x-button-drastic_round.x-button-forward:before{background:#640303;}.x-button.x-button-action,.x-button.x-button-action.x-button-back:after,.x-button.x-button-action.x-button-forward:after,.x-button.x-button-drastic,.x-button.x-button-drastic.x-button-back:after,.x-button.x-button-drastic.x-button-forward:after,.x-button.x-button-action_round,.x-button.x-button-action_round.x-button-back:after,.x-button.x-button-action_round.x-button-forward:after,.x-button.x-button-drastic_round,.x-button.x-button-drastic_round.x-button-back:after,.x-button.x-button-drastic_round.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fb6a6a),color-stop(2%,#f90606),color-stop(100%,#ae0404));}.x-button.x-button-action.x-button-pressed,.x-button.x-button-action.x-button-active,.x-button.x-button-drastic.x-button-pressed,.x-button.x-button-drastic.x-button-active,.x-button.x-button-action_round.x-button-pressed,.x-button.x-button-action_round.x-button-active,.x-button.x-button-drastic_round.x-button-pressed,.x-button.x-button-drastic_round.x-button-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#ae0404),color-stop(4%,#950303),color-stop(10%,#a90404),color-stop(65%,#ae0404),color-stop(100%,#b00404));-webkit-box-shadow:inset #bd0000 0 0 .5em,rgba(255,255,255,0.25) 0 .1em 0;}.x-button.x-button-action.x-button-pressed.x-button-back:after,.x-button.x-button-action.x-button-pressed.x-button-forward:after,.x-button.x-button-action.x-button-active.x-button-back:after,.x-button.x-button-action.x-button-active.x-button-forward:after,.x-button.x-button-drastic.x-button-pressed.x-button-back:after,.x-button.x-button-drastic.x-button-pressed.x-button-forward:after,.x-button.x-button-drastic.x-button-active.x-button-back:after,.x-button.x-button-drastic.x-button-active.x-button-forward:after,.x-button.x-button-action_round.x-button-pressed.x-button-back:after,.x-button.x-button-action_round.x-button-pressed.x-button-forward:after,.x-button.x-button-action_round.x-button-active.x-button-back:after,.x-button.x-button-action_round.x-button-active.x-button-forward:after,.x-button.x-button-drastic_round.x-button-pressed.x-button-back:after,.x-button.x-button-drastic_round.x-button-pressed.x-button-forward:after,.x-button.x-button-drastic_round.x-button-active.x-button-back:after,.x-button.x-button-drastic_round.x-button-active.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#ae0404),color-stop(4%,#950303),color-stop(10%,#a90404),color-stop(65%,#ae0404),color-stop(100%,#b00404));}.x-button.x-button-action.x-button-pressed.x-button-back:after,.x-button.x-button-action.x-button-active.x-button-back:after,.x-button.x-button-drastic.x-button-pressed.x-button-back:after,.x-button.x-button-drastic.x-button-active.x-button-back:after,.x-button.x-button-action_round.x-button-pressed.x-button-back:after,.x-button.x-button-action_round.x-button-active.x-button-back:after,.x-button.x-button-drastic_round.x-button-pressed.x-button-back:after,.x-button.x-button-drastic_round.x-button-active.x-button-back:after{-webkit-box-shadow:inset #e00606 0 0 .1em .1em;}.x-button.x-button-action.x-button-pressed.x-button-forward:after,.x-button.x-button-action.x-button-active.x-button-forward:after,.x-button.x-button-drastic.x-button-pressed.x-button-forward:after,.x-button.x-button-drastic.x-button-active.x-button-forward:after,.x-button.x-button-action_round.x-button-pressed.x-button-forward:after,.x-button.x-button-action_round.x-button-active.x-button-forward:after,.x-button.x-button-drastic_round.x-button-pressed.x-button-forward:after,.x-button.x-button-drastic_round.x-button-active.x-button-forward:after{-webkit-box-shadow:inset #e00606 0 0 -0.1em .1em;}.x-button.x-button-action.x-item-disabled,.x-button.x-button-drastic.x-item-disabled,.x-button.x-button-action_round.x-item-disabled,.x-button.x-button-drastic_round.x-item-disabled{color:rgba(255,255,255,0.6);}.x-button.x-button-action,.x-button.x-button-action_round{border:1px solid #253501;border-top-color:#374d02;-webkit-box-shadow:inset #7eb105 0 0 .1em .1em,rgba(255,255,255,0.25) 0 .1em 0;}.x-button.x-button-action.x-button-back:before,.x-button.x-button-action.x-button-forward:before,.x-button.x-button-action_round.x-button-back:before,.x-button.x-button-action_round.x-button-forward:before{background:#253501;}.x-button.x-button-action,.x-button.x-button-action.x-button-back:after,.x-button.x-button-action.x-button-forward:after,.x-button.x-button-action_round,.x-button.x-button-action_round.x-button-back:after,.x-button.x-button-action_round.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#c1fa3b),color-stop(2%,#8fca05),color-stop(100%,#5a7f03));}.x-button.x-button-action.x-button-pressed,.x-button.x-button-action.x-button-active,.x-button.x-button-action_round.x-button-pressed,.x-button.x-button-action_round.x-button-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#5a7f03),color-stop(4%,#486602),color-stop(10%,#567a03),color-stop(65%,#5a7f03),color-stop(100%,#5c8103));-webkit-box-shadow:inset #628d00 0 0 .5em,rgba(255,255,255,0.25) 0 .1em 0;}.x-button.x-button-action.x-button-pressed.x-button-back:after,.x-button.x-button-action.x-button-pressed.x-button-forward:after,.x-button.x-button-action.x-button-active.x-button-back:after,.x-button.x-button-action.x-button-active.x-button-forward:after,.x-button.x-button-action_round.x-button-pressed.x-button-back:after,.x-button.x-button-action_round.x-button-pressed.x-button-forward:after,.x-button.x-button-action_round.x-button-active.x-button-back:after,.x-button.x-button-action_round.x-button-active.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#5a7f03),color-stop(4%,#486602),color-stop(10%,#567a03),color-stop(65%,#5a7f03),color-stop(100%,#5c8103));}.x-button.x-button-action.x-button-pressed.x-button-back:after,.x-button.x-button-action.x-button-active.x-button-back:after,.x-button.x-button-action_round.x-button-pressed.x-button-back:after,.x-button.x-button-action_round.x-button-active.x-button-back:after{-webkit-box-shadow:inset #7eb105 0 0 .1em .1em;}.x-button.x-button-action.x-button-pressed.x-button-forward:after,.x-button.x-button-action.x-button-active.x-button-forward:after,.x-button.x-button-action_round.x-button-pressed.x-button-forward:after,.x-button.x-button-action_round.x-button-active.x-button-forward:after{-webkit-box-shadow:inset #7eb105 0 0 -0.1em .1em;}.x-button.x-button-round,.x-button.x-button-action_round,.x-button.x-button-drastic_round{-webkit-border-radius:1.1em;padding:.3em 1.1em;}.x-toolbar .x-button{text-shadow:rgba(0,0,0,0.5) 0 -1px 0;}.x-toolbar .x-button img{display:inline-block;height:24px;width:40px;background-repeat:no-repeat;background-position:center center;}.x-toolbar .x-button span{color:#fff;font-weight:bold;}.x-toolbar .x-button.x-item-disabled span{color:#9aa7b2;}.x-toolbar .x-button{border:1px solid #171a1d;border-top-color:#22272c;-webkit-box-shadow:inset #4e5a65 0 0 .1em .1em,rgba(255,255,255,0.25) 0 .1em 0;}.x-toolbar .x-button.x-button-back:before,.x-toolbar .x-button.x-button-forward:before{background:#171a1d;}.x-toolbar .x-button,.x-toolbar .x-button.x-button-back:after,.x-toolbar .x-button.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#8c9aa7),color-stop(2%,#596774),color-stop(100%,#384049));}.x-toolbar .x-button.x-button-pressed,.x-toolbar .x-button.x-button-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#384049),color-stop(4%,#2d333b),color-stop(10%,#363d46),color-stop(65%,#384049),color-stop(100%,#39414a));-webkit-box-shadow:inset #394551 0 0 .5em,rgba(255,255,255,0.25) 0 .1em 0;}.x-toolbar .x-button.x-button-pressed.x-button-back:after,.x-toolbar .x-button.x-button-pressed.x-button-forward:after,.x-toolbar .x-button.x-button-active.x-button-back:after,.x-toolbar .x-button.x-button-active.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#384049),color-stop(4%,#2d333b),color-stop(10%,#363d46),color-stop(65%,#384049),color-stop(100%,#39414a));}.x-toolbar .x-button.x-button-pressed.x-button-back:after,.x-toolbar .x-button.x-button-active.x-button-back:after{-webkit-box-shadow:inset #4e5a65 0 0 .1em .1em;}.x-toolbar .x-button.x-button-pressed.x-button-forward:after,.x-toolbar .x-button.x-button-active.x-button-forward:after{-webkit-box-shadow:inset #4e5a65 0 0 -0.1em .1em;}.x-toolbar-light .x-button{border:1px solid #384148;border-top-color:#434d57;-webkit-box-shadow:inset #6f8190 0 0 .1em .1em,rgba(255,255,255,0.25) 0 .1em 0;}.x-toolbar-light .x-button.x-button-back:before,.x-toolbar-light .x-button.x-button-forward:before{background:#384148;}.x-toolbar-light .x-button,.x-toolbar-light .x-button.x-button-back:after,.x-toolbar-light .x-button.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#b7c0c8),color-stop(2%,#7e8d9b),color-stop(100%,#596774));}.x-toolbar-light .x-button.x-button-pressed,.x-toolbar-light .x-button.x-button-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#596774),color-stop(4%,#4e5a66),color-stop(10%,#576471),color-stop(65%,#596774),color-stop(100%,#5a6875));-webkit-box-shadow:inset #586c7e 0 0 .5em,rgba(255,255,255,0.25) 0 .1em 0;}.x-toolbar-light .x-button.x-button-pressed.x-button-back:after,.x-toolbar-light .x-button.x-button-pressed.x-button-forward:after,.x-toolbar-light .x-button.x-button-active.x-button-back:after,.x-toolbar-light .x-button.x-button-active.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#596774),color-stop(4%,#4e5a66),color-stop(10%,#576471),color-stop(65%,#596774),color-stop(100%,#5a6875));}.x-toolbar-light .x-button.x-button-pressed.x-button-back:after,.x-toolbar-light .x-button.x-button-active.x-button-back:after{-webkit-box-shadow:inset #6f8190 0 0 .1em .1em;}.x-toolbar-light .x-button.x-button-pressed.x-button-forward:after,.x-toolbar-light .x-button.x-button-active.x-button-forward:after{-webkit-box-shadow:inset #6f8190 0 0 -0.1em .1em;}.x-toolbar-metal .x-button{border:1px solid #666;border-top-color:#737373;-webkit-box-shadow:inset #a6a6a6 0 0 .1em .1em,rgba(255,255,255,0.25) 0 .1em 0;}.x-toolbar-metal .x-button.x-button-back:before,.x-toolbar-metal .x-button.x-button-forward:before{background:#666;}.x-toolbar-metal .x-button,.x-toolbar-metal .x-button.x-button-back:after,.x-toolbar-metal .x-button.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#e5e5e5),color-stop(2%,#b3b3b3),color-stop(100%,#8c8c8c));}.x-toolbar-metal .x-button.x-button-pressed,.x-toolbar-metal .x-button.x-button-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#8c8c8c),color-stop(4%,#7f7f7f),color-stop(10%,#898989),color-stop(65%,#8c8c8c),color-stop(100%,#8d8d8d));-webkit-box-shadow:inset #978b8b 0 0 .5em,rgba(255,255,255,0.25) 0 .1em 0;}.x-toolbar-metal .x-button.x-button-pressed.x-button-back:after,.x-toolbar-metal .x-button.x-button-pressed.x-button-forward:after,.x-toolbar-metal .x-button.x-button-active.x-button-back:after,.x-toolbar-metal .x-button.x-button-active.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#8c8c8c),color-stop(4%,#7f7f7f),color-stop(10%,#898989),color-stop(65%,#8c8c8c),color-stop(100%,#8d8d8d));}.x-toolbar-metal .x-button.x-button-pressed.x-button-back:after,.x-toolbar-metal .x-button.x-button-active.x-button-back:after{-webkit-box-shadow:inset #a6a6a6 0 0 .1em .1em;}.x-toolbar-metal .x-button.x-button-pressed.x-button-forward:after,.x-toolbar-metal .x-button.x-button-active.x-button-forward:after{-webkit-box-shadow:inset #a6a6a6 0 0 -0.1em .1em;}.x-toolbar-translucent .x-button{border:1px solid #000;border-top-color:#000;-webkit-box-shadow:inset #0d0d0d 0 0 .1em .1em,rgba(255,255,255,0.25) 0 .1em 0;}.x-toolbar-translucent .x-button.x-button-back:before,.x-toolbar-translucent .x-button.x-button-forward:before{background:#000;}.x-toolbar-translucent .x-button,.x-toolbar-translucent .x-button.x-button-back:after,.x-toolbar-translucent .x-button.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#4d4d4d),color-stop(2%,#1a1a1a),color-stop(100%,#000));}.x-toolbar-translucent .x-button.x-button-pressed,.x-toolbar-translucent .x-button.x-button-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#000),color-stop(4%,#000),color-stop(10%,#000),color-stop(65%,#000),color-stop(100%,#010101));-webkit-box-shadow:inset #000 0 0 .5em,rgba(255,255,255,0.25) 0 .1em 0;}.x-toolbar-translucent .x-button.x-button-pressed.x-button-back:after,.x-toolbar-translucent .x-button.x-button-pressed.x-button-forward:after,.x-toolbar-translucent .x-button.x-button-active.x-button-back:after,.x-toolbar-translucent .x-button.x-button-active.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#000),color-stop(4%,#000),color-stop(10%,#000),color-stop(65%,#000),color-stop(100%,#010101));}.x-toolbar-translucent .x-button.x-button-pressed.x-button-back:after,.x-toolbar-translucent .x-button.x-button-active.x-button-back:after{-webkit-box-shadow:inset #0d0d0d 0 0 .1em .1em;}.x-toolbar-translucent .x-button.x-button-pressed.x-button-forward:after,.x-toolbar-translucent .x-button.x-button-active.x-button-forward:after{-webkit-box-shadow:inset #0d0d0d 0 0 -0.1em .1em;}.x-toolbar .x-button{margin:0 .2em;}.x-toolbar .x-button span{font-size:.9em;line-height:1.5em;}.x-toolbar .x-button-pressed{border:1px solid rgba(0,0,0,0.3);background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#21272c),color-stop(4%,#161a1d),color-stop(10%,#1f2429),color-stop(65%,#21272c),color-stop(100%,#22282d));}.x-toolbar .x-button-round{-webkit-border-radius:1.1em;padding-left:1.1em;padding-right:1.1em;}.x-toolbar .x-button-action{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#76b7ef),color-stop(2%,#1c87e3),color-stop(100%,#135f9f));}.x-toolbar .x-button-action.x-button-pressed{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#105189),color-stop(4%,#0d4372),color-stop(10%,#0f4e84),color-stop(65%,#105189),color-stop(100%,#10528b));}.x-toolbar .x-button-forward,.x-toolbar .x-button-back{overflow:visible;}.x-toolbar .x-button-forward:before,.x-toolbar .x-button-forward:after,.x-toolbar .x-button-back:before,.x-toolbar .x-button-back:after{content:"\00a0";position:absolute;width:1.944em;height:2.2em;top:0;left:auto;-webkit-mask:.17em .13em url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAjCAYAAABLuFAHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAR9JREFUeNpi/PX7LwMZwAmItzORoVEXiNcBMRupmkWhGvlBHFI0cwLxFiBWgQkQq5kZiFcAsRmyILGaW4DYD12QGM2ZQFyBTYKRQFR5A/FGqLMZSLEZFCVLcWnEp1kalAhgUUKKZh6oRmlCgcGEJUqWQp3MQKrmydiihBjNpdBoIRrAosoPmmaZSdHMBE1yK0jVCNPcCE30DORoJhuANNcD8XdyNZ8C4ggg/kuuszcBcSUlfu4G4unkxDNy8lxHbCpDD+2/UP+fIjeqQCEfBMRPyY1nkEZPIP5IbiK5DHXBL3JT2D4gTqQkeS4D4g5ySk9kACphosjNGIlQb5Cl+Rc0AK+RmyVBUecPxK/Jzc93gNgHlJgYyWwZgMs9gAADAA5SOzDJJHlZAAAAAElFTkSuQmCC') no-repeat;-webkit-mask-size:.815em 1.9em;overflow:hidden;}.x-toolbar .x-button-back{margin-left:.904em;padding-left:.4em;}.x-toolbar .x-button-back:before{left:-0.904em;}.x-toolbar .x-button-back:after{left:-0.864em;}.x-toolbar .x-button-forward{margin-right:.904em;padding-right:.4em;}.x-toolbar .x-button-forward:before{-webkit-transform:rotateY(180deg);right:-0.904em;}.x-toolbar .x-button-forward:after{-webkit-transform:rotateY(180deg);right:-0.864em;}.x-button-plain,.x-toolbar .x-button-plain,.x-button-plain.x-button-pressed,.x-toolbar .x-button-mask,.x-button-mask{background:none;border:0 none;padding:0;-webkit-box-shadow:none;text-shadow:none;-webkit-border-radius:none;height:auto;color:inherit;line-height:auto;}.x-button-plain span,.x-toolbar .x-button-plain span,.x-button-plain.x-button-pressed span,.x-toolbar .x-button-mask span,.x-button-mask span{width:100%;display:inline-block;white-space:nowrap;text-overflow:ellipsis;text-align:center;overflow:hidden;}.x-button-plain.x-button-mask,.x-toolbar .x-button-plain.x-button-mask,.x-button-plain.x-button-pressed.x-button-mask,.x-toolbar .x-button-mask.x-button-mask,.x-button-mask.x-button-mask{padding:0 5px;}.x-button-plain.x-button-mask.x-item-disabled,.x-toolbar .x-button-plain.x-button-mask.x-item-disabled,.x-button-plain.x-button-pressed.x-button-mask.x-item-disabled,.x-toolbar .x-button-mask.x-button-mask.x-item-disabled,.x-button-mask.x-button-mask.x-item-disabled{opacity:.5;}.x-button-plain.x-button-mask img,.x-toolbar .x-button-plain.x-button-mask img,.x-button-plain.x-button-pressed.x-button-mask img,.x-toolbar .x-button-mask.x-button-mask img,.x-button-mask.x-button-mask img{position:relative;width:1.8em;height:1.8em;display:block;overflow:visible;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#d4d9de),color-stop(2%,#8393a0),color-stop(50%,#8695a2),color-stop(51%,#7e8d9b),color-stop(100%,#647482));}.x-button-plain.x-button-mask img.action,.x-toolbar .x-button-plain.x-button-mask img.action,.x-button-plain.x-button-pressed.x-button-mask img.action,.x-toolbar .x-button-mask.x-button-mask img.action,.x-button-mask.x-button-mask img.action{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowMzg5QzBDMTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMzg5QzBDMDVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+AIMEUAAAAcZJREFUeNpi/P//P8NQBkwMQxyMemDUA6MeGOKABV2AkZFxSDgcVvwPZAxMA2J+qvgEGdMRfADiJ0AcSIm7B9oD/6F4KamxMdg88B8aGx5D2QMwPBOIeSj1wH8y8RwgVqTQAyB8D4jt6emBA0BsQMDBIAe1A/EKID5DpLmTccUGtTzwFk8pwgbE3tAk8YqCWMUaG9TwwHkglsPicHVoqfKZAkdjw71AzEktD5zBUuwJQSunP1R2ODK+AcRm5HqAUPp+S0OHw/BPIK6gtgfCoQbT2vEngViLkiSEDaTRKdSrgZgZWyZmRK+8oK1RbA5Gb6aC0uJhaGmDD7wD4vtY+AlE6L0MxNFQGmtrlJIYOI9FzW0gboQWrXIUVGQ/oeawUbMiQwZ+aHIbgdiSSk2JS0CsS4umBDJYitQAc6JSWwhU/LYQkawo9gAztMgElQqiVGrMwct3NKBLCw+AGmtXqdCb+oAn1JmhJc9PWnjADNpcoBScxBHq6lA5vPUPpUmIGgBbWi8C4m/EVKDUqAdoMthArL2DYVRidGBreI7MkZg+R2Ng1AOjHhikmZhxNAYGKgaG2rzxaCYe9cCoB0Y9MOoBigBAgAEAYWLJZ0S09B8AAAAASUVORK5CYII=');}.x-button-plain.x-button-mask img.add,.x-toolbar .x-button-plain.x-button-mask img.add,.x-button-plain.x-button-pressed.x-button-mask img.add,.x-toolbar .x-button-mask.x-button-mask img.add,.x-button-mask.x-button-mask img.add{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozQzk0RTI0QTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMzg5QzBDNDVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+M6e+bgAAATFJREFUeNpi/P//P8NQBkwMQxyMemDUAxQCFlwSjIyMg8qhuAqb0SSEA+QD8TdQwCHhvUDMT5OowYYpAIpA/AfN8TDcSG130iIGtICYGYecymgpNOqBEeCBv0PdA19Gk9CoB0a4B3TxyKkP9qaEGRA/x9GMgOE6PDU16e4kwgM5QHyPgKNogT8A8WogFqLEA8YD4HB0PIeSxpzZIMin6qOl0FD2wIVB4MZrlBajddASYSAy8C4glqC0GCUWgMr2ECB+S8BRvUAsSs96gFRQisfxV4dCnxhfmr081Euhv6PF6KgHRj0w6oFRDwx7D9zBI/disPeJYaARSzPiPKx7SE13MuJyLBWmmDgZIEPtIPAaiB9RGtBY3UlDD1A9pWADLKRqGC2FRj0w6oFRD1AVAAQYAFxCx8S21GL8AAAAAElFTkSuQmCC');}.x-button-plain.x-button-mask img.attachment,.x-toolbar .x-button-plain.x-button-mask img.attachment,.x-button-plain.x-button-pressed.x-button-mask img.attachment,.x-toolbar .x-button-mask.x-button-mask img.attachment,.x-button-mask.x-button-mask img.attachment{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2QjgzNzkzNjVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2QjgzNzkzNTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+iSO5GgAAAcVJREFUeNrsmFFHBFEUx++0qwxDRB8goqcYeuoplp6i14iIZT9AX2KJiOi1HmOJedrXPsAQERFFLxFRNtFapnPa/5hrmpmHuTd7N+fwd3dmzuye373H3Zm/lySJmuaYUVMeAiAAhtGse6PnedaKMNlIbK7AAumQdM81kV5Jl6TNP10Cpq+jXKyRnlF4kXok33YNP3VYAAi0Wb8j7ZBCUot0ShrhWp/UcBGgiwJvS2Z5nfSJnI6LAA8orlXRqW3kxDieBUzHFMCruwNgF+KW+MI4RxqWpC+SXnCd8+ZJb+lXTXIXCrS+9ivyhtrMyx+ZAAiAwwABtsrY+Ye5kmjgsUJaSAAEQAAEQAAEQAAEQAAE4P8DvKvMcfBx/IHjbS1vH+OT9uKT3j/xFXjEGGI8xxiRbtTY+DrOXQtz99YPC84c+5984kJbiUj9NnjPVOYh9XCua1KDLWtxVY0NXJZuL24Bjmd/I3c+Qf6yCwAcJyhqQNqtWPA95HDukWkX2ARgy7CvtQt/bqPX+SWfTdwr7XqktZMTAGkcqMxKL9JAFVjsLgFwrKDvr7XCY7TMks2NxIa9biVM7PXmJH5UHiUEQADsxbcAAwDCiNWEFVi/KgAAAABJRU5ErkJggg==');}.x-button-plain.x-button-mask img.bolt,.x-toolbar .x-button-plain.x-button-mask img.bolt,.x-button-plain.x-button-pressed.x-button-mask img.bolt,.x-toolbar .x-button-mask.x-button-mask img.bolt,.x-button-mask.x-button-mask img.bolt{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBQ0ZFRTBGQjVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBQ0ZFRTBGQTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ0RDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Pa/j3QAAAepJREFUeNrsmk9EBFEcx9+0a1mWWCIiIqLTUiKWrkt0ik5dY09d99ppDl06xaZrdI09pC6x1yjbJTotEa2IUqJM35ffMI0308ybP+89zeNzW+v72ffn9/6s5TgOM7mNMcNbIVAIJGzlOB+2LCu3YFEXF916oAqWTR1CNXAIbkwUmAAX4By8xhrWcQpZRnNgGpyBd7AIvuLMgZ8PRiWDNgeGPAZoyuRSKbAAHin8iewPq0pgBbxQ+A8wa5LAGnij8Bw7ydDOW2ATfHrCP4G6KQLbnuAu7aSLS14CO4LwA1AyQWBfEJ6zmsbynqVABRwFhO+lVZ+yEqhSSFF4PonndRYYB/2A8A4NKaarwCS4CgkfRo96TpkA35TdSYY/pjmjrAf4mL6XDN8VLad5CixRRZUJb+u8jNb/EOvoXge6Icvolu51oBkQnm+dN3ReRt0KPBCE51voVpxrFVUCHUH4Z/+RUVeBGc9Jy+UBNGQutlQI+Pc/Qzq4MxME1n3hb6k6MxMEar5KfEmXVcwUgT1P+D7tSJkpAg3PQf3XjtIEgRINF4dOX5U0r9fzEGiH7Sh1F5iiAmVn9cARhSS303zIXINdlS80sgItWuMPVD8xlSW/fwROdXgZ0eGBI78e0PFvCcVDdyHw3wW+BRgAjB33slwE7Y0AAAAASUVORK5CYII=');}.x-button-plain.x-button-mask img.bookmarks,.x-toolbar .x-button-plain.x-button-mask img.bookmarks,.x-button-plain.x-button-pressed.x-button-mask img.bookmarks,.x-toolbar .x-button-mask.x-button-mask img.bookmarks,.x-button-mask.x-button-mask img.bookmarks{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OUNFQ0M5NjVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OUNFQ0M5NTVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Dn2JaQAAAoVJREFUeNrsWN9HREEU7laWiJvoKSIiIpaeor8heo2IiIjoqaeeoqd9ihLRQyIiIqKUKFE2EaVIRMRSStmUcjvDd3P2mLt35vZzNYfPmpk9Z843v+45xwuCoKyUpbysxMURcAQcAUfgd6WSNzzPKwmn+bfrXx2hdsIkIUt4VguB3yz62y1stRIy0M3DVh7tDMbNtyNEhFQTljBJHDYIjUWmS4Gsia15gh/rcwyBFsKpMByuVIgHMa7aHRpb9YRdjaPc1rMYu9QtiCmBVuHcIaELqyhXVfUfC5Jp4fw1G78i9GtWWLUHxLzqv3W2BFJwODQyo3FcSgX+F+qcMp0N1r8WdTQE4W2ms2RLYJQpL8M5U1lluiOEQbGLKUM7iuQR0+0xJaAmuIPSDaHW8mWrg57Sz7Gjo45Fs6WtJnYvLsOFjCPgi5cgiYxpLmsmoa1FZsOXBL7rQzan6ZtKaOvlN2KhM8I+a28SzkstmDsQhFw06gg4Ao6AI+AIOAL/loAKY/uQWORElHmB/m7kz3FSixxhRWPrBv1qvCppUs/D6QVCL5w0ScRzmLxCJO+TcGhck0MXszWMhCoynPZ4JobClo+EJkqeCCeENzjaolmtHcItoRPtdUKDJqF5RKAX2mqO2cUawn1B9hizAwGr/0wXqf2oKsQs4dVgZVXCP0Foi7DVhuRHt1O+bUYWIC81LTSlRXVCYgtpook0imJAIgJrxpepsBC2rXF+0SKh54/HfFICxwmc5yR4QWzPsrIhSWzZEsjjcn5G0rg7DxbHJkoa8LAYExj6ou/MCJ7Cr5B+02c0ZVINsDhKb3h6PysffhX4rCHw54X7XBk14II5R8ARcAR+RN4FGABWgxZ4o2kVAAAAAABJRU5ErkJggg==');}.x-button-plain.x-button-mask img.chat,.x-toolbar .x-button-plain.x-button-mask img.chat,.x-button-plain.x-button-pressed.x-button-mask img.chat,.x-toolbar .x-button-mask.x-button-mask img.chat,.x-button-mask.x-button-mask img.chat{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2QjgzNzkyRTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2QjgzNzkyRDVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+bzQhzgAAAolJREFUeNrsWVFEBEEYbq8cccQRsRwRl4iIOO45R08RvfZ0RE8RET310GOJiONY7imOiChS6qWHXMrlKCVKKaWUUsr1D//yG7t7s3Nzc3fsz2eZnd3//2b++Wf+f4xyudzSzBJqaXIJCAQEAgJNLm18g2EYDW0wH/bbNOntBMS4tmNljCgUSQSQBuQBz0yNCwqAJcCQtL2KCTDDFyoY7YYiYLSeBNgoXkgYzmMPYNaDgK20HTCIYG5kAR59krgHJOvhQm7SChgDbPsg8Qror0TA4I32GUZNHOkBh2m/BpwB9gEfpD2FCzcu8P8nQC/gxS2MyswAc5FJwIHgSH4CcpxLhAGrgt+vqnShNPqn7ALdAHST/80LfPNLv5ElEPXpv154RzeyxRL4ZrYaAsy3bxQZT0d1hLhksUL/LVkCbORPFRtPo0wP6hkR2OSkCGRrZLyNPNFV8OhXkiGQqLHxNvpQ34xHn203AqEKEUeH2Gvh0KPPrt/TaCtGCx0zsE72Bqf3315hNOSxw0Y0zUAXPn8QvCzjru4rpTQ1JlkPJJyGuXfngEWZnPhLI4Frl0G7AwzTc5CfNRDBzUbHGkigzgku6pjVHqf3NBhfIvo2sC2rKiNLaSAwjrpiZMZXVKaUmzU03iJ6cqT9CsO4EgKdivJcp2O1bWTc4f2cypw4ppjEmkO4ZAWBI67flMqcmEWlTJWGPxOfd5MBNDyDiKpO6m8l6z3TqnZ23l4/pcUOsu3zO+kDjt4l4A2TeYYdfNa2WCo4A/MuRaio7uKujAsl8VRIU8Ilh8XYkARSWBqx00BLsKajhYBIYStKzuMngL9Guh+otjLXeBcczXbxHVzyBQQCAgGB+sq/AAMA6al1Ely3shcAAAAASUVORK5CYII=');}.x-button-plain.x-button-mask img.compose,.x-toolbar .x-button-plain.x-button-mask img.compose,.x-button-plain.x-button-pressed.x-button-mask img.compose,.x-toolbar .x-button-mask.x-button-mask img.compose,.x-button-mask.x-button-mask img.compose{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowMzg5QzBCRDVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMzg5QzBCQzVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+pwS0EQAAAh1JREFUeNrsmc1nA0EYh7taYQkhlNJTryXX0msppYQQSskp9BpKKaGUspRS8gf01FMpJYQSQimlp1xD6an0FEIJIZ2Xd3U6nUlmd9/JzugOv0NWdjxPZibz5U2n0yWXi5cJZAL/XGBFaeZ5bhhAC8hiWVlm2XZVIMdyxzJmqbomAPAPgImZ/JGwXKDNwfMSB64IVLHrqCUsFIBus6UhAc82bBMI+zzAlWdIQAvUorbAIUuPZSj5NeJmwOIrBqwoUcFnP/CaAvAffEsIHeaTZZODDwfsK8sRwo4RPCzlX/CaAicG4L+4fg7wHQ6+yHIqtEQ1yUw8IIafcF3DF+ALLE2F8HocgZyksgbRgOXhXxD+TPFvE7sFCpIKC8Twz1jneWT4lAQA/lGAv4gFn4IAwHc14SsUy2lKARE+zxIo4MtU+wEqAR8nQXj/CeEvE8MvSEAGf6WA36fekSUV8BE6hIfP12TwhgXyHHwP4VsK+D1Te+IkAmG3GeHyoKWYYXn4IHIXNSRQEt75mAMPM/5NrDFmSCDQWMzt4neLXGtZI9DXhJctFlMXKM2B3xERbBNoKuC7EngrBfrcur+Du6vVWQg2CazhvraGg1MLwbYWiDwVuSzgmxaQbSmb+JyiyHZhPvXx+puBUwlV3k3cDzQWKHBs6oLjfgHwbTxEM3ZDU8fJiPJocYh11uMOIuUlnyt3ZNk1ayaQCWQC6ZZvAQYAxvOHheNIb1gAAAAASUVORK5CYII=');}.x-button-plain.x-button-mask img.delete,.x-toolbar .x-button-plain.x-button-mask img.delete,.x-button-plain.x-button-pressed.x-button-mask img.delete,.x-toolbar .x-button-mask.x-button-mask img.delete,.x-button-mask.x-button-mask img.delete{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowMzg5QzBDMTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMzg5QzBDMDVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+AIMEUAAAAcZJREFUeNpi/P//P8NQBkwMQxyMemDUA6MeGOKABV2AkZFxSDgcVvwPZAxMA2J+qvgEGdMRfADiJ0AcSIm7B9oD/6F4KamxMdg88B8aGx5D2QMwPBOIeSj1wH8y8RwgVqTQAyB8D4jt6emBA0BsQMDBIAe1A/EKID5DpLmTccUGtTzwFk8pwgbE3tAk8YqCWMUaG9TwwHkglsPicHVoqfKZAkdjw71AzEktD5zBUuwJQSunP1R2ODK+AcRm5HqAUPp+S0OHw/BPIK6gtgfCoQbT2vEngViLkiSEDaTRKdSrgZgZWyZmRK+8oK1RbA5Gb6aC0uJhaGmDD7wD4vtY+AlE6L0MxNFQGmtrlJIYOI9FzW0gboQWrXIUVGQ/oeawUbMiQwZ+aHIbgdiSSk2JS0CsS4umBDJYitQAc6JSWwhU/LYQkawo9gAztMgElQqiVGrMwct3NKBLCw+AGmtXqdCb+oAn1JmhJc9PWnjADNpcoBScxBHq6lA5vPUPpUmIGgBbWi8C4m/EVKDUqAdoMthArL2DYVRidGBreI7MkZg+R2Ng1AOjHhikmZhxNAYGKgaG2rzxaCYe9cCoB0Y9MOoBigBAgAEAYWLJZ0S09B8AAAAASUVORK5CYII=');}.x-button-plain.x-button-mask img.home,.x-toolbar .x-button-plain.x-button-mask img.home,.x-button-plain.x-button-pressed.x-button-mask img.home,.x-toolbar .x-button-mask.x-button-mask img.home,.x-button-mask.x-button-mask img.home{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozQzk0RTI0QTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMzg5QzBDNDVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+M6e+bgAAATFJREFUeNpi/P//P8NQBkwMQxyMemDUAxQCFlwSjIyMg8qhuAqb0SSEA+QD8TdQwCHhvUDMT5OowYYpAIpA/AfN8TDcSG130iIGtICYGYecymgpNOqBEeCBv0PdA19Gk9CoB0a4B3TxyKkP9qaEGRA/x9GMgOE6PDU16e4kwgM5QHyPgKNogT8A8WogFqLEA8YD4HB0PIeSxpzZIMin6qOl0FD2wIVB4MZrlBajddASYSAy8C4glqC0GCUWgMr2ECB+S8BRvUAsSs96gFRQisfxV4dCnxhfmr081Euhv6PF6KgHRj0w6oFRDwx7D9zBI/disPeJYaARSzPiPKx7SE13MuJyLBWmmDgZIEPtIPAaiB9RGtBY3UlDD1A9pWADLKRqGC2FRj0w6oFRD1AVAAQYAFxCx8S21GL8AAAAAElFTkSuQmCC');}.x-button-plain.x-button-mask img.locate,.x-toolbar .x-button-plain.x-button-mask img.locate,.x-button-plain.x-button-pressed.x-button-mask img.locate,.x-toolbar .x-button-mask.x-button-mask img.locate,.x-button-mask.x-button-mask img.locate{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2QjgzNzkzNjVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2QjgzNzkzNTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+iSO5GgAAAcVJREFUeNrsmFFHBFEUx++0qwxDRB8goqcYeuoplp6i14iIZT9AX2KJiOi1HmOJedrXPsAQERFFLxFRNtFapnPa/5hrmpmHuTd7N+fwd3dmzuye373H3Zm/lySJmuaYUVMeAiAAhtGse6PnedaKMNlIbK7AAumQdM81kV5Jl6TNP10Cpq+jXKyRnlF4kXok33YNP3VYAAi0Wb8j7ZBCUot0ShrhWp/UcBGgiwJvS2Z5nfSJnI6LAA8orlXRqW3kxDieBUzHFMCruwNgF+KW+MI4RxqWpC+SXnCd8+ZJb+lXTXIXCrS+9ivyhtrMyx+ZAAiAwwABtsrY+Ye5kmjgsUJaSAAEQAAEQAAEQAAEQAAE4P8DvKvMcfBx/IHjbS1vH+OT9uKT3j/xFXjEGGI8xxiRbtTY+DrOXQtz99YPC84c+5984kJbiUj9NnjPVOYh9XCua1KDLWtxVY0NXJZuL24Bjmd/I3c+Qf6yCwAcJyhqQNqtWPA95HDukWkX2ARgy7CvtQt/bqPX+SWfTdwr7XqktZMTAGkcqMxKL9JAFVjsLgFwrKDvr7XCY7TMks2NxIa9biVM7PXmJH5UHiUEQADsxbcAAwDCiNWEFVi/KgAAAABJRU5ErkJggg==');}.x-button-plain.x-button-mask img.bolt,.x-toolbar .x-button-plain.x-button-mask img.bolt,.x-button-plain.x-button-pressed.x-button-mask img.bolt,.x-toolbar .x-button-mask.x-button-mask img.bolt,.x-button-mask.x-button-mask img.bolt{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBQ0ZFRTBGQjVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBQ0ZFRTBGQTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ0RDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Pa/j3QAAAepJREFUeNrsmk9EBFEcx9+0a1mWWCIiIqLTUiKWrkt0ik5dY09d99ppDl06xaZrdI09pC6x1yjbJTotEa2IUqJM35ffMI0308ybP+89zeNzW+v72ffn9/6s5TgOM7mNMcNbIVAIJGzlOB+2LCu3YFEXF916oAqWTR1CNXAIbkwUmAAX4By8xhrWcQpZRnNgGpyBd7AIvuLMgZ8PRiWDNgeGPAZoyuRSKbAAHin8iewPq0pgBbxQ+A8wa5LAGnij8Bw7ydDOW2ATfHrCP4G6KQLbnuAu7aSLS14CO4LwA1AyQWBfEJ6zmsbynqVABRwFhO+lVZ+yEqhSSFF4PonndRYYB/2A8A4NKaarwCS4CgkfRo96TpkA35TdSYY/pjmjrAf4mL6XDN8VLad5CixRRZUJb+u8jNb/EOvoXge6Icvolu51oBkQnm+dN3ReRt0KPBCE51voVpxrFVUCHUH4Z/+RUVeBGc9Jy+UBNGQutlQI+Pc/Qzq4MxME1n3hb6k6MxMEar5KfEmXVcwUgT1P+D7tSJkpAg3PQf3XjtIEgRINF4dOX5U0r9fzEGiH7Sh1F5iiAmVn9cARhSS303zIXINdlS80sgItWuMPVD8xlSW/fwROdXgZ0eGBI78e0PFvCcVDdyHw3wW+BRgAjB33slwE7Y0AAAAASUVORK5CYII=');}.x-button-plain.x-button-mask img.maps,.x-toolbar .x-button-plain.x-button-mask img.maps,.x-button-plain.x-button-pressed.x-button-mask img.maps,.x-toolbar .x-button-mask.x-button-mask img.maps,.x-button-mask.x-button-mask img.maps{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3NEFENEYxQjU3RTgxMURGOTdENEMzMjQ2NzYyMTk1QSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3NEFENEYxQTU3RTgxMURGOTdENEMzMjQ2NzYyMTk1QSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNEMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+DLYUYAAAANpJREFUeNpi/P//P8NAACaGAQIjz2IWdAFGRkaaWYacnkjxsRwUuwKxOpF6QOrqoPowXYGMsVhWAcQnQUqB2BuIt0DZz4F4NRBnArEKkh4tqGVXoepAWBfdLlwWSyNZhoyRLUbH26Hy2OQwLMYV1EJAbEZiFPKMZqdRi0ctHrV41OJRiwfE4r9A/IVEPWeB+B05Fl8G4nogVgXiHUAcAWWnA/FKIH6BRc8FIK4BYnkgNgHip8S2QOSgrQgVIn2lAm0EyOHTg2wPI3pzh16NPRZ8kqOpelhYDBBgAA82dxwquJETAAAAAElFTkSuQmCC');}.x-button-plain.x-button-mask img.organize,.x-toolbar .x-button-plain.x-button-mask img.organize,.x-button-plain.x-button-pressed.x-button-mask img.organize,.x-toolbar .x-button-mask.x-button-mask img.organize,.x-button-mask.x-button-mask img.organize{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1RTc4QzUzRjVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1RTc4QzUzRTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+WqZUcgAAAbtJREFUeNpi/P//P8NQBkwMQxyMemDUA6MeGPXAwAIWbIKMjIyD0rHY6ixSYkAUiD+DzKExfgXEPLRIQkWkGEwBAAVUJrGKGbFFC5YkJATED5E88AiId1DZ4U5ArAJlvwZiJSD+QigJgQXRMRbQiBbNsTQIeW80O6qJcisRHuAH4g9IBt8DYmYaJZ+TSPa8RU+y5HqgDi1kkmmY/tFjoY5SD/BAQwJmICgfsNE4E59Bsu8DNAXg9AALAcNyoBkYBjiB+BiNPSCBlnxBpV89uaXQK2ixNpAAVBIJA/EvrG4l4IHB0l0TAOKPlNbEI64xtxgacrxAPJ2mDSQ8pRAlbRp7JHMMKDSLH5dbaRkDf3GwR/sDox4Y9QCtu5RkgMtAPAVN7A4S+ykQp6PJgxqFZoOlGH2L1BkhBkgD8XNqFKPUrAeuIrcc8QBQg/A8teoBaldkW4jo7KymZkVGi5q4C4/jG6ldE9OqKYGtzxxCi6YErTzwE4gt0dpC34aSB2ADVIpALAfET2jVmKN1h+YXtCHHSasODQuNK0paDwCMtoUGfVuIcTQGBiIGhtLk92gmHvXAqAdGPTCwACDAADEXtKuLWdQHAAAAAElFTkSuQmCC');}.x-button-plain.x-button-mask img.refresh,.x-toolbar .x-button-plain.x-button-mask img.refresh,.x-button-plain.x-button-pressed.x-button-mask img.refresh,.x-toolbar .x-button-mask.x-button-mask img.refresh,.x-button-mask.x-button-mask img.refresh{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDNzg5QjNFMjVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDNzg5QjNFMTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ0RDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Z0ThtAAAAh5JREFUeNrsmc9HhEEYx3vbxLJEp4iIJSKW6LR0is2eolNEp6VTp/6A6BQREZ26dewUUWJ5WSJKEV2WWIosxdpEeXsmE2vN877P877vzDsxw/cy7/z4fuadd+aZeb0gCAb+c/IcgANwAA7AfgDP84ya4gyqboA8aAL0qAvgt3CUEqQR0DNoigtAlQmAgAthIwALwlYAMoTNACSIrABmQTugBqilME6GMA0gjF9GGGZBmALIgXZjGO+HKGYBIDaos4TmheqggmmAXIrm81lMoa0IY03QPqgG2kDK+Jh53QDjoC5i6gm0TFhGQ83rBjhCzN+Bxgj7gK+a86YA8sjot2XEGbWRkczrBKgio79J2IkbVPM6AfYU5rvSZBiAzzHPBRhitFtU5D2A3kPqfIAWQR3FszJoui9PlDseSJtWJl/xBk4SBHoHyErGegODjA6/FXmFBACqpbTDbYQD8EKcVtSkCuRedQLcK/ImQaUY5kW9OWIfqX0DZWQZPY0BcIi0VdW9EzeRjtcZ5peQNtp/34VOgFWk8y8ZuEWlNdAn0sa2iVhIhNI3IZHolRzh3tVpWE6N85B6rd46usPpUsgo9p+2moRyoq150yeyFTltghRUy+pMXAG9JTDelQOR6a1EUR4Nueav5W2GNfdCFXlOjppWdWzU4wKkfb0uwucF0ChoRq5AtzJivaCGCjb9H7DjB4f7R+YAHIADcABY+hFgAOKBjeW/q0xSAAAAAElFTkSuQmCC');}.x-button-plain.x-button-mask img.reply,.x-toolbar .x-button-plain.x-button-mask img.reply,.x-button-plain.x-button-pressed.x-button-mask img.reply,.x-toolbar .x-button-mask.x-button-mask img.reply,.x-button-mask.x-button-mask img.reply{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozQzk0RTI1MjVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozQzk0RTI1MTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+vpmx+QAAAYRJREFUeNpi/P//P8NQBoyjHhj1wKgHRj0w6oFRD4x6YLB4gJGRcdA7GD3AmWhkTxpdfQTDVACKQLwdZCw93At2MxU9AAr1z1DHDykPSCOF+v+h5oFYIP6AxfGD3gO4Qn1IeCAKT6gPag+IAvE6IhwOwzOBuAiIA6ExNqAeIDbU8eEzQFwHxOr09ACpoU4svgfE7UBsT0sPgKL+FQ0cj47Pk+IRYjwACvXVdHA4OgaValqkegBbW+g7EL8bgHaaBzQ2MqnVFgIZ+GQAYgKE51ArE/MD8aLB5Alyi9GBio0cQh4gpUMDio1p0DqBGKAHxGxIfBWoGTBgDMUGQMyMwwxQfjQE4pu4OjTkNCWILV5JAU7QmvstFnNW06IxR0wFRw5ggzY/kGv9P9DYo0lzOgRPbFAChNDqogpadmhwxQY1QBHUrL306FKiN/ioBfKhXVWaewC9o0NNsAiarGjuARhIoLIHhHB5YMgPbI2OjY56YNQDox4Y9cCoB0Y9MOoBCgBAgAEAgXUuj7lz35gAAAAASUVORK5CYII=');}.x-button-plain.x-button-mask img.search,.x-toolbar .x-button-plain.x-button-mask img.search,.x-button-plain.x-button-pressed.x-button-mask img.search,.x-toolbar .x-button-mask.x-button-mask img.search,.x-button-mask.x-button-mask img.search{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1RTc4QzU0MzVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1RTc4QzU0MjVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+KW97pAAAAnNJREFUeNrsmk9EBFEYwHfaLBEREUunJbZLp05RIiIiYoko0Smi0xIREdEpolOUPaQuEVGiRIfUJYrUZbNplRKlVcr2Pd6Qp/fNN+/P7Kz28bvs7Lz3fm/efvN9M+sUi8VIObeqSJm3ikBFQLNV//Wh4zihnbAYdKo1+4sB3UA/0ArUAEngCngDLoFNYA8oWDMSIbQ6YBZ4ZV0QeAcW+HlG56siwFb7iThxkRdgqJQCM4oTF5kHokELzBuavMtSkAJDhifvMqYr4Pw1YSGMJoBzHmFk7RBYB06ATx6dWFRK8Sgla+y7LcCNahilXIENZAXvgR6PMbuALNLHts0t1AR8SQbO8eOU1si/L5NI2hKYlAzIpNp8bt8+RCBtS+BIMmBGMYyvSvo7tiHA4vSHZMB2RYF25IrGTAvEkcGiigLYojSrCGDpdL3k80fgW1GAnXcnOVZruh74NDkQ4fyCaYFHZAINipOvR859Ni3AOsxLjg0oCvQii5W3UQ9kJD+4LDVqCD/ga0l/W7buA/0Gs8kFpK9RWwIxZNUYi8SQOof08eCRKGqn0ymPlPgUSeg6+F0WO388iHpgl5Dbs5U8AJaBfZ6pUmqCVT83RlWBBo+tpAtZQqekbPbI6wOR0C3qGwl72qqEiccqLDJN+3gm5PLKQ2lOR8KEwO+0IE24IhfA1K8UIqEjoVLUU0vGOC/k3YFvgTNJTpXgESuO9LkGjIiZr0pRb6spXQmTW6gkEmEToEqshFmAKjEYZgGKxI7fmjjoxh4vdiI1c8HkC45SXInhsG8hMXnM8IyW3QgnbN/IAmukl3zl9PeDyovuisB/F/gRYABssMjt4LQu6AAAAABJRU5ErkJggg==');}.x-button-plain.x-button-mask img.settings,.x-toolbar .x-button-plain.x-button-mask img.settings,.x-button-plain.x-button-pressed.x-button-mask img.settings,.x-toolbar .x-button-mask.x-button-mask img.settings,.x-button-mask.x-button-mask img.settings{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2RTU0NzYzMjZDM0UxMURGQTkzQkREOTEyRkYzNzlDMyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2RTU0NzYzMTZDM0UxMURGQTkzQkREOTEyRkYzNzlDMyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ1RDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+rIiG/AAAAmFJREFUeNrsmd9Hg1EYx3trRsSIESMiRlcRo4tERBkRsW76A7qN/oMussS6iYhdLaXEpkREjK66ilhK3YyllBKjLOs5POM4ztl73vO+52zLOXwu3rPz4/nuPed5nnNep16vd3Vy6e7q8GIFWAFWgBXQ2hKSaeQ4TssMdItTdgk1KWNAifyJwD0wqe0VuaFY8mh8g0sd9ukSEAdqjABCot0ErAJZYJqqmwMeOcYTvoAFZpmlcRzjAnYY497QwLoEH7gv6LqsSQEjkoZ6JeFVgKoXegd+AvYnv8CrKTf6DBwIfiPCNoAJEgMpyPM68Cnodwo8mXSjy5wlcAYMu0wZAfY5fVdU7PMTyAaZ5z1gFnhw6UfewCKwxdQPmAxkvUCZ+vdIxO1TmL5IjVHGcbV7oShw7DdAUXGAHicH9OsSEAa2gW9m0pJP73PDjFcFNnG+QAWkBL4761NATjBuKuhNHBPUDyhvwOZ9Y0HHgWdB/QwwrihgFJjyOJ+ygAJw1CT7VBUgCmoFXW6U+P9zZr1eKwq4Zca5wDxLezLXh9knPfmcR+PnOdlspJXpdMXDZiYb9IXpnzadStxxPEpRYj/EsV2UqX9SssLHGzgU+G8S6DLsWkbDM5xA2GDX5IEmJjjzstRwg8u0rbJphM4lRDxRj0S7Hsx3ZNqSRG7I5BLKcw7sfo6Tx6YP9STZWsO9kMTnMB50ROuceJ4lfCMRzHdO6OStXe6FZmQP7e16scVLk6866WaukX5XKA+T1CHAkTHQ5/V6nBP0ArteNyFA6/eBUBCD/NfvA1aAFWAFWAHu5U+AAQCAVQMKATKQigAAAABJRU5ErkJggg==');}.x-button-plain.x-button-mask img.tag,.x-toolbar .x-button-plain.x-button-mask img.tag,.x-button-plain.x-button-pressed.x-button-mask img.tag,.x-toolbar .x-button-mask.x-button-mask img.tag,.x-button-mask.x-button-mask img.tag{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1RTc4QzU0NzVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1RTc4QzU0NjVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNFMUQ4QTNFMkIyMDY4MTE4N0U0QTM4OEIzRjk4RDc0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+kSvM4wAAAcdJREFUeNrsmsFKxDAQhlsVwdOC4Eko+Ay+wb6HD+DJkw8geNqT4FkWBE/CgiB49QH0JAiiIIIHURBhQdFLnUACMabbZDKZtJqBn122S/t925k20C3rui76XHNFzysLZIH/LrDQtKEsy87B2q6Yf/cMGLUI2YVsQJYgd5AvyJXcfilfryEfkHvIK9tpscWAPxZf9cwppIrN2iYg4E8Q8CqPkLWUAtsG0DNkBNmHTLklMAJnGsib0RLrkE9OCYzARIOYWPZ5wdlONs62y+iT9n7F2DYPWfY4/irknHImXK5CO8avuKXBj5CD/YCVwLTQpgVAzMJ7wJUJLYFpoRfLZwN5MwupiqqdfGaAukgkMGegWxItMzAI7HXSmcAMceFxs4ougRliUTdMK2NUO7kIHDAu75VERTUD6qZ1xNRGejtVVDPQGYkQASVxmFIiVCCVxK08LolACompWrpQCXBKiEXjkLKFOCV+wMcQiCnxCz6WgJIYx4aPKUAp0QgfW4BCYiY8h0CIRCs8lwBGwgmeU8BHwhmeW8BFwgs+hcAsCW/4VAKqxqHwqQVE7cnl8RC7Axtn2QSbn5GlfkbWl/9Q5AfdWSCwvgUYAIMchE2Vr1XxAAAAAElFTkSuQmCC');}.x-button-plain.x-button-mask img.trash,.x-toolbar .x-button-plain.x-button-mask img.trash,.x-button-plain.x-button-pressed.x-button-mask img.trash,.x-toolbar .x-button-mask.x-button-mask img.trash,.x-button-mask.x-button-mask img.trash{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDNzg5QjNERTVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDNzg5QjNERDVGQjIxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ0RDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ORfOJwAAAXVJREFUeNpi/P//P8NQBkwMQxyMemDUAyPdAyyEFDAyMg6Iw4gtHakVA6VA/ApkLwEMUlNHdZ/iw0SACUQ4HB1Po9RdcPdR6IEWMhwPwxMG2gNsQPwNyUErgJgfj3qQ3Hw0TygOpAf4kRzyB4h5iEhuzED8EEmfDaUeoFYm/gLFhMBfIH40UJkYFN0nKUjzhDAoZrRomYQ20tDxMHyAVh6wpIPjYdiDFnlAC4e4HqiyJhOL4TDTgJQswEiorMfSlEDWIADEHynJgshWDVRTAlQ0tkMxM5JYL5oYJ7TyahzopgRyegXVBXJIfDmoGl0sYjZo+tDNGtB6YLQ/MOqBUQ+MemDUA6MeGPXAqAdGPTDqAdIBCxXM+AIdbWBAGpl4h0XsNZT+DsS/qOUBavXIpKH8p0hy2MTkoB54Ta0eGaUekEFzICmAEzqyN6AeoCYYsD7xkCuF7tPAHY/omYnpAkZMEmKhVkiM1sSjHhj1wKgHyAIAAQYA/GWCyUO0fn0AAAAASUVORK5CYII=');}.x-button-plain.x-button-mask.x-button-pressed,.x-toolbar .x-button-plain.x-button-mask.x-button-pressed,.x-button-plain.x-button-pressed.x-button-mask.x-button-pressed,.x-toolbar .x-button-mask.x-button-mask.x-button-pressed,.x-button-mask.x-button-mask.x-button-pressed{background:none;-webkit-box-shadow:none;}.x-button-plain.x-button-mask.x-button-pressed img,.x-toolbar .x-button-plain.x-button-mask.x-button-pressed img,.x-button-plain.x-button-pressed.x-button-mask.x-button-pressed img,.x-toolbar .x-button-mask.x-button-mask.x-button-pressed img,.x-button-mask.x-button-mask.x-button-pressed img{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#76b7ef),color-stop(2%,#1c87e3),color-stop(100%,#135f9f));}.x-toolbar .x-button.x-button-mask img{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#fff),color-stop(100%,#e3e7e9));}.x-toolbar .x-button.x-button-mask.x-button-pressed{background-image:-webkit-gradient(radial,50% 50%,0,50% 50%,30,color-stop(0%,rgba(164,207,244,0.7)),color-stop(50%,rgba(100,116,130,0.6)),color-stop(100%,rgba(100,116,130,0)));}.x-toolbar .x-button.x-button-mask.x-button-pressed img{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#a4cff4),color-stop(100%,#5fabec));}.x-toolbar .x-hasbadge,.x-tabbar.x-docked-bottom .x-hasbadge,.x-tabbar.x-docked-top .x-hasbadge{overflow:visible;}.x-toolbar .x-hasbadge span.x-badge,.x-tabbar.x-docked-bottom .x-hasbadge span.x-badge,.x-tabbar.x-docked-top .x-hasbadge span.x-badge{-webkit-border-radius:10px;padding:1px 5px;z-index:30;-webkit-box-shadow:#000 0 1px 3px;text-shadow:rgba(0,0,0,0.5) 0 -1px 0;color:#fff;text-align:center;border:2px solid #fff;position:absolute;width:auto;min-width:20px;height:20px;font-size:10px;top:-2px;right:0;max-width:40px;font-weight:bold;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#f66),color-stop(2%,#d60000),color-stop(50%,#db0000),color-stop(51%,#c00),color-stop(100%,#900));display:inline-block;}.x-splitbutton .x-button{-webkit-border-radius:0;margin:0;}.x-splitbutton .x-button:first-child{border-top-left-radius:.4em;-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;}.x-splitbutton .x-button:last-child{border-top-right-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em;border-bottom-right-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;}.x-splitbutton .x-button:not(:first-child){border-left:0;}.x-picker .x-panel>.x-panel-body{position:relative;z-index:1;}.x-picker .x-panel>.x-panel-body:after{content:"\00a0";position:absolute;width:100%;height:40%;top:0;left:0;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#bbb),color-stop(100%,#fff));z-index:2;}.x-picker .x-panel>.x-panel-body:before{content:"\00a0";position:absolute;width:100%;height:40%;top:0;left:0;top:auto;bottom:0;border-top-left-radius:10px;-moz-border-radius-topleft:10px;-webkit-border-top-left-radius:10px;-webkit-border-top-left-radius:10px;border-top-left-radius:10px;border-top-right-radius:10px;-moz-border-radius-topright:10px;-webkit-border-top-right-radius:10px;-webkit-border-top-right-radius:10px;border-top-right-radius:10px;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(100%,#bbb));z-index:2;}.x-picker .x-panel .x-scroller{z-index:5;}.x-picker .x-panel .x-picker-chosen{z-index:4;border-top:.12em solid #166cb6;border-bottom:.12em solid #166cb6;height:2.5em;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#c4e0f8),color-stop(50%,#c8e2f8),color-stop(51%,#badbf7),color-stop(100%,#8dc3f1));-webkit-box-shadow:#ddd 0 .2em .2em;left:0;position:absolute;opacity:1;}.x-picker .x-panel:first-child .x-picker-chosen{border-left:.12em solid #166cb6;left:.2em;border-top-left-radius:5px;-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;-moz-border-radius-bottomleft:5px;-webkit-border-bottom-left-radius:5px;-webkit-border-bottom-left-radius:5px;border-bottom-left-radius:5px;}.x-picker .x-panel:last-child .x-picker-chosen{border-right:.12em solid #166cb6;left:auto;right:.2em;border-top-right-radius:5px;-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;-webkit-border-bottom-right-radius:5px;border-bottom-right-radius:5px;}.x-picker .x-panel .x-picker-chosen-item{text-shadow:rgba(255,255,255,0.25) 0 1px 0;}.x-picker .x-panel .x-picker-item{z-index:20;height:2.5em;line-height:2.5em;font-weight:bold;padding:0 10px 0 10px;border-right:1px solid rgba(0,0,0,0.2);border-left:1px solid rgba(255,255,255,0.2);}.x-picker .x-panel .x-picker-right{text-align:right;}.x-picker .x-panel .x-picker-center{text-align:center;}.x-picker .x-panel .x-picker-left{text-align:left;}.x-tabbar.x-docked-top{border-bottom:5px solid #306aa1;}.x-tabbar.x-docked-top .x-panel-body{padding:0 21px;}.x-tabbar.x-docked-top .x-tab{margin:5px 21px 0;color:#295d8e;font-size:19px;padding-top:10px;height:43px;text-shadow:#fff 0 1px 0;overflow:visible;position:relative;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAAFYCAYAAADwTLpoAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFMTE4N0Q1QzM0MjA2ODExOTM1OEVFMjA0ODdFMjBFMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxM0Q3QTNGMDUxN0YxMURGQkRFOEU2MjU4MTJCMzg4NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxM0Q3QTNFRjUxN0YxMURGQkRFOEU2MjU4MTJCMzg4NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA0ODAxMTc0MDcyMDY4MTE5MTA5QUMxOTdCQUI4RjJFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxMTg3RDVDMzQyMDY4MTE5MzU4RUUyMDQ4N0UyMEUxIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+dd847AAAE6BJREFUeNrsnXtoXPl1x8+9d+5rntJo9LKtkWVrI1u77jpsWeKiVqmLiooWFwdD2sDCgktKycKWXQpbtigEAu4/KRQnf+wfhZLiEEgITRrYpaWNw4bmj5Cw6WY3u1lj73pffr9kaUYazb095zdzRyNZumPP3Mfvrs/PHGlGkmfufO73nN/j/u45iuu60Es7+MKPu/lvU2hfRDuCNo1W3uHvLqK9hfZTtO+jnYOA22+/8ZTv71MQbSMgp3J2ana4z4SMlQJTV0HTlG3/uF53y6s1p7xUWZ+/cmv11N3q+r/hj/+hCS6SpkYI5yW01w6M5WYfHc9DqWCCbWqgqgqQiLcz+h39zRDCfGxvHvaPZp/G13gX7etRHXQUCiqgnRkbtBdKBQP0lAoOdOfWAwUd+rJ9xuWbqy99eK0ygj/6axJa0gF9m+CM9Jviiev0FvNQVDBaNEliJz+8Xs3ij/4iyS62uKtoHaN4s5MbdWsjRQvwtb/YdN1EApohQORW1FOGYaW8Tu/zNbTDSQT0jYnhtJbyCcK9WkpTYXzQ1vC9TicN0PH+rP5kIZsSATlM60cV9WV0Uut8kgCd6s+lQnOtrUbvhe3FpACayVqpKbTQXGur4cAT0qY2i+99KAmATvZlNNGdR2l5EYrgS7IDonHJiVxaAwdPbZSWT6dCART0QPFYIZMiSOKgo2waCihjaeXlap0C9s9kVdBCxlQjiz1bLW2Kj7Mgq4tREJhPC0BuLJZpAJqX1cWO2IZapIULx4nWvbymN5ZNqCcrot2QTUEzlq7Eph7PspZKSj4qo4sdtQwVSDxxGh1DkIBSAcafGTPVUFCczUoJN5uVDdARdC8bRQ4x8xHdfUpTptfrbjmIpdmgXGzGSCmxde9bzWyoaEYmBSEg6r0ckKHRsSyvijj0HRkAifijaxB7/GkHFFQcCgLQIYRTUNz440/7GdNUmKw7sBsffhQ3oHkzJY96WipCShVHqOg7cQOa0RVacgC5AGH3UwFlLlZAB1/4sU2DMl2Tx702ph30Vel5wNirgmYMzbVdp9tLgeE16uh1VS3XHDE3eyMuQMcN1ZEu/rQ+HB5bzVEXegGk9uBeJOITulKPfYK6kxmKuCp9LC4Xm9FVd1Cm7v3e7t5FFcGRdQcmocutM70AelqH9Z6vtYcerPEY1yFFu0K+2lUs6yZ+oHvRjo1P8uqKrYDczcVwfcexL+HDcbS1rb/vtIGq2xj0nKXUbEWW2amPKThAM9U6bZX5UiQKQvXQcua7OVguKuBCElodo9Ey2Bfw4YGtKgpjC97XTVgrgoRjn53dZB0stTZRBf15fPqPoQVpVA+NTL+s16uJgdPq0eqr+EVfxIc/gsbG0GABIRzamXrGclY0WQeGnRzNdKr2qmp9D598Hu1qYICacM5abnVEra9BEvE0VFRFV1Onq2Ccxad/ej9LIan7gPMkfvsh0h9R1iuJhdPqldaWwdLd6apivoZPn+rkbsqB5/9jp9/RYtNLlub+jbtWAaVWhU9Tcw0b5WHDqgP/QoNI7M0+6gSIli5ooftI0yggG/BwtAraq2g/9wyB1T1ALnDbOQZ97mCRKfgBclk/HQA5TMgfEDAgX0AO+xjHoB4BMaEOLsYQWEHczXOQjjMGOUyBFcQDRe7F2MWkdTHu5jkGsYtxkGYX47kYu9inFxDPxdjFeKDIMYgBSRyDOEizgrgXYwXxXIwVxDGIFfRwAgIGxC7GLsaAGJC8gKoWbyT378UaSQoibc/O7aN7SL+M9gQ0bpqhygj2Nn9K93TR3Tj/g/ajb/7X+deDPpZOt2QqvbrYt15960H+nG6W+TtL147tHc5Df8YE29AgZxugqfeep9VaHZYqNbhypwKf3FiG2ytrVD6CqiIElmnzK/PTHRUURaMsDYsDOWtxYigP5VK2cXZgq369J42ThiCFlXIWTO/uh4vX7s5euHLntetL1X/CX/89bHObdxguFnaje+y/NzGcnzuwu098YNTtFiCwCcw2OhffxkoZGC2m4c0Pbjx//tIdStNO/lEJ8+DVCJRz5pHRwtzj4wNgpTSBRHEVYR4PZQfzmHl/Tz9LKQr83tgA7B/J0/1s3w377IZeFQFdamF6TxHafcqFzRTcHaydnus9aT5/DCHtHcxR4pLnkgpofjBvL07t6mvzIKU19XvQJAre/6HX8NrEMHkvnIJGraBEAaJbOU/vHcqBrqvgtv9TXOj635b/S2nhHx0r0vDg5aQBenpsIDs5VLA3fMVtulYPqTjE/4XNKqKTUMxalMxtNimAKDC/ODaYa8UbFzayfLg9GtzzXIHyoBg2JKYqwlwpb00W0jq43sdwm04RVHYpT0rNx6N9aRxs6pRo+3ASAJ3cXcxuuES7ewRkrdeCDbcb7c/QM+mrIlC3soC9V5t7hW/0XiOoImhUvdNkBrSAB2orSjMzZ/M0B+pebW7W/tzEETrO7coQUBbgsADN9mXMluxdCN69NruasjFBwS8loVw4LvNcbB67XHF2FRdCv5/abarTUymtDkCA6dqDVtBU2kyVTUOLLPZstYytk6tR5s2yjICO9qXN5tEqLRdwIcQcbrD5vegHpGAIsLZGkIAW+nNmq9aOu+V7GOZuW+NHJKyRLum/yEqew4NrncyIFnK9lQFPqU1AM7IBOpKzjQKt1UAraEYEqC1Q0xcjpVIcKq/W6hP4gwuyuNgsnTnXVe6JEaHnkoR7u/4g3SywshFZSxc1BzdiD0RWW2zTe+Ex0EUAkCjpv4g/WVMXiW8ddDNVoe8YGpQIxkKtJRTv5ADQsYBEdTUO4/gnqyANsQ9C2VhnVyKNQ6SiRukcPaWBrqmTtbojRVWEuaxlCHkrTvNAvaVjJdpALVytWfMwgy5/a3m156oIQcSgoxR/3Kb/t8eCyGoctr2XC5vi0EKsLvatV98SqQUtQxPuJbKTty5FRJvbqj1Q08lKN8qzzMQdg45mLMPGsNyUtyI0KeJPxFf8N7p6pVnmWPPGQ7FWRTjWcq8mFO+7EvGuGrepWQc2lJTB3gwBxVMVAd1LVEXIWfrG4bWN3OKqhNBagKLLQo04dCIuFztqG6miqqgNWaN70fzLG//E0VzXq7GoiFI6ppai7v4J7O7pwuI7UfdiJ3OWuTFybq/i7cZkzfffdHGxoaJnInUxdC9akDqRoYLXzX+xQWk3Z3N337j6KgCdhO03aIWmoGcLaVNrXLlQNq85O9SbxWPbrVlrGAIQ0iA+ezqSGITqEdvnMs3Rs+g21ObI2W1e7Imr2MamiwWemqjEsQ53q2sv4Y//FR5w01U3Qfo0npECURA3K6quiMyxgtlpTNQElVJVglReWa3RTpAXQgOE6jmOE8ETlqFDncpG0MxdjHuUbbbTxUmoXUWN+ZltGoCAaC/R96GRVDtYQAiHdju+bGDXKZRDgbDZrbfta5KBTdsySNtakUPTD0NbWVs7g7/5A7RLgQFCODRc/29dSw2SVtbrdaEatSkbTz0SCWiTisQKAwKiY8bPMFGrr1PC/z+B+yhUm7oPOHQJ5dsqaIPgqlBbd0BVGzFHac4pZC2A1L6Y5rje5XAV+xRt0oE6QfoC2i/9XmPHfdIIhraSnMIXnnfFBkqlpRoRc9oVo0iKyN1YUXC3ghInmEysF331K/PT29YfU775ypveY9qFNNVcy6XqkvPw8DTq+qkqApW1od38byCwNQ8Q383i52Kf3KwwIL8grYDCFPwAuQoLyF9BzKeDgphBB0BMqJOCmBAriGNQqApiROxi7GLsYuxirCCOQexiDycgThPILsZBmmMQxyCZAXGawE4KYgisII5BDChOF2MIrCAeSbOLsYsxIHaxTymgOhdg8we0XmcX8wVUq7OC/BW0zgryBbS2XmcKfoBWa+xivoCqrKBOvViNKfgBgjiqIvzZo91VRXjlzcCrInRK+t9zVQTlwe70EVUR0pnsscmDhyDfPwCGZYOVzoKq3pthdL22BpXlJbh59RJ89P55uH71cuBVETp9/qgAiaoII7vGFvc+chAGRse6eq+rH1+Ei+fehksffxBYVQQZAImqCFOPHZ4bm5wGw7R6er96vQ7vvf1reOc3r5Pb9VwVIW5ApJwfTh367MK+g8Gmej73m1/Cu2/9H93f9edJBvS1/VOPLT5y6PdDCfa/e+MXcP6dN/8WH/5zEgHNj+4Zf+XA4c/17FY7teWl2/Cz//x3crHPQpfJSzp9/lCrIoyM7QPdMENLhZPO5uHA408mtCrCxGcmSyN7Qs8XNLZvCgaGRpNXFWF0fD84rhOJ0XtBSFURwih+NFca3j2ZzfdDVAUmh0bLNOicv3PzOnWVr8uuoJMjYxORp+YabAw+k1EVoTg4GgMgkYQ88KoIQbvYwvDucZvSMzgRXwwwLAv6S0Plm9eu0Hzvp7IqaDbfXxKxJw7rH9xFxyB3VYS+0jDEdb2/UKRMXMFWRQgS0FQ6kyvrOGp2YrrWZmdzYNnpQ9XKCgWki7K52NFcjO7lWWFgSChZxhi00N90rzgt11cCkLUqQgYHh07MF/tpgApSVkXoGyioWgri3pBFMRDjUBnjUCBVEYICNJstFEGW3WrZwgAgoFmQqGzEjJh7xRx/PKOTBdJVRSDfl0VBAcahYKoi5ApZRVWlcTG6lGSY1uTaarXnqghBuNhcDn1eFvfyLNNQ0awMMeioF6Blsny/mHbEWxVBURRRFQFdDA9Krl0idEwgQ1UEnL3bdGVDtg3pdLHAxrlhZXkp3qoIYv4l6VZiGg8hoHiqIqBqRFUE8nXZ4k8rDjWWP+KrioDBuajh9AIkVZCdzuK0I/NEtbIcT1WEvtKItOrxrDAwTMf6TNee0k38QPeiBanz00/8kSZtJuBmq6/X4J3X/5c2Yo3DNjtBwrr0/OzQngmtldBaYqMVhuLQrq6rIjywglA9tH3u7c88fkQsbyShYQyC9377K1qCfQS2bLoKQ0Gnh3aNF8SWudArPAZjlpWG0sgeCgunQlUQqud4f2n4B0Njk5C05joO/O7XP6c9z38IbVURAtsfhHBoO+jZPfunB9O5PkhiW7p5FT55/11aRGtVRQgEEMIRVRFGxvYP5otDkOR26+rHcOXj9yl/vaiK0DMghCOqIhCcXGOGnPh258YluPzhexS0v4Cf378qgt9CGAW14uDwvJ0rgp0twKepLd++Dsu3rsGd2zdFVQQEda4TIK6K0FYVAYGteYD4hjG/yepTf/lXTMEPEGdeYEAMKFxAnIGKFcSAGFCMgBzO3cFBml2MAXEM4hjELsYuxi7GjV2sGxfjPIGsIAbEgGIEBAyIFcSAGFCsgHgcxApiQAyIx0GsIAbEgBgQNw7SXSiI93Cyi7GLsYJijUHc/BrvtL8PQJG3n5xf7aoqwh/vMwOvihB6wu2zFx4o776oiqBrcGw4o0LWUMDQFLB1hZJ33tOoaEyl5sLtqgM3Ky4s19zAqyJ8fsKQApCoipAzlcXhrAqldHc3W19bceDyXQeWVt3AqiLIAEhURUAwc7sLGug9JuShvRYf3K7DpSUnkKoInQCpIYcbUs6Z0Zw6N96nQUrp/SZm8sQygh7JqZSS9Lthx8uwAS0OZdWFPfiB3GZ3GZSN4Wviax/Dh88lFdB8wVIWd+c0CJxO0yjQQ+Ne+KmkARJVEQbxA2hqaHzARJ9FJSWzKgL2VJMFUw09scIQnoScoSSvKkIJDzws5Wy1UsPVXkwKoLm8qUzaKSWy9Bx9lkqDTbpL+3ASAJ0spqNTj2f9tvgoyaiKkDOjB4Q9Jr1/4FURgga0gHK3xRJBxFlwdJzMZQyRGWtGZkCzeJCRq8ezvCU+jtxVEWiGHtcqZUYX3+StimBqSjmlxpc1EN8fdA0O1eogZ1WEdIzu5VnWEB9JzqoIDfeKN2VZWhe9mZxVEWhlMO4FbqsBSL6qCAin4HXvcTZac9IxFtbqbiBVEYJysVlPPTKYHaCbBVYVQcy9ZAHU8Au5qiKYzcmpDM1KBReHglDQYYSTpZy3sigoheMhHI9RNszdMgCai3Jp436tqSI5qiJYEgXoVhxqDBjjrYpw9sKaqIpAQ3zZNonQMYEMVRGwS7XpnMkGSNsYD/VUFaFXFztmS+heG+Mh6NnN1B7cS1RFkDFAe2Y3AvWJuIL0UewpijJ171tNb3T3tMVmKg5AJ2VY3uhk6UZv9ky3H7Kr3R3oXqIqwq68poHkjXaDXFqq71gVIazdHc/mTFWTXT1kFAJQ6dFVRUD1iKoIw1mtIHlJjVaroYyuLzvbVkUIQ0Gns6ZaAEV+9bTmZqpCKgq/KgKq5zhOTH/QZ6mQtEaf8srd+j1VEQJTEMKhnagvyzww9DNqeUsVO97QRgJVEMIRVRGyhjrYXK1LbFupubC85rSqIvSsIIQz78GxEqqercuxGUOltaLXoLFP219BPzm/uuNCGAU1HI3OExhDS7ZytrbVdReqqKZ1xxVVEVBJ5zoB4qoIbVURENiaB4jv1fBzsWqN0+D5AqowIH9AKwzIHxCOCRiQH6C7DKgDoFUG5AtoiQH5A7pTZUC+gG4zIH9AtyoMyBfQTQbkD+gGA/IHdH2FAfkCusaA/AFdXa4zID9AV+4yIF9AlxmQP6BLSwzIr3H+oI6AmBAriAGxi7GCWEGsIFbQQwuICbGLsYuxghgQuxgriBXECuK2DSBOt80K4hjECmJAEgO6vlxnCj7t/wUYAE3EaX24bA0QAAAAAElFTkSuQmCC') 0 -129px repeat-x;}.x-tabbar.x-docked-top .x-tab:before,.x-tabbar.x-docked-top .x-tab:after{content:"\00a0";display:block;position:absolute;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAAFYCAYAAADwTLpoAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFMTE4N0Q1QzM0MjA2ODExOTM1OEVFMjA0ODdFMjBFMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxM0Q3QTNGMDUxN0YxMURGQkRFOEU2MjU4MTJCMzg4NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxM0Q3QTNFRjUxN0YxMURGQkRFOEU2MjU4MTJCMzg4NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA0ODAxMTc0MDcyMDY4MTE5MTA5QUMxOTdCQUI4RjJFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxMTg3RDVDMzQyMDY4MTE5MzU4RUUyMDQ4N0UyMEUxIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+dd847AAAE6BJREFUeNrsnXtoXPl1x8+9d+5rntJo9LKtkWVrI1u77jpsWeKiVqmLiooWFwdD2sDCgktKycKWXQpbtigEAu4/KRQnf+wfhZLiEEgITRrYpaWNw4bmj5Cw6WY3u1lj73pffr9kaUYazb095zdzRyNZumPP3Mfvrs/PHGlGkmfufO73nN/j/u45iuu60Es7+MKPu/lvU2hfRDuCNo1W3uHvLqK9hfZTtO+jnYOA22+/8ZTv71MQbSMgp3J2ana4z4SMlQJTV0HTlG3/uF53y6s1p7xUWZ+/cmv11N3q+r/hj/+hCS6SpkYI5yW01w6M5WYfHc9DqWCCbWqgqgqQiLcz+h39zRDCfGxvHvaPZp/G13gX7etRHXQUCiqgnRkbtBdKBQP0lAoOdOfWAwUd+rJ9xuWbqy99eK0ygj/6axJa0gF9m+CM9Jviiev0FvNQVDBaNEliJz+8Xs3ij/4iyS62uKtoHaN4s5MbdWsjRQvwtb/YdN1EApohQORW1FOGYaW8Tu/zNbTDSQT0jYnhtJbyCcK9WkpTYXzQ1vC9TicN0PH+rP5kIZsSATlM60cV9WV0Uut8kgCd6s+lQnOtrUbvhe3FpACayVqpKbTQXGur4cAT0qY2i+99KAmATvZlNNGdR2l5EYrgS7IDonHJiVxaAwdPbZSWT6dCART0QPFYIZMiSOKgo2waCihjaeXlap0C9s9kVdBCxlQjiz1bLW2Kj7Mgq4tREJhPC0BuLJZpAJqX1cWO2IZapIULx4nWvbymN5ZNqCcrot2QTUEzlq7Eph7PspZKSj4qo4sdtQwVSDxxGh1DkIBSAcafGTPVUFCczUoJN5uVDdARdC8bRQ4x8xHdfUpTptfrbjmIpdmgXGzGSCmxde9bzWyoaEYmBSEg6r0ckKHRsSyvijj0HRkAifijaxB7/GkHFFQcCgLQIYRTUNz440/7GdNUmKw7sBsffhQ3oHkzJY96WipCShVHqOg7cQOa0RVacgC5AGH3UwFlLlZAB1/4sU2DMl2Tx702ph30Vel5wNirgmYMzbVdp9tLgeE16uh1VS3XHDE3eyMuQMcN1ZEu/rQ+HB5bzVEXegGk9uBeJOITulKPfYK6kxmKuCp9LC4Xm9FVd1Cm7v3e7t5FFcGRdQcmocutM70AelqH9Z6vtYcerPEY1yFFu0K+2lUs6yZ+oHvRjo1P8uqKrYDczcVwfcexL+HDcbS1rb/vtIGq2xj0nKXUbEWW2amPKThAM9U6bZX5UiQKQvXQcua7OVguKuBCElodo9Ey2Bfw4YGtKgpjC97XTVgrgoRjn53dZB0stTZRBf15fPqPoQVpVA+NTL+s16uJgdPq0eqr+EVfxIc/gsbG0GABIRzamXrGclY0WQeGnRzNdKr2qmp9D598Hu1qYICacM5abnVEra9BEvE0VFRFV1Onq2Ccxad/ej9LIan7gPMkfvsh0h9R1iuJhdPqldaWwdLd6apivoZPn+rkbsqB5/9jp9/RYtNLlub+jbtWAaVWhU9Tcw0b5WHDqgP/QoNI7M0+6gSIli5ooftI0yggG/BwtAraq2g/9wyB1T1ALnDbOQZ97mCRKfgBclk/HQA5TMgfEDAgX0AO+xjHoB4BMaEOLsYQWEHczXOQjjMGOUyBFcQDRe7F2MWkdTHu5jkGsYtxkGYX47kYu9inFxDPxdjFeKDIMYgBSRyDOEizgrgXYwXxXIwVxDGIFfRwAgIGxC7GLsaAGJC8gKoWbyT378UaSQoibc/O7aN7SL+M9gQ0bpqhygj2Nn9K93TR3Tj/g/ajb/7X+deDPpZOt2QqvbrYt15960H+nG6W+TtL147tHc5Df8YE29AgZxugqfeep9VaHZYqNbhypwKf3FiG2ytrVD6CqiIElmnzK/PTHRUURaMsDYsDOWtxYigP5VK2cXZgq369J42ThiCFlXIWTO/uh4vX7s5euHLntetL1X/CX/89bHObdxguFnaje+y/NzGcnzuwu098YNTtFiCwCcw2OhffxkoZGC2m4c0Pbjx//tIdStNO/lEJ8+DVCJRz5pHRwtzj4wNgpTSBRHEVYR4PZQfzmHl/Tz9LKQr83tgA7B/J0/1s3w377IZeFQFdamF6TxHafcqFzRTcHaydnus9aT5/DCHtHcxR4pLnkgpofjBvL07t6mvzIKU19XvQJAre/6HX8NrEMHkvnIJGraBEAaJbOU/vHcqBrqvgtv9TXOj635b/S2nhHx0r0vDg5aQBenpsIDs5VLA3fMVtulYPqTjE/4XNKqKTUMxalMxtNimAKDC/ODaYa8UbFzayfLg9GtzzXIHyoBg2JKYqwlwpb00W0jq43sdwm04RVHYpT0rNx6N9aRxs6pRo+3ASAJ3cXcxuuES7ewRkrdeCDbcb7c/QM+mrIlC3soC9V5t7hW/0XiOoImhUvdNkBrSAB2orSjMzZ/M0B+pebW7W/tzEETrO7coQUBbgsADN9mXMluxdCN69NruasjFBwS8loVw4LvNcbB67XHF2FRdCv5/abarTUymtDkCA6dqDVtBU2kyVTUOLLPZstYytk6tR5s2yjICO9qXN5tEqLRdwIcQcbrD5vegHpGAIsLZGkIAW+nNmq9aOu+V7GOZuW+NHJKyRLum/yEqew4NrncyIFnK9lQFPqU1AM7IBOpKzjQKt1UAraEYEqC1Q0xcjpVIcKq/W6hP4gwuyuNgsnTnXVe6JEaHnkoR7u/4g3SywshFZSxc1BzdiD0RWW2zTe+Ex0EUAkCjpv4g/WVMXiW8ddDNVoe8YGpQIxkKtJRTv5ADQsYBEdTUO4/gnqyANsQ9C2VhnVyKNQ6SiRukcPaWBrqmTtbojRVWEuaxlCHkrTvNAvaVjJdpALVytWfMwgy5/a3m156oIQcSgoxR/3Kb/t8eCyGoctr2XC5vi0EKsLvatV98SqQUtQxPuJbKTty5FRJvbqj1Q08lKN8qzzMQdg45mLMPGsNyUtyI0KeJPxFf8N7p6pVnmWPPGQ7FWRTjWcq8mFO+7EvGuGrepWQc2lJTB3gwBxVMVAd1LVEXIWfrG4bWN3OKqhNBagKLLQo04dCIuFztqG6miqqgNWaN70fzLG//E0VzXq7GoiFI6ppai7v4J7O7pwuI7UfdiJ3OWuTFybq/i7cZkzfffdHGxoaJnInUxdC9akDqRoYLXzX+xQWk3Z3N337j6KgCdhO03aIWmoGcLaVNrXLlQNq85O9SbxWPbrVlrGAIQ0iA+ezqSGITqEdvnMs3Rs+g21ObI2W1e7Imr2MamiwWemqjEsQ53q2sv4Y//FR5w01U3Qfo0npECURA3K6quiMyxgtlpTNQElVJVglReWa3RTpAXQgOE6jmOE8ETlqFDncpG0MxdjHuUbbbTxUmoXUWN+ZltGoCAaC/R96GRVDtYQAiHdju+bGDXKZRDgbDZrbfta5KBTdsySNtakUPTD0NbWVs7g7/5A7RLgQFCODRc/29dSw2SVtbrdaEatSkbTz0SCWiTisQKAwKiY8bPMFGrr1PC/z+B+yhUm7oPOHQJ5dsqaIPgqlBbd0BVGzFHac4pZC2A1L6Y5rje5XAV+xRt0oE6QfoC2i/9XmPHfdIIhraSnMIXnnfFBkqlpRoRc9oVo0iKyN1YUXC3ghInmEysF331K/PT29YfU775ypveY9qFNNVcy6XqkvPw8DTq+qkqApW1od38byCwNQ8Q383i52Kf3KwwIL8grYDCFPwAuQoLyF9BzKeDgphBB0BMqJOCmBAriGNQqApiROxi7GLsYuxirCCOQexiDycgThPILsZBmmMQxyCZAXGawE4KYgisII5BDChOF2MIrCAeSbOLsYsxIHaxTymgOhdg8we0XmcX8wVUq7OC/BW0zgryBbS2XmcKfoBWa+xivoCqrKBOvViNKfgBgjiqIvzZo91VRXjlzcCrInRK+t9zVQTlwe70EVUR0pnsscmDhyDfPwCGZYOVzoKq3pthdL22BpXlJbh59RJ89P55uH71cuBVETp9/qgAiaoII7vGFvc+chAGRse6eq+rH1+Ei+fehksffxBYVQQZAImqCFOPHZ4bm5wGw7R6er96vQ7vvf1reOc3r5Pb9VwVIW5ApJwfTh367MK+g8Gmej73m1/Cu2/9H93f9edJBvS1/VOPLT5y6PdDCfa/e+MXcP6dN/8WH/5zEgHNj+4Zf+XA4c/17FY7teWl2/Cz//x3crHPQpfJSzp9/lCrIoyM7QPdMENLhZPO5uHA408mtCrCxGcmSyN7Qs8XNLZvCgaGRpNXFWF0fD84rhOJ0XtBSFURwih+NFca3j2ZzfdDVAUmh0bLNOicv3PzOnWVr8uuoJMjYxORp+YabAw+k1EVoTg4GgMgkYQ88KoIQbvYwvDucZvSMzgRXwwwLAv6S0Plm9eu0Hzvp7IqaDbfXxKxJw7rH9xFxyB3VYS+0jDEdb2/UKRMXMFWRQgS0FQ6kyvrOGp2YrrWZmdzYNnpQ9XKCgWki7K52NFcjO7lWWFgSChZxhi00N90rzgt11cCkLUqQgYHh07MF/tpgApSVkXoGyioWgri3pBFMRDjUBnjUCBVEYICNJstFEGW3WrZwgAgoFmQqGzEjJh7xRx/PKOTBdJVRSDfl0VBAcahYKoi5ApZRVWlcTG6lGSY1uTaarXnqghBuNhcDn1eFvfyLNNQ0awMMeioF6Blsny/mHbEWxVBURRRFQFdDA9Krl0idEwgQ1UEnL3bdGVDtg3pdLHAxrlhZXkp3qoIYv4l6VZiGg8hoHiqIqBqRFUE8nXZ4k8rDjWWP+KrioDBuajh9AIkVZCdzuK0I/NEtbIcT1WEvtKItOrxrDAwTMf6TNee0k38QPeiBanz00/8kSZtJuBmq6/X4J3X/5c2Yo3DNjtBwrr0/OzQngmtldBaYqMVhuLQrq6rIjywglA9tH3u7c88fkQsbyShYQyC9377K1qCfQS2bLoKQ0Gnh3aNF8SWudArPAZjlpWG0sgeCgunQlUQqud4f2n4B0Njk5C05joO/O7XP6c9z38IbVURAtsfhHBoO+jZPfunB9O5PkhiW7p5FT55/11aRGtVRQgEEMIRVRFGxvYP5otDkOR26+rHcOXj9yl/vaiK0DMghCOqIhCcXGOGnPh258YluPzhexS0v4Cf378qgt9CGAW14uDwvJ0rgp0twKepLd++Dsu3rsGd2zdFVQQEda4TIK6K0FYVAYGteYD4hjG/yepTf/lXTMEPEGdeYEAMKFxAnIGKFcSAGFCMgBzO3cFBml2MAXEM4hjELsYuxi7GjV2sGxfjPIGsIAbEgGIEBAyIFcSAGFCsgHgcxApiQAyIx0GsIAbEgBgQNw7SXSiI93Cyi7GLsYJijUHc/BrvtL8PQJG3n5xf7aoqwh/vMwOvihB6wu2zFx4o776oiqBrcGw4o0LWUMDQFLB1hZJ33tOoaEyl5sLtqgM3Ky4s19zAqyJ8fsKQApCoipAzlcXhrAqldHc3W19bceDyXQeWVt3AqiLIAEhURUAwc7sLGug9JuShvRYf3K7DpSUnkKoInQCpIYcbUs6Z0Zw6N96nQUrp/SZm8sQygh7JqZSS9Lthx8uwAS0OZdWFPfiB3GZ3GZSN4Wviax/Dh88lFdB8wVIWd+c0CJxO0yjQQ+Ne+KmkARJVEQbxA2hqaHzARJ9FJSWzKgL2VJMFUw09scIQnoScoSSvKkIJDzws5Wy1UsPVXkwKoLm8qUzaKSWy9Bx9lkqDTbpL+3ASAJ0spqNTj2f9tvgoyaiKkDOjB4Q9Jr1/4FURgga0gHK3xRJBxFlwdJzMZQyRGWtGZkCzeJCRq8ezvCU+jtxVEWiGHtcqZUYX3+StimBqSjmlxpc1EN8fdA0O1eogZ1WEdIzu5VnWEB9JzqoIDfeKN2VZWhe9mZxVEWhlMO4FbqsBSL6qCAin4HXvcTZac9IxFtbqbiBVEYJysVlPPTKYHaCbBVYVQcy9ZAHU8Au5qiKYzcmpDM1KBReHglDQYYSTpZy3sigoheMhHI9RNszdMgCai3Jp436tqSI5qiJYEgXoVhxqDBjjrYpw9sKaqIpAQ3zZNonQMYEMVRGwS7XpnMkGSNsYD/VUFaFXFztmS+heG+Mh6NnN1B7cS1RFkDFAe2Y3AvWJuIL0UewpijJ171tNb3T3tMVmKg5AJ2VY3uhk6UZv9ky3H7Kr3R3oXqIqwq68poHkjXaDXFqq71gVIazdHc/mTFWTXT1kFAJQ6dFVRUD1iKoIw1mtIHlJjVaroYyuLzvbVkUIQ0Gns6ZaAEV+9bTmZqpCKgq/KgKq5zhOTH/QZ6mQtEaf8srd+j1VEQJTEMKhnagvyzww9DNqeUsVO97QRgJVEMIRVRGyhjrYXK1LbFupubC85rSqIvSsIIQz78GxEqqercuxGUOltaLXoLFP219BPzm/uuNCGAU1HI3OExhDS7ZytrbVdReqqKZ1xxVVEVBJ5zoB4qoIbVURENiaB4jv1fBzsWqN0+D5AqowIH9AKwzIHxCOCRiQH6C7DKgDoFUG5AtoiQH5A7pTZUC+gG4zIH9AtyoMyBfQTQbkD+gGA/IHdH2FAfkCusaA/AFdXa4zID9AV+4yIF9AlxmQP6BLSwzIr3H+oI6AmBAriAGxi7GCWEGsIFbQQwuICbGLsYuxghgQuxgriBXECuK2DSBOt80K4hjECmJAEgO6vlxnCj7t/wUYAE3EaX24bA0QAAAAAElFTkSuQmCC') 0 -86px no-repeat;width:36px;height:43px;bottom:0;}.x-tabbar.x-docked-top .x-tab::after{background-position-x:-36px;right:-36px;}.x-tabbar.x-docked-top .x-tab::before{background-position:0 -86px;left:-36px;}.x-tabbar.x-docked-top .x-tab.x-tab-active,.x-tabbar.x-docked-top .x-tab.x-tab-active.x-tab-pressed{color:#fff;text-shadow:#000 0 -1px 0;z-index:1;background-position-y:-43px;}.x-tabbar.x-docked-top .x-tab.x-tab-active:before,.x-tabbar.x-docked-top .x-tab.x-tab-active:after,.x-tabbar.x-docked-top .x-tab.x-tab-active.x-tab-pressed:before,.x-tabbar.x-docked-top .x-tab.x-tab-active.x-tab-pressed:after{background-position-y:0;}.x-tabbar.x-docked-top .x-tab.x-tab-pressed{background-position-y:-301px;}.x-tabbar.x-docked-top .x-tab.x-tab-pressed:before,.x-tabbar.x-docked-top .x-tab.x-tab-pressed:after{background-position-y:-258px;}.x-tabbar.x-docked-top.x-tabbar-dark{border-color:#242e38;}.x-tabbar.x-docked-top.x-tabbar-dark .x-tab-active.x-tab-pressed,.x-tabbar.x-docked-top.x-tabbar-dark .x-tab-active{background-position-y:-215px;z-index:2;}.x-tabbar.x-docked-top.x-tabbar-dark .x-tab-active.x-tab-pressed:before,.x-tabbar.x-docked-top.x-tabbar-dark .x-tab-active.x-tab-pressed:after,.x-tabbar.x-docked-top.x-tabbar-dark .x-tab-active:before,.x-tabbar.x-docked-top.x-tabbar-dark .x-tab-active:after{background-position-y:-172px;}.x-tabbar.x-docked-bottom{-webkit-transform:translate3d(0,0,0);background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#666),color-stop(2%,#1f1f1f),color-stop(50%,#212121),color-stop(51%,#1a1a1a),color-stop(100%,#000));border-top:1px solid #21272c;}.x-tabbar.x-docked-bottom .x-tab{-webkit-border-radius:3px;margin:.2em .15em;text-align:center;width:3.3em;height:2.9em;text-shadow:#000 0 1px 0;color:#9aa7b2;padding:1.7em .2em 0;font-weight:bold;position:relative;}.x-tabbar.x-docked-bottom .x-tab span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;width:100%;font-size:9px;display:inline-block;}.x-tabbar.x-docked-bottom .x-tab img{width:2.1em;height:2.1em;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#9ba6b1),color-stop(2%,#647482),color-stop(100%,#434d57));display:block;position:absolute;top:.2em;left:.6em;-webkit-box-shadow:#000 0 1px 0;-webkit-mask-box-size:1.7em;text-shadow:#000 0 1px 0;}.x-tabbar.x-docked-bottom .x-tab img.bookmarks{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxNDc2MDE0RDVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNDc2MDE0QzVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+1EG5YwAAA5pJREFUeNrsWU1oE0EY3WgbQaLRSsRSDIiCWFEKhaKSUihUchIUtdCTBxW8iSBUCgpeBA+iJ0G8eRWFoigUD6L4Ay2Wij9YbbWmjTa1tTa1Jkbi++AtjOsmO9lVJDgDj12ys2++983s7rwvoWKxaFVzW2RVeTMCjAAjwAj4t60mKEEoFAp0f9DvUI1mkDEc9gK7gTpgCy89BaaB68BVIKM5bhTYBXSRu5G/PyfHFaAX4rKesZXLAMgjOJwEjjHQz0DBJQkrGNQ54DSwUIJyMbmEM0dON75V7HsC8V30JQDBx3G4AywDJoDVgGRrnANLkz7LmbUpoJ4idwJjDkqZuRvAemCSgiXQb8Ao+6xhP+HLcrwBYA/iXCi5Bp1gYGkgxUAkW2fld5e+63itwEDknndAg2PJDDERb9n3PNDkwifL8zL7jAAfgHtA2DVWF4Iw8JiByID9wEa3mx2z1wK85D0ySw+4DKTdUhIi4prKJZC8Cc6UJOWjJElXwHHeIJkalmksNYjL8qtjgKMc/AhwgMvrNfCJs2t5CSB3C5ekJGYW6CgrgNlP8+1ScJtiDwH2oHLvMyXjLxhAUmcJO/i7KFwSMOS8/stDjAc3ys6S+Rlc2+HzO3AN2ArMSxcgwodxn5/vAMZ4gsMSYBP6h3S+xNLpR4DvyyW+Qb4DeZ5fCMCXLRVr4C9xidYHzAG1fJDlob5fTXshmb1BYCkxYDZzRoARYAQYAUaAEfDfViWwG2zGoRPYTscU5aUxOibZ5/QCdzXHlW11O9AG7gbFvc3S2D8EbmPn2RdIAMjbaMC30QfPM2j7vgI98X7gEPAKOAXcLEF5mIZJ/PUX7jKneW7zrSTfQYw/ySKBnqlX/MAgiWI02AWeR2lSMooJr2fmMlySMc5GnNcsmiRpm9mvlv1E/HuFT35bS0HquFMU2+z0A+VmYEYhEHfVw2nNupRekiyXbOAMtdIHzLGbLWSK2X8EHJVtN/jyDj5xhR20o61KhcLyrEowwwUa+RR9bWcFlrJbqSb0OyDCvtIj63riJLns4kLRyxPbAiaY9bgPT5ygDx5Xgk+Tr9GHJ46xSpKuREDKqxpRRoDFt4rM3htWKEaUN1dFApS4hnUFSBEroUPsYcjbmYwcKxWWXwEcR2pJOR0BPbqkGhWFM3wNW0EFcKxur7JKmKT5P1RejyhVhcDldXnj/fYWDFqfr4r/B/5mAGY3agQYAUZAdbefAgwAll2M/qhqX/MAAAAASUVORK5CYII=');}.x-tabbar.x-docked-bottom .x-tab img.download{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozMjRENzJCMjVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNDc2MDE1MDVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+KwwaXAAAA+pJREFUeNrsWVtIVUEUPUdL7EHvh+UjAnsQCJIRRYkiGEIh5m8EQRHUVyAE0Uc/hn0FEQQJUdBPYA+CoogMoij6kIw+xD4qfJRpaWVlmXpbG1dwPJx7Z+Y87j2CGxYDl3Nn9tqzZ8/ee+xEImFNZ7FnCEx3ArZtB/p/4PVDJJADVABbgSJgCbDW8WmbY3wMdMaFQDWGg0At8Bf4CYwC48Afx6dzOc4D5gP9wBWgGTr0pp0AFW8C1gGfgW/AhMEUsmNLgWUkcgq69EVOAIqLa1wEdgEDwNeg5xDI484chz7NkRGA8sUY7nGxDyEHFHGx5cA1oAF6jYZKAMrXcPJh4FNUUREoADqAeug2GAoBKL8TQyvQHYLL6MhqrlWu2gklASgvofAF8AMY1Fi8iK7gJXJmujRJFAIPod8+3wSgvIS7Z8BiA7cpoyt4iezeO4ZYS9MYZ6HjmWQfZCkmaARWROjzKpGw2ghDlhrvAP5UguEl8EouTINFw9wBi/fEe+hZaboDJ4FeQ+WjELkkN8OgVdo7gI/F9976sH4UO2DxDHZA1z26O7CfuUpccm0hXgPD5ukS2JumeK+ddQNDTBhTE2CuI6d+JGa1yzDTdeUOlDEljlupJjpt1yGwAfgdw+pRUooieEiOioAclLEYEkgwek05yLM8PlyoEeYKme/4KYhLU/j4AA9rMplgNaedSniJTPAGyEVctknCjWSyyP2tzMF56phKGxnFi4CUhtkp/iNZ6XrgcmhFgG1vwnAT6FEEjyyun5JAXxLXcork6tVYuCkE5cUVbwPfFe5j07B9KgLS7sjVWFvypEPA4QD6zwHusETt12gCdLkLHC8CbZxQ5YvjPHTngSofymezRF2jWV+LTs+VZ4B16GtaRyW/6LfivyWGBMT9tvH/usHjqW4udJ0RQ0eGePClW5Gv+Z8jwAG6oW6xLynOrSjT6VW0ZqUij6rljnUa5FtJ0+lUFVmLNdnnHDBwiwI2AOqTXIalrLF7GHV0RcJ2HXR9lI6SUm7pG8BR1+/5JDfGKsukpOyGnuV+uhIXaM0ewwMqLngaOOdIT55Yk73QjwbzSOiUS24L9GxPV1vF4j2ykeTvAg+oSK8PQ6Rsq+g0topJYlhxU7plAc/EfWAHb2/L8Dy1BmpsOUhU0IqmrcUsEjEtT/+3Fiuh30hgAiQhzd0WKhNlo0uCQLjNXZc7Rd1eFyMdC7297ir6o3jgEFdriPSBw8OlpHfq94lpNmP8SuAqcCItT0weRKqZUu+2pj7yjXF0usj/rFLC8xfgkpWpRz4HAeel43xmzXMld+1ML2L3zBqs1ZBpApmWGQKZln8CDABo4JNmLvmKqwAAAABJRU5ErkJggg==');}.x-tabbar.x-docked-bottom .x-tab img.favorites{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OUNFQ0M5MjVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OUNFQ0M5MTVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+agcZ7gAAA2FJREFUeNrUml+ITFEcx+fObuyytM2mrF2kaBEi22hL7UZbUySKPCD2hShPUp4UqS0PnrwopRQPHmxJ8rJaUZ4XTwqtv+vPmB3D0Noxvr/2O7odd+897r+559Sn29w79+zv//mdM2tVq9WUySOdMnw0Bp3AsqxA7weNgDg8kDE1hLrAC/ABXDVRgVMM0VGwE/SapEAD2AG+8HMB7DVJgR4wC0zxcwlsMUmBbaBo+/wTLANLTFGgl1a3jyIVS7wCUjazoKzc/wpyJiiQo7XVFeob2MwET7QCavzXxhQTuyfpCjjFf2R5ELYCa5kDv2Z4Xgp7QUvHFD61UWaCZ0xVoMrnuSQqsJzW/e7xvTw4EJkC6O+bwTnwGFS9oFWFp+CjQ/lMOawHG2vv6fwNMAFGwD/5Y6kbCnzpKC5nwCfwIyEbL1k75oN2ATIX3UJoAWt2UoSXUWEFk/a82SsHLoLPoDNBCoj1l4JBWH/cNYQYRi24nAf7GUqFOgrfwRA6AlmHPHNAUUSS5gqYA96B3zFbXcL5Djhmj3vtMoqX7uOyDlwDK6LeoCtWF6MdhAz7ZhLe0wOKN6STvAxaI/RGK61+283qvhYyTPYQlw30hnilLQKrN8ne2cvqvjygeCPLoxKx2JsQhJet5i1wQlfwQArYKtUYeG3bvPsZ4skRyDEQdy9U4aISNBek9V5Yj2ZOjkkmQ1BAVth+eDQTtwJerbN2fUhNH4D5OvgKkgNjVGAyBCXmgfeQpS8WD7AKtYUk/N8TC8zbEVcI7QITmu2AnMi1aIRRnvPGooBX/MuvHovBc3CcxymLPOb0dQCc9hE+suh0uewXmij8DbAdXAfd4BnvWy5hlOX8kXrAzfqyMq8EZ2n5Cu9LldlKpaSvnxuWF/67CsFCw9zslBx2clLL94C7LlMcApfYEOaVZ9KBliFTdyQKcLGRjfuosnlvZzshIfNEYyo5XrxJD40rz9aAVZDrZRQh1M9TBbvwnWzoNmkKL+MRv//WYesq1W13VDmw2pa8DewiH4A+B0t6jVd8b5jzzLad3q3XX8cRQrqwThf4x8UTg4H7iOl5TzIExSPyq+ZpXZn8JLFUCdmdDeHde2H90M3yeZgV7gLuVyLthWwKhaKA39EYUgjUbRj/zx7GK/BHgAEAICxgm+mUJjEAAAAASUVORK5CYII=');}.x-tabbar.x-docked-bottom .x-tab img.info{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0NjUxRjM0QjVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0NjUxRjM0QTVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+UjVoZQAABFNJREFUeNrsWVtIFVEUvdfMt9hDSdKKwjIqMTAUSbAgxAiMxAj6iCIo+hD8TIwi6C+KoA9Bil4UPSQJjD76MiQpsAehFBhRWfYQyzQ1TW9r17owXWbuPefMXB/ghsUBnZm71p6999lnjz8QCPhmsvlnBcx0AX6/39X9rn/fQwEpQAlQCGQBmVzFxoFnXNuBFqBrugjYhmU/IOsI8BMYBX5z/XsZkMg1CUgF3gNXgHpw+DrpAkC8AssJYCnQC/SLQzUeEQ8sBOYB54Fj4NIXdQEgLqFxDtgIiOd+uMzDGIabCKoGn2tREwDyeViagVigx+OCIjmUATSAU63nAkC+CssFoI+e17F0EhznvSMO181h4kui7wS3QU8EgHw5Pf8aGNAgnkqv3gJagTTgMHPlc5j7soEOoAz8xl0JAPk1WB4yUb9ren4FcAi4YflbDvASeB4h6ZcAN8Gv2lgAyC/A8ogJ9kWTvJTLIWCDzf86SH4kHDdWuDpwbAhXAcLZGSDZgLyPdb/T4X9pzIewmzTz5SwcmaMtADcVY6kEPhpWlWEgz+bvFXTKmMIzhui8UyZv4LhBtQn98SwmbbDC7GYl03muJPsWOLRAOQeYuO2MVTcWx00qgyHxjeQHNZ8jZfgBuO5RfQN7WXXc2hgTNYgJQtdk76mCY1NUBeyit9zYIiAfuAcUsCrV8W3o2gRzqiKiAKhczh8fNSQez/Inm95q4KClGjWyeTMx2UBLVd5AIRPQxOYDq4CTwKZgz++RDfFN/mexNhfmRNhgwoWMhEkZDyx2lslzgokJp1wVAVmKNTr0ORI6RRavx9mEYa6hc4J5kCSJbG3yYhza2gmDh6ewWiRy4ym3ua7YoIRabZy7uHIroSNAGr2jwFM5mACPba4rdSlAaSceNBTWw9ZDYvwt8Mmm/ylwUSCCu3l/JAEfgLkmExL2Lcns/UOthM4JuHD2UOghx06AJGGCy6Nhq0P4DLh4boJdWbYT0EYvuhHQFoX4T7Z7bozNpOwd4zfO4EdiGeOdDvE/zGOmZ2/WKVkbuat6FT7B+F8JdHND041/Kc93VQVc5NDJKwFS/9/weLmPAnSGqnK0bUJ09CsJwIUvSERXRJJD/W/hLv2K54Eu7tyqJh3saa1DPY+U9zlBULV89kR9Yd5QM7vUbo0e6wl4bjeZSlzFslnxXCwhsS6MZ6XHug0s0yCfyOZyLXh2mUwlanz/ps0ZigKcJg0VbDGyNcgHQ6fGiXxEARx7V7IMpin0Q4GQnl3O1teBS+yVdOapMthqBId6L0aLMvu/ozBaTGciN7F1LmLS6s6VgqPFreA36loARchw9zLJ9EbYzOTY+MugdZBmbbEkrc/L4a5FxHq+iaiO14EjkYa6RgIoYuZ+4AgRsoPTOy8+Mcm3stpJ+cTkkOAHeIS0fuQbCzlbJ/mm00c+iwBrDFs/s2aFNG3tvmn6mdXV/VMuYKptVsBU2x8BBgBgCZxGglp+YwAAAABJRU5ErkJggg==');}.x-tabbar.x-docked-bottom .x-tab img.more{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5RTE2NEI1QjVGQjAxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5RTE2NEI1QTVGQjAxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+FG57kQAAAidJREFUeNrsWdtKQlEQ9VR4Ic3ALMJeerIQhKBvEAShHwkEIRB66luEviAI+oYgEIJ6SPMhRKmnjEwSWxNzYDedmx0hDszAQt1nrz2z9sy+HLRms1ksyrYUi7ipABWgAlSAClABKkAFqAAV8H+2EnYAy7JC8cO+j0Q+A98zIAFLASdAm7ow6HsTSIu+0ojbENw7m+vln583ub/pl8ZLOcVqySBQErv4uABywAvwbgRGba9ABbyuQwkVgEtgU3CTwIbNBbqyhNjvFZABnoGx8DsEquj/9CNeUwAGoc7XwBowcEnaFvAGHII7MgTEmUvO+h5cCuwAGNkCMAbN/A0LdfO7zZNCfidua+CYAxh4VB09Wwfqor3OAfZ9uBkHboPbvfz2efy6Vwao3paN1LsZZWoKbtnIQFAuzTKRSkYGbrnex0H9umWgGGCQGAdZ4pKbl0t99rnk7LLdm4NbXNQ2SrM4XcBGOOWxFnIO3HOK/SwBPJqLaU7uAzDhEprw70QAbpL9uAo450XsZ3mgJdpaIbn5ANyc5MpFHGQ7oz3+g7ZCsY2meRtd9eF+AmWHbbTNV5thkO3bMQP8oMKLZUekNcFtFPyROQgb/a66cON8yNFs1ezghd8aPy/YC1z4HfNBNgpylaAZOQU6xpHe4Ta/q4R9HTC5PeAMyPpcJbLcryf8/rrCuF4l9DYatfeB//5/QV8pVYAKUAEqQAWoABWgAlSACvizfQkwAJLuKUFFMACaAAAAAElFTkSuQmCC');}.x-tabbar.x-docked-bottom .x-tab img.search{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozMjRENzJCNjVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozMjRENzJCNTVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+s4tfdAAABB1JREFUeNrsWl1IVEEU3rur4qa1ZVppJgWSIESFEAlFYBSRDyHYD1G+JAnik0UYBYIEQRAFPUgPEhQGQhCFZSREkRQsRQ/VQxQEViZtbJZaqeX2HfguDNcr6+7MdXehgY+7e+/emfOdc2bOOTNrxWIxXyY3vy/DW8YTyNLtwLIsrfd1XThLU/gKXOqBMmAdkMNHw8An4BFwB/julQWsRDUAoQO4HAVagVLgGzAJ/BKF8mfZxEIgBPQD7UDYtAUSIgDha3G5SKEiFDrua0ABUAT0AceAwXknAOHP4NJCwZN1iRWAWPAA3ct7AnSZbqAGGAL+OLS7iBbJ43fp8C8wSvf67ehyCV2vAeiZDwLncTkEfHA8Wg4UA/c4UcOcCzKR80m4nr+JkJDdZG6sBrZi/LBnBCD8YVwu0GeneXsB/fkxcAJ4F2cMIXGWQn9U7i8FcoGNkGHYOAEIL/76GvgCjCvCrwWa8F5XAnEgn2642WFJsU4v+mryIhK30X/HlXui+WZb+ATaGLAXeAWUKPdF80eghEqjFkCHorHPwFvFdWTgu/h9o0YkFgW8AH4AP3lvGfAQ/TaYtID47YQivJ8+fFIzcMpk7iARu32V8aCIoEkCO6glVXOd0FLEQPTv4lKcze/TXL1qTBKodvj+YuC2ofRFYsRN9mk3cacNRggwcJVRK3awCrrlMRotzMBnN3HXclMWCDGaxpSMNQL3mTRIYFhxIdsqBV4VNDHmLyZbQFGQ1hj+WdZsi/BxwhXCtXIMEpAgOeWoS6JGCNBVBpXixMe0udIggSolDvg41nuTLvScaYPdRoA6gwRqHSm5BM4BkwQeMHCpAagFbhQyIHwdU3B1lZOk7qlJAj1cjdR5IAOe0hReNH2OClHrgxtw3TFjBNCZTKhOZot2k9yoEVao1yDQTcvOiPJeZKMdHCxXCfmiuasgcTDBcYIUvtpRE4jw/VDYgHECtMJpZot2G+UKdQkkLrNmiNe2AE+A7WoxrxBo97qkvILLbpeSspiT8TpLStkHesmIupJL5X5gEy0XnSW9lmc7qTBPCMga3QusdyHhp8AhruVBTvgprvNRRy3s1kq4WZAUiTltq5CE7Afto8bGk7S4xJZClz2lpEnMaXNXojPQjI/HmQaXOpKxeC2PuxAT9PlyRzo9RBL3oawC4xZwKTdbucmVq5SHdqwIEPb2SohlpCyV19jNLuAWXXJExxKWzsYSyGyjMFWcC2uYIkS54gxwgr9xed0ICUt7Z0xve12bRKoPOGRXbw+wKtk5kfITGmhYi0RaHDHpkEibM7JkSaTVId8cSPQ5S9u0O6WMQ0KCYVtaE4hDQlKYirQn4EKiiHnUzNpZApkODAgar385vpXDwWcsRwPq81RHYm0l/P+rQar/7ZLxFvgnwAB+pM+gguPgswAAAABJRU5ErkJggg==');}.x-tabbar.x-docked-bottom .x-tab img.time{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0NjUxRjM0NzVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0NjUxRjM0NjVGQjExMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+h/y7VAAABU5JREFUeNrsWn1oVWUYv9ct5+Z1dxqp+Zl4tRQMRRlkWikiirKBTBT7RxSCID9w/xiTRFD0n6IyGEhSFEiGKKJBqAh+kDicRpRU6B9+zMzZ9OZ007Wt3yO/Fx5fz7n3fLx3c+ADP17u2Tnveb7f53nOkt3d3Ym+TP0SfZz6vADFcTdIJpOxno/rwsUOlZECZgGVwEhgOFehTuBnro3ACeCSi5cm42oAFliEZTUgaztwH3gE/Mf18W1AKdcyYBBwDfgWqAcPzT0uABivwrIVGAPcBrLiESG2KAFeBCqA3cBm8NJScAHAuLjGl8CbgGjuXweJZDgFWgN+9hRMADA/Bcthxs5fPjFVThcRhoroNt10r4fAXeCBTwy9BOwCTx86FwDM12D5Cmih5jVV8OXi9z8ySP8AWhkH/YFXgQwgrvc692jmM4aKGPgS6EvBW6sTAcD8Amr+MnBP/amcjP8JbAKOBlScuMwHwDq6oG3NUcBvwHzw1xlLADA/GctPDNS76k+iqTagFjgQ0f9FkO1ANa2hlTMa+B78rYksAJgfguUs/fmWtfl5YDmzT6yDDO9ZRvcUS9xRqVcyXB3u2RW1lPgUGGgxL+Y9KVrDxrmY/wg4R3yXR4i9WBZy75S5TKvshICZ0BbAQ2/Qp39Xl1+mlmbjubY8pcQv6qSfyJyfzVVKYK8VwjBwBeji5WFibdxXHdYCW6xsk+L91Yb5IB7ikzL9LLGHh9pIdflvYB6Emx5YAAbubOAfdVmyTS1e0lTgAnMTM1NKXWtmxgpsgZXMOoYkDprCnpIRg1rOjc1UmCE5e2qg2FRQAZapbGC0/0kPlvl7maJf4O8u/q7KKwCkHMfAeaTukQpyX09xz8NLrD1EXZYz4u0gFqi0Ak/cpyHIse6YjvOkNyQ8TQ8iQIaFlyHRfkMvdIsNfLehdtZTeQWQFNahfg9w1T2FdKMWZqNiFQdldiD38ylru6wKMRuTH0mDG1mVhqEs359QrWm6p6YSnaxnhG4Cq1hWTCn0WKXVuv6U1AHpC+AVZrRO9sBpClFnadaP0nzW1xu8BGhS+dcETyaCALvZuFxmVVlCV5Laai1L9Ml5KuFy1fAIrw/sbOglwCUGrk5flREtLHu9A+wAxgNDmSCusTC8AEbrgKIA6dwzmXgJcIa535CMSSq9jvEQJKf4NFayo2nhW8oap7C/HeBzrYHBQPKWWwCY6CqDrr9KX6KJmpjxJj3yTOBzYIKyRhO1PUa5j1hkBWsgnR1PB62FpGwYbKVBP1OHzUzbLGuMAD6D4rR7rGbMdCg+ZTD2Q1ABvmYDot1IMsJ7jrKftsZZVp9G+yl2c7oXkYA+4NUB5urIjtDUpicoZVU6TfcEroe72O9jLO8C19XlScBbuLcxTEdm1+RtNOl+vKS0ECcfW0rpRW6oy3KOHPNiPqcAeEAi/iB91JD47ViZIDiIB5v5WRxZNqtSppTBXht1KrGe/q8tIaadI4MuvDTtiHlpoI4w+7VajdR6K8CDC8Cx9xIGsGZWDqKpchB5dUlhBltgXrRezz1brNnTPvBQ72K0uIju5Dda/JUxczzERO59YEOe0eJC9sjOhrvf8AS9bf15MAVpZ66W+LnIwDfD3QwhypiRY7g7glM/d8NdJcRUWiLXeD3NU3MAXdSM1x9SwCzjyqsPeTxel9FKvqFuJAEoxDP1gSN0Q4MX3AQWs0ExpXaFal6CUgnd5TXgkByaUeZOrj7ySYmxIPHkR74Oq7cuSzxLH/k8Sgn7M6v51GqoMeHxmTX2+x0K4KQWCkuxP3T39j+LPP9nj96m/wUYABj463JfjU+7AAAAAElFTkSuQmCC');}.x-tabbar.x-docked-bottom .x-tab img.user{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFQkIxMTczQzVGQjAxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFQkIxMTczQjVGQjAxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Fgb20gAAAphJREFUeNrsmM1LVFEYxu8daUbp4kw19oEthUZidi4jqHAlzN9QJETbRLFVCEXhQgqCVi0N2oUrI4jclBsRMVoFfZj0oYiaODg6Ts+Lz8BFnLlz77l3zhm6B34MDHPmPs85933P+x67UqlYrTzs2EBsIDagZsC2baX5ys+PwMBZcBPkQY/r+0XwAbwEGyYaaAOPwS2wCopgx/XTDuCAdnAPTJhkIAkmwWXwQ3TVmZICZ8BzcFf1+YmQYukOxS95iLe4K8vgNhgwIYjl1fgJvoOSj6lpiQU8v0/3Dsgq7vsUbzGQL2IBLug2kGfABhlFztdqINnAe19r7DM7aQ/iwCEEyroNFBX+R+Zt6TZQ4kq27A5oHbp3IKGQwUIzsMU6qGVjYDFgKrRZ2H3SXUq0sYD7A3Z9TO2U2gnPv6Z7B8qsLLM+53WBJ6Z0ZNLEfAMfGzyV21lW5/B8I9LoL3ZaWR+r/1T1DAi7I5OibB4seOxChjuQkwxkSkNTzUbPQHcDqz+omj6jauolnb7n+719xM9PgXfghmlNvazqVTY3/XVSqhg7DqbBGzCD569pMwDxA65++C+7rE2P8yDFM6CTtxSv5YYCOt42xQAPrutglCu/4r7nCTBO8H++gkfQ8yIyAxBfwMdDcJrCt0NMAg6NfAFD0DUTmgEIv4SPcdBL4ZsRVsjVHZnlvdFcYAMQ3kPh/RS+ZjVvZGnkFRiBzuWGDfA9HwPDzCi/NfYs5xjwEh8PPA1QvFwTXrEOLqz2DGi8jtHIFPQOep3E9yl+yRDxFtOy3PwVsMCjNXeAq78OPodRaEUw5A7qJDSfr7UDDssBE8VXew8nvpUwaRyOgTRjwOQhV/KZqMpp30N7OW3UKxQbiA38hwb+CTAA6wgLcamqsrUAAAAASUVORK5CYII=');}.x-tabbar.x-docked-bottom .x-tab img.team{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyRUI3NDQ5MjVGQjAxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyRUI3NDQ5MTVGQjAxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+UYTz7QAAAxRJREFUeNrsmU1oE0EUx3cTtdqWirFRUQgEChGkKCpWRBE8iIKIB09CoRAQBA+iqHiS9ioeRFAUBfHgpSIUD95E0aMi1YJWkYi2fjR+RSu2fnT9P/gvDJOdzTabxhRm4EeSmdmZ95958+YtcT3Pc2ZzSTizvFgBVoAVYAVYAVaAFWAFxChz4g7guq7dgUYUsBncAZ7CLbCu1hO5cd8HAlxoK419Dz4r9e1gCdgJ7jaygEegDXwJ6L4IfACbGtWFOkHOYLzD+rUg26gCloHfFfr8Yb+GFPCz3pEtEcHH06AfeGQEdMecc9zQtg+MKJFroNJuRbnIroLV4CF/t4BzEFFAALiv9f0lmqsUtgFcpAB/rvWgH2ypagdgZAYf28BbpfoH+AjyAY8UIyzKXDAaUJ/nuOruvKOIXLUutBD8NRzEdEB9AbwB8w3jNYNB7X7wywpDADDNFesQJ0HJ0HYmZEKpP29oK3Hc6cxVUUA1Pn2FbtSi1bfyYF6rZxR6zUn1fk10l6AiPnwkYBfk9yGGWsfgfk36MQTzaMf0BSDKyGTXQUprWsyVDioZnp1mZXz5XEAR2ZCdW6rteIrzl8KMDAVlDQ+ShLYHPKQDSrtfdjADnWS+M8T+PkOsnwD3wO4Ac24wjPrPjDO8Vp/MIZQmOfAqrqqE0e14rsB2meAsWMkw+jWC67ZxN56DY0p2mmEmKzv8DbwEuwyRMNyFYFgHuECDNtJ4mbBLjEdbDoiw20yTX0Q03lGMkxT7Jm/cTvp6FzPaViZ+MuYl011QtgOSOuCjF+znRVKk0OWyC+hfRJ+D+H6aLjFWg2CS5j1wApyi7z8Gn7j67ZxfzslJ9SJMaMYf4Eru4YUjBk75h5bG78X3PvYbq1E0lEV6Co6DHl50l2n4FOcZ5MvQM3C0TAAMy9OwUaYO6tZIBHnC792cYKLGieUkV7yHv4e1G92jR7yigMP6DkjO890Qp13lICU1cbUsnuE21oWWaG9Z4pWN+LbUMYMpflG7B1KGfsMz9U5c1+LafymtACvACrACrAAr4D+WfwIMAIXF8AaZAaf6AAAAAElFTkSuQmCC');}.x-tabbar.x-docked-bottom .x-tab img.settings{-webkit-mask-box-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFQkIxMTczNDVGQjAxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFQkIxMTczMzVGQjAxMURGOTcwQUE1ODg3MTcwMEQ5RiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyRDUwNjIyMkQyMDY4MTE4QTZEOEJCRDhGREE1QjQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Ohu6MQAABShJREFUeNrUmW9oVXUYx++5V6czdTVbLrZWllGNRsKCioSiKCaDkaQsDCKIXiRBYAQLojAKfdGLIsgKot4UROGLIITEMQmE4qqR5aalK53LeXOz3ZVz3bv1fepz4MflnNv9c86de+CL2897zn3+/Z7n+zzzEvMsc3NzVT2fjECHNfPpgGoM2CFkhUHhN2HtQjKgUXhB+Fn4QcgLTy0kA54RzqG4yXnhSaHhcjLAUuIzoU9o46wOz28XMs5n/+bfr4QO53y98Gac0fGKKP+N8JewiJQ5JdyE4ub9SwHPNYFxYYafJ4R64T3hpairUJgB5vm7hTHnbImj9DLhSmGxkCKV/hAmhVnOk87nzQm3CrcJw1EasCjk3Lxc+GZT5iq8ekJ4VziLty1CXcJDVKbRgmfzfNdUrVKoXTgo/OictXJZtwr7i1QnK6+P4oQ/OV8lfC08EXUKFRPL8++ENHXeLujyEp+1ipQTjvC8Rak3rBNXg7AqVMfFm8WrpsDmMlLgI+FFYbVTpZpqWV57UTpNTq+v8D32/HG69YE4IhAkVsdHhGNgXxWO6KGMpknJbXGm0DphD/U/j+et6nxehQFfUihSlOQ+CsOmOKrQkLBU+N05s7p9L5e5UjGHrHQq0grhWuERoT8qOp2i+54P6BPjVTrpDI3Nlywdfl2UXMhS5mJAX5ilGlUjy3mPKyk6d6Rk7n1S5hrnbFq4pcrvaIMXJXBGG9/bH7UBzwuddEyffU5CESqVFuFGHLGaaLwiXF/IiaKWD4XTXN5zZXTgQtnOHThE7q+pRR/w59xp6rcRttcqTJ0sTvgFOl0zKjFMA1qMAVa/u8tQ3nJ9Nxc1RxntjyNVkkUqRyNfnsOg3ZC0UvJ+APZ6Nm4uFGaAjYAXnJnAPHlSeAPlHgh4pll4mYbYCh1JODNzLGNl2DywDyWyAf/nDzUeXMmfA1rp4hlnRnbl9oKJrJ2InlEuvxX1RLYX4jVF02kkr2dQcILoLePzRhO+5+cGcj7H56bpLaPM1b4MMOUt8TxvRkbs+tejntfCSGvNdavOj1QSAZO3hafpBZ9STayyPMsXF46NK4jMARzQCC2/jshsEI46FeonBp56nsuwZ7oPh5gDMjLgzkoN8LcTw87+x988DBC9rPOeO4THAthrJ6k2VeCcjVzyKxy6kuOdeaJ4QgZsqMaAMNkE9TjJ7yup9Q+HfN6M2EJT66XPXMIZh4hEAu+3Eg1L1xEZ8GAcl78O5U2hX2GsYRy/mYp2Go8P0t1txl4b0Fnv4d2j3KGeSjpxKdIBVXgnbGBHtlBG02AMqhLaibk/Q6xvJrhXtuFritKAUqUBZQa5C4eJYFEqQTpNYrS/Ae8rlUpEKdYEX3fWjjsdeh0qUm4/abeUqpRPBKzwk4naSAZeZZf9izKeO0iV8mnJq6U2srjWNFkmv3Kil6K83q+oTNU6AikueTcGNHFWDiW31NkbpHwtDDDS9zgUYg5l2ksiaZ7XwLI4nyjyh5O4DTjGJWwkXe0uPFfis9tIIUOPDOpOzJMYjf6YXjBSuOgNKaEbyXt/uWy8aU/UjaySEXOIqIzTBBsCGtgOmtdxuvGYb3SQAd48RGMnFMTfUnwLC+1g2XXB4Wi7UH5cyn5SzjwQl+RRLocR1hduSPz3t7eLRKgOve6S0v+7/ErW2IBmlLe/r90MgzU2ugpjbIN3tfBBKcrPh9QzC6T9hRm53wLXOUXV6ap2L1QzcRTphHF2lbMX8i4HA+JYqywY+UeAAQAW+0JQhH5vcwAAAABJRU5ErkJggg==');}.x-tabbar.x-docked-bottom .x-tab.x-tab-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#6e8291),color-stop(2%,#303940),color-stop(50%,#333c43),color-stop(51%,#2c343a),color-stop(100%,#161a1d));color:#fff;}.x-tabbar.x-docked-bottom .x-tab.x-tab-active img{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#cce7ff),color-stop(2%,#3da5ff),color-stop(50%,#42a8ff),color-stop(51%,#33a1ff),color-stop(100%,#0089ff));}.x-tabbar.x-docked-bottom.x-tabbar-light{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#d7d9da),color-stop(2%,#8e9294),color-stop(50%,#909497),color-stop(51%,#888d90),color-stop(100%,#6f7376));border-top-color:#647482;}.x-tabbar.x-docked-bottom.x-tabbar-light .x-tab{color:#384148;text-shadow:#6f8190 0 1px 0;}.x-tabbar.x-docked-bottom.x-tabbar-light .x-tab img{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#7e8e9b),color-stop(2%,#4e5b65),color-stop(100%,#2d343a));}.x-tabbar.x-docked-bottom.x-tabbar-light .x-tab.x-tab-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#c3c5c7),color-stop(50%,#c5c7c9),color-stop(51%,#bdbfc2),color-stop(100%,#a3a6a9));text-shadow:#b7c0c8 0 1px 0;}.x-tabbar.x-docked-bottom.x-tabbar-light .x-tab.x-tab-active img{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#66b8ff),color-stop(2%,#0073d6),color-stop(50%,#0076db),color-stop(51%,#006dcc),color-stop(100%,#005299));}.x-toolbar{height:3em;padding:0 .5em;overflow:hidden;position:relative;border-top:1px solid #000;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#7e8e9b),color-stop(2%,#4e5b65),color-stop(100%,#2d343a));}.x-toolbar>*{z-index:1;}.x-toolbar.x-docked-top{border-bottom:1px solid #0b0d0f;}.x-toolbar.x-docked-top:nth-of-type(n+2){border-bottom:1px solid #0b0d0f;}.x-toolbar.x-toolbar-light{border-top:1px solid #384148;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#b7c0c8),color-stop(2%,#7e8d9b),color-stop(100%,#596774));}.x-toolbar.x-toolbar-metal{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#e5e5e5),color-stop(2%,#b3b3b3),color-stop(100%,#8c8c8c));color:#555;text-shadow:rgba(255,255,255,0.5) 0 1px 0;}.x-toolbar .x-toolbar-title{z-index:0;position:absolute;top:0;left:0;right:0;bottom:0;text-align:center;line-height:2.4em;font-weight:bold;font-size:1.2em;text-shadow:#000 0 1px 0;color:#fff;}.x-floating .x-toolbar:first-child{border-bottom:0;border-top-left-radius:4px;-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;}.x-floating .x-toolbar:first-child.x-toolbar-dark{background:#21272c;border-top:1px solid #2d343a;}.x-floating .x-toolbar:first-child.x-toolbar-light{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#e3e6e9),color-stop(2%,#a9b3bd),color-stop(100%,#7e8d9c));border-top:1px solid #8c9aa7;}.x-carousel{position:relative;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;}.x-carousel>.x-scroller{-webkit-box-flex:1;display:-webkit-box;-webkit-box-orient:horizontal;}.x-carousel-indicator{position:absolute;bottom:0;left:0;width:100%;height:30px;padding-top:4px;z-index:1;vertical-align:middle;text-align:center;}.x-carousel-indicator span{width:8px;height:8px;-webkit-border-radius:4px;display:inline-block;margin:0 3px;background-color:rgba(0,0,0,0.3);}.x-carousel-indicator span.x-carousel-indicator-active{background-color:#000;}.x-carousel-indicator.x-carousel-indicator-light span{background-color:rgba(255,255,255,0.3);}.x-carousel-indicator.x-carousel-indicator-light span.x-carousel-indicator-active{background-color:#fff;}.x-indexbar{padding:0 5px;width:35px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;-webkit-box-pack:center;}.x-indexbar.x-indexbar-vertical>.x-panel-body{padding:5px 0;-webkit-border-radius:17.5px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:center;}.x-indexbar.x-indexbar-pressed>.x-panel-body{background-color:rgba(0,0,0,0.2);}.x-indexbar span.x-indexbar-item{color:#666;font-size:.6em;font-weight:bold;display:block;text-shadow:rgba(255,255,255,0.4) 0 1px 0;}.x-list{background-color:#f7f7f7;}.x-list .x-list-group-items>*,.x-list.x-list-flat .x-list-parent>*{color:black;border-top:1px solid #fff;border-bottom:1px solid #eaeaea;padding:.8em;}.x-list .x-list-group-items>* strong,.x-list.x-list-flat .x-list-parent>* strong{font-weight:bold;}.x-list .x-list-group-items>*.x-item-pressed,.x-list.x-list-flat .x-list-parent>*.x-item-pressed{border-top-color:#d2e7fa;background:#d2e7fa none;}.x-list .x-list-group-items>*.x-item-selected,.x-list.x-list-flat .x-list-parent>*.x-item-selected{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#76b7ef),color-stop(2%,#1c87e3),color-stop(100%,#135f9f));color:#fff;border-top-color:#105189;border-bottom-color:#0b365b;text-shadow:0 1px 0 rgba(0,0,0,0.5);}.x-list .x-list-group h3{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#c0c0c0),color-stop(2%,#8d8d8d),color-stop(100%,#666));border-top:1px solid #b7c0c8;border-bottom:1px solid #4e5a65;font-size:.8em;color:#fff;padding:.2em .4em;-webkit-transform:translate3d(0px,0px,0px);-webkit-box-shadow:0 .1em .3em rgba(0,0,0,0.3);}.x-layout-box{overflow:hidden;}.x-layout-box-inner{display:-webkit-box;position:relative;-webkit-box-align:stretch;}.x-fit-item{position:absolute;left:0;top:0;overflow:hidden;}.x-panel>.x-docked{position:absolute;z-index:5;}.x-layout-fit{overflow:hidden;}::-webkit-input-placeholder{color:#b2a59a;}.x-field-text .x-field-mask,.x-field-textarea .x-field-mask{position:absolute;top:0;right:0;bottom:0;left:0;}.x-field *:focus{outline:none;}form.x-panel .x-panel-body{padding:1.2em;background-color:#f2f3f3;}form.x-panel .x-panel-body .x-form-fieldset .x-panel-body{border:1px solid #ded9d4;padding:0;-webkit-box-shadow:rgba(255,255,255,0.7) 0 1px 0;-webkit-border-radius:.2em;overflow:hidden;}.x-form-fieldset{margin:1em 0 1.5em;}.x-form-fieldset .x-form-fieldset-title{text-shadow:#fff 0 1px 1px;color:#827264;font-size:1.2em;text-shadow:#fff 0 1px 0;margin:12px 0 6px;color:#827264;font-weight:bold;}.x-form-fieldset .x-form-fieldset-instructions{text-shadow:#fff 0 1px 1px;color:#827264;margin:6px 0 12px;}.x-form-fieldset .x-label-align-left label,.x-form-fieldset .x-label-align-right label{width:7em;position:absolute;top:0;}.x-form-fieldset .x-label-align-bottom{padding-bottom:2.2em;}.x-form-fieldset .x-label-align-bottom label{position:absolute;bottom:0;width:100%;height:auto;}.x-form-fieldset label{text-shadow:rgba(255,255,255,0.25) 0 1px 0;background-color:#f4f3f1;padding:.6em;height:100%;border-top:1px solid #fff;border-bottom:1px solid #ded9d4;display:block;}.x-form-fieldset .x-field{overflow:hidden;position:relative;min-height:2.5em;}.x-form-fieldset .x-field label{text-shadow:#fff 0 1px 1px;color:#827264;}.x-form-fieldset .x-field.x-item-disabled label span,.x-form-fieldset .x-field.x-item-disabled input,.x-form-fieldset .x-field.x-item-disabled .x-spinner-body,.x-form-fieldset .x-field.x-item-disabled select{opacity:.5;}.x-form-fieldset .x-field.x-field-required label:after{content:"*";display:inline;}.x-form-fieldset .x-field.x-field-required label{color:#647482;}.x-form-fieldset .x-field.x-label-align-left label{text-align:right;left:0;}.x-form-fieldset .x-field.x-label-align-left label+input[type="text"],.x-form-fieldset .x-field.x-label-align-left label+input[type="number"],.x-form-fieldset .x-field.x-label-align-left label+input[type="password"],.x-form-fieldset .x-field.x-label-align-left label+input[type="url"],.x-form-fieldset .x-field.x-label-align-left label+input[type="email"],.x-form-fieldset .x-field.x-label-align-left label+textarea,.x-form-fieldset .x-field.x-label-align-left label+.x-field-slider{padding-left:7.6em;}.x-form-fieldset .x-field.x-label-align-left label+input[type="checkbox"],.x-form-fieldset .x-field.x-label-align-left label+input[type="radio"]{right:.6em;}.x-form-fieldset .x-field.x-label-align-left label+.x-spinner{margin-left:7em;}.x-form-fieldset .x-field.x-label-align-left select{margin-left:7em;}.x-form-fieldset .x-field.x-label-align-right label{text-align:left;right:0;}.x-form-fieldset .x-field.x-label-align-right label+input[type="text"],.x-form-fieldset .x-field.x-label-align-right label+input[type="number"],.x-form-fieldset .x-field.x-label-align-right label+input[type="password"],.x-form-fieldset .x-field.x-label-align-right label+input[type="email"],.x-form-fieldset .x-field.x-label-align-right label+input[type="url"],.x-form-fieldset .x-field.x-label-align-right label+textarea,.x-form-fieldset .x-field.x-label-align-right label+select,.x-form-fieldset .x-field.x-label-align-right label+.x-field-slider{padding-right:7.6em;}.x-form-fieldset .x-field.x-label-align-right label+input[type="checkbox"],.x-form-fieldset .x-field.x-label-align-right label+input[type="radio"]{left:.6em;}.x-form-fieldset .x-field.x-label-align-right label+.x-spinner{margin-right:7em;}.x-form-fieldset .x-field.x-label-align-right select{margin-right:7em;}.x-form-fieldset .x-field:first-child label{border-top-left-radius:.2em;-moz-border-radius-topleft:.2em;-webkit-border-top-left-radius:.2em;-webkit-border-top-left-radius:.2em;border-top-left-radius:.2em;}.x-form-fieldset .x-field:first-child.x-field-text input,.x-form-fieldset .x-field:first-child.x-field-textarea textarea,.x-form-fieldset .x-field:first-child.x-field-radio,.x-form-fieldset .x-field:first-child.x-field-checkbox,.x-form-fieldset .x-field:first-child.x-field-toggle,.x-form-fieldset .x-field:first-child.x-field-select select,.x-form-fieldset .x-field:first-child.x-field-slider,.x-form-fieldset .x-field:first-child.x-spinner{border-top-left-radius:.2em;-moz-border-radius-topleft:.2em;-webkit-border-top-left-radius:.2em;-webkit-border-top-left-radius:.2em;border-top-left-radius:.2em;border-top-right-radius:.2em;-moz-border-radius-topright:.2em;-webkit-border-top-right-radius:.2em;-webkit-border-top-right-radius:.2em;border-top-right-radius:.2em;}.x-form-fieldset .x-field:last-child label{border-bottom-left-radius:.2em;-moz-border-radius-bottomleft:.2em;-webkit-border-bottom-left-radius:.2em;-webkit-border-bottom-left-radius:.2em;border-bottom-left-radius:.2em;border-bottom:0;}.x-form-fieldset .x-field:last-child.x-field-text input,.x-form-fieldset .x-field:last-child.x-field-textarea textarea,.x-form-fieldset .x-field:last-child.x-field-radio,.x-form-fieldset .x-field:last-child.x-field-checkbox,.x-form-fieldset .x-field:last-child.x-field-toggle,.x-form-fieldset .x-field:last-child.x-field-select select,.x-form-fieldset .x-field:last-child.x-field-slider,.x-form-fieldset .x-field:last-child.x-spinner{border-bottom-left-radius:.2em;-moz-border-radius-bottomleft:.2em;-webkit-border-bottom-left-radius:.2em;-webkit-border-bottom-left-radius:.2em;border-bottom-left-radius:.2em;border-bottom-right-radius:.2em;-moz-border-radius-bottomright:.2em;-webkit-border-bottom-right-radius:.2em;-webkit-border-bottom-right-radius:.2em;border-bottom-right-radius:.2em;border-bottom:0;}.x-form-fieldset .x-field-hidden{display:none;}.x-form-fieldset .x-field-text,.x-form-fieldset .x-field-number,.x-form-fieldset .x-field-textarea,.x-form-fieldset .x-field-select{position:relative;}.x-form-fieldset .x-field-text input,.x-form-fieldset .x-field-text textarea,.x-form-fieldset .x-field-text select,.x-form-fieldset .x-field-number input,.x-form-fieldset .x-field-number textarea,.x-form-fieldset .x-field-number select,.x-form-fieldset .x-field-textarea input,.x-form-fieldset .x-field-textarea textarea,.x-form-fieldset .x-field-textarea select,.x-form-fieldset .x-field-select input,.x-form-fieldset .x-field-select textarea,.x-form-fieldset .x-field-select select{-webkit-appearance:none;height:2.5em;width:100%;display:block;background:#fff none;border:0;border-bottom:1px solid #ded9d4;-webkit-border-radius:0;padding:.3em .3em .3em .3em;}.x-form-fieldset .x-field-select select{padding:.6em;}.x-form-fieldset .x-field-select:after{content:"\00a0";position:absolute;width:0;height:0;top:0;left:0;left:auto;right:0;position:absolute;display:block;margin:1em;border:.4em solid transparent;border-top-color:#ded9d4;z-index:1;}.x-form-fieldset .x-field-select.x-label-align-right:after{right:7em;}.x-form-fieldset .x-field-select.x-label-align-top:after{top:auto;bottom:0;}.x-form-fieldset .x-field-textarea{min-height:6em;}.x-form-fieldset .x-field-textarea textarea{min-height:6em;padding-top:.5em;}.x-form-fieldset .x-field-checkbox,.x-form-fieldset .x-field-radio,.x-form-fieldset .x-field-toggle,.x-form-fieldset .x-field-slider{background-color:#fff;border-bottom:1px solid #ded9d4;}.x-form-fieldset .x-field-checkbox label,.x-form-fieldset .x-field-radio label,.x-form-fieldset .x-field-toggle label,.x-form-fieldset .x-field-slider label{border-bottom:0;}.x-form-fieldset .x-field-checkbox input,.x-form-fieldset .x-field-radio input,.x-form-fieldset .x-field-toggle input,.x-form-fieldset .x-field-slider input{margin:.5em .8em;width:1.5em;height:1.5em;display:block;-webkit-border-radius:.75em;background-color:#b2a69a;border-color:#827264;}.x-form-fieldset .x-field-checkbox input[selected],.x-form-fieldset .x-field-radio input[selected],.x-form-fieldset .x-field-toggle input[selected],.x-form-fieldset .x-field-slider input[selected]{background-color:#483f38;}.x-form-fieldset .x-field-checkbox.x-label-align-right input,.x-form-fieldset .x-field-checkbox.x-label-align-left input,.x-form-fieldset .x-field-radio.x-label-align-right input,.x-form-fieldset .x-field-radio.x-label-align-left input,.x-form-fieldset .x-field-toggle.x-label-align-right input,.x-form-fieldset .x-field-toggle.x-label-align-left input,.x-form-fieldset .x-field-slider.x-label-align-right input,.x-form-fieldset .x-field-slider.x-label-align-left input{position:absolute;top:0;}.x-form-fieldset .x-field-checkbox.x-label-align-right input,.x-form-fieldset .x-field-radio.x-label-align-right input,.x-form-fieldset .x-field-toggle.x-label-align-right input,.x-form-fieldset .x-field-slider.x-label-align-right input{left:0;}.x-form-fieldset .x-field-checkbox input{-webkit-border-radius:4px;}.x-form-fieldset .x-field-slider.x-label-align-left{padding-left:7.3em;}.x-form-fieldset .x-field-slider.x-label-align-right{padding-right:7.3em;}.x-form-fieldset .x-field-slider .x-slider{margin-top:.3em;margin-bottom:.3em;}.x-form-fieldset .x-field-toggle.x-label-align-left,.x-form-fieldset .x-field-toggle.x-label-align-right{height:3.5em;}.x-form-fieldset .x-field-toggle.x-label-align-left .x-slider,.x-form-fieldset .x-field-toggle.x-label-align-right .x-slider{top:0;position:absolute;}.x-form-fieldset .x-field-toggle.x-label-align-left .x-slider{right:0;}.x-form-fieldset .x-field-toggle.x-label-align-right .x-slider{left:0;}.x-form-fieldset .x-spinner{position:relative;height:2.5em;background-color:#fff;border-bottom:1px solid #ded9d4;}.x-form-fieldset .x-spinner label{border-bottom:0;}.x-form-fieldset .x-spinner-body{margin-left:7em;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;text-align:center;}.x-form-fieldset .x-spinner-body span{font-size:1.3em;font-weight:bold;text-shadow:rgba(255,255,255,0.25) 0 1px 0;}.x-form-fieldset .x-spinner-body input{-webkit-appearance:none;display:block;width:3em;height:2.5em;padding:0;position:relative!important;top:auto;left:auto;right:auto;border-right:0;border-left:0;-webkit-border-radius:0;border-radius:0;border-color:#ded9d4;weight:bold;text-align:center;}.x-form-fieldset .x-spinner-body .x-spinner-down,.x-form-fieldset .x-spinner-body .x-spinner-up{-webkit-box-flex:1;font-weight:bold;padding:.3em 0;border:1px solid #b2a69a;border-top-color:#bdb3a9;-webkit-box-shadow:inset #e9e6e2 0 0 .1em .1em,rgba(255,255,255,0.25) 0 .1em 0;border-top:0;}.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-back:before,.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-forward:before,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-back:before,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-forward:before{background:#b2a69a;}.x-form-fieldset .x-spinner-body .x-spinner-down,.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-back:after,.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-forward:after,.x-form-fieldset .x-spinner-body .x-spinner-up,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-back:after,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#f4f3f1),color-stop(100%,#d3ccc6));}.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-pressed,.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-active,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-pressed,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-active{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#d3ccc6),color-stop(4%,#c8bfb8),color-stop(10%,#d1c9c3),color-stop(65%,#d3ccc6),color-stop(100%,#d4cdc7));-webkit-box-shadow:inset #d9d1c9 0 0 .5em,rgba(255,255,255,0.25) 0 .1em 0;}.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-pressed.x-button-back:after,.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-pressed.x-button-forward:after,.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-active.x-button-back:after,.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-active.x-button-forward:after,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-pressed.x-button-back:after,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-pressed.x-button-forward:after,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-active.x-button-back:after,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-active.x-button-forward:after{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#d3ccc6),color-stop(4%,#c8bfb8),color-stop(10%,#d1c9c3),color-stop(65%,#d3ccc6),color-stop(100%,#d4cdc7));}.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-pressed.x-button-back:after,.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-active.x-button-back:after,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-pressed.x-button-back:after,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-active.x-button-back:after{-webkit-box-shadow:inset #e9e6e2 0 0 .1em .1em;}.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-pressed.x-button-forward:after,.x-form-fieldset .x-spinner-body .x-spinner-down.x-button-active.x-button-forward:after,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-pressed.x-button-forward:after,.x-form-fieldset .x-spinner-body .x-spinner-up.x-button-active.x-button-forward:after{-webkit-box-shadow:inset #e9e6e2 0 0 -0.1em .1em;}.x-form-fieldset .x-spinner-body .x-spinner-down{border-left:0;}.x-form-fieldset .x-spinner-body .x-spinner-up{border-right:0;}.x-toolbar .x-field-text input{-webkit-border-radius:.75em;height:1.5em;padding-left:.75em;color:#333;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#eee),color-stop(4%,#e1e1e1),color-stop(10%,#ebebeb),color-stop(65%,#eee),color-stop(100%,#efefef));}.x-field-slider .x-field-mask,.x-field-toggle .x-field-mask,.x-spinner .x-field-mask,.x-field-checkbox .x-field-mask,x-field-radio .x-field-mask{display:none;}.x-field-slider .x-slider{position:relative;overflow:hidden;height:2.5em;margin:0 .5em;}.x-field-slider .x-slider:after{content:"\00a0";position:absolute;width:96%;height:.313em;top:1.063em;left:2%;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#fff),color-stop(100%,#e9e7e3));border:1px solid #ded9d4;-webkit-box-shadow:rgba(255,255,255,0.7) 0 1px 0;-webkit-border-radius:.156em;}.x-field-slider .x-slider .x-field-thumb.x-field{margin:2px;min-height:0;height:2.4em;width:2.4em;padding:1.1em;position:absolute;}.x-field-slider .x-slider .x-field-thumb.x-field:before{border:1px solid #a7988c;content:"\00a0";position:absolute;width:2.2em;height:2.2em;top:0;left:0;-webkit-border-radius:1.1em;overflow:visible;background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#f9f8f7),color-stop(50%,#fbfafa),color-stop(51%,#f4f3f1),color-stop(100%,#ded9d4));-webkit-box-shadow:#a4cff4 0 .1em 0;-webkit-box-shadow:inset #fff 0 0 .1em,inset #fff 0 -.1em 0;-webkit-transform:scale(0.65);-webkit-transition:-webkit-transform 100ms ease-in-out;}.x-field-slider .x-slider .x-field-thumb.x-field.x-dragging{opacity:1;}.x-field-slider .x-slider .x-field-thumb.x-field.x-dragging:before{-webkit-transform:scale(0.75);background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#eeebe9),color-stop(50%,#f0edeb),color-stop(51%,#e9e6e3),color-stop(100%,#d3ccc6));}.x-field-toggle .x-slider{height:2.5em;width:5em;margin:.6em;-webkit-border-radius:1.25em;-webkit-box-shadow:inset rgba(0,0,0,0.3) 0 0 .3em;position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0);background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#ded9d4),color-stop(4%,#d3ccc6),color-stop(10%,#dcd6d1),color-stop(65%,#ded9d4),color-stop(100%,#dfdad5));}.x-field-toggle .x-slider .x-field-thumb{position:absolute;width:2.55em;height:2.2em;overflow:visible;}.x-field-toggle .x-slider .x-field-thumb.x-dragging{opacity:1;}.x-field-toggle .x-slider .x-field-thumb:after{content:"\00a0";position:absolute;width:2.5em;height:2.5em;top:0;left:0;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0 .15em;-webkit-border-radius:1.25em;-webkit-transform:scale(0.65);background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#fff),color-stop(2%,#f9f8f7),color-stop(50%,#fbfafa),color-stop(51%,#f4f3f1),color-stop(100%,#ded9d4));border:1px solid #827264;overflow:visible;z-index:2;}.x-field-toggle .x-slider .x-field-thumb.x-dragging:after{-webkit-transform:scale(0.75);}.x-field-toggle .x-slider.x-toggle-on{background-image:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#92cf00),color-stop(4%,#80b600),color-stop(10%,#8eca00),color-stop(65%,#92cf00),color-stop(100%,#94d200));}
@@ -1,14 +1,12 @@
1
1
  :erb
2
2
  <style type="text/css">
3
+
3
4
  :sass
4
5
  #header-wrap
5
- background: transparent url(/images/bk_gradient.png) repeat-x
6
6
  color: white
7
-
8
7
  #header
9
8
  h1
10
- margin-left: 15px
11
-
9
+ margin-left: 15px
12
10
  ul#pages
13
11
  list-style: none
14
12
  li
@@ -19,19 +17,7 @@
19
17
  :erb
20
18
  </style>
21
19
 
22
- :javascript
23
- $(function() {
24
- $('#pages').children().mouseover(function(){
25
- $(this).css('background-image','url(/images/bk_gradient.png)');
26
- });
27
- $('#pages').children().mouseout(function(){
28
- $(this).css('background-image','none');
29
- });
30
- $('#pages').children().click(function(){
31
- window.location = $(this).attr('data-href');
32
- });
33
-
34
- })
20
+
35
21
  #header-wrap
36
22
  #header.container_16
37
23
  %h1 Mercury
@@ -39,20 +25,16 @@
39
25
  #wrap.container_16
40
26
  .grid_9.prefix_3
41
27
  %p{:style => 'font-size:1.4em'}
42
- As of 9.2, we changed the web directory to 'wwwroot' instead of 'views', so if you created your project with an older version of Mercury, all you have to do is rename the 'views' folder to 'wwwroot', and everything should work as normal. Also, check out
43
- %a{:href => 'http://mercury.heroku.com'} http://mercury.heroku.com
44
- for more information, and examples.
45
-
28
+ Welcome to Mercury
46
29
  %p{:style => 'font-size:1.4em'}
47
- Welcome to Mercury, a simple and easy to use gem that makes it super easy to create web-sites, mockups and micro-webapps. This gem is not to replace any of the excellent ruby frameworks out there. It is simply a gem to quickly mockup some web sites, web mockups, or a mini prototype apps.
48
-
30
+ Mercury is built on top of the Sinatra Framework and allows you to build web sites and mockups using haml, sass, coffee-script, without having to write any ruby (if you don't want to :). The purpose of mercury is to enable developers to put up quick prototypes using haml, sass, and coffee-script. Often times a picture is one of the best ways to get user requirements before you start creating the application. Some users really benefit from seeing and touching a working prototype to confirm their needs in a specific product.
49
31
  %p{:style => 'font-size:1.4em'}
50
- The original purpose was to create a simple way to quickly create wireframes, using haml and sass. After tweaking the gem we added a bunch of other little features. You can replace this page, by creating an index.haml file in your views directory. We will work on providing more documentation soon.
51
-
52
- %p{:style => 'font-size:1.4em'}
53
- Please send us a tweet and let us know what you think about the project!
32
+ Please send us a tweet or email and let us know what you think about the project!
54
33
  :markdown
55
34
  [@jackhq](http://twitter.com/jackhq)
56
-
35
+
36
+ or
37
+
38
+ [mercury@jackhq.com](mailto:mercury@jackhq.com)
57
39
 
58
40
 
@@ -0,0 +1,25 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../lib/mercury_config')
2
+
3
+ describe "mercury config" do
4
+ it "should default to a jquery stack with project name of sample" do
5
+ config = MercuryConfig.new(['sample'])
6
+ config.stack.should == MercuryConfig::JQUERY
7
+ config.project.should == "sample"
8
+ end
9
+
10
+ it "should equal sencha if specified" do
11
+ config = MercuryConfig.new(['stack:sencha','sample'])
12
+ config.stack.should == MercuryConfig::SENCHA
13
+ config.project.should == "sample"
14
+
15
+ end
16
+
17
+ it "should equal jquery if specified and does not match any stack" do
18
+ config = MercuryConfig.new(['stack:mystack','sample'])
19
+ config.stack.should == MercuryConfig::JQUERY
20
+ config.project.should == "sample"
21
+
22
+ end
23
+
24
+
25
+ end
@@ -6,6 +6,7 @@ require 'spec'
6
6
  require 'spec/autorun'
7
7
  require 'rack/test'
8
8
 
9
+
9
10
  Spec::Runner.configure do |config|
10
11
 
11
12
  end
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mercury
3
3
  version: !ruby/object:Gem::Version
4
- hash: 37
5
4
  prerelease: false
6
5
  segments:
6
+ - 1
7
7
  - 0
8
- - 9
9
- - 15
10
- version: 0.9.15
8
+ - 0
9
+ version: 1.0.0
11
10
  platform: ruby
12
11
  authors:
13
12
  - Tom Wilson
@@ -15,18 +14,16 @@ autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-05-27 00:00:00 -04:00
17
+ date: 2010-06-28 00:00:00 -04:00
19
18
  default_executable: mercury
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: sinatra
23
22
  prerelease: false
24
23
  requirement: &id001 !ruby/object:Gem::Requirement
25
- none: false
26
24
  requirements:
27
25
  - - ">="
28
26
  - !ruby/object:Gem::Version
29
- hash: 23
30
27
  segments:
31
28
  - 1
32
29
  - 0
@@ -38,11 +35,9 @@ dependencies:
38
35
  name: haml
39
36
  prerelease: false
40
37
  requirement: &id002 !ruby/object:Gem::Requirement
41
- none: false
42
38
  requirements:
43
39
  - - ">="
44
40
  - !ruby/object:Gem::Version
45
- hash: 7
46
41
  segments:
47
42
  - 3
48
43
  - 0
@@ -54,11 +49,9 @@ dependencies:
54
49
  name: faker
55
50
  prerelease: false
56
51
  requirement: &id003 !ruby/object:Gem::Requirement
57
- none: false
58
52
  requirements:
59
53
  - - ">="
60
54
  - !ruby/object:Gem::Version
61
- hash: 3
62
55
  segments:
63
56
  - 0
64
57
  version: "0"
@@ -68,11 +61,9 @@ dependencies:
68
61
  name: maruku
69
62
  prerelease: false
70
63
  requirement: &id004 !ruby/object:Gem::Requirement
71
- none: false
72
64
  requirements:
73
65
  - - ">="
74
66
  - !ruby/object:Gem::Version
75
- hash: 3
76
67
  segments:
77
68
  - 0
78
69
  version: "0"
@@ -90,8 +81,11 @@ extra_rdoc_files:
90
81
  files:
91
82
  - lib/coffee_script.rb
92
83
  - lib/mercury.rb
84
+ - lib/mercury/css.rb
93
85
  - lib/mercury/helpers.rb
94
86
  - lib/mercury/images.rb
87
+ - lib/mercury/js.rb
88
+ - lib/mercury_config.rb
95
89
  - lib/public/favicon.ico
96
90
  - lib/public/images/bk_gradient.png
97
91
  - lib/public/javascripts/coffee-script.js
@@ -116,15 +110,17 @@ files:
116
110
  - lib/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png
117
111
  - lib/public/stylesheets/smoothness/jquery-ui-1.8.custom.css
118
112
  - lib/public/stylesheets/text.css
113
+ - lib/sencha/icon.png
114
+ - lib/sencha/index.html
115
+ - lib/sencha/javascripts/coffee-script.js
116
+ - lib/sencha/javascripts/ext-touch.js
117
+ - lib/sencha/phone_startup.png
118
+ - lib/sencha/stylesheets/ext-touch.css
119
+ - lib/sencha/tablet_startup.png
119
120
  - lib/views/index.haml
120
121
  - lib/views/layout.haml
121
122
  - LICENSE
122
123
  - README.rdoc
123
- - spec/lib/mercury/helpers_spec.rb
124
- - spec/lib/mercury/images_spec.rb
125
- - spec/mercury_spec.rb
126
- - spec/spec_helper.rb
127
- - bin/mercury
128
124
  has_rdoc: true
129
125
  homepage: http://github.com/jackhq/mercury
130
126
  licenses: []
@@ -135,32 +131,29 @@ rdoc_options:
135
131
  require_paths:
136
132
  - lib
137
133
  required_ruby_version: !ruby/object:Gem::Requirement
138
- none: false
139
134
  requirements:
140
135
  - - ">="
141
136
  - !ruby/object:Gem::Version
142
- hash: 3
143
137
  segments:
144
138
  - 0
145
139
  version: "0"
146
140
  required_rubygems_version: !ruby/object:Gem::Requirement
147
- none: false
148
141
  requirements:
149
142
  - - ">="
150
143
  - !ruby/object:Gem::Version
151
- hash: 3
152
144
  segments:
153
145
  - 0
154
146
  version: "0"
155
147
  requirements: []
156
148
 
157
149
  rubyforge_project:
158
- rubygems_version: 1.3.7
150
+ rubygems_version: 1.3.6
159
151
  signing_key:
160
152
  specification_version: 3
161
153
  summary: Easy Hacking with Haml, Sass, JQuery, CoffeeScript
162
154
  test_files:
163
155
  - spec/lib/mercury/helpers_spec.rb
164
156
  - spec/lib/mercury/images_spec.rb
157
+ - spec/lib/mercury_config_spec.rb
165
158
  - spec/mercury_spec.rb
166
159
  - spec/spec_helper.rb