Socket
Socket
Sign inDemoInstall

cssparser

Package Overview
Dependencies
7
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.2.0 to 0.2.1

49

lib/cli.js
#!/usr/bin/env node
(function () {
var colors = require('colors');
var cssparser = require('./cssparser.js');

@@ -21,3 +22,3 @@ var nomnom = require('nomnom');

metavar: 'FILE',
help: 'Filename and base module name of the generated JSON'
help: 'Filename or base name of the generated JSON'
})

@@ -27,7 +28,8 @@ .option('indent', {

default: 0,
help: 'space count of indent-step'
help: 'indentation(string or number)'
})
.option('parsing-mode', {
abbr: 'm',
.option('type', {
abbr: 't',
default: 'simple',
choices: [ 'simple', 'deep', 'atomic' ],
metavar: 'TYPE',

@@ -38,4 +40,4 @@ help: 'The type of JSON to generate (simple, deep, atomic)'

abbr: 'c',
default: true,
help: 'to console'
flag: true,
help: 'Display JSON to console only. this option will ignore output-file options.'
})

@@ -52,3 +54,3 @@ .option('version', {

function toJSON( raw, mode, indent ) {
function toJSON( raw, type, indent ) {
var parser = new cssparser.Parser();

@@ -60,12 +62,29 @@

if (opts.file) {
var raw = fs.readFileSync(path.normalize(opts.file), 'utf8');
var name = path.basename((opts.outfile||opts.file)).replace(/\..*$/g,'');
var mode = opts["parsing-mode"];
var indent = opts.indent;
var json = toJSON(raw, mode, indent);
try {
var raw = fs.readFileSync(path.normalize(opts.file), 'utf8');
}
catch (e) {
console.error( e.toString().red );
return;
}
fs.writeFileSync(opts.outfile||(name + '.json'), json );
if ( opts.console )
console.log( json );
var name = path.basename((opts.outfile||opts.file)).replace(/\..*$/g,'');
var type = opts.type;
var indent = opts.indent;
try {
var json = toJSON(raw, type, indent);
}
catch (e) {
console.error( e.toString().red );
return;
}
if ( opts.console ) {
console.log( json );
}
else {
fs.writeFileSync(opts.outfile||(name + '.json'), json );
}
}
})();

@@ -16,3 +16,3 @@ {

],
"version": "0.2.0",
"version": "0.2.1",
"preferGlobal": true,

@@ -34,3 +34,4 @@ "repository": {

"dependencies": {
"nomnom": ">= 1.5.x"
"nomnom": ">= 1.5.x",
"colors": ">= 0.6.0"
},

@@ -51,4 +52,4 @@ "devDependencies": {

"type": "MIT",
"url": "https://github.com/cowboy/grunt-jquery-example/blob/master/LICENSE-MIT"
"url": "http://www.opensource.org/licenses/mit-license.php"
}
}
cssparser.js
========
======

@@ -7,8 +7,11 @@ cssparser.js is a parser that generates json matched with source css structure.

##Description
========
* License: MIT license - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php)
* Author : Changwook Doh - changwook.doh@gmail.com
* Author : Chang W. Doh
##Demo
* [http://cwdoh.github.io/cssparser.js/demo/CSS_stringify.html](//cwdoh.github.io/cssparser.js/demo/CSS_stringify.html)
##Dependency
========

@@ -23,7 +26,6 @@ Just want to use cssparser.js? Nothing needed.

##Usage
========
###from Command-line
========
First of all, you should install cssparser.

@@ -47,3 +49,2 @@

###from CommonJS Module
========

@@ -62,5 +63,4 @@ You can generate javascript object from your javascript module.

##Generating parser from source
##Generating parser from source
========
###Getting jison & source

@@ -81,13 +81,15 @@

##JSON Structure
========
There's three level of JSON structure for CSS.
There are 3 types of JSON format.
* simple - most simple. this's simply consist of just key & value.
* deep - more detailed then simple mode. this has more informations of selector, terms, expression, queries, …
* atomic - most detailed. 'atomic' JSON has all pieces of each key & values in CSS. e.g. length has numeric value & its unit like "100px" -> { "value": 100, "unit": "px" }
* simple - most simple.
* simply consist of just key & value.
* deep - more detailed then simple mode.
* this includes more informations of selector, terms, expression, queries, …
* atomic - most detailed. 'atomic' JSON has all pieces of each key & values in CSS.
* e.g. length has numeric value & its unit like "100px" -> { "value": 100, "unit": "px" }
###Mode 'simple'
========
###Type 'simple'
stylesheet_object =

@@ -136,16 +138,16 @@

###Mode 'deep'
========
###Type 'deep'
Not yet.
###Mode 'atomic'
========
###Type 'atomic'
Not yet.
##Example
========
following is tested result with some rulesets at [http://css3please.com](http://css3please.com)
node cssparser ./test/sample.css -console
Example is tested with rulesets of [http://css3please.com](http://css3please.com)
cssparser example/test.css --console -i 4
###Input

@@ -304,3 +306,2 @@

##To do list
========

@@ -307,0 +308,0 @@ * Parsing & generating options like simple JSON expression or more detailed.

@@ -1,2 +0,2 @@

var cssparser=function(){function e(){this.yy={}}var t={trace:function(){},yy:{},symbols_:{error:2,stylesheet:3,charset:4,space_cdata_list:5,import_list:6,namespace_list:7,general_list:8,CHARSET_SYM:9,wempty:10,STRING:11,";":12,import_item:13,"import":14,IMPORT_SYM:15,string_or_uri:16,media_query_list:17,namespace_item:18,namespace:19,NAMESPACE_SYM:20,namespace_prefix:21,IDENT:22,URI:23,general_item:24,"null":25,ruleset:26,media:27,page:28,font_face:29,keyframes:30,MEDIA_SYM:31,"{":32,"}":33,media_query:34,media_combinator:35,"(":36,")":37,":":38,",":39,whitespace:40,computable_term:41,string_term:42,PAGE_SYM:43,page_ident:44,pseudo_page:45,declaration_list:46,FONT_FACE_SYM:47,unary_operator:48,"-":49,"+":50,property:51,"*":52,selector_list:53,selector:54,simple_selector:55,combinator:56,">":57,simple_selector_atom_list:58,element_name:59,simple_selector_atom:60,HASH:61,"class":62,attrib:63,pseudo:64,".":65,"[":66,"]":67,attrib_operator:68,attrib_value:69,"=":70,INCLUDES:71,DASHMATCH:72,PREFIXMATCH:73,SUFFIXMATCH:74,SUBSTRINGMATCH:75,FUNCTION:76,declaration_parts:77,declaration:78,expr:79,IMPORTANT_SYM:80,term:81,operator:82,NUMBER:83,PERCENTAGE:84,LENGTH:85,EMS:86,EXS:87,ANGLE:88,TIME:89,FREQ:90,UNICODERANGE:91,hexcolor:92,"/":93,S:94,space_cdata:95,CDO:96,CDC:97,keyframe_symbol:98,keyframe_list:99,keyframe:100,keyframe_offset_list:101,keyframe_offset:102,KEYFRAMES:103,$accept:0,$end:1},terminals_:{2:"error",9:"CHARSET_SYM",11:"STRING",12:";",15:"IMPORT_SYM",20:"NAMESPACE_SYM",22:"IDENT",23:"URI",25:"null",31:"MEDIA_SYM",32:"{",33:"}",36:"(",37:")",38:":",39:",",43:"PAGE_SYM",47:"FONT_FACE_SYM",49:"-",50:"+",52:"*",57:">",61:"HASH",65:".",66:"[",67:"]",70:"=",71:"INCLUDES",72:"DASHMATCH",73:"PREFIXMATCH",74:"SUFFIXMATCH",75:"SUBSTRINGMATCH",76:"FUNCTION",80:"IMPORTANT_SYM",83:"NUMBER",84:"PERCENTAGE",85:"LENGTH",86:"EMS",87:"EXS",88:"ANGLE",89:"TIME",90:"FREQ",91:"UNICODERANGE",93:"/",94:"S",96:"CDO",97:"CDC",103:"KEYFRAMES"},productions_:[0,[3,5],[4,5],[4,0],[6,1],[6,2],[6,0],[13,1],[13,1],[14,6],[7,1],[7,2],[7,0],[18,1],[18,1],[19,6],[21,2],[21,1],[16,2],[16,2],[8,1],[8,2],[8,1],[24,1],[24,1],[24,1],[24,1],[24,1],[24,1],[27,8],[17,1],[17,2],[17,3],[17,0],[35,2],[35,2],[35,2],[35,2],[35,1],[34,1],[34,1],[34,0],[28,10],[44,1],[44,0],[45,2],[45,0],[29,7],[48,1],[48,1],[51,2],[51,3],[26,6],[53,1],[53,4],[54,1],[54,3],[56,2],[56,2],[56,0],[55,2],[55,3],[58,1],[58,2],[58,0],[60,1],[60,1],[60,1],[60,1],[62,2],[59,1],[59,1],[63,5],[63,9],[68,1],[68,1],[68,1],[68,1],[68,1],[68,1],[69,1],[69,1],[64,2],[64,6],[64,6],[64,3],[46,1],[46,2],[77,1],[77,1],[77,1],[78,5],[78,6],[78,0],[79,1],[79,3],[79,2],[81,1],[81,2],[81,1],[41,2],[41,2],[41,2],[41,2],[41,2],[41,2],[41,2],[41,2],[41,5],[42,2],[42,2],[42,2],[42,2],[42,1],[82,2],[82,2],[82,2],[82,0],[92,2],[40,1],[40,2],[10,1],[10,0],[5,1],[5,2],[5,0],[95,1],[95,1],[95,1],[30,8],[99,1],[99,2],[99,0],[100,6],[101,2],[101,4],[102,1],[102,1],[102,1],[98,2]],performAction:function(e,t,s,r,a,i){var n=i.length-1;switch(a){case 1:return this.$={},i[n-4]&&(this.$.charset=i[n-4]),i[n-2]&&(this.$.imports=i[n-2]),i[n-1]&&(this.$.namespaces=i[n-1]),i[n]&&(this.$.rulelist=i[n]),this.$;case 2:this.$=i[n-2];break;case 3:this.$="";break;case 4:this.$=[],null!==i[n]&&this.$.push(i[n]);break;case 5:this.$=i[n-1],null!==i[n]&&this.$.push(i[n]);break;case 6:this.$=null;break;case 7:this.$=i[n];break;case 8:this.$=null;break;case 9:this.$={"import":i[n-3]},null!=i[n-2]&&(this.$.mediaqueries=i[n-2]);break;case 10:this.$=[],null!==i[n]&&this.$.push(i[n]);break;case 11:this.$=i[n-1],null!==i[n]&&this.$.push(i[n]);break;case 12:this.$=null;break;case 13:this.$=i[n];break;case 14:this.$=null;break;case 15:this.$={namespace:i[n-2]},i[n-3]&&(this.$.prefix=i[n-3]);break;case 16:this.$=i[n-1];break;case 17:this.$=null;break;case 18:this.$=i[n-1];break;case 19:this.$=i[n-1];break;case 20:this.$=[],null!==i[n]&&this.$.push(i[n]);break;case 21:this.$=i[n-1],this.$.push(i[n]);break;case 23:this.$=i[n];break;case 24:this.$=i[n];break;case 25:this.$=i[n];break;case 26:this.$=i[n];break;case 27:this.$=i[n];break;case 28:this.$=null;break;case 29:this.$={type:"media",mediaqueries:i[n-5],children:i[n-2]};break;case 30:this.$=i[n];break;case 31:this.$=i[n-1]+" "+i[n];break;case 32:this.$=i[n-2]+i[n-1]+i[n];break;case 33:this.$=null;break;case 34:this.$=" "+i[n-1];break;case 35:this.$=i[n-1];break;case 36:this.$=i[n-1];break;case 37:this.$=", ";break;case 38:this.$=" ";break;case 39:this.$=i[n];break;case 40:this.$=i[n];break;case 41:this.$="";break;case 42:this.$={id:i[n-7],pseudo:i[n-6],declarations:i[n-2]};break;case 43:this.$=i[n];break;case 44:this.$="";break;case 45:this.$=i[n-1]+i[n];break;case 46:this.$="";break;case 47:this.$={type:"fontface",declarations:i[n-2]};break;case 48:this.$=i[n];break;case 49:this.$=i[n];break;case 50:this.$=i[n-1];break;case 51:this.$=i[n-2]+i[n-1];break;case 52:this.$={type:"style",selector:i[n-5],declarations:i[n-2]};break;case 53:this.$=i[n];break;case 54:this.$=i[n-3]+i[n-2]+" "+i[n];break;case 55:this.$=i[n];break;case 56:this.$=i[n-2]+i[n-1]+i[n];break;case 57:this.$=i[n-1];break;case 58:this.$=i[n-1];break;case 59:this.$="";break;case 60:this.$=i[n-1];break;case 61:this.$=i[n-2]+i[n-1];break;case 62:this.$=i[n];break;case 63:this.$=i[n-1]+i[n];break;case 64:this.$="";break;case 65:this.$=i[n];break;case 66:this.$=i[n];break;case 67:this.$=i[n];break;case 68:this.$=i[n];break;case 69:this.$=i[n-1]+i[n];break;case 70:this.$=i[n];break;case 71:this.$=i[n];break;case 72:this.$=i[n-4]+i[n-2]+i[n];break;case 73:this.$=i[n-8]+i[n-6]+i[n-4]+i[n-3]+i[n-2]+i[n];break;case 74:this.$=i[n];break;case 75:this.$=i[n];break;case 76:this.$=i[n];break;case 77:this.$=i[n];break;case 78:this.$=i[n];break;case 79:this.$=i[n];break;case 80:this.$=i[n];break;case 81:this.$=i[n];break;case 82:this.$=i[n-1]+i[n];break;case 83:this.$=i[n-5]+i[n-4]+i[n-2]+i[n];break;case 84:this.$=i[n-5]+i[n-4]+i[n-2]+i[n];break;case 85:this.$=i[n-2]+i[n-1]+i[n];break;case 86:this.$={},null!==i[n]&&(this.$[i[n][0]]=i[n][1]);break;case 87:this.$=i[n-1],null!==i[n]&&(this.$[i[n][0]]=i[n][1]);break;case 88:this.$=i[n];break;case 89:this.$=null;break;case 90:this.$=null;break;case 91:this.$=[i[n-4],i[n-1]];break;case 92:this.$=[i[n-5],i[n-2]+" !important"];break;case 93:this.$=null;break;case 94:this.$=i[n];break;case 95:this.$=i[n-2]+i[n-1]+i[n];break;case 96:this.$=i[n-1]+" "+i[n];break;case 97:this.$=i[n];break;case 98:this.$=i[n-1]+i[n];break;case 99:this.$=i[n];break;case 100:this.$=i[n-1];break;case 101:this.$=i[n-1];break;case 102:this.$=i[n-1];break;case 103:this.$=i[n-1];break;case 104:this.$=i[n-1];break;case 105:this.$=i[n-1];break;case 106:this.$=i[n-1];break;case 107:this.$=i[n-1];break;case 108:this.$=i[n-4]+i[n-2]+i[n-1];break;case 109:this.$=i[n-1];break;case 110:this.$=i[n-1];break;case 111:this.$=i[n-1];break;case 112:this.$=i[n-1];break;case 113:this.$=i[n];break;case 114:this.$=i[n-1];break;case 115:this.$=i[n-1];break;case 116:this.$=i[n-1];break;case 117:this.$="";break;case 118:this.$=i[n-1];break;case 119:this.$=" ";break;case 120:this.$=" ";break;case 121:this.$=i[n];break;case 122:this.$="";break;case 123:this.$=null;break;case 124:this.$=null;break;case 126:this.$=null;break;case 127:this.$=null;break;case 128:this.$=null;break;case 129:this.$={type:"keyframes",id:i[n-6],keyframes:i[n-2],prefix:i[n-7]};break;case 130:this.$=[i[n]];break;case 131:this.$=i[n-1],this.$.push(i[n]);break;case 132:this.$=[];break;case 133:this.$={offset:i[n-5],declarations:i[n-2]};break;case 134:this.$=i[n-1];break;case 135:this.$=i[n-3]+", "+i[n-2];break;case 136:this.$=i[n];break;case 137:this.$=i[n];break;case 138:this.$=i[n];break;case 139:this.$=i[n-1].split(RegExp("@([-a-zA-Z0-9]*)keyframes","g"))[1]}},table:[{1:[2,3],3:1,4:2,9:[1,3],15:[2,3],20:[2,3],22:[2,3],25:[2,3],31:[2,3],32:[2,3],38:[2,3],39:[2,3],43:[2,3],47:[2,3],50:[2,3],52:[2,3],57:[2,3],61:[2,3],65:[2,3],66:[2,3],94:[2,3],96:[2,3],97:[2,3],103:[2,3]},{1:[3]},{1:[2,125],5:4,15:[2,125],20:[2,125],22:[2,125],25:[2,125],31:[2,125],32:[2,125],38:[2,125],39:[2,125],43:[2,125],47:[2,125],50:[2,125],52:[2,125],57:[2,125],61:[2,125],65:[2,125],66:[2,125],94:[1,6],95:5,96:[1,7],97:[1,8],103:[2,125]},{10:9,11:[2,122],40:10,94:[1,11]},{1:[2,6],5:16,6:12,13:14,14:15,15:[1,17],20:[2,6],22:[2,6],25:[2,6],31:[2,6],32:[2,6],38:[2,6],39:[2,6],43:[2,6],47:[2,6],50:[2,6],52:[2,6],57:[2,6],61:[2,6],65:[2,6],66:[2,6],94:[1,6],95:13,96:[1,7],97:[1,8],103:[2,6]},{1:[2,123],15:[2,123],20:[2,123],22:[2,123],25:[2,123],31:[2,123],32:[2,123],33:[2,123],38:[2,123],39:[2,123],43:[2,123],47:[2,123],50:[2,123],52:[2,123],57:[2,123],61:[2,123],65:[2,123],66:[2,123],94:[2,123],96:[2,123],97:[2,123],103:[2,123]},{1:[2,126],15:[2,126],20:[2,126],22:[2,126],25:[2,126],31:[2,126],32:[2,126],33:[2,126],38:[2,126],39:[2,126],43:[2,126],47:[2,126],50:[2,126],52:[2,126],57:[2,126],61:[2,126],65:[2,126],66:[2,126],94:[2,126],96:[2,126],97:[2,126],103:[2,126]},{1:[2,127],15:[2,127],20:[2,127],22:[2,127],25:[2,127],31:[2,127],32:[2,127],33:[2,127],38:[2,127],39:[2,127],43:[2,127],47:[2,127],50:[2,127],52:[2,127],57:[2,127],61:[2,127],65:[2,127],66:[2,127],94:[2,127],96:[2,127],97:[2,127],103:[2,127]},{1:[2,128],15:[2,128],20:[2,128],22:[2,128],25:[2,128],31:[2,128],32:[2,128],33:[2,128],38:[2,128],39:[2,128],43:[2,128],47:[2,128],50:[2,128],52:[2,128],57:[2,128],61:[2,128],65:[2,128],66:[2,128],94:[2,128],96:[2,128],97:[2,128],103:[2,128]},{11:[1,18]},{1:[2,121],11:[2,121],12:[2,121],15:[2,121],20:[2,121],22:[2,121],23:[2,121],25:[2,121],31:[2,121],32:[2,121],33:[2,121],36:[2,121],37:[2,121],38:[2,121],39:[2,121],43:[2,121],47:[2,121],49:[2,121],50:[2,121],52:[2,121],57:[2,121],61:[2,121],65:[2,121],66:[2,121],67:[2,121],70:[2,121],71:[2,121],72:[2,121],73:[2,121],74:[2,121],75:[2,121],76:[2,121],80:[2,121],83:[2,121],84:[2,121],85:[2,121],86:[2,121],87:[2,121],88:[2,121],89:[2,121],90:[2,121],91:[2,121],93:[2,121],94:[1,19],96:[2,121],97:[2,121],103:[2,121]},{1:[2,119],11:[2,119],12:[2,119],15:[2,119],20:[2,119],22:[2,119],23:[2,119],25:[2,119],31:[2,119],32:[2,119],33:[2,119],36:[2,119],37:[2,119],38:[2,119],39:[2,119],43:[2,119],47:[2,119],49:[2,119],50:[2,119],52:[2,119],57:[2,119],61:[2,119],65:[2,119],66:[2,119],67:[2,119],70:[2,119],71:[2,119],72:[2,119],73:[2,119],74:[2,119],75:[2,119],76:[2,119],80:[2,119],83:[2,119],84:[2,119],85:[2,119],86:[2,119],87:[2,119],88:[2,119],89:[2,119],90:[2,119],91:[2,119],93:[2,119],94:[2,119],96:[2,119],97:[2,119],103:[2,119]},{1:[2,12],5:23,7:20,13:21,14:15,15:[1,17],18:22,19:24,20:[1,25],22:[2,12],25:[2,12],31:[2,12],32:[2,12],38:[2,12],39:[2,12],43:[2,12],47:[2,12],50:[2,12],52:[2,12],57:[2,12],61:[2,12],65:[2,12],66:[2,12],94:[1,6],95:5,96:[1,7],97:[1,8],103:[2,12]},{1:[2,124],15:[2,124],20:[2,124],22:[2,124],25:[2,124],31:[2,124],32:[2,124],38:[2,124],39:[2,124],43:[2,124],47:[2,124],50:[2,124],52:[2,124],57:[2,124],61:[2,124],65:[2,124],66:[2,124],94:[2,124],96:[2,124],97:[2,124],103:[2,124]},{1:[2,4],15:[2,4],20:[2,4],22:[2,4],25:[2,4],31:[2,4],32:[2,4],38:[2,4],39:[2,4],43:[2,4],47:[2,4],50:[2,4],52:[2,4],57:[2,4],61:[2,4],65:[2,4],66:[2,4],94:[2,4],96:[2,4],97:[2,4],103:[2,4]},{1:[2,7],15:[2,7],20:[2,7],22:[2,7],25:[2,7],31:[2,7],32:[2,7],38:[2,7],39:[2,7],43:[2,7],47:[2,7],50:[2,7],52:[2,7],57:[2,7],61:[2,7],65:[2,7],66:[2,7],94:[2,7],96:[2,7],97:[2,7],103:[2,7]},{1:[2,8],15:[2,8],20:[2,8],22:[2,8],25:[2,8],31:[2,8],32:[2,8],38:[2,8],39:[2,8],43:[2,8],47:[2,8],50:[2,8],52:[2,8],57:[2,8],61:[2,8],65:[2,8],66:[2,8],94:[1,6],95:26,96:[1,7],97:[1,8],103:[2,8]},{10:27,11:[2,122],23:[2,122],40:10,94:[1,11]},{10:28,12:[2,122],40:10,94:[1,11]},{1:[2,120],11:[2,120],12:[2,120],15:[2,120],20:[2,120],22:[2,120],23:[2,120],25:[2,120],31:[2,120],32:[2,120],33:[2,120],36:[2,120],37:[2,120],38:[2,120],39:[2,120],43:[2,120],47:[2,120],49:[2,120],50:[2,120],52:[2,120],57:[2,120],61:[2,120],65:[2,120],66:[2,120],67:[2,120],70:[2,120],71:[2,120],72:[2,120],73:[2,120],74:[2,120],75:[2,120],76:[2,120],80:[2,120],83:[2,120],84:[2,120],85:[2,120],86:[2,120],87:[2,120],88:[2,120],89:[2,120],90:[2,120],91:[2,120],93:[2,120],94:[2,120],96:[2,120],97:[2,120],103:[2,120]},{1:[2,125],5:33,8:29,18:30,19:24,20:[1,25],22:[1,50],24:31,25:[1,32],26:34,27:35,28:36,29:37,30:38,31:[1,40],32:[2,125],38:[1,58],39:[2,125],43:[1,41],47:[1,42],50:[2,125],52:[1,51],53:39,54:44,55:46,57:[2,125],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,6],95:5,96:[1,7],97:[1,8],98:43,103:[1,45]},{1:[2,5],15:[2,5],20:[2,5],22:[2,5],25:[2,5],31:[2,5],32:[2,5],38:[2,5],39:[2,5],43:[2,5],47:[2,5],50:[2,5],52:[2,5],57:[2,5],61:[2,5],65:[2,5],66:[2,5],94:[2,5],96:[2,5],97:[2,5],103:[2,5]},{1:[2,10],20:[2,10],22:[2,10],25:[2,10],31:[2,10],32:[2,10],38:[2,10],39:[2,10],43:[2,10],47:[2,10],50:[2,10],52:[2,10],57:[2,10],61:[2,10],65:[2,10],66:[2,10],94:[2,10],96:[2,10],97:[2,10],103:[2,10]},{1:[2,8],15:[2,8],20:[2,8],22:[2,8],25:[2,8],31:[2,8],32:[2,8],38:[2,8],39:[2,8],43:[2,8],47:[2,8],50:[2,8],52:[2,8],57:[2,8],61:[2,8],65:[2,8],66:[2,8],94:[1,6],95:26,96:[1,7],97:[1,8],103:[2,8]},{1:[2,13],20:[2,13],22:[2,13],25:[2,13],31:[2,13],32:[2,13],38:[2,13],39:[2,13],43:[2,13],47:[2,13],50:[2,13],52:[2,13],57:[2,13],61:[2,13],65:[2,13],66:[2,13],94:[2,13],96:[2,13],97:[2,13],103:[2,13]},{10:59,11:[2,122],22:[2,122],23:[2,122],40:10,94:[1,11]},{1:[2,124],15:[2,124],20:[2,124],22:[2,124],25:[2,124],31:[2,124],32:[2,124],33:[2,124],38:[2,124],39:[2,124],43:[2,124],47:[2,124],50:[2,124],52:[2,124],57:[2,124],61:[2,124],65:[2,124],66:[2,124],94:[2,124],96:[2,124],97:[2,124],103:[2,124]},{11:[1,61],16:60,23:[1,62]},{12:[1,63]},{1:[2,1],5:65,22:[1,50],24:64,26:34,27:35,28:36,29:37,30:38,31:[1,40],32:[2,125],38:[1,58],39:[2,125],43:[1,41],47:[1,42],50:[2,125],52:[1,51],53:39,54:44,55:46,57:[2,125],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,6],95:5,96:[1,7],97:[1,8],98:43,103:[1,45]},{1:[2,11],20:[2,11],22:[2,11],25:[2,11],31:[2,11],32:[2,11],38:[2,11],39:[2,11],43:[2,11],47:[2,11],50:[2,11],52:[2,11],57:[2,11],61:[2,11],65:[2,11],66:[2,11],94:[2,11],96:[2,11],97:[2,11],103:[2,11]},{1:[2,20],22:[2,20],31:[2,20],32:[2,20],33:[2,20],38:[2,20],39:[2,20],43:[2,20],47:[2,20],50:[2,20],52:[2,20],57:[2,20],61:[2,20],65:[2,20],66:[2,20],94:[2,20],96:[2,20],97:[2,20],103:[2,20]},{1:[2,22],22:[2,22],31:[2,22],32:[2,22],33:[2,22],38:[2,22],39:[2,22],43:[2,22],47:[2,22],50:[2,22],52:[2,22],57:[2,22],61:[2,22],65:[2,22],66:[2,22],94:[2,22],96:[2,22],97:[2,22],103:[2,22]},{1:[2,14],20:[2,14],22:[2,14],25:[2,14],31:[2,14],32:[2,14],38:[2,14],39:[2,14],43:[2,14],47:[2,14],50:[2,14],52:[2,14],57:[2,14],61:[2,14],65:[2,14],66:[2,14],94:[1,6],95:26,96:[1,7],97:[1,8],103:[2,14]},{1:[2,23],22:[2,23],31:[2,23],32:[2,23],33:[2,23],38:[2,23],39:[2,23],43:[2,23],47:[2,23],50:[2,23],52:[2,23],57:[2,23],61:[2,23],65:[2,23],66:[2,23],94:[2,23],96:[2,23],97:[2,23],103:[2,23]},{1:[2,24],22:[2,24],31:[2,24],32:[2,24],33:[2,24],38:[2,24],39:[2,24],43:[2,24],47:[2,24],50:[2,24],52:[2,24],57:[2,24],61:[2,24],65:[2,24],66:[2,24],94:[2,24],96:[2,24],97:[2,24],103:[2,24]},{1:[2,25],22:[2,25],31:[2,25],32:[2,25],33:[2,25],38:[2,25],39:[2,25],43:[2,25],47:[2,25],50:[2,25],52:[2,25],57:[2,25],61:[2,25],65:[2,25],66:[2,25],94:[2,25],96:[2,25],97:[2,25],103:[2,25]},{1:[2,26],22:[2,26],31:[2,26],32:[2,26],33:[2,26],38:[2,26],39:[2,26],43:[2,26],47:[2,26],50:[2,26],52:[2,26],57:[2,26],61:[2,26],65:[2,26],66:[2,26],94:[2,26],96:[2,26],97:[2,26],103:[2,26]},{1:[2,27],22:[2,27],31:[2,27],32:[2,27],33:[2,27],38:[2,27],39:[2,27],43:[2,27],47:[2,27],50:[2,27],52:[2,27],57:[2,27],61:[2,27],65:[2,27],66:[2,27],94:[2,27],96:[2,27],97:[2,27],103:[2,27]},{32:[1,66],39:[1,67]},{10:68,11:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:69,22:[2,122],32:[2,122],38:[2,122],40:10,94:[1,11]},{10:70,32:[2,122],40:10,94:[1,11]},{22:[1,71]},{22:[2,59],32:[2,53],38:[2,59],39:[2,53],50:[1,73],52:[2,59],56:72,57:[1,74],61:[2,59],65:[2,59],66:[2,59],94:[2,59]},{10:75,22:[2,122],40:10,94:[1,11]},{22:[2,55],32:[2,55],38:[2,55],39:[2,55],50:[2,55],52:[2,55],57:[2,55],61:[2,55],65:[2,55],66:[2,55],94:[2,55]},{10:76,22:[2,122],32:[2,122],38:[1,58],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],60:77,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,11]},{22:[2,64],32:[2,64],38:[1,58],39:[2,64],50:[2,64],52:[2,64],57:[2,64],58:78,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[2,64]},{22:[2,62],32:[2,62],38:[2,62],39:[2,62],50:[2,62],52:[2,62],57:[2,62],61:[2,62],65:[2,62],66:[2,62],94:[2,62]},{22:[2,70],32:[2,70],38:[2,70],39:[2,70],50:[2,70],52:[2,70],57:[2,70],61:[2,70],65:[2,70],66:[2,70],94:[2,70]},{22:[2,71],32:[2,71],38:[2,71],39:[2,71],50:[2,71],52:[2,71],57:[2,71],61:[2,71],65:[2,71],66:[2,71],94:[2,71]},{22:[2,65],32:[2,65],38:[2,65],39:[2,65],50:[2,65],52:[2,65],57:[2,65],61:[2,65],65:[2,65],66:[2,65],94:[2,65]},{22:[2,66],32:[2,66],38:[2,66],39:[2,66],50:[2,66],52:[2,66],57:[2,66],61:[2,66],65:[2,66],66:[2,66],94:[2,66]},{22:[2,67],32:[2,67],38:[2,67],39:[2,67],50:[2,67],52:[2,67],57:[2,67],61:[2,67],65:[2,67],66:[2,67],94:[2,67]},{22:[2,68],32:[2,68],38:[2,68],39:[2,68],50:[2,68],52:[2,68],57:[2,68],61:[2,68],65:[2,68],66:[2,68],94:[2,68]},{22:[1,79]},{10:80,22:[2,122],40:10,94:[1,11]},{22:[1,81],38:[1,83],76:[1,82]},{10:86,11:[2,122],21:84,22:[1,85],23:[2,122],40:10,94:[1,11]},{11:[1,100],12:[2,33],17:87,22:[1,101],23:[1,102],34:88,36:[2,33],37:[2,33],38:[2,33],39:[2,33],41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[2,33]},{10:106,11:[2,122],12:[2,122],22:[2,122],23:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:107,11:[2,122],12:[2,122],22:[2,122],23:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{1:[2,2],15:[2,2],20:[2,2],22:[2,2],25:[2,2],31:[2,2],32:[2,2],38:[2,2],39:[2,2],43:[2,2],47:[2,2],50:[2,2],52:[2,2],57:[2,2],61:[2,2],65:[2,2],66:[2,2],94:[2,2],96:[2,2],97:[2,2],103:[2,2]},{1:[2,21],22:[2,21],31:[2,21],32:[2,21],33:[2,21],38:[2,21],39:[2,21],43:[2,21],47:[2,21],50:[2,21],52:[2,21],57:[2,21],61:[2,21],65:[2,21],66:[2,21],94:[2,21],96:[2,21],97:[2,21],103:[2,21]},{1:[2,28],22:[2,28],31:[2,28],32:[2,28],33:[2,28],38:[2,28],39:[2,28],43:[2,28],47:[2,28],50:[2,28],52:[2,28],57:[2,28],61:[2,28],65:[2,28],66:[2,28],94:[1,6],95:26,96:[1,7],97:[1,8],103:[2,28]},{10:108,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{10:109,22:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11]},{11:[1,100],17:110,22:[1,101],23:[1,102],32:[2,33],34:88,36:[2,33],37:[2,33],38:[2,33],39:[2,33],41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[2,33]},{22:[1,112],32:[2,44],38:[2,44],44:111,94:[2,44]},{32:[1,113]},{10:114,32:[2,122],40:10,94:[1,11]},{22:[1,50],32:[2,64],38:[1,58],39:[2,64],50:[2,64],52:[1,51],55:115,57:[2,64],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[2,64]},{10:116,22:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11]},{10:117,22:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11]},{22:[2,139]},{22:[2,60],32:[2,60],38:[2,60],39:[2,60],50:[2,60],52:[2,60],57:[2,60],61:[2,60],65:[2,60],66:[2,60],94:[2,60]},{22:[2,63],32:[2,63],38:[2,63],39:[2,63],50:[2,63],52:[2,63],57:[2,63],61:[2,63],65:[2,63],66:[2,63],94:[2,63]},{10:118,22:[2,122],32:[2,122],38:[1,58],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],60:77,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,11]},{22:[2,69],32:[2,69],38:[2,69],39:[2,69],50:[2,69],52:[2,69],57:[2,69],61:[2,69],65:[2,69],66:[2,69],94:[2,69]},{22:[1,119]},{22:[2,82],32:[2,82],38:[2,82],39:[2,82],50:[2,82],52:[2,82],57:[2,82],61:[2,82],65:[2,82],66:[2,82],94:[2,82]},{10:120,22:[2,122],40:10,66:[2,122],94:[1,11]},{22:[1,121]},{11:[1,61],16:122,23:[1,62]},{10:123,11:[2,122],23:[2,122],40:10,94:[1,11]},{11:[2,17],23:[2,17]},{11:[1,100],12:[1,124],22:[1,101],23:[1,102],34:125,35:126,36:[1,127],37:[1,128],38:[1,129],39:[1,130],40:131,41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[1,11]},{11:[2,30],12:[2,30],22:[2,30],23:[2,30],32:[2,30],36:[2,30],37:[2,30],38:[2,30],39:[2,30],61:[2,30],76:[2,30],83:[2,30],84:[2,30],85:[2,30],86:[2,30],87:[2,30],88:[2,30],89:[2,30],90:[2,30],91:[2,30],94:[2,30]},{11:[2,39],12:[2,39],22:[2,39],23:[2,39],32:[2,39],36:[2,39],37:[2,39],38:[2,39],39:[2,39],61:[2,39],76:[2,39],83:[2,39],84:[2,39],85:[2,39],86:[2,39],87:[2,39],88:[2,39],89:[2,39],90:[2,39],91:[2,39],94:[2,39]},{11:[2,40],12:[2,40],22:[2,40],23:[2,40],32:[2,40],36:[2,40],37:[2,40],38:[2,40],39:[2,40],61:[2,40],76:[2,40],83:[2,40],84:[2,40],85:[2,40],86:[2,40],87:[2,40],88:[2,40],89:[2,40],90:[2,40],91:[2,40],94:[2,40]},{10:132,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:133,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:134,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:135,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:136,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:137,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:138,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:139,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:140,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:141,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:142,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:143,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:144,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{11:[2,113],12:[2,113],22:[2,113],23:[2,113],32:[2,113],33:[2,113],36:[2,113],37:[2,113],38:[2,113],39:[2,113],49:[2,113],50:[2,113],52:[2,113],61:[2,113],70:[2,113],76:[2,113],80:[2,113],83:[2,113],84:[2,113],85:[2,113],86:[2,113],87:[2,113],88:[2,113],89:[2,113],90:[2,113],91:[2,113],93:[2,113],94:[2,113]},{10:145,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{11:[2,18],12:[2,18],22:[2,18],23:[2,18],36:[2,18],37:[2,18],38:[2,18],39:[2,18],61:[2,18],76:[2,18],83:[2,18],84:[2,18],85:[2,18],86:[2,18],87:[2,18],88:[2,18],89:[2,18],90:[2,18],91:[2,18],94:[2,18]},{11:[2,19],12:[2,19],22:[2,19],23:[2,19],36:[2,19],37:[2,19],38:[2,19],39:[2,19],61:[2,19],76:[2,19],83:[2,19],84:[2,19],85:[2,19],86:[2,19],87:[2,19],88:[2,19],89:[2,19],90:[2,19],91:[2,19],94:[2,19]},{10:150,12:[1,149],22:[1,152],33:[2,93],40:10,46:146,51:151,52:[1,153],77:147,78:148,94:[1,11]},{22:[1,50],32:[2,64],38:[1,58],39:[2,64],50:[2,64],52:[1,51],54:154,55:46,57:[2,64],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[2,64]},{11:[1,100],22:[1,101],23:[1,102],32:[1,155],34:125,35:126,36:[1,127],37:[1,128],38:[1,129],39:[1,130],40:131,41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[1,11]},{32:[2,46],38:[1,157],45:156,94:[2,46]},{32:[2,43],38:[2,43],94:[2,43]},{10:158,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{32:[1,159]},{22:[2,56],32:[2,56],38:[2,56],39:[2,56],50:[2,56],52:[2,56],57:[2,56],61:[2,56],65:[2,56],66:[2,56],94:[2,56]},{22:[2,57],32:[2,57],38:[2,57],39:[2,57],50:[2,57],52:[2,57],57:[2,57],61:[2,57],65:[2,57],66:[2,57],94:[2,57]},{22:[2,58],32:[2,58],38:[2,58],39:[2,58],50:[2,58],52:[2,58],57:[2,58],61:[2,58],65:[2,58],66:[2,58],94:[2,58]},{22:[2,61],32:[2,61],38:[2,61],39:[2,61],50:[2,61],52:[2,61],57:[2,61],61:[2,61],65:[2,61],66:[2,61],94:[2,61]},{10:160,40:10,67:[2,122],70:[2,122],71:[2,122],72:[2,122],73:[2,122],74:[2,122],75:[2,122],94:[1,11]},{22:[1,161],63:162,66:[1,57]},{22:[2,85],32:[2,85],38:[2,85],39:[2,85],50:[2,85],52:[2,85],57:[2,85],61:[2,85],65:[2,85],66:[2,85],94:[2,85]},{12:[1,163]},{11:[2,16],23:[2,16]},{1:[2,122],10:164,15:[2,122],20:[2,122],22:[2,122],25:[2,122],31:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{11:[2,31],12:[2,31],22:[2,31],23:[2,31],32:[2,31],36:[2,31],37:[2,31],38:[2,31],39:[2,31],61:[2,31],76:[2,31],83:[2,31],84:[2,31],85:[2,31],86:[2,31],87:[2,31],88:[2,31],89:[2,31],90:[2,31],91:[2,31],94:[2,31]},{11:[1,100],12:[2,41],22:[1,101],23:[1,102],32:[2,41],34:165,36:[2,41],37:[2,41],38:[2,41],39:[2,41],41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[2,41]},{10:166,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:167,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:168,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:169,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{11:[2,38],12:[2,38],22:[2,38],23:[2,38],32:[2,38],36:[2,38],37:[2,38],38:[2,38],39:[2,38],61:[2,38],76:[2,38],83:[2,38],84:[2,38],85:[2,38],86:[2,38],87:[2,38],88:[2,38],89:[2,38],90:[2,38],91:[2,38],94:[1,19]},{11:[2,100],12:[2,100],22:[2,100],23:[2,100],32:[2,100],33:[2,100],36:[2,100],37:[2,100],38:[2,100],39:[2,100],49:[2,100],50:[2,100],52:[2,100],61:[2,100],70:[2,100],76:[2,100],80:[2,100],83:[2,100],84:[2,100],85:[2,100],86:[2,100],87:[2,100],88:[2,100],89:[2,100],90:[2,100],91:[2,100],93:[2,100],94:[2,100]},{11:[2,101],12:[2,101],22:[2,101],23:[2,101],32:[2,101],33:[2,101],36:[2,101],37:[2,101],38:[2,101],39:[2,101],49:[2,101],50:[2,101],52:[2,101],61:[2,101],70:[2,101],76:[2,101],80:[2,101],83:[2,101],84:[2,101],85:[2,101],86:[2,101],87:[2,101],88:[2,101],89:[2,101],90:[2,101],91:[2,101],93:[2,101],94:[2,101]},{11:[2,102],12:[2,102],22:[2,102],23:[2,102],32:[2,102],33:[2,102],36:[2,102],37:[2,102],38:[2,102],39:[2,102],49:[2,102],50:[2,102],52:[2,102],61:[2,102],70:[2,102],76:[2,102],80:[2,102],83:[2,102],84:[2,102],85:[2,102],86:[2,102],87:[2,102],88:[2,102],89:[2,102],90:[2,102],91:[2,102],93:[2,102],94:[2,102]},{11:[2,103],12:[2,103],22:[2,103],23:[2,103],32:[2,103],33:[2,103],36:[2,103],37:[2,103],38:[2,103],39:[2,103],49:[2,103],50:[2,103],52:[2,103],61:[2,103],70:[2,103],76:[2,103],80:[2,103],83:[2,103],84:[2,103],85:[2,103],86:[2,103],87:[2,103],88:[2,103],89:[2,103],90:[2,103],91:[2,103],93:[2,103],94:[2,103]},{11:[2,104],12:[2,104],22:[2,104],23:[2,104],32:[2,104],33:[2,104],36:[2,104],37:[2,104],38:[2,104],39:[2,104],49:[2,104],50:[2,104],52:[2,104],61:[2,104],70:[2,104],76:[2,104],80:[2,104],83:[2,104],84:[2,104],85:[2,104],86:[2,104],87:[2,104],88:[2,104],89:[2,104],90:[2,104],91:[2,104],93:[2,104],94:[2,104]},{11:[2,105],12:[2,105],22:[2,105],23:[2,105],32:[2,105],33:[2,105],36:[2,105],37:[2,105],38:[2,105],39:[2,105],49:[2,105],50:[2,105],52:[2,105],61:[2,105],70:[2,105],76:[2,105],80:[2,105],83:[2,105],84:[2,105],85:[2,105],86:[2,105],87:[2,105],88:[2,105],89:[2,105],90:[2,105],91:[2,105],93:[2,105],94:[2,105]},{11:[2,106],12:[2,106],22:[2,106],23:[2,106],32:[2,106],33:[2,106],36:[2,106],37:[2,106],38:[2,106],39:[2,106],49:[2,106],50:[2,106],52:[2,106],61:[2,106],70:[2,106],76:[2,106],80:[2,106],83:[2,106],84:[2,106],85:[2,106],86:[2,106],87:[2,106],88:[2,106],89:[2,106],90:[2,106],91:[2,106],93:[2,106],94:[2,106]},{11:[2,107],12:[2,107],22:[2,107],23:[2,107],32:[2,107],33:[2,107],36:[2,107],37:[2,107],38:[2,107],39:[2,107],49:[2,107],50:[2,107],52:[2,107],61:[2,107],70:[2,107],76:[2,107],80:[2,107],83:[2,107],84:[2,107],85:[2,107],86:[2,107],87:[2,107],88:[2,107],89:[2,107],90:[2,107],91:[2,107],93:[2,107],94:[2,107]},{11:[1,100],22:[1,101],23:[1,102],41:172,42:174,48:173,49:[1,175],50:[1,176],61:[1,105],76:[1,99],79:170,81:171,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104},{11:[2,109],12:[2,109],22:[2,109],23:[2,109],32:[2,109],33:[2,109],36:[2,109],37:[2,109],38:[2,109],39:[2,109],49:[2,109],50:[2,109],52:[2,109],61:[2,109],70:[2,109],76:[2,109],80:[2,109],83:[2,109],84:[2,109],85:[2,109],86:[2,109],87:[2,109],88:[2,109],89:[2,109],90:[2,109],91:[2,109],93:[2,109],94:[2,109]},{11:[2,110],12:[2,110],22:[2,110],23:[2,110],32:[2,110],33:[2,110],36:[2,110],37:[2,110],38:[2,110],39:[2,110],49:[2,110],50:[2,110],52:[2,110],61:[2,110],70:[2,110],76:[2,110],80:[2,110],83:[2,110],84:[2,110],85:[2,110],86:[2,110],87:[2,110],88:[2,110],89:[2,110],90:[2,110],91:[2,110],93:[2,110],94:[2,110]},{11:[2,111],12:[2,111],22:[2,111],23:[2,111],32:[2,111],33:[2,111],36:[2,111],37:[2,111],38:[2,111],39:[2,111],49:[2,111],50:[2,111],52:[2,111],61:[2,111],70:[2,111],76:[2,111],80:[2,111],83:[2,111],84:[2,111],85:[2,111],86:[2,111],87:[2,111],88:[2,111],89:[2,111],90:[2,111],91:[2,111],93:[2,111],94:[2,111]},{11:[2,112],12:[2,112],22:[2,112],23:[2,112],32:[2,112],33:[2,112],36:[2,112],37:[2,112],38:[2,112],39:[2,112],49:[2,112],50:[2,112],52:[2,112],61:[2,112],70:[2,112],76:[2,112],80:[2,112],83:[2,112],84:[2,112],85:[2,112],86:[2,112],87:[2,112],88:[2,112],89:[2,112],90:[2,112],91:[2,112],93:[2,112],94:[2,112]},{11:[2,118],12:[2,118],22:[2,118],23:[2,118],32:[2,118],33:[2,118],36:[2,118],37:[2,118],38:[2,118],39:[2,118],49:[2,118],50:[2,118],52:[2,118],61:[2,118],70:[2,118],76:[2,118],80:[2,118],83:[2,118],84:[2,118],85:[2,118],86:[2,118],87:[2,118],88:[2,118],89:[2,118],90:[2,118],91:[2,118],93:[2,118],94:[2,118]},{10:150,12:[1,149],22:[1,152],33:[1,177],40:10,51:151,52:[1,153],77:178,78:148,94:[1,11]},{12:[2,86],22:[2,86],33:[2,86],52:[2,86],94:[2,86]},{12:[2,88],22:[2,88],33:[2,88],52:[2,88],94:[2,88]},{12:[2,89],22:[2,89],33:[2,89],52:[2,89],94:[2,89]},{12:[2,90],22:[2,90],33:[2,90],52:[2,90],94:[2,90]},{38:[1,179]},{10:180,38:[2,122],40:10,94:[1,11]},{22:[1,181]},{22:[2,59],32:[2,54],38:[2,59],39:[2,54],50:[1,73],52:[2,59],56:72,57:[1,74],61:[2,59],65:[2,59],66:[2,59],94:[2,59]},{10:182,22:[2,122],25:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{10:183,32:[2,122],40:10,94:[1,11]},{22:[1,184]},{10:150,12:[1,149],22:[1,152],33:[2,93],40:10,46:185,51:151,52:[1,153],77:147,78:148,94:[1,11]},{10:186,11:[2,122],22:[2,122],33:[2,122],40:10,84:[2,122],94:[1,11]},{67:[1,187],68:188,70:[1,189],71:[1,190],72:[1,191],73:[1,192],74:[1,193],75:[1,194]},{10:195,37:[2,122],40:10,94:[1,11]},{10:196,37:[2,122],40:10,94:[1,11]},{1:[2,122],10:197,20:[2,122],22:[2,122],25:[2,122],31:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{1:[2,9],15:[2,9],20:[2,9],22:[2,9],25:[2,9],31:[2,9],32:[2,9],38:[2,9],39:[2,9],43:[2,9],47:[2,9],50:[2,9],52:[2,9],57:[2,9],61:[2,9],65:[2,9],66:[2,9],94:[2,9],96:[2,9],97:[2,9],103:[2,9]},{11:[2,32],12:[2,32],22:[2,32],23:[2,32],32:[2,32],36:[2,32],37:[2,32],38:[2,32],39:[2,32],61:[2,32],76:[2,32],83:[2,32],84:[2,32],85:[2,32],86:[2,32],87:[2,32],88:[2,32],89:[2,32],90:[2,32],91:[2,32],94:[2,32]},{11:[2,34],12:[2,34],22:[2,34],23:[2,34],32:[2,34],36:[2,34],37:[2,34],38:[2,34],39:[2,34],61:[2,34],76:[2,34],83:[2,34],84:[2,34],85:[2,34],86:[2,34],87:[2,34],88:[2,34],89:[2,34],90:[2,34],91:[2,34],94:[2,34]},{11:[2,35],12:[2,35],22:[2,35],23:[2,35],32:[2,35],36:[2,35],37:[2,35],38:[2,35],39:[2,35],61:[2,35],76:[2,35],83:[2,35],84:[2,35],85:[2,35],86:[2,35],87:[2,35],88:[2,35],89:[2,35],90:[2,35],91:[2,35],94:[2,35]},{11:[2,36],12:[2,36],22:[2,36],23:[2,36],32:[2,36],36:[2,36],37:[2,36],38:[2,36],39:[2,36],61:[2,36],76:[2,36],83:[2,36],84:[2,36],85:[2,36],86:[2,36],87:[2,36],88:[2,36],89:[2,36],90:[2,36],91:[2,36],94:[2,36]},{11:[2,37],12:[2,37],22:[2,37],23:[2,37],32:[2,37],36:[2,37],37:[2,37],38:[2,37],39:[2,37],61:[2,37],76:[2,37],83:[2,37],84:[2,37],85:[2,37],86:[2,37],87:[2,37],88:[2,37],89:[2,37],90:[2,37],91:[2,37],94:[2,37]},{11:[1,100],22:[1,101],23:[1,102],37:[1,198],39:[1,202],41:172,42:174,48:173,49:[1,175],50:[1,176],61:[1,105],70:[1,203],76:[1,99],81:200,82:199,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,93:[1,201]},{11:[2,94],12:[2,94],22:[2,94],23:[2,94],33:[2,94],37:[2,94],39:[2,94],49:[2,94],50:[2,94],52:[2,94],61:[2,94],70:[2,94],76:[2,94],80:[2,94],83:[2,94],84:[2,94],85:[2,94],86:[2,94],87:[2,94],88:[2,94],89:[2,94],90:[2,94],91:[2,94],93:[2,94],94:[2,94]},{11:[2,97],12:[2,97],22:[2,97],23:[2,97],33:[2,97],37:[2,97],39:[2,97],49:[2,97],50:[2,97],52:[2,97],61:[2,97],70:[2,97],76:[2,97],80:[2,97],83:[2,97],84:[2,97],85:[2,97],86:[2,97],87:[2,97],88:[2,97],89:[2,97],90:[2,97],91:[2,97],93:[2,97],94:[2,97]},{41:204,76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98]},{11:[2,99],12:[2,99],22:[2,99],23:[2,99],33:[2,99],37:[2,99],39:[2,99],49:[2,99],50:[2,99],52:[2,99],61:[2,99],70:[2,99],76:[2,99],80:[2,99],83:[2,99],84:[2,99],85:[2,99],86:[2,99],87:[2,99],88:[2,99],89:[2,99],90:[2,99],91:[2,99],93:[2,99],94:[2,99]},{76:[2,48],83:[2,48],84:[2,48],85:[2,48],86:[2,48],87:[2,48],88:[2,48],89:[2,48],90:[2,48]},{76:[2,49],83:[2,49],84:[2,49],85:[2,49],86:[2,49],87:[2,49],88:[2,49],89:[2,49],90:[2,49]},{1:[2,122],10:205,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{12:[2,87],22:[2,87],33:[2,87],52:[2,87],94:[2,87]},{10:206,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{38:[2,50]},{10:207,38:[2,122],40:10,94:[1,11]},{5:65,8:208,22:[1,50],24:31,25:[1,32],26:34,27:35,28:36,29:37,30:38,31:[1,40],32:[2,125],33:[2,125],38:[1,58],39:[2,125],43:[1,41],47:[1,42],50:[2,125],52:[1,51],53:39,54:44,55:46,57:[2,125],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,6],95:5,96:[1,7],97:[1,8],98:43,103:[1,45]},{32:[1,209]},{32:[2,45],94:[2,45]},{10:150,12:[1,149],22:[1,152],33:[1,210],40:10,51:151,52:[1,153],77:178,78:148,94:[1,11]},{11:[1,216],22:[1,215],33:[2,132],84:[1,217],99:211,100:212,101:213,102:214},{22:[2,72],32:[2,72],37:[2,72],38:[2,72],39:[2,72],50:[2,72],52:[2,72],57:[2,72],61:[2,72],65:[2,72],66:[2,72],94:[2,72]},{10:218,11:[2,122],22:[2,122],40:10,94:[1,11]},{11:[2,74],22:[2,74],94:[2,74]},{11:[2,75],22:[2,75],94:[2,75]},{11:[2,76],22:[2,76],94:[2,76]},{11:[2,77],22:[2,77],94:[2,77]},{11:[2,78],22:[2,78],94:[2,78]},{11:[2,79],22:[2,79],94:[2,79]},{37:[1,219]},{37:[1,220]},{1:[2,15],20:[2,15],22:[2,15],25:[2,15],31:[2,15],32:[2,15],38:[2,15],39:[2,15],43:[2,15],47:[2,15],50:[2,15],52:[2,15],57:[2,15],61:[2,15],65:[2,15],66:[2,15],94:[2,15],96:[2,15],97:[2,15],103:[2,15]},{10:221,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{11:[1,100],22:[1,101],23:[1,102],41:172,42:174,48:173,49:[1,175],50:[1,176],61:[1,105],76:[1,99],81:222,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104},{11:[2,96],12:[2,96],22:[2,96],23:[2,96],33:[2,96],37:[2,96],39:[2,96],49:[2,96],50:[2,96],52:[2,96],61:[2,96],70:[2,96],76:[2,96],80:[2,96],83:[2,96],84:[2,96],85:[2,96],86:[2,96],87:[2,96],88:[2,96],89:[2,96],90:[2,96],91:[2,96],93:[2,96],94:[2,96]},{10:223,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:224,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:225,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{11:[2,98],12:[2,98],22:[2,98],23:[2,98],33:[2,98],37:[2,98],39:[2,98],49:[2,98],50:[2,98],52:[2,98],61:[2,98],70:[2,98],76:[2,98],80:[2,98],83:[2,98],84:[2,98],85:[2,98],86:[2,98],87:[2,98],88:[2,98],89:[2,98],90:[2,98],91:[2,98],93:[2,98],94:[2,98]},{1:[2,52],22:[2,52],31:[2,52],32:[2,52],33:[2,52],38:[2,52],39:[2,52],43:[2,52],47:[2,52],50:[2,52],52:[2,52],57:[2,52],61:[2,52],65:[2,52],66:[2,52],94:[2,52],96:[2,52],97:[2,52],103:[2,52]},{11:[1,100],22:[1,101],23:[1,102],41:172,42:174,48:173,49:[1,175],50:[1,176],61:[1,105],76:[1,99],79:226,81:171,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104},{38:[2,51]},{5:65,22:[1,50],24:64,26:34,27:35,28:36,29:37,30:38,31:[1,40],32:[2,125],33:[1,227],38:[1,58],39:[2,125],43:[1,41],47:[1,42],50:[2,125],52:[1,51],53:39,54:44,55:46,57:[2,125],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,6],95:5,96:[1,7],97:[1,8],98:43,103:[1,45]},{10:228,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{1:[2,122],10:229,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{11:[1,216],22:[1,215],33:[1,230],84:[1,217],100:231,101:213,102:214},{11:[2,130],22:[2,130],33:[2,130],84:[2,130]},{32:[1,232],39:[1,233]},{10:234,32:[2,122],39:[2,122],40:10,94:[1,11]},{32:[2,136],39:[2,136],94:[2,136]},{32:[2,137],39:[2,137],94:[2,137]},{32:[2,138],39:[2,138],94:[2,138]},{11:[1,237],22:[1,236],69:235},{22:[2,83],32:[2,83],38:[2,83],39:[2,83],50:[2,83],52:[2,83],57:[2,83],61:[2,83],65:[2,83],66:[2,83],94:[2,83]},{22:[2,84],32:[2,84],38:[2,84],39:[2,84],50:[2,84],52:[2,84],57:[2,84],61:[2,84],65:[2,84],66:[2,84],94:[2,84]},{11:[2,108],12:[2,108],22:[2,108],23:[2,108],32:[2,108],33:[2,108],36:[2,108],37:[2,108],38:[2,108],39:[2,108],49:[2,108],50:[2,108],52:[2,108],61:[2,108],70:[2,108],76:[2,108],80:[2,108],83:[2,108],84:[2,108],85:[2,108],86:[2,108],87:[2,108],88:[2,108],89:[2,108],90:[2,108],91:[2,108],93:[2,108],94:[2,108]},{11:[2,95],12:[2,95],22:[2,95],23:[2,95],33:[2,95],37:[2,95],39:[2,95],49:[2,95],50:[2,95],52:[2,95],61:[2,95],70:[2,95],76:[2,95],80:[2,95],83:[2,95],84:[2,95],85:[2,95],86:[2,95],87:[2,95],88:[2,95],89:[2,95],90:[2,95],91:[2,95],93:[2,95],94:[2,95]},{11:[2,114],22:[2,114],23:[2,114],49:[2,114],50:[2,114],61:[2,114],76:[2,114],83:[2,114],84:[2,114],85:[2,114],86:[2,114],87:[2,114],88:[2,114],89:[2,114],90:[2,114],91:[2,114]},{11:[2,115],22:[2,115],23:[2,115],49:[2,115],50:[2,115],61:[2,115],76:[2,115],83:[2,115],84:[2,115],85:[2,115],86:[2,115],87:[2,115],88:[2,115],89:[2,115],90:[2,115],91:[2,115]},{11:[2,116],22:[2,116],23:[2,116],49:[2,116],50:[2,116],61:[2,116],76:[2,116],83:[2,116],84:[2,116],85:[2,116],86:[2,116],87:[2,116],88:[2,116],89:[2,116],90:[2,116],91:[2,116]},{10:238,11:[1,100],12:[2,122],22:[1,101],23:[1,102],33:[2,122],39:[1,202],40:10,41:172,42:174,48:173,49:[1,175],50:[1,176],52:[2,122],61:[1,105],70:[1,203],76:[1,99],80:[1,239],81:200,82:199,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,93:[1,201],94:[1,11]},{1:[2,122],10:240,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{10:150,12:[1,149],22:[1,152],33:[2,93],40:10,46:241,51:151,52:[1,153],77:147,78:148,94:[1,11]},{1:[2,47],22:[2,47],31:[2,47],32:[2,47],33:[2,47],38:[2,47],39:[2,47],43:[2,47],47:[2,47],50:[2,47],52:[2,47],57:[2,47],61:[2,47],65:[2,47],66:[2,47],94:[2,47],96:[2,47],97:[2,47],103:[2,47]},{1:[2,122],10:242,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{11:[2,131],22:[2,131],33:[2,131],84:[2,131]},{10:243,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{11:[1,216],22:[1,215],84:[1,217],102:244},{32:[2,134],39:[2,134]},{10:245,40:10,67:[2,122],94:[1,11]},{67:[2,80],94:[2,80]},{67:[2,81],94:[2,81]},{12:[2,91],22:[2,91],33:[2,91],52:[2,91],94:[2,91]},{10:246,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{1:[2,29],22:[2,29],31:[2,29],32:[2,29],33:[2,29],38:[2,29],39:[2,29],43:[2,29],47:[2,29],50:[2,29],52:[2,29],57:[2,29],61:[2,29],65:[2,29],66:[2,29],94:[2,29],96:[2,29],97:[2,29],103:[2,29]},{10:150,12:[1,149],22:[1,152],33:[1,247],40:10,51:151,52:[1,153],77:178,78:148,94:[1,11]},{1:[2,129],22:[2,129],31:[2,129],32:[2,129],33:[2,129],38:[2,129],39:[2,129],43:[2,129],47:[2,129],50:[2,129],52:[2,129],57:[2,129],61:[2,129],65:[2,129],66:[2,129],94:[2,129],96:[2,129],97:[2,129],103:[2,129]},{10:150,12:[1,149],22:[1,152],33:[2,93],40:10,46:248,51:151,52:[1,153],77:147,78:148,94:[1,11]},{10:249,32:[2,122],39:[2,122],40:10,94:[1,11]},{67:[1,250]},{12:[2,92],22:[2,92],33:[2,92],52:[2,92],94:[2,92]},{1:[2,122],10:251,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{10:150,12:[1,149],22:[1,152],33:[1,252],40:10,51:151,52:[1,153],77:178,78:148,94:[1,11]},{32:[2,135],39:[2,135]},{22:[2,73],32:[2,73],37:[2,73],38:[2,73],39:[2,73],50:[2,73],52:[2,73],57:[2,73],61:[2,73],65:[2,73],66:[2,73],94:[2,73]},{1:[2,42],22:[2,42],31:[2,42],32:[2,42],33:[2,42],38:[2,42],39:[2,42],43:[2,42],47:[2,42],50:[2,42],52:[2,42],57:[2,42],61:[2,42],65:[2,42],66:[2,42],94:[2,42],96:[2,42],97:[2,42],103:[2,42]},{10:253,11:[2,122],22:[2,122],33:[2,122],40:10,84:[2,122],94:[1,11]},{11:[2,133],22:[2,133],33:[2,133],84:[2,133]}],defaultActions:{75:[2,139],180:[2,50],207:[2,51]},parseError:function(e){throw Error(e)
},parse:function(e){function t(){var e;return e=s.lexer.lex()||1,"number"!=typeof e&&(e=s.symbols_[e]||e),e}var s=this,r=[0],a=[null],i=[],n=this.table,h="",c=0,l=0,o=0;this.lexer.setInput(e),this.lexer.yy=this.yy,this.yy.lexer=this.lexer,this.yy.parser=this,this.lexer.yylloc===void 0&&(this.lexer.yylloc={});var u=this.lexer.yylloc;i.push(u);var b=this.lexer.options&&this.lexer.options.ranges;"function"==typeof this.yy.parseError&&(this.parseError=this.yy.parseError);for(var p,$,k,y,f,m,_,g,d,A={};;){if(k=r[r.length-1],this.defaultActions[k]?y=this.defaultActions[k]:((null===p||p===void 0)&&(p=t()),y=n[k]&&n[k][p]),y===void 0||!y.length||!y[0]){var E="";if(!o){d=[];for(m in n[k])this.terminals_[m]&&m>2&&d.push("'"+this.terminals_[m]+"'");E=this.lexer.showPosition?"Parse error on line "+(c+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+d.join(", ")+", got '"+(this.terminals_[p]||p)+"'":"Parse error on line "+(c+1)+": Unexpected "+(1==p?"end of input":"'"+(this.terminals_[p]||p)+"'"),this.parseError(E,{text:this.lexer.match,token:this.terminals_[p]||p,line:this.lexer.yylineno,loc:u,expected:d})}}if(y[0]instanceof Array&&y.length>1)throw Error("Parse Error: multiple actions possible at state: "+k+", token: "+p);switch(y[0]){case 1:r.push(p),a.push(this.lexer.yytext),i.push(this.lexer.yylloc),r.push(y[1]),p=null,$?(p=$,$=null):(l=this.lexer.yyleng,h=this.lexer.yytext,c=this.lexer.yylineno,u=this.lexer.yylloc,o>0&&o--);break;case 2:if(_=this.productions_[y[1]][1],A.$=a[a.length-_],A._$={first_line:i[i.length-(_||1)].first_line,last_line:i[i.length-1].last_line,first_column:i[i.length-(_||1)].first_column,last_column:i[i.length-1].last_column},b&&(A._$.range=[i[i.length-(_||1)].range[0],i[i.length-1].range[1]]),f=this.performAction.call(A,h,l,c,this.yy,y[1],a,i),f!==void 0)return f;_&&(r=r.slice(0,2*-1*_),a=a.slice(0,-1*_),i=i.slice(0,-1*_)),r.push(this.productions_[y[1]][0]),a.push(A.$),i.push(A._$),g=n[r[r.length-2]][r[r.length-1]],r.push(g);break;case 3:return!0}}return!0}},s=function(){var e={EOF:1,parseError:function(e,t){if(!this.yy.parser)throw Error(e);this.yy.parser.parseError(e,t)},setInput:function(e){return this._input=e,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var e=this._input[0];this.yytext+=e,this.yyleng++,this.offset++,this.match+=e,this.matched+=e;var t=e.match(/(?:\r\n?|\n).*/g);return t?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),e},unput:function(e){var t=e.length,s=e.split(/(?:\r\n?|\n)/g);this._input=e+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-t-1),this.offset-=t;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),s.length-1&&(this.yylineno-=s.length-1);var a=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:s?(s.length===r.length?this.yylloc.first_column:0)+r[r.length-s.length].length-s[0].length:this.yylloc.first_column-t},this.options.ranges&&(this.yylloc.range=[a[0],a[0]+this.yyleng-t]),this},more:function(){return this._more=!0,this},less:function(e){this.unput(this.match.slice(e))},pastInput:function(){var e=this.matched.substr(0,this.matched.length-this.match.length);return(e.length>20?"...":"")+e.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var e=this.match;return 20>e.length&&(e+=this._input.substr(0,20-e.length)),(e.substr(0,20)+(e.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var e=this.pastInput(),t=Array(e.length+1).join("-");return e+this.upcomingInput()+"\n"+t+"^"},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var e,t,s,r,a;this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),n=0;i.length>n&&(s=this._input.match(this.rules[i[n]]),!s||t&&!(s[0].length>t[0].length)||(t=s,r=n,this.options.flex));n++);return t?(a=t[0].match(/(?:\r\n?|\n).*/g),a&&(this.yylineno+=a.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:a?a[a.length-1].length-a[a.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],e=this.performAction.call(this,this.yy,this,i[r],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),e?e:void 0):""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var e=this.next();return e!==void 0?e:this.lex()},begin:function(e){this.conditionStack.push(e)},popState:function(){return this.conditionStack.pop()},_currentRules:function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},topState:function(){return this.conditionStack[this.conditionStack.length-2]},pushState:function(e){this.begin(e)},options:{},performAction:function(e,t,s,r){switch(s){case 0:return 94;case 1:break;case 2:return 96;case 3:return 97;case 4:return 71;case 5:return 72;case 6:return 73;case 7:return 74;case 8:return 75;case 9:return 80;case 10:return 23;case 11:return 23;case 12:return"FUNCTION";case 13:return 103;case 14:return 11;case 15:return 22;case 16:return 61;case 17:return 15;case 18:return 43;case 19:return 31;case 20:return 47;case 21:return 9;case 22:return 20;case 23:return 86;case 24:return 87;case 25:return 85;case 26:return 85;case 27:return 85;case 28:return 85;case 29:return 85;case 30:return 85;case 31:return 88;case 32:return 88;case 33:return 88;case 34:return 89;case 35:return 89;case 36:return 90;case 37:return 90;case 38:return"DIMEN";case 39:return 84;case 40:return 83;case 41:return 91;case 42:return 91;case 43:return t.yytext}},rules:[/^(?:[ \t\r\n\f]+)/,/^(?:\/\*[^*]*\*+([^/][^*]*\*+)*\/)/,/^(?:<!--)/,/^(?:-->)/,/^(?:~=)/,/^(?:\|=)/,/^(?:\^=)/,/^(?:\$=)/,/^(?:\*=)/,/^(?:!([ \t\r\n\f]*)important\b)/,/^(?:url\(([ \t\r\n\f]*)(("([\t !#$%&(-~]|\\(\n|\r\n|\r|\f\b)|'|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*")|('([\t !#$%&(-~]|\\(\n|\r\n|\r|\f\b)|"|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*'))([ \t\r\n\f]*)\))/,/^(?:url\(([ \t\r\n\f]*)(([!#$%&*-~]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*)([ \t\r\n\f]*)\))/,/^(?:([-]?([a-zA-Z]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))([_]|([a-zA-Z0-9-]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377])))*)\()/,/^(?:([@](-webkit-|-o-|-moz-|-ms-)?keyframes\b))/,/^(?:(("([\t !#$%&(-~]|\\(\n|\r\n|\r|\f\b)|'|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*")|('([\t !#$%&(-~]|\\(\n|\r\n|\r|\f\b)|"|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*')))/,/^(?:([-]?([a-zA-Z]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))([_]|([a-zA-Z0-9-]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377])))*))/,/^(?:#(([_]|([a-zA-Z0-9-]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377])))+))/,/^(?:@import\b)/,/^(?:@page\b)/,/^(?:@media\b)/,/^(?:@font-face\b)/,/^(?:@charset\b)/,/^(?:@namespace\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))em\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))ex\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))px\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))cm\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))mm\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))in\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))pt\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))pc\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))deg\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))rad\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))grad\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))ms\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))s\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))Hz\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))kHz\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))([-]?([a-zA-Z]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))([_]|([a-zA-Z0-9-]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377])))*))/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))%)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+)))/,/^(?:U\+(\?{1,6}|([0-9a-fA-F])(\?{0,5}|([0-9a-fA-F])(\?{0,4}|([0-9a-fA-F])(\?{0,3}|([0-9a-fA-F])(\?{0,2}|([0-9a-fA-F])(\??|([0-9a-fA-F]))))))))/,/^(?:U\+([0-9a-fA-F]){1,6}([0-9a-fA-F]){1,6})/,/^(?:.)/],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],inclusive:!0}}};return e}();return t.lexer=s,e.prototype=t,t.Parser=e,new e}();"undefined"!=typeof require&&"undefined"!=typeof exports&&(exports.parser=cssparser,exports.Parser=cssparser.Parser,exports.parse=function(){return cssparser.parse.apply(cssparser,arguments)},exports.main=function(e){e[1]||(console.log("Usage: "+e[0]+" FILE"),process.exit(1));var t=require("fs").readFileSync(require("path").normalize(e[1]),"utf8");return exports.parser.parse(t)},"undefined"!=typeof module&&require.main===module&&exports.main(process.argv.slice(1)));
var cssparser=function(){function t(){this.yy={}}var e={trace:function(){},yy:{},symbols_:{error:2,stylesheet:3,charset:4,space_cdata_list:5,import_list:6,namespace_list:7,general_list:8,CHARSET_SYM:9,wempty:10,STRING:11,";":12,import_item:13,"import":14,IMPORT_SYM:15,string_or_uri:16,media_query_list:17,namespace_item:18,namespace:19,NAMESPACE_SYM:20,namespace_prefix:21,IDENT:22,URI:23,general_item:24,"null":25,ruleset:26,media:27,page:28,font_face:29,keyframes:30,MEDIA_SYM:31,"{":32,"}":33,media_query:34,media_combinator:35,"(":36,")":37,":":38,",":39,whitespace:40,computable_term:41,string_term:42,PAGE_SYM:43,page_ident:44,pseudo_page:45,declaration_list:46,FONT_FACE_SYM:47,unary_operator:48,"-":49,"+":50,property:51,"*":52,selector_list:53,selector:54,simple_selector:55,combinator:56,">":57,simple_selector_atom_list:58,element_name:59,simple_selector_atom:60,HASH:61,"class":62,attrib:63,pseudo:64,".":65,"[":66,"]":67,attrib_operator:68,attrib_value:69,"=":70,INCLUDES:71,DASHMATCH:72,PREFIXMATCH:73,SUFFIXMATCH:74,SUBSTRINGMATCH:75,FUNCTION:76,declaration_parts:77,declaration:78,expr:79,IMPORTANT_SYM:80,term:81,operator:82,NUMBER:83,PERCENTAGE:84,LENGTH:85,EMS:86,EXS:87,ANGLE:88,TIME:89,FREQ:90,UNICODERANGE:91,hexcolor:92,"/":93,S:94,space_cdata:95,CDO:96,CDC:97,keyframe_symbol:98,keyframe_list:99,keyframe:100,keyframe_offset_list:101,keyframe_offset:102,KEYFRAMES:103,$accept:0,$end:1},terminals_:{2:"error",9:"CHARSET_SYM",11:"STRING",12:";",15:"IMPORT_SYM",20:"NAMESPACE_SYM",22:"IDENT",23:"URI",25:"null",31:"MEDIA_SYM",32:"{",33:"}",36:"(",37:")",38:":",39:",",43:"PAGE_SYM",47:"FONT_FACE_SYM",49:"-",50:"+",52:"*",57:">",61:"HASH",65:".",66:"[",67:"]",70:"=",71:"INCLUDES",72:"DASHMATCH",73:"PREFIXMATCH",74:"SUFFIXMATCH",75:"SUBSTRINGMATCH",76:"FUNCTION",80:"IMPORTANT_SYM",83:"NUMBER",84:"PERCENTAGE",85:"LENGTH",86:"EMS",87:"EXS",88:"ANGLE",89:"TIME",90:"FREQ",91:"UNICODERANGE",93:"/",94:"S",96:"CDO",97:"CDC",103:"KEYFRAMES"},productions_:[0,[3,5],[4,5],[4,0],[6,1],[6,2],[6,0],[13,1],[13,1],[14,6],[7,1],[7,2],[7,0],[18,1],[18,1],[19,6],[21,2],[21,1],[16,2],[16,2],[8,1],[8,2],[8,1],[24,1],[24,1],[24,1],[24,1],[24,1],[24,1],[27,8],[17,1],[17,2],[17,3],[17,0],[35,2],[35,2],[35,2],[35,2],[35,1],[34,1],[34,1],[34,0],[28,10],[44,1],[44,0],[45,2],[45,0],[29,7],[48,1],[48,1],[51,2],[51,3],[26,6],[53,1],[53,4],[54,1],[54,3],[56,2],[56,2],[56,0],[55,2],[55,3],[58,1],[58,2],[58,0],[60,1],[60,1],[60,1],[60,1],[62,2],[59,1],[59,1],[63,5],[63,9],[68,1],[68,1],[68,1],[68,1],[68,1],[68,1],[69,1],[69,1],[64,2],[64,6],[64,6],[64,3],[46,1],[46,2],[77,1],[77,1],[77,1],[78,5],[78,6],[78,0],[79,1],[79,3],[79,2],[81,1],[81,2],[81,1],[41,2],[41,2],[41,2],[41,2],[41,2],[41,2],[41,2],[41,2],[41,5],[42,2],[42,2],[42,2],[42,2],[42,1],[82,2],[82,2],[82,2],[82,0],[92,2],[40,1],[40,2],[10,1],[10,0],[5,1],[5,2],[5,0],[95,1],[95,1],[95,1],[30,8],[99,1],[99,2],[99,0],[100,6],[101,2],[101,4],[102,1],[102,1],[102,1],[98,2]],performAction:function(t,e,s,r,i,a){var n=a.length-1;switch(i){case 1:return this.$={},a[n-4]&&(this.$.charset=a[n-4]),a[n-2]&&(this.$.imports=a[n-2]),a[n-1]&&(this.$.namespaces=a[n-1]),a[n]&&(this.$.rulelist=a[n]),this.$;case 2:this.$=a[n-2];break;case 3:this.$="";break;case 4:this.$=[],null!==a[n]&&this.$.push(a[n]);break;case 5:this.$=a[n-1],null!==a[n]&&this.$.push(a[n]);break;case 6:this.$=null;break;case 7:this.$=a[n];break;case 8:this.$=null;break;case 9:this.$={"import":a[n-3]},null!=a[n-2]&&(this.$.mediaqueries=a[n-2]);break;case 10:this.$=[],null!==a[n]&&this.$.push(a[n]);break;case 11:this.$=a[n-1],null!==a[n]&&this.$.push(a[n]);break;case 12:this.$=null;break;case 13:this.$=a[n];break;case 14:this.$=null;break;case 15:this.$={namespace:a[n-2]},a[n-3]&&(this.$.prefix=a[n-3]);break;case 16:this.$=a[n-1];break;case 17:this.$=null;break;case 18:this.$=a[n-1];break;case 19:this.$=a[n-1];break;case 20:this.$=[],null!==a[n]&&this.$.push(a[n]);break;case 21:this.$=a[n-1],this.$.push(a[n]);break;case 23:this.$=a[n];break;case 24:this.$=a[n];break;case 25:this.$=a[n];break;case 26:this.$=a[n];break;case 27:this.$=a[n];break;case 28:this.$=null;break;case 29:this.$={type:"media",mediaqueries:a[n-5],children:a[n-2]};break;case 30:this.$=a[n];break;case 31:this.$=a[n-1]+" "+a[n];break;case 32:this.$=a[n-2]+a[n-1]+a[n];break;case 33:this.$=null;break;case 34:this.$=" "+a[n-1];break;case 35:this.$=a[n-1];break;case 36:this.$=a[n-1];break;case 37:this.$=", ";break;case 38:this.$=" ";break;case 39:this.$=a[n];break;case 40:this.$=a[n];break;case 41:this.$="";break;case 42:this.$={id:a[n-7],pseudo:a[n-6],declarations:a[n-2]};break;case 43:this.$=a[n];break;case 44:this.$="";break;case 45:this.$=a[n-1]+a[n];break;case 46:this.$="";break;case 47:this.$={type:"fontface",declarations:a[n-2]};break;case 48:this.$=a[n];break;case 49:this.$=a[n];break;case 50:this.$=a[n-1];break;case 51:this.$=a[n-2]+a[n-1];break;case 52:this.$={type:"style",selector:a[n-5],declarations:a[n-2]};break;case 53:this.$=a[n];break;case 54:this.$=a[n-3]+a[n-2]+" "+a[n];break;case 55:this.$=a[n];break;case 56:this.$=a[n-2]+a[n-1]+a[n];break;case 57:this.$=a[n-1];break;case 58:this.$=a[n-1];break;case 59:this.$="";break;case 60:this.$=a[n-1];break;case 61:this.$=a[n-2]+a[n-1];break;case 62:this.$=a[n];break;case 63:this.$=a[n-1]+a[n];break;case 64:this.$="";break;case 65:this.$=a[n];break;case 66:this.$=a[n];break;case 67:this.$=a[n];break;case 68:this.$=a[n];break;case 69:this.$=a[n-1]+a[n];break;case 70:this.$=a[n];break;case 71:this.$=a[n];break;case 72:this.$=a[n-4]+a[n-2]+a[n];break;case 73:this.$=a[n-8]+a[n-6]+a[n-4]+a[n-3]+a[n-2]+a[n];break;case 74:this.$=a[n];break;case 75:this.$=a[n];break;case 76:this.$=a[n];break;case 77:this.$=a[n];break;case 78:this.$=a[n];break;case 79:this.$=a[n];break;case 80:this.$=a[n];break;case 81:this.$=a[n];break;case 82:this.$=a[n-1]+a[n];break;case 83:this.$=a[n-5]+a[n-4]+a[n-2]+a[n];break;case 84:this.$=a[n-5]+a[n-4]+a[n-2]+a[n];break;case 85:this.$=a[n-2]+a[n-1]+a[n];break;case 86:this.$={},null!==a[n]&&(this.$[a[n][0]]=a[n][1]);break;case 87:this.$=a[n-1],null!==a[n]&&(this.$[a[n][0]]=a[n][1]);break;case 88:this.$=a[n];break;case 89:this.$=null;break;case 90:this.$=null;break;case 91:this.$=[a[n-4],a[n-1]];break;case 92:this.$=[a[n-5],a[n-2]+" !important"];break;case 93:this.$=null;break;case 94:this.$=a[n];break;case 95:this.$=a[n-2]+a[n-1]+a[n];break;case 96:this.$=a[n-1]+" "+a[n];break;case 97:this.$=a[n];break;case 98:this.$=a[n-1]+a[n];break;case 99:this.$=a[n];break;case 100:this.$=a[n-1];break;case 101:this.$=a[n-1];break;case 102:this.$=a[n-1];break;case 103:this.$=a[n-1];break;case 104:this.$=a[n-1];break;case 105:this.$=a[n-1];break;case 106:this.$=a[n-1];break;case 107:this.$=a[n-1];break;case 108:this.$=a[n-4]+a[n-2]+a[n-1];break;case 109:this.$=a[n-1];break;case 110:this.$=a[n-1];break;case 111:this.$=a[n-1];break;case 112:this.$=a[n-1];break;case 113:this.$=a[n];break;case 114:this.$=a[n-1];break;case 115:this.$=a[n-1];break;case 116:this.$=a[n-1];break;case 117:this.$="";break;case 118:this.$=a[n-1];break;case 119:this.$=" ";break;case 120:this.$=" ";break;case 121:this.$=a[n];break;case 122:this.$="";break;case 123:this.$=null;break;case 124:this.$=null;break;case 126:this.$=null;break;case 127:this.$=null;break;case 128:this.$=null;break;case 129:this.$={type:"keyframes",id:a[n-6],keyframes:a[n-2],prefix:a[n-7]};break;case 130:this.$=[a[n]];break;case 131:this.$=a[n-1],this.$.push(a[n]);break;case 132:this.$=[];break;case 133:this.$={offset:a[n-5],declarations:a[n-2]};break;case 134:this.$=a[n-1];break;case 135:this.$=a[n-3]+", "+a[n-2];break;case 136:this.$=a[n];break;case 137:this.$=a[n];break;case 138:this.$=a[n];break;case 139:this.$=a[n-1].split(RegExp("@([-a-zA-Z0-9]*)keyframes","g"))[1]}},table:[{1:[2,3],3:1,4:2,9:[1,3],15:[2,3],20:[2,3],22:[2,3],25:[2,3],31:[2,3],32:[2,3],38:[2,3],39:[2,3],43:[2,3],47:[2,3],50:[2,3],52:[2,3],57:[2,3],61:[2,3],65:[2,3],66:[2,3],94:[2,3],96:[2,3],97:[2,3],103:[2,3]},{1:[3]},{1:[2,125],5:4,15:[2,125],20:[2,125],22:[2,125],25:[2,125],31:[2,125],32:[2,125],38:[2,125],39:[2,125],43:[2,125],47:[2,125],50:[2,125],52:[2,125],57:[2,125],61:[2,125],65:[2,125],66:[2,125],94:[1,6],95:5,96:[1,7],97:[1,8],103:[2,125]},{10:9,11:[2,122],40:10,94:[1,11]},{1:[2,6],5:16,6:12,13:14,14:15,15:[1,17],20:[2,6],22:[2,6],25:[2,6],31:[2,6],32:[2,6],38:[2,6],39:[2,6],43:[2,6],47:[2,6],50:[2,6],52:[2,6],57:[2,6],61:[2,6],65:[2,6],66:[2,6],94:[1,6],95:13,96:[1,7],97:[1,8],103:[2,6]},{1:[2,123],15:[2,123],20:[2,123],22:[2,123],25:[2,123],31:[2,123],32:[2,123],33:[2,123],38:[2,123],39:[2,123],43:[2,123],47:[2,123],50:[2,123],52:[2,123],57:[2,123],61:[2,123],65:[2,123],66:[2,123],94:[2,123],96:[2,123],97:[2,123],103:[2,123]},{1:[2,126],15:[2,126],20:[2,126],22:[2,126],25:[2,126],31:[2,126],32:[2,126],33:[2,126],38:[2,126],39:[2,126],43:[2,126],47:[2,126],50:[2,126],52:[2,126],57:[2,126],61:[2,126],65:[2,126],66:[2,126],94:[2,126],96:[2,126],97:[2,126],103:[2,126]},{1:[2,127],15:[2,127],20:[2,127],22:[2,127],25:[2,127],31:[2,127],32:[2,127],33:[2,127],38:[2,127],39:[2,127],43:[2,127],47:[2,127],50:[2,127],52:[2,127],57:[2,127],61:[2,127],65:[2,127],66:[2,127],94:[2,127],96:[2,127],97:[2,127],103:[2,127]},{1:[2,128],15:[2,128],20:[2,128],22:[2,128],25:[2,128],31:[2,128],32:[2,128],33:[2,128],38:[2,128],39:[2,128],43:[2,128],47:[2,128],50:[2,128],52:[2,128],57:[2,128],61:[2,128],65:[2,128],66:[2,128],94:[2,128],96:[2,128],97:[2,128],103:[2,128]},{11:[1,18]},{1:[2,121],11:[2,121],12:[2,121],15:[2,121],20:[2,121],22:[2,121],23:[2,121],25:[2,121],31:[2,121],32:[2,121],33:[2,121],36:[2,121],37:[2,121],38:[2,121],39:[2,121],43:[2,121],47:[2,121],49:[2,121],50:[2,121],52:[2,121],57:[2,121],61:[2,121],65:[2,121],66:[2,121],67:[2,121],70:[2,121],71:[2,121],72:[2,121],73:[2,121],74:[2,121],75:[2,121],76:[2,121],80:[2,121],83:[2,121],84:[2,121],85:[2,121],86:[2,121],87:[2,121],88:[2,121],89:[2,121],90:[2,121],91:[2,121],93:[2,121],94:[1,19],96:[2,121],97:[2,121],103:[2,121]},{1:[2,119],11:[2,119],12:[2,119],15:[2,119],20:[2,119],22:[2,119],23:[2,119],25:[2,119],31:[2,119],32:[2,119],33:[2,119],36:[2,119],37:[2,119],38:[2,119],39:[2,119],43:[2,119],47:[2,119],49:[2,119],50:[2,119],52:[2,119],57:[2,119],61:[2,119],65:[2,119],66:[2,119],67:[2,119],70:[2,119],71:[2,119],72:[2,119],73:[2,119],74:[2,119],75:[2,119],76:[2,119],80:[2,119],83:[2,119],84:[2,119],85:[2,119],86:[2,119],87:[2,119],88:[2,119],89:[2,119],90:[2,119],91:[2,119],93:[2,119],94:[2,119],96:[2,119],97:[2,119],103:[2,119]},{1:[2,12],5:23,7:20,13:21,14:15,15:[1,17],18:22,19:24,20:[1,25],22:[2,12],25:[2,12],31:[2,12],32:[2,12],38:[2,12],39:[2,12],43:[2,12],47:[2,12],50:[2,12],52:[2,12],57:[2,12],61:[2,12],65:[2,12],66:[2,12],94:[1,6],95:5,96:[1,7],97:[1,8],103:[2,12]},{1:[2,124],15:[2,124],20:[2,124],22:[2,124],25:[2,124],31:[2,124],32:[2,124],38:[2,124],39:[2,124],43:[2,124],47:[2,124],50:[2,124],52:[2,124],57:[2,124],61:[2,124],65:[2,124],66:[2,124],94:[2,124],96:[2,124],97:[2,124],103:[2,124]},{1:[2,4],15:[2,4],20:[2,4],22:[2,4],25:[2,4],31:[2,4],32:[2,4],38:[2,4],39:[2,4],43:[2,4],47:[2,4],50:[2,4],52:[2,4],57:[2,4],61:[2,4],65:[2,4],66:[2,4],94:[2,4],96:[2,4],97:[2,4],103:[2,4]},{1:[2,7],15:[2,7],20:[2,7],22:[2,7],25:[2,7],31:[2,7],32:[2,7],38:[2,7],39:[2,7],43:[2,7],47:[2,7],50:[2,7],52:[2,7],57:[2,7],61:[2,7],65:[2,7],66:[2,7],94:[2,7],96:[2,7],97:[2,7],103:[2,7]},{1:[2,8],15:[2,8],20:[2,8],22:[2,8],25:[2,8],31:[2,8],32:[2,8],38:[2,8],39:[2,8],43:[2,8],47:[2,8],50:[2,8],52:[2,8],57:[2,8],61:[2,8],65:[2,8],66:[2,8],94:[1,6],95:26,96:[1,7],97:[1,8],103:[2,8]},{10:27,11:[2,122],23:[2,122],40:10,94:[1,11]},{10:28,12:[2,122],40:10,94:[1,11]},{1:[2,120],11:[2,120],12:[2,120],15:[2,120],20:[2,120],22:[2,120],23:[2,120],25:[2,120],31:[2,120],32:[2,120],33:[2,120],36:[2,120],37:[2,120],38:[2,120],39:[2,120],43:[2,120],47:[2,120],49:[2,120],50:[2,120],52:[2,120],57:[2,120],61:[2,120],65:[2,120],66:[2,120],67:[2,120],70:[2,120],71:[2,120],72:[2,120],73:[2,120],74:[2,120],75:[2,120],76:[2,120],80:[2,120],83:[2,120],84:[2,120],85:[2,120],86:[2,120],87:[2,120],88:[2,120],89:[2,120],90:[2,120],91:[2,120],93:[2,120],94:[2,120],96:[2,120],97:[2,120],103:[2,120]},{1:[2,125],5:33,8:29,18:30,19:24,20:[1,25],22:[1,50],24:31,25:[1,32],26:34,27:35,28:36,29:37,30:38,31:[1,40],32:[2,125],38:[1,58],39:[2,125],43:[1,41],47:[1,42],50:[2,125],52:[1,51],53:39,54:44,55:46,57:[2,125],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,6],95:5,96:[1,7],97:[1,8],98:43,103:[1,45]},{1:[2,5],15:[2,5],20:[2,5],22:[2,5],25:[2,5],31:[2,5],32:[2,5],38:[2,5],39:[2,5],43:[2,5],47:[2,5],50:[2,5],52:[2,5],57:[2,5],61:[2,5],65:[2,5],66:[2,5],94:[2,5],96:[2,5],97:[2,5],103:[2,5]},{1:[2,10],20:[2,10],22:[2,10],25:[2,10],31:[2,10],32:[2,10],38:[2,10],39:[2,10],43:[2,10],47:[2,10],50:[2,10],52:[2,10],57:[2,10],61:[2,10],65:[2,10],66:[2,10],94:[2,10],96:[2,10],97:[2,10],103:[2,10]},{1:[2,8],15:[2,8],20:[2,8],22:[2,8],25:[2,8],31:[2,8],32:[2,8],38:[2,8],39:[2,8],43:[2,8],47:[2,8],50:[2,8],52:[2,8],57:[2,8],61:[2,8],65:[2,8],66:[2,8],94:[1,6],95:26,96:[1,7],97:[1,8],103:[2,8]},{1:[2,13],20:[2,13],22:[2,13],25:[2,13],31:[2,13],32:[2,13],38:[2,13],39:[2,13],43:[2,13],47:[2,13],50:[2,13],52:[2,13],57:[2,13],61:[2,13],65:[2,13],66:[2,13],94:[2,13],96:[2,13],97:[2,13],103:[2,13]},{10:59,11:[2,122],22:[2,122],23:[2,122],40:10,94:[1,11]},{1:[2,124],15:[2,124],20:[2,124],22:[2,124],25:[2,124],31:[2,124],32:[2,124],33:[2,124],38:[2,124],39:[2,124],43:[2,124],47:[2,124],50:[2,124],52:[2,124],57:[2,124],61:[2,124],65:[2,124],66:[2,124],94:[2,124],96:[2,124],97:[2,124],103:[2,124]},{11:[1,61],16:60,23:[1,62]},{12:[1,63]},{1:[2,1],5:65,22:[1,50],24:64,26:34,27:35,28:36,29:37,30:38,31:[1,40],32:[2,125],38:[1,58],39:[2,125],43:[1,41],47:[1,42],50:[2,125],52:[1,51],53:39,54:44,55:46,57:[2,125],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,6],95:5,96:[1,7],97:[1,8],98:43,103:[1,45]},{1:[2,11],20:[2,11],22:[2,11],25:[2,11],31:[2,11],32:[2,11],38:[2,11],39:[2,11],43:[2,11],47:[2,11],50:[2,11],52:[2,11],57:[2,11],61:[2,11],65:[2,11],66:[2,11],94:[2,11],96:[2,11],97:[2,11],103:[2,11]},{1:[2,20],22:[2,20],31:[2,20],32:[2,20],33:[2,20],38:[2,20],39:[2,20],43:[2,20],47:[2,20],50:[2,20],52:[2,20],57:[2,20],61:[2,20],65:[2,20],66:[2,20],94:[2,20],96:[2,20],97:[2,20],103:[2,20]},{1:[2,22],22:[2,22],31:[2,22],32:[2,22],33:[2,22],38:[2,22],39:[2,22],43:[2,22],47:[2,22],50:[2,22],52:[2,22],57:[2,22],61:[2,22],65:[2,22],66:[2,22],94:[2,22],96:[2,22],97:[2,22],103:[2,22]},{1:[2,14],20:[2,14],22:[2,14],25:[2,14],31:[2,14],32:[2,14],38:[2,14],39:[2,14],43:[2,14],47:[2,14],50:[2,14],52:[2,14],57:[2,14],61:[2,14],65:[2,14],66:[2,14],94:[1,6],95:26,96:[1,7],97:[1,8],103:[2,14]},{1:[2,23],22:[2,23],31:[2,23],32:[2,23],33:[2,23],38:[2,23],39:[2,23],43:[2,23],47:[2,23],50:[2,23],52:[2,23],57:[2,23],61:[2,23],65:[2,23],66:[2,23],94:[2,23],96:[2,23],97:[2,23],103:[2,23]},{1:[2,24],22:[2,24],31:[2,24],32:[2,24],33:[2,24],38:[2,24],39:[2,24],43:[2,24],47:[2,24],50:[2,24],52:[2,24],57:[2,24],61:[2,24],65:[2,24],66:[2,24],94:[2,24],96:[2,24],97:[2,24],103:[2,24]},{1:[2,25],22:[2,25],31:[2,25],32:[2,25],33:[2,25],38:[2,25],39:[2,25],43:[2,25],47:[2,25],50:[2,25],52:[2,25],57:[2,25],61:[2,25],65:[2,25],66:[2,25],94:[2,25],96:[2,25],97:[2,25],103:[2,25]},{1:[2,26],22:[2,26],31:[2,26],32:[2,26],33:[2,26],38:[2,26],39:[2,26],43:[2,26],47:[2,26],50:[2,26],52:[2,26],57:[2,26],61:[2,26],65:[2,26],66:[2,26],94:[2,26],96:[2,26],97:[2,26],103:[2,26]},{1:[2,27],22:[2,27],31:[2,27],32:[2,27],33:[2,27],38:[2,27],39:[2,27],43:[2,27],47:[2,27],50:[2,27],52:[2,27],57:[2,27],61:[2,27],65:[2,27],66:[2,27],94:[2,27],96:[2,27],97:[2,27],103:[2,27]},{32:[1,66],39:[1,67]},{10:68,11:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:69,22:[2,122],32:[2,122],38:[2,122],40:10,94:[1,11]},{10:70,32:[2,122],40:10,94:[1,11]},{22:[1,71]},{22:[2,59],32:[2,53],38:[2,59],39:[2,53],50:[1,73],52:[2,59],56:72,57:[1,74],61:[2,59],65:[2,59],66:[2,59],94:[2,59]},{10:75,22:[2,122],40:10,94:[1,11]},{22:[2,55],32:[2,55],38:[2,55],39:[2,55],50:[2,55],52:[2,55],57:[2,55],61:[2,55],65:[2,55],66:[2,55],94:[2,55]},{10:76,22:[2,122],32:[2,122],38:[1,58],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],60:77,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,11]},{22:[2,64],32:[2,64],38:[1,58],39:[2,64],50:[2,64],52:[2,64],57:[2,64],58:78,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[2,64]},{22:[2,62],32:[2,62],38:[2,62],39:[2,62],50:[2,62],52:[2,62],57:[2,62],61:[2,62],65:[2,62],66:[2,62],94:[2,62]},{22:[2,70],32:[2,70],38:[2,70],39:[2,70],50:[2,70],52:[2,70],57:[2,70],61:[2,70],65:[2,70],66:[2,70],94:[2,70]},{22:[2,71],32:[2,71],38:[2,71],39:[2,71],50:[2,71],52:[2,71],57:[2,71],61:[2,71],65:[2,71],66:[2,71],94:[2,71]},{22:[2,65],32:[2,65],38:[2,65],39:[2,65],50:[2,65],52:[2,65],57:[2,65],61:[2,65],65:[2,65],66:[2,65],94:[2,65]},{22:[2,66],32:[2,66],38:[2,66],39:[2,66],50:[2,66],52:[2,66],57:[2,66],61:[2,66],65:[2,66],66:[2,66],94:[2,66]},{22:[2,67],32:[2,67],38:[2,67],39:[2,67],50:[2,67],52:[2,67],57:[2,67],61:[2,67],65:[2,67],66:[2,67],94:[2,67]},{22:[2,68],32:[2,68],38:[2,68],39:[2,68],50:[2,68],52:[2,68],57:[2,68],61:[2,68],65:[2,68],66:[2,68],94:[2,68]},{22:[1,79]},{10:80,22:[2,122],40:10,94:[1,11]},{22:[1,81],38:[1,83],76:[1,82]},{10:86,11:[2,122],21:84,22:[1,85],23:[2,122],40:10,94:[1,11]},{11:[1,100],12:[2,33],17:87,22:[1,101],23:[1,102],34:88,36:[2,33],37:[2,33],38:[2,33],39:[2,33],41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[2,33]},{10:106,11:[2,122],12:[2,122],22:[2,122],23:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:107,11:[2,122],12:[2,122],22:[2,122],23:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{1:[2,2],15:[2,2],20:[2,2],22:[2,2],25:[2,2],31:[2,2],32:[2,2],38:[2,2],39:[2,2],43:[2,2],47:[2,2],50:[2,2],52:[2,2],57:[2,2],61:[2,2],65:[2,2],66:[2,2],94:[2,2],96:[2,2],97:[2,2],103:[2,2]},{1:[2,21],22:[2,21],31:[2,21],32:[2,21],33:[2,21],38:[2,21],39:[2,21],43:[2,21],47:[2,21],50:[2,21],52:[2,21],57:[2,21],61:[2,21],65:[2,21],66:[2,21],94:[2,21],96:[2,21],97:[2,21],103:[2,21]},{1:[2,28],22:[2,28],31:[2,28],32:[2,28],33:[2,28],38:[2,28],39:[2,28],43:[2,28],47:[2,28],50:[2,28],52:[2,28],57:[2,28],61:[2,28],65:[2,28],66:[2,28],94:[1,6],95:26,96:[1,7],97:[1,8],103:[2,28]},{10:108,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{10:109,22:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11]},{11:[1,100],17:110,22:[1,101],23:[1,102],32:[2,33],34:88,36:[2,33],37:[2,33],38:[2,33],39:[2,33],41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[2,33]},{22:[1,112],32:[2,44],38:[2,44],44:111,94:[2,44]},{32:[1,113]},{10:114,32:[2,122],40:10,94:[1,11]},{22:[1,50],32:[2,64],38:[1,58],39:[2,64],50:[2,64],52:[1,51],55:115,57:[2,64],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[2,64]},{10:116,22:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11]},{10:117,22:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11]},{22:[2,139]},{22:[2,60],32:[2,60],38:[2,60],39:[2,60],50:[2,60],52:[2,60],57:[2,60],61:[2,60],65:[2,60],66:[2,60],94:[2,60]},{22:[2,63],32:[2,63],38:[2,63],39:[2,63],50:[2,63],52:[2,63],57:[2,63],61:[2,63],65:[2,63],66:[2,63],94:[2,63]},{10:118,22:[2,122],32:[2,122],38:[1,58],39:[2,122],40:10,50:[2,122],52:[2,122],57:[2,122],60:77,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,11]},{22:[2,69],32:[2,69],38:[2,69],39:[2,69],50:[2,69],52:[2,69],57:[2,69],61:[2,69],65:[2,69],66:[2,69],94:[2,69]},{22:[1,119]},{22:[2,82],32:[2,82],38:[2,82],39:[2,82],50:[2,82],52:[2,82],57:[2,82],61:[2,82],65:[2,82],66:[2,82],94:[2,82]},{10:120,22:[2,122],40:10,66:[2,122],94:[1,11]},{22:[1,121]},{11:[1,61],16:122,23:[1,62]},{10:123,11:[2,122],23:[2,122],40:10,94:[1,11]},{11:[2,17],23:[2,17]},{11:[1,100],12:[1,124],22:[1,101],23:[1,102],34:125,35:126,36:[1,127],37:[1,128],38:[1,129],39:[1,130],40:131,41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[1,11]},{11:[2,30],12:[2,30],22:[2,30],23:[2,30],32:[2,30],36:[2,30],37:[2,30],38:[2,30],39:[2,30],61:[2,30],76:[2,30],83:[2,30],84:[2,30],85:[2,30],86:[2,30],87:[2,30],88:[2,30],89:[2,30],90:[2,30],91:[2,30],94:[2,30]},{11:[2,39],12:[2,39],22:[2,39],23:[2,39],32:[2,39],36:[2,39],37:[2,39],38:[2,39],39:[2,39],61:[2,39],76:[2,39],83:[2,39],84:[2,39],85:[2,39],86:[2,39],87:[2,39],88:[2,39],89:[2,39],90:[2,39],91:[2,39],94:[2,39]},{11:[2,40],12:[2,40],22:[2,40],23:[2,40],32:[2,40],36:[2,40],37:[2,40],38:[2,40],39:[2,40],61:[2,40],76:[2,40],83:[2,40],84:[2,40],85:[2,40],86:[2,40],87:[2,40],88:[2,40],89:[2,40],90:[2,40],91:[2,40],94:[2,40]},{10:132,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:133,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:134,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:135,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:136,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:137,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:138,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:139,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:140,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:141,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:142,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:143,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{10:144,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{11:[2,113],12:[2,113],22:[2,113],23:[2,113],32:[2,113],33:[2,113],36:[2,113],37:[2,113],38:[2,113],39:[2,113],49:[2,113],50:[2,113],52:[2,113],61:[2,113],70:[2,113],76:[2,113],80:[2,113],83:[2,113],84:[2,113],85:[2,113],86:[2,113],87:[2,113],88:[2,113],89:[2,113],90:[2,113],91:[2,113],93:[2,113],94:[2,113]},{10:145,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{11:[2,18],12:[2,18],22:[2,18],23:[2,18],36:[2,18],37:[2,18],38:[2,18],39:[2,18],61:[2,18],76:[2,18],83:[2,18],84:[2,18],85:[2,18],86:[2,18],87:[2,18],88:[2,18],89:[2,18],90:[2,18],91:[2,18],94:[2,18]},{11:[2,19],12:[2,19],22:[2,19],23:[2,19],36:[2,19],37:[2,19],38:[2,19],39:[2,19],61:[2,19],76:[2,19],83:[2,19],84:[2,19],85:[2,19],86:[2,19],87:[2,19],88:[2,19],89:[2,19],90:[2,19],91:[2,19],94:[2,19]},{10:150,12:[1,149],22:[1,152],33:[2,93],40:10,46:146,51:151,52:[1,153],77:147,78:148,94:[1,11]},{22:[1,50],32:[2,64],38:[1,58],39:[2,64],50:[2,64],52:[1,51],54:154,55:46,57:[2,64],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[2,64]},{11:[1,100],22:[1,101],23:[1,102],32:[1,155],34:125,35:126,36:[1,127],37:[1,128],38:[1,129],39:[1,130],40:131,41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[1,11]},{32:[2,46],38:[1,157],45:156,94:[2,46]},{32:[2,43],38:[2,43],94:[2,43]},{10:158,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{32:[1,159]},{22:[2,56],32:[2,56],38:[2,56],39:[2,56],50:[2,56],52:[2,56],57:[2,56],61:[2,56],65:[2,56],66:[2,56],94:[2,56]},{22:[2,57],32:[2,57],38:[2,57],39:[2,57],50:[2,57],52:[2,57],57:[2,57],61:[2,57],65:[2,57],66:[2,57],94:[2,57]},{22:[2,58],32:[2,58],38:[2,58],39:[2,58],50:[2,58],52:[2,58],57:[2,58],61:[2,58],65:[2,58],66:[2,58],94:[2,58]},{22:[2,61],32:[2,61],38:[2,61],39:[2,61],50:[2,61],52:[2,61],57:[2,61],61:[2,61],65:[2,61],66:[2,61],94:[2,61]},{10:160,40:10,67:[2,122],70:[2,122],71:[2,122],72:[2,122],73:[2,122],74:[2,122],75:[2,122],94:[1,11]},{22:[1,161],63:162,66:[1,57]},{22:[2,85],32:[2,85],38:[2,85],39:[2,85],50:[2,85],52:[2,85],57:[2,85],61:[2,85],65:[2,85],66:[2,85],94:[2,85]},{12:[1,163]},{11:[2,16],23:[2,16]},{1:[2,122],10:164,15:[2,122],20:[2,122],22:[2,122],25:[2,122],31:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{11:[2,31],12:[2,31],22:[2,31],23:[2,31],32:[2,31],36:[2,31],37:[2,31],38:[2,31],39:[2,31],61:[2,31],76:[2,31],83:[2,31],84:[2,31],85:[2,31],86:[2,31],87:[2,31],88:[2,31],89:[2,31],90:[2,31],91:[2,31],94:[2,31]},{11:[1,100],12:[2,41],22:[1,101],23:[1,102],32:[2,41],34:165,36:[2,41],37:[2,41],38:[2,41],39:[2,41],41:89,42:90,61:[1,105],76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,94:[2,41]},{10:166,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:167,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:168,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:169,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{11:[2,38],12:[2,38],22:[2,38],23:[2,38],32:[2,38],36:[2,38],37:[2,38],38:[2,38],39:[2,38],61:[2,38],76:[2,38],83:[2,38],84:[2,38],85:[2,38],86:[2,38],87:[2,38],88:[2,38],89:[2,38],90:[2,38],91:[2,38],94:[1,19]},{11:[2,100],12:[2,100],22:[2,100],23:[2,100],32:[2,100],33:[2,100],36:[2,100],37:[2,100],38:[2,100],39:[2,100],49:[2,100],50:[2,100],52:[2,100],61:[2,100],70:[2,100],76:[2,100],80:[2,100],83:[2,100],84:[2,100],85:[2,100],86:[2,100],87:[2,100],88:[2,100],89:[2,100],90:[2,100],91:[2,100],93:[2,100],94:[2,100]},{11:[2,101],12:[2,101],22:[2,101],23:[2,101],32:[2,101],33:[2,101],36:[2,101],37:[2,101],38:[2,101],39:[2,101],49:[2,101],50:[2,101],52:[2,101],61:[2,101],70:[2,101],76:[2,101],80:[2,101],83:[2,101],84:[2,101],85:[2,101],86:[2,101],87:[2,101],88:[2,101],89:[2,101],90:[2,101],91:[2,101],93:[2,101],94:[2,101]},{11:[2,102],12:[2,102],22:[2,102],23:[2,102],32:[2,102],33:[2,102],36:[2,102],37:[2,102],38:[2,102],39:[2,102],49:[2,102],50:[2,102],52:[2,102],61:[2,102],70:[2,102],76:[2,102],80:[2,102],83:[2,102],84:[2,102],85:[2,102],86:[2,102],87:[2,102],88:[2,102],89:[2,102],90:[2,102],91:[2,102],93:[2,102],94:[2,102]},{11:[2,103],12:[2,103],22:[2,103],23:[2,103],32:[2,103],33:[2,103],36:[2,103],37:[2,103],38:[2,103],39:[2,103],49:[2,103],50:[2,103],52:[2,103],61:[2,103],70:[2,103],76:[2,103],80:[2,103],83:[2,103],84:[2,103],85:[2,103],86:[2,103],87:[2,103],88:[2,103],89:[2,103],90:[2,103],91:[2,103],93:[2,103],94:[2,103]},{11:[2,104],12:[2,104],22:[2,104],23:[2,104],32:[2,104],33:[2,104],36:[2,104],37:[2,104],38:[2,104],39:[2,104],49:[2,104],50:[2,104],52:[2,104],61:[2,104],70:[2,104],76:[2,104],80:[2,104],83:[2,104],84:[2,104],85:[2,104],86:[2,104],87:[2,104],88:[2,104],89:[2,104],90:[2,104],91:[2,104],93:[2,104],94:[2,104]},{11:[2,105],12:[2,105],22:[2,105],23:[2,105],32:[2,105],33:[2,105],36:[2,105],37:[2,105],38:[2,105],39:[2,105],49:[2,105],50:[2,105],52:[2,105],61:[2,105],70:[2,105],76:[2,105],80:[2,105],83:[2,105],84:[2,105],85:[2,105],86:[2,105],87:[2,105],88:[2,105],89:[2,105],90:[2,105],91:[2,105],93:[2,105],94:[2,105]},{11:[2,106],12:[2,106],22:[2,106],23:[2,106],32:[2,106],33:[2,106],36:[2,106],37:[2,106],38:[2,106],39:[2,106],49:[2,106],50:[2,106],52:[2,106],61:[2,106],70:[2,106],76:[2,106],80:[2,106],83:[2,106],84:[2,106],85:[2,106],86:[2,106],87:[2,106],88:[2,106],89:[2,106],90:[2,106],91:[2,106],93:[2,106],94:[2,106]},{11:[2,107],12:[2,107],22:[2,107],23:[2,107],32:[2,107],33:[2,107],36:[2,107],37:[2,107],38:[2,107],39:[2,107],49:[2,107],50:[2,107],52:[2,107],61:[2,107],70:[2,107],76:[2,107],80:[2,107],83:[2,107],84:[2,107],85:[2,107],86:[2,107],87:[2,107],88:[2,107],89:[2,107],90:[2,107],91:[2,107],93:[2,107],94:[2,107]},{11:[1,100],22:[1,101],23:[1,102],41:172,42:174,48:173,49:[1,175],50:[1,176],61:[1,105],76:[1,99],79:170,81:171,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104},{11:[2,109],12:[2,109],22:[2,109],23:[2,109],32:[2,109],33:[2,109],36:[2,109],37:[2,109],38:[2,109],39:[2,109],49:[2,109],50:[2,109],52:[2,109],61:[2,109],70:[2,109],76:[2,109],80:[2,109],83:[2,109],84:[2,109],85:[2,109],86:[2,109],87:[2,109],88:[2,109],89:[2,109],90:[2,109],91:[2,109],93:[2,109],94:[2,109]},{11:[2,110],12:[2,110],22:[2,110],23:[2,110],32:[2,110],33:[2,110],36:[2,110],37:[2,110],38:[2,110],39:[2,110],49:[2,110],50:[2,110],52:[2,110],61:[2,110],70:[2,110],76:[2,110],80:[2,110],83:[2,110],84:[2,110],85:[2,110],86:[2,110],87:[2,110],88:[2,110],89:[2,110],90:[2,110],91:[2,110],93:[2,110],94:[2,110]},{11:[2,111],12:[2,111],22:[2,111],23:[2,111],32:[2,111],33:[2,111],36:[2,111],37:[2,111],38:[2,111],39:[2,111],49:[2,111],50:[2,111],52:[2,111],61:[2,111],70:[2,111],76:[2,111],80:[2,111],83:[2,111],84:[2,111],85:[2,111],86:[2,111],87:[2,111],88:[2,111],89:[2,111],90:[2,111],91:[2,111],93:[2,111],94:[2,111]},{11:[2,112],12:[2,112],22:[2,112],23:[2,112],32:[2,112],33:[2,112],36:[2,112],37:[2,112],38:[2,112],39:[2,112],49:[2,112],50:[2,112],52:[2,112],61:[2,112],70:[2,112],76:[2,112],80:[2,112],83:[2,112],84:[2,112],85:[2,112],86:[2,112],87:[2,112],88:[2,112],89:[2,112],90:[2,112],91:[2,112],93:[2,112],94:[2,112]},{11:[2,118],12:[2,118],22:[2,118],23:[2,118],32:[2,118],33:[2,118],36:[2,118],37:[2,118],38:[2,118],39:[2,118],49:[2,118],50:[2,118],52:[2,118],61:[2,118],70:[2,118],76:[2,118],80:[2,118],83:[2,118],84:[2,118],85:[2,118],86:[2,118],87:[2,118],88:[2,118],89:[2,118],90:[2,118],91:[2,118],93:[2,118],94:[2,118]},{10:150,12:[1,149],22:[1,152],33:[1,177],40:10,51:151,52:[1,153],77:178,78:148,94:[1,11]},{12:[2,86],22:[2,86],33:[2,86],52:[2,86],94:[2,86]},{12:[2,88],22:[2,88],33:[2,88],52:[2,88],94:[2,88]},{12:[2,89],22:[2,89],33:[2,89],52:[2,89],94:[2,89]},{12:[2,90],22:[2,90],33:[2,90],52:[2,90],94:[2,90]},{38:[1,179]},{10:180,38:[2,122],40:10,94:[1,11]},{22:[1,181]},{22:[2,59],32:[2,54],38:[2,59],39:[2,54],50:[1,73],52:[2,59],56:72,57:[1,74],61:[2,59],65:[2,59],66:[2,59],94:[2,59]},{10:182,22:[2,122],25:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{10:183,32:[2,122],40:10,94:[1,11]},{22:[1,184]},{10:150,12:[1,149],22:[1,152],33:[2,93],40:10,46:185,51:151,52:[1,153],77:147,78:148,94:[1,11]},{10:186,11:[2,122],22:[2,122],33:[2,122],40:10,84:[2,122],94:[1,11]},{67:[1,187],68:188,70:[1,189],71:[1,190],72:[1,191],73:[1,192],74:[1,193],75:[1,194]},{10:195,37:[2,122],40:10,94:[1,11]},{10:196,37:[2,122],40:10,94:[1,11]},{1:[2,122],10:197,20:[2,122],22:[2,122],25:[2,122],31:[2,122],32:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{1:[2,9],15:[2,9],20:[2,9],22:[2,9],25:[2,9],31:[2,9],32:[2,9],38:[2,9],39:[2,9],43:[2,9],47:[2,9],50:[2,9],52:[2,9],57:[2,9],61:[2,9],65:[2,9],66:[2,9],94:[2,9],96:[2,9],97:[2,9],103:[2,9]},{11:[2,32],12:[2,32],22:[2,32],23:[2,32],32:[2,32],36:[2,32],37:[2,32],38:[2,32],39:[2,32],61:[2,32],76:[2,32],83:[2,32],84:[2,32],85:[2,32],86:[2,32],87:[2,32],88:[2,32],89:[2,32],90:[2,32],91:[2,32],94:[2,32]},{11:[2,34],12:[2,34],22:[2,34],23:[2,34],32:[2,34],36:[2,34],37:[2,34],38:[2,34],39:[2,34],61:[2,34],76:[2,34],83:[2,34],84:[2,34],85:[2,34],86:[2,34],87:[2,34],88:[2,34],89:[2,34],90:[2,34],91:[2,34],94:[2,34]},{11:[2,35],12:[2,35],22:[2,35],23:[2,35],32:[2,35],36:[2,35],37:[2,35],38:[2,35],39:[2,35],61:[2,35],76:[2,35],83:[2,35],84:[2,35],85:[2,35],86:[2,35],87:[2,35],88:[2,35],89:[2,35],90:[2,35],91:[2,35],94:[2,35]},{11:[2,36],12:[2,36],22:[2,36],23:[2,36],32:[2,36],36:[2,36],37:[2,36],38:[2,36],39:[2,36],61:[2,36],76:[2,36],83:[2,36],84:[2,36],85:[2,36],86:[2,36],87:[2,36],88:[2,36],89:[2,36],90:[2,36],91:[2,36],94:[2,36]},{11:[2,37],12:[2,37],22:[2,37],23:[2,37],32:[2,37],36:[2,37],37:[2,37],38:[2,37],39:[2,37],61:[2,37],76:[2,37],83:[2,37],84:[2,37],85:[2,37],86:[2,37],87:[2,37],88:[2,37],89:[2,37],90:[2,37],91:[2,37],94:[2,37]},{11:[1,100],22:[1,101],23:[1,102],37:[1,198],39:[1,202],41:172,42:174,48:173,49:[1,175],50:[1,176],61:[1,105],70:[1,203],76:[1,99],81:200,82:199,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,93:[1,201]},{11:[2,94],12:[2,94],22:[2,94],23:[2,94],33:[2,94],37:[2,94],39:[2,94],49:[2,94],50:[2,94],52:[2,94],61:[2,94],70:[2,94],76:[2,94],80:[2,94],83:[2,94],84:[2,94],85:[2,94],86:[2,94],87:[2,94],88:[2,94],89:[2,94],90:[2,94],91:[2,94],93:[2,94],94:[2,94]},{11:[2,97],12:[2,97],22:[2,97],23:[2,97],33:[2,97],37:[2,97],39:[2,97],49:[2,97],50:[2,97],52:[2,97],61:[2,97],70:[2,97],76:[2,97],80:[2,97],83:[2,97],84:[2,97],85:[2,97],86:[2,97],87:[2,97],88:[2,97],89:[2,97],90:[2,97],91:[2,97],93:[2,97],94:[2,97]},{41:204,76:[1,99],83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98]},{11:[2,99],12:[2,99],22:[2,99],23:[2,99],33:[2,99],37:[2,99],39:[2,99],49:[2,99],50:[2,99],52:[2,99],61:[2,99],70:[2,99],76:[2,99],80:[2,99],83:[2,99],84:[2,99],85:[2,99],86:[2,99],87:[2,99],88:[2,99],89:[2,99],90:[2,99],91:[2,99],93:[2,99],94:[2,99]},{76:[2,48],83:[2,48],84:[2,48],85:[2,48],86:[2,48],87:[2,48],88:[2,48],89:[2,48],90:[2,48]},{76:[2,49],83:[2,49],84:[2,49],85:[2,49],86:[2,49],87:[2,49],88:[2,49],89:[2,49],90:[2,49]},{1:[2,122],10:205,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{12:[2,87],22:[2,87],33:[2,87],52:[2,87],94:[2,87]},{10:206,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{38:[2,50]},{10:207,38:[2,122],40:10,94:[1,11]},{5:65,8:208,22:[1,50],24:31,25:[1,32],26:34,27:35,28:36,29:37,30:38,31:[1,40],32:[2,125],33:[2,125],38:[1,58],39:[2,125],43:[1,41],47:[1,42],50:[2,125],52:[1,51],53:39,54:44,55:46,57:[2,125],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,6],95:5,96:[1,7],97:[1,8],98:43,103:[1,45]},{32:[1,209]},{32:[2,45],94:[2,45]},{10:150,12:[1,149],22:[1,152],33:[1,210],40:10,51:151,52:[1,153],77:178,78:148,94:[1,11]},{11:[1,216],22:[1,215],33:[2,132],84:[1,217],99:211,100:212,101:213,102:214},{22:[2,72],32:[2,72],37:[2,72],38:[2,72],39:[2,72],50:[2,72],52:[2,72],57:[2,72],61:[2,72],65:[2,72],66:[2,72],94:[2,72]},{10:218,11:[2,122],22:[2,122],40:10,94:[1,11]},{11:[2,74],22:[2,74],94:[2,74]},{11:[2,75],22:[2,75],94:[2,75]},{11:[2,76],22:[2,76],94:[2,76]},{11:[2,77],22:[2,77],94:[2,77]},{11:[2,78],22:[2,78],94:[2,78]},{11:[2,79],22:[2,79],94:[2,79]},{37:[1,219]},{37:[1,220]},{1:[2,15],20:[2,15],22:[2,15],25:[2,15],31:[2,15],32:[2,15],38:[2,15],39:[2,15],43:[2,15],47:[2,15],50:[2,15],52:[2,15],57:[2,15],61:[2,15],65:[2,15],66:[2,15],94:[2,15],96:[2,15],97:[2,15],103:[2,15]},{10:221,11:[2,122],12:[2,122],22:[2,122],23:[2,122],32:[2,122],33:[2,122],36:[2,122],37:[2,122],38:[2,122],39:[2,122],40:10,49:[2,122],50:[2,122],52:[2,122],61:[2,122],70:[2,122],76:[2,122],80:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],93:[2,122],94:[1,11]},{11:[1,100],22:[1,101],23:[1,102],41:172,42:174,48:173,49:[1,175],50:[1,176],61:[1,105],76:[1,99],81:222,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104},{11:[2,96],12:[2,96],22:[2,96],23:[2,96],33:[2,96],37:[2,96],39:[2,96],49:[2,96],50:[2,96],52:[2,96],61:[2,96],70:[2,96],76:[2,96],80:[2,96],83:[2,96],84:[2,96],85:[2,96],86:[2,96],87:[2,96],88:[2,96],89:[2,96],90:[2,96],91:[2,96],93:[2,96],94:[2,96]},{10:223,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:224,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{10:225,11:[2,122],22:[2,122],23:[2,122],40:10,49:[2,122],50:[2,122],61:[2,122],76:[2,122],83:[2,122],84:[2,122],85:[2,122],86:[2,122],87:[2,122],88:[2,122],89:[2,122],90:[2,122],91:[2,122],94:[1,11]},{11:[2,98],12:[2,98],22:[2,98],23:[2,98],33:[2,98],37:[2,98],39:[2,98],49:[2,98],50:[2,98],52:[2,98],61:[2,98],70:[2,98],76:[2,98],80:[2,98],83:[2,98],84:[2,98],85:[2,98],86:[2,98],87:[2,98],88:[2,98],89:[2,98],90:[2,98],91:[2,98],93:[2,98],94:[2,98]},{1:[2,52],22:[2,52],31:[2,52],32:[2,52],33:[2,52],38:[2,52],39:[2,52],43:[2,52],47:[2,52],50:[2,52],52:[2,52],57:[2,52],61:[2,52],65:[2,52],66:[2,52],94:[2,52],96:[2,52],97:[2,52],103:[2,52]},{11:[1,100],22:[1,101],23:[1,102],41:172,42:174,48:173,49:[1,175],50:[1,176],61:[1,105],76:[1,99],79:226,81:171,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104},{38:[2,51]},{5:65,22:[1,50],24:64,26:34,27:35,28:36,29:37,30:38,31:[1,40],32:[2,125],33:[1,227],38:[1,58],39:[2,125],43:[1,41],47:[1,42],50:[2,125],52:[1,51],53:39,54:44,55:46,57:[2,125],58:47,59:48,60:49,61:[1,52],62:53,63:54,64:55,65:[1,56],66:[1,57],94:[1,6],95:5,96:[1,7],97:[1,8],98:43,103:[1,45]},{10:228,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{1:[2,122],10:229,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{11:[1,216],22:[1,215],33:[1,230],84:[1,217],100:231,101:213,102:214},{11:[2,130],22:[2,130],33:[2,130],84:[2,130]},{32:[1,232],39:[1,233]},{10:234,32:[2,122],39:[2,122],40:10,94:[1,11]},{32:[2,136],39:[2,136],94:[2,136]},{32:[2,137],39:[2,137],94:[2,137]},{32:[2,138],39:[2,138],94:[2,138]},{11:[1,237],22:[1,236],69:235},{22:[2,83],32:[2,83],38:[2,83],39:[2,83],50:[2,83],52:[2,83],57:[2,83],61:[2,83],65:[2,83],66:[2,83],94:[2,83]},{22:[2,84],32:[2,84],38:[2,84],39:[2,84],50:[2,84],52:[2,84],57:[2,84],61:[2,84],65:[2,84],66:[2,84],94:[2,84]},{11:[2,108],12:[2,108],22:[2,108],23:[2,108],32:[2,108],33:[2,108],36:[2,108],37:[2,108],38:[2,108],39:[2,108],49:[2,108],50:[2,108],52:[2,108],61:[2,108],70:[2,108],76:[2,108],80:[2,108],83:[2,108],84:[2,108],85:[2,108],86:[2,108],87:[2,108],88:[2,108],89:[2,108],90:[2,108],91:[2,108],93:[2,108],94:[2,108]},{11:[2,95],12:[2,95],22:[2,95],23:[2,95],33:[2,95],37:[2,95],39:[2,95],49:[2,95],50:[2,95],52:[2,95],61:[2,95],70:[2,95],76:[2,95],80:[2,95],83:[2,95],84:[2,95],85:[2,95],86:[2,95],87:[2,95],88:[2,95],89:[2,95],90:[2,95],91:[2,95],93:[2,95],94:[2,95]},{11:[2,114],22:[2,114],23:[2,114],49:[2,114],50:[2,114],61:[2,114],76:[2,114],83:[2,114],84:[2,114],85:[2,114],86:[2,114],87:[2,114],88:[2,114],89:[2,114],90:[2,114],91:[2,114]},{11:[2,115],22:[2,115],23:[2,115],49:[2,115],50:[2,115],61:[2,115],76:[2,115],83:[2,115],84:[2,115],85:[2,115],86:[2,115],87:[2,115],88:[2,115],89:[2,115],90:[2,115],91:[2,115]},{11:[2,116],22:[2,116],23:[2,116],49:[2,116],50:[2,116],61:[2,116],76:[2,116],83:[2,116],84:[2,116],85:[2,116],86:[2,116],87:[2,116],88:[2,116],89:[2,116],90:[2,116],91:[2,116]},{10:238,11:[1,100],12:[2,122],22:[1,101],23:[1,102],33:[2,122],39:[1,202],40:10,41:172,42:174,48:173,49:[1,175],50:[1,176],52:[2,122],61:[1,105],70:[1,203],76:[1,99],80:[1,239],81:200,82:199,83:[1,91],84:[1,92],85:[1,93],86:[1,94],87:[1,95],88:[1,96],89:[1,97],90:[1,98],91:[1,103],92:104,93:[1,201],94:[1,11]},{1:[2,122],10:240,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{10:150,12:[1,149],22:[1,152],33:[2,93],40:10,46:241,51:151,52:[1,153],77:147,78:148,94:[1,11]},{1:[2,47],22:[2,47],31:[2,47],32:[2,47],33:[2,47],38:[2,47],39:[2,47],43:[2,47],47:[2,47],50:[2,47],52:[2,47],57:[2,47],61:[2,47],65:[2,47],66:[2,47],94:[2,47],96:[2,47],97:[2,47],103:[2,47]},{1:[2,122],10:242,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{11:[2,131],22:[2,131],33:[2,131],84:[2,131]},{10:243,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{11:[1,216],22:[1,215],84:[1,217],102:244},{32:[2,134],39:[2,134]},{10:245,40:10,67:[2,122],94:[1,11]},{67:[2,80],94:[2,80]},{67:[2,81],94:[2,81]},{12:[2,91],22:[2,91],33:[2,91],52:[2,91],94:[2,91]},{10:246,12:[2,122],22:[2,122],33:[2,122],40:10,52:[2,122],94:[1,11]},{1:[2,29],22:[2,29],31:[2,29],32:[2,29],33:[2,29],38:[2,29],39:[2,29],43:[2,29],47:[2,29],50:[2,29],52:[2,29],57:[2,29],61:[2,29],65:[2,29],66:[2,29],94:[2,29],96:[2,29],97:[2,29],103:[2,29]},{10:150,12:[1,149],22:[1,152],33:[1,247],40:10,51:151,52:[1,153],77:178,78:148,94:[1,11]},{1:[2,129],22:[2,129],31:[2,129],32:[2,129],33:[2,129],38:[2,129],39:[2,129],43:[2,129],47:[2,129],50:[2,129],52:[2,129],57:[2,129],61:[2,129],65:[2,129],66:[2,129],94:[2,129],96:[2,129],97:[2,129],103:[2,129]},{10:150,12:[1,149],22:[1,152],33:[2,93],40:10,46:248,51:151,52:[1,153],77:147,78:148,94:[1,11]},{10:249,32:[2,122],39:[2,122],40:10,94:[1,11]},{67:[1,250]},{12:[2,92],22:[2,92],33:[2,92],52:[2,92],94:[2,92]},{1:[2,122],10:251,22:[2,122],31:[2,122],32:[2,122],33:[2,122],38:[2,122],39:[2,122],40:10,43:[2,122],47:[2,122],50:[2,122],52:[2,122],57:[2,122],61:[2,122],65:[2,122],66:[2,122],94:[1,11],96:[2,122],97:[2,122],103:[2,122]},{10:150,12:[1,149],22:[1,152],33:[1,252],40:10,51:151,52:[1,153],77:178,78:148,94:[1,11]},{32:[2,135],39:[2,135]},{22:[2,73],32:[2,73],37:[2,73],38:[2,73],39:[2,73],50:[2,73],52:[2,73],57:[2,73],61:[2,73],65:[2,73],66:[2,73],94:[2,73]},{1:[2,42],22:[2,42],31:[2,42],32:[2,42],33:[2,42],38:[2,42],39:[2,42],43:[2,42],47:[2,42],50:[2,42],52:[2,42],57:[2,42],61:[2,42],65:[2,42],66:[2,42],94:[2,42],96:[2,42],97:[2,42],103:[2,42]},{10:253,11:[2,122],22:[2,122],33:[2,122],40:10,84:[2,122],94:[1,11]},{11:[2,133],22:[2,133],33:[2,133],84:[2,133]}],defaultActions:{75:[2,139],180:[2,50],207:[2,51]},parseError:function(t,e){if(!e.recoverable)throw Error(t);
this.trace(t)},parse:function(t){function e(){var t;return t=s.lexer.lex()||b,"number"!=typeof t&&(t=s.symbols_[t]||t),t}var s=this,r=[0],i=[null],a=[],n=this.table,h="",c=0,l=0,o=0,u=2,b=1;this.lexer.setInput(t),this.lexer.yy=this.yy,this.yy.lexer=this.lexer,this.yy.parser=this,void 0===this.lexer.yylloc&&(this.lexer.yylloc={});var k=this.lexer.yylloc;a.push(k);var y=this.lexer.options&&this.lexer.options.ranges;this.parseError="function"==typeof this.yy.parseError?this.yy.parseError:Object.getPrototypeOf(this).parseError;for(var p,f,$,_,m,g,d,A,x,E={};;){if($=r[r.length-1],this.defaultActions[$]?_=this.defaultActions[$]:((null===p||void 0===p)&&(p=e()),_=n[$]&&n[$][p]),void 0===_||!_.length||!_[0]){var S="";x=[];for(g in n[$])this.terminals_[g]&&g>u&&x.push("'"+this.terminals_[g]+"'");S=this.lexer.showPosition?"Parse error on line "+(c+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+x.join(", ")+", got '"+(this.terminals_[p]||p)+"'":"Parse error on line "+(c+1)+": Unexpected "+(p==b?"end of input":"'"+(this.terminals_[p]||p)+"'"),this.parseError(S,{text:this.lexer.match,token:this.terminals_[p]||p,line:this.lexer.yylineno,loc:k,expected:x})}if(_[0]instanceof Array&&_.length>1)throw Error("Parse Error: multiple actions possible at state: "+$+", token: "+p);switch(_[0]){case 1:r.push(p),i.push(this.lexer.yytext),a.push(this.lexer.yylloc),r.push(_[1]),p=null,f?(p=f,f=null):(l=this.lexer.yyleng,h=this.lexer.yytext,c=this.lexer.yylineno,k=this.lexer.yylloc,o>0&&o--);break;case 2:if(d=this.productions_[_[1]][1],E.$=i[i.length-d],E._$={first_line:a[a.length-(d||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(d||1)].first_column,last_column:a[a.length-1].last_column},y&&(E._$.range=[a[a.length-(d||1)].range[0],a[a.length-1].range[1]]),m=this.performAction.call(E,h,l,c,this.yy,_[1],i,a),void 0!==m)return m;d&&(r=r.slice(0,-2*d),i=i.slice(0,-1*d),a=a.slice(0,-1*d)),r.push(this.productions_[_[1]][0]),i.push(E.$),a.push(E._$),A=n[r[r.length-2]][r[r.length-1]],r.push(A);break;case 3:return!0}}return!0}},s=function(){var t={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw Error(t);this.yy.parser.parseError(t,e)},setInput:function(t){return this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t;var e=t.match(/(?:\r\n?|\n).*/g);return e?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,s=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e-1),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),s.length-1&&(this.yylineno-=s.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:s?(s.length===r.length?this.yylloc.first_column:0)+r[r.length-s.length].length-s[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return 20>t.length&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var s,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),r=t[0].match(/(?:\r\n?|\n).*/g),r&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],s=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),s)return this.options.backtrack_lexer&&delete i,s;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return this.options.backtrack_lexer&&delete i,!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var t,e,s,r;this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;i.length>a;a++)if(s=this._input.match(this.rules[i[a]]),s&&(!e||s[0].length>e[0].length)){if(e=s,r=a,this.options.backtrack_lexer){if(t=this.test_match(s,i[a]),t!==!1)return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?(t=this.test_match(e,i[r]),t!==!1?t:!1):""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t?t:this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){var t=this.conditionStack.length-1;return t>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return t=this.conditionStack.length-1-Math.abs(t||0),t>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(t,e,s){switch(s){case 0:return 94;case 1:break;case 2:return 96;case 3:return 97;case 4:return 71;case 5:return 72;case 6:return 73;case 7:return 74;case 8:return 75;case 9:return 80;case 10:return 23;case 11:return 23;case 12:return"FUNCTION";case 13:return 103;case 14:return 11;case 15:return 22;case 16:return 61;case 17:return 15;case 18:return 43;case 19:return 31;case 20:return 47;case 21:return 9;case 22:return 20;case 23:return 86;case 24:return 87;case 25:return 85;case 26:return 85;case 27:return 85;case 28:return 85;case 29:return 85;case 30:return 85;case 31:return 88;case 32:return 88;case 33:return 88;case 34:return 89;case 35:return 89;case 36:return 90;case 37:return 90;case 38:return"DIMEN";case 39:return 84;case 40:return 83;case 41:return 91;case 42:return 91;case 43:return e.yytext}},rules:[/^(?:[ \t\r\n\f]+)/,/^(?:\/\*[^*]*\*+([^/][^*]*\*+)*\/)/,/^(?:<!--)/,/^(?:-->)/,/^(?:~=)/,/^(?:\|=)/,/^(?:\^=)/,/^(?:\$=)/,/^(?:\*=)/,/^(?:!([ \t\r\n\f]*)important\b)/,/^(?:url\(([ \t\r\n\f]*)(("([\t !#$%&(-~]|\\(\n|\r\n|\r|\f\b)|'|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*")|('([\t !#$%&(-~]|\\(\n|\r\n|\r|\f\b)|"|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*'))([ \t\r\n\f]*)\))/,/^(?:url\(([ \t\r\n\f]*)(([!#$%&*-~]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*)([ \t\r\n\f]*)\))/,/^(?:([-]?([a-zA-Z]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))([_]|([a-zA-Z0-9-]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377])))*)\()/,/^(?:([@](-webkit-|-o-|-moz-|-ms-)?keyframes\b))/,/^(?:(("([\t !#$%&(-~]|\\(\n|\r\n|\r|\f\b)|'|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*")|('([\t !#$%&(-~]|\\(\n|\r\n|\r|\f\b)|"|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))*')))/,/^(?:([-]?([a-zA-Z]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))([_]|([a-zA-Z0-9-]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377])))*))/,/^(?:#(([_]|([a-zA-Z0-9-]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377])))+))/,/^(?:@import\b)/,/^(?:@page\b)/,/^(?:@media\b)/,/^(?:@font-face\b)/,/^(?:@charset\b)/,/^(?:@namespace\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))em\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))ex\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))px\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))cm\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))mm\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))in\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))pt\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))pc\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))deg\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))rad\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))grad\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))ms\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))s\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))Hz\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))kHz\b)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))([-]?([a-zA-Z]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377]))([_]|([a-zA-Z0-9-]|([\200-\377])|((\\([0-9a-fA-F]){1,6}[ \t\r\n\f]?)|\\[ -~\200-\377])))*))/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+))%)/,/^(?:(([0-9]+(\.[0-9]+)?)|(\.[0-9]+)))/,/^(?:U\+(\?{1,6}|([0-9a-fA-F])(\?{0,5}|([0-9a-fA-F])(\?{0,4}|([0-9a-fA-F])(\?{0,3}|([0-9a-fA-F])(\?{0,2}|([0-9a-fA-F])(\??|([0-9a-fA-F]))))))))/,/^(?:U\+([0-9a-fA-F]){1,6}([0-9a-fA-F]){1,6})/,/^(?:.)/],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],inclusive:!0}}};return t}();return e.lexer=s,t.prototype=e,e.Parser=t,new t}();"undefined"!=typeof require&&"undefined"!=typeof exports&&(exports.parser=cssparser,exports.Parser=cssparser.Parser,exports.parse=function(){return cssparser.parse.apply(cssparser,arguments)},exports.main=function(t){t[1]||(console.log("Usage: "+t[0]+" FILE"),process.exit(1));var e=require("fs").readFileSync(require("path").normalize(t[1]),"utf8");return exports.parser.parse(e)},"undefined"!=typeof module&&require.main===module&&exports.main(process.argv.slice(1)));

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc