diff --git a/src/parser/xhpast/__tests__/data/php-callable-typehint.php.expect b/src/parser/xhpast/__tests__/data/php-callable-typehint.php.expect index a29258d..79f18be 100644 --- a/src/parser/xhpast/__tests__/data/php-callable-typehint.php.expect +++ b/src/parser/xhpast/__tests__/data/php-callable-typehint.php.expect @@ -1,139 +1,139 @@ { "tree" : [ 9000, 0, 13, [ [ 9006, 0, 12, [ [ 9007, 0, 0 ], [ 9004, 2, 12, [ [ 9050, 2, 12, [ [ 9005 ], [ 9005 ], [ 9013, 4, 4 ], [ 9059, 5, 9, [ [ 9060, 6, 8, [ [ - 9090, + 9061, 6, 6 ], [ 9047, 8, 8 ], [ 9005 ] ] ] ] ], [ 9005 ], [ 9006, 11, 12 ] ] ] ] ] ] ] ] ], "stream" : [ [ 371, 6 ], [ 375, 1 ], [ 337, 8 ], [ 375, 1 ], [ 309, 1 ], [ 40, 1 ], [ - 309, + 389, 8 ], [ 375, 1 ], [ 311, 2 ], [ 41, 1 ], [ 375, 1 ], [ 123, 1 ], [ 125, 1 ], [ 375, 1 ] ] } diff --git a/src/parser/xhpast/__tests__/data/php-callable-typehint.php.test b/src/parser/xhpast/__tests__/data/php-callable-typehint.php.test index f0a542d..1afeb60 100644 --- a/src/parser/xhpast/__tests__/data/php-callable-typehint.php.test +++ b/src/parser/xhpast/__tests__/data/php-callable-typehint.php.test @@ -1,4 +1,4 @@ -# fail-syntax, comment="Temporarily fails until parser is updated." +# pass $z; $data = (yield $a); $data = (yield $b => $c); } diff --git a/src/parser/xhpast/bin/xhpast_parse.php b/src/parser/xhpast/bin/xhpast_parse.php index 0564c10..2ece469 100644 --- a/src/parser/xhpast/bin/xhpast_parse.php +++ b/src/parser/xhpast/bin/xhpast_parse.php @@ -1,63 +1,63 @@ write($data); return $future; } diff --git a/src/parser/xhpast/parser_nodes.php b/src/parser/xhpast/parser_nodes.php index 30b96cc..9f968b4 100644 --- a/src/parser/xhpast/parser_nodes.php +++ b/src/parser/xhpast/parser_nodes.php @@ -1,113 +1,121 @@ 'n_PROGRAM', 9001 => 'n_SYMBOL_NAME', 9002 => 'n_HALT_COMPILER', 9003 => 'n_NAMESPACE', 9004 => 'n_STATEMENT', 9005 => 'n_EMPTY', 9006 => 'n_STATEMENT_LIST', 9007 => 'n_OPEN_TAG', 9008 => 'n_CLOSE_TAG', 9009 => 'n_USE_LIST', 9010 => 'n_USE', 9011 => 'n_CONSTANT_DECLARATION_LIST', 9012 => 'n_CONSTANT_DECLARATION', 9013 => 'n_STRING', 9014 => 'n_LABEL', 9015 => 'n_CONDITION_LIST', 9016 => 'n_CONTROL_CONDITION', 9017 => 'n_IF', 9018 => 'n_ELSEIF', 9019 => 'n_ELSE', 9020 => 'n_WHILE', 9021 => 'n_DO_WHILE', 9022 => 'n_FOR', 9023 => 'n_FOR_EXPRESSION', 9024 => 'n_SWITCH', 9025 => 'n_BREAK', 9026 => 'n_CONTINUE', 9027 => 'n_RETURN', 9028 => 'n_GLOBAL_DECLARATION_LIST', 9029 => 'n_GLOBAL_DECLARATION', 9030 => 'n_STATIC_DECLARATION_LIST', 9031 => 'n_STATIC_DECLARATION', 9032 => 'n_ECHO_LIST', 9033 => 'n_ECHO', 9034 => 'n_INLINE_HTML', 9035 => 'n_UNSET_LIST', 9036 => 'n_UNSET', 9037 => 'n_FOREACH', 9038 => 'n_FOREACH_EXPRESSION', 9039 => 'n_THROW', 9040 => 'n_GOTO', 9041 => 'n_TRY', 9042 => 'n_CATCH_LIST', 9043 => 'n_CATCH', 9044 => 'n_DECLARE', 9045 => 'n_DECLARE_DECLARATION_LIST', 9046 => 'n_DECLARE_DECLARATION', 9047 => 'n_VARIABLE', 9048 => 'n_REFERENCE', 9049 => 'n_VARIABLE_REFERENCE', 9050 => 'n_FUNCTION_DECLARATION', 9051 => 'n_CLASS_DECLARATION', 9052 => 'n_CLASS_ATTRIBUTES', 9053 => 'n_EXTENDS', 9054 => 'n_EXTENDS_LIST', 9055 => 'n_IMPLEMENTS_LIST', 9056 => 'n_INTERFACE_DECLARATION', 9057 => 'n_CASE', 9058 => 'n_DEFAULT', 9059 => 'n_DECLARATION_PARAMETER_LIST', 9060 => 'n_DECLARATION_PARAMETER', 9061 => 'n_TYPE_NAME', 9062 => 'n_VARIABLE_VARIABLE', 9063 => 'n_CLASS_MEMBER_DECLARATION_LIST', 9064 => 'n_CLASS_MEMBER_DECLARATION', 9065 => 'n_CLASS_CONSTANT_DECLARATION_LIST', 9066 => 'n_CLASS_CONSTANT_DECLARATION', 9067 => 'n_METHOD_DECLARATION', 9068 => 'n_METHOD_MODIFIER_LIST', 9069 => 'n_FUNCTION_MODIFIER_LIST', 9070 => 'n_CLASS_MEMBER_MODIFIER_LIST', 9071 => 'n_EXPRESSION_LIST', 9072 => 'n_LIST', 9073 => 'n_ASSIGNMENT', 9074 => 'n_NEW', 9075 => 'n_UNARY_PREFIX_EXPRESSION', 9076 => 'n_UNARY_POSTFIX_EXPRESSION', 9077 => 'n_BINARY_EXPRESSION', 9078 => 'n_TERNARY_EXPRESSION', 9079 => 'n_CAST_EXPRESSION', 9080 => 'n_CAST', 9081 => 'n_OPERATOR', 9082 => 'n_ARRAY_LITERAL', 9083 => 'n_EXIT_EXPRESSION', 9084 => 'n_BACKTICKS_EXPRESSION', 9085 => 'n_LEXICAL_VARIABLE_LIST', 9086 => 'n_NUMERIC_SCALAR', 9087 => 'n_STRING_SCALAR', 9088 => 'n_MAGIC_SCALAR', 9089 => 'n_CLASS_STATIC_ACCESS', 9090 => 'n_CLASS_NAME', 9091 => 'n_MAGIC_CLASS_KEYWORD', 9092 => 'n_OBJECT_PROPERTY_ACCESS', 9093 => 'n_ARRAY_VALUE_LIST', 9094 => 'n_ARRAY_VALUE', 9095 => 'n_CALL_PARAMETER_LIST', 9096 => 'n_VARIABLE_EXPRESSION', 9097 => 'n_INCLUDE_FILE', 9098 => 'n_HEREDOC', 9099 => 'n_FUNCTION_CALL', 9100 => 'n_INDEX_ACCESS', 9101 => 'n_ASSIGNMENT_LIST', 9102 => 'n_METHOD_CALL', 9103 => 'n_CONCATENATION_LIST', 9104 => 'n_PARENTHETICAL_EXPRESSION', + 9105 => 'n_TRAIT_USE', + 9106 => 'n_TRAIT_USE_LIST', + 9107 => 'n_TRAIT_ADAPTATION_LIST', + 9108 => 'n_TRAIT_INSTEADOF', + 9109 => 'n_TRAIT_REFERENCE_LIST', + 9110 => 'n_TRAIT_METHOD_REFERENCE', + 9111 => 'n_TRAIT_AS', + 9112 => 'n_YIELD', ); } diff --git a/src/parser/xhpast/parser_tokens.php b/src/parser/xhpast/parser_tokens.php index 437f262..fd4bcfe 100644 --- a/src/parser/xhpast/parser_tokens.php +++ b/src/parser/xhpast/parser_tokens.php @@ -1,138 +1,144 @@ 'T_REQUIRE_ONCE', 259 => 'T_REQUIRE', 260 => 'T_EVAL', 261 => 'T_INCLUDE_ONCE', 262 => 'T_INCLUDE', 263 => 'T_LOGICAL_OR', 264 => 'T_LOGICAL_XOR', 265 => 'T_LOGICAL_AND', 266 => 'T_PRINT', 267 => 'T_SR_EQUAL', 268 => 'T_SL_EQUAL', 269 => 'T_XOR_EQUAL', 270 => 'T_OR_EQUAL', 271 => 'T_AND_EQUAL', 272 => 'T_MOD_EQUAL', 273 => 'T_CONCAT_EQUAL', 274 => 'T_DIV_EQUAL', 275 => 'T_MUL_EQUAL', 276 => 'T_MINUS_EQUAL', 277 => 'T_PLUS_EQUAL', 278 => 'T_BOOLEAN_OR', 279 => 'T_BOOLEAN_AND', 280 => 'T_IS_NOT_IDENTICAL', 281 => 'T_IS_IDENTICAL', 282 => 'T_IS_NOT_EQUAL', 283 => 'T_IS_EQUAL', 284 => 'T_IS_GREATER_OR_EQUAL', 285 => 'T_IS_SMALLER_OR_EQUAL', 286 => 'T_SR', 287 => 'T_SL', 288 => 'T_INSTANCEOF', 289 => 'T_UNSET_CAST', 290 => 'T_BOOL_CAST', 291 => 'T_OBJECT_CAST', 292 => 'T_ARRAY_CAST', 293 => 'T_BINARY_CAST', 294 => 'T_UNICODE_CAST', 295 => 'T_STRING_CAST', 296 => 'T_DOUBLE_CAST', 297 => 'T_INT_CAST', 298 => 'T_DEC', 299 => 'T_INC', 300 => 'T_CLONE', 301 => 'T_NEW', 302 => 'T_EXIT', 303 => 'T_IF', 304 => 'T_ELSEIF', 305 => 'T_ELSE', 306 => 'T_ENDIF', 307 => 'T_LNUMBER', 308 => 'T_DNUMBER', 309 => 'T_STRING', 310 => 'T_STRING_VARNAME', 311 => 'T_VARIABLE', 312 => 'T_NUM_STRING', 313 => 'T_INLINE_HTML', 314 => 'T_CHARACTER', 315 => 'T_BAD_CHARACTER', 316 => 'T_ENCAPSED_AND_WHITESPACE', 317 => 'T_CONSTANT_ENCAPSED_STRING', 318 => 'T_BACKTICKS_EXPR', 319 => 'T_ECHO', 320 => 'T_DO', 321 => 'T_WHILE', 322 => 'T_ENDWHILE', 323 => 'T_FOR', 324 => 'T_ENDFOR', 325 => 'T_FOREACH', 326 => 'T_ENDFOREACH', 327 => 'T_DECLARE', 328 => 'T_ENDDECLARE', 329 => 'T_AS', 330 => 'T_SWITCH', 331 => 'T_ENDSWITCH', 332 => 'T_CASE', 333 => 'T_DEFAULT', 334 => 'T_BREAK', 335 => 'T_CONTINUE', 336 => 'T_GOTO', 337 => 'T_FUNCTION', 338 => 'T_CONST', 339 => 'T_RETURN', 340 => 'T_TRY', 341 => 'T_CATCH', 342 => 'T_THROW', 343 => 'T_USE', 344 => 'T_GLOBAL', 345 => 'T_PUBLIC', 346 => 'T_PROTECTED', 347 => 'T_PRIVATE', 348 => 'T_FINAL', 349 => 'T_ABSTRACT', 350 => 'T_STATIC', 351 => 'T_VAR', 352 => 'T_UNSET', 353 => 'T_ISSET', 354 => 'T_EMPTY', 355 => 'T_HALT_COMPILER', 356 => 'T_CLASS', 357 => 'T_INTERFACE', 358 => 'T_EXTENDS', 359 => 'T_IMPLEMENTS', 360 => 'T_OBJECT_OPERATOR', 361 => 'T_DOUBLE_ARROW', 362 => 'T_LIST', 363 => 'T_ARRAY', 364 => 'T_CLASS_C', 365 => 'T_METHOD_C', 366 => 'T_FUNC_C', 367 => 'T_LINE', 368 => 'T_FILE', 369 => 'T_COMMENT', 370 => 'T_DOC_COMMENT', 371 => 'T_OPEN_TAG', 372 => 'T_OPEN_TAG_WITH_ECHO', 373 => 'T_OPEN_TAG_FAKE', 374 => 'T_CLOSE_TAG', 375 => 'T_WHITESPACE', 376 => 'T_START_HEREDOC', 377 => 'T_END_HEREDOC', 378 => 'T_HEREDOC', 379 => 'T_DOLLAR_OPEN_CURLY_BRACES', 380 => 'T_CURLY_OPEN', 381 => 'T_PAAMAYIM_NEKUDOTAYIM', 382 => 'T_BINARY_DOUBLE', 383 => 'T_BINARY_HEREDOC', 384 => 'T_NAMESPACE', 385 => 'T_NS_C', 386 => 'T_DIR', 387 => 'T_NS_SEPARATOR', + 388 => 'T_INSTEADOF', + 389 => 'T_CALLABLE', + 390 => 'T_TRAIT', + 391 => 'T_TRAIT_C', + 392 => 'T_YIELD', + 393 => 'T_FINALLY', ); } diff --git a/support/xhpast/generate_nodes.php b/support/xhpast/generate_nodes.php index cd08437..8a626f4 100755 --- a/support/xhpast/generate_nodes.php +++ b/support/xhpast/generate_nodes.php @@ -1,140 +1,149 @@ #!/usr/local/bin/php $value) { $hpp .= "#define {$node} {$value}\n"; } file_put_contents('node_names.hpp', $hpp); echo "Wrote C++ definition.\n"; $at = '@'; $php = " $value) { $php .= " {$value} => '{$node}',\n"; } $php .= " );\n"; $php .= "}\n"; file_put_contents('parser_nodes.php', $php); echo "Wrote PHP definition.\n"; diff --git a/support/xhpast/parser.y b/support/xhpast/parser.y index 7776f2b..8ef7b2a 100644 --- a/support/xhpast/parser.y +++ b/support/xhpast/parser.y @@ -1,2419 +1,2617 @@ %{ /* * If you modify this grammar, please update the version number in * ./xhpast.cpp and libphutil/src/parser/xhpast/bin/xhpast_parse.php */ #include "ast.hpp" #include "node_names.hpp" // PHP's if/else rules use right reduction rather than left reduction which // means while parsing nested if/else's the stack grows until it the last // statement is read. This is annoying, particularly because of a quirk in // bison. // http://www.gnu.org/software/bison/manual/html_node/Memory-Management.html // Apparently if you compile a bison parser with g++ it can no longer grow // the stack. The work around is to just make your initial stack ridiculously // large. Unfortunately that increases memory usage while parsing which is // dumb. Anyway, putting a TODO here to fix PHP's if/else grammar. #define YYINITDEPTH 500 %} %{ #undef yyextra #define yyextra static_cast(xhpastget_extra(yyscanner)) #undef yylineno #define yylineno yyextra->first_lineno #define push_state(s) xhp_new_push_state(s, (struct yyguts_t*) yyscanner) #define pop_state() xhp_new_pop_state((struct yyguts_t*) yyscanner) #define set_state(s) xhp_set_state(s, (struct yyguts_t*) yyscanner) #define NNEW(t) \ (new xhpast::Node(t)) #define NTYPE(n, type) \ ((n)->setType(type)) #define NMORE(n, end) \ ((n)->setEnd(end)) #define NSPAN(n, type, end) \ (NMORE(NTYPE((n), type), end)) #define NLMORE(n, begin) \ ((n)->setBegin(begin)) #define NEXPAND(l, n, r) \ ((n)->setBegin(l)->setEnd(r)) using namespace std; static void yyerror(void* yyscanner, void* _, const char* error) { if (yyextra->terminated) { return; } yyextra->terminated = true; yyextra->error = error; } /* TODO: Restore this. static void replacestr(string &source, const string &find, const string &rep) { size_t j; while ((j = source.find(find)) != std::string::npos) { source.replace(j, find.length(), rep); } } */ %} -%expect 9 +%expect 12 // 2: PHP's if/else grammar // 7: expr '[' dim_offset ']' -- shift will default to first grammar %name-prefix = "xhpast" %pure-parser %parse-param { void* yyscanner } %parse-param { xhpast::Node** root } %lex-param { void* yyscanner } %error-verbose %left T_INCLUDE T_INCLUDE_ONCE T_EVAL T_REQUIRE T_REQUIRE_ONCE %left ',' %left T_LOGICAL_OR %left T_LOGICAL_XOR %left T_LOGICAL_AND %right T_PRINT %left '=' T_PLUS_EQUAL T_MINUS_EQUAL T_MUL_EQUAL T_DIV_EQUAL T_CONCAT_EQUAL T_MOD_EQUAL T_AND_EQUAL T_OR_EQUAL T_XOR_EQUAL T_SL_EQUAL T_SR_EQUAL %left '?' ':' %left T_BOOLEAN_OR %left T_BOOLEAN_AND %left '|' %left '^' %left '&' %nonassoc T_IS_EQUAL T_IS_NOT_EQUAL T_IS_IDENTICAL T_IS_NOT_IDENTICAL %nonassoc '<' T_IS_SMALLER_OR_EQUAL '>' T_IS_GREATER_OR_EQUAL %left T_SL T_SR %left '+' '-' '.' %left '*' '/' '%' %right '!' %nonassoc T_INSTANCEOF %right '~' T_INC T_DEC T_INT_CAST T_DOUBLE_CAST T_STRING_CAST T_UNICODE_CAST T_BINARY_CAST T_ARRAY_CAST T_OBJECT_CAST T_BOOL_CAST T_UNSET_CAST '@' %right '[' %nonassoc T_NEW T_CLONE %token T_EXIT %token T_IF %left T_ELSEIF %left T_ELSE %left T_ENDIF %token T_LNUMBER %token T_DNUMBER %token T_STRING %token T_STRING_VARNAME /* unused in XHP: `foo` in `"$foo"` */ %token T_VARIABLE %token T_NUM_STRING /* unused in XHP: `0` in `"$foo[0]"` */ %token T_INLINE_HTML %token T_CHARACTER /* unused in vanilla PHP */ %token T_BAD_CHARACTER /* unused in vanilla PHP */ %token T_ENCAPSED_AND_WHITESPACE /* unused in XHP: ` ` in `" "` */ %token T_CONSTANT_ENCAPSED_STRING /* overloaded in XHP; replaces '"' encaps_list '"' */ %token T_BACKTICKS_EXPR /* new in XHP; replaces '`' backticks_expr '`' */ %token T_ECHO %token T_DO %token T_WHILE %token T_ENDWHILE %token T_FOR %token T_ENDFOR %token T_FOREACH %token T_ENDFOREACH %token T_DECLARE %token T_ENDDECLARE %token T_AS %token T_SWITCH %token T_ENDSWITCH %token T_CASE %token T_DEFAULT %token T_BREAK %token T_CONTINUE %token T_GOTO %token T_FUNCTION %token T_CONST %token T_RETURN %token T_TRY %token T_CATCH %token T_THROW %token T_USE %token T_GLOBAL %right T_STATIC T_ABSTRACT T_FINAL T_PRIVATE T_PROTECTED T_PUBLIC %token T_VAR %token T_UNSET %token T_ISSET %token T_EMPTY %token T_HALT_COMPILER %token T_CLASS %token T_INTERFACE %token T_EXTENDS %token T_IMPLEMENTS %token T_OBJECT_OPERATOR %token T_DOUBLE_ARROW %token T_LIST %token T_ARRAY %token T_CLASS_C %token T_METHOD_C %token T_FUNC_C %token T_LINE %token T_FILE %token T_COMMENT %token T_DOC_COMMENT %token T_OPEN_TAG %token T_OPEN_TAG_WITH_ECHO %token T_OPEN_TAG_FAKE %token T_CLOSE_TAG %token T_WHITESPACE %token T_START_HEREDOC /* unused in XHP; replaced with T_HEREDOC */ %token T_END_HEREDOC /* unused in XHP; replaced with T_HEREDOC */ %token T_HEREDOC /* new in XHP; replaces start_heredoc encaps_list T_END_HEREDOC */ %token T_DOLLAR_OPEN_CURLY_BRACES /* unused in XHP: `${` in `"${foo}"` */ %token T_CURLY_OPEN /* unused in XHP: `{$` in `"{$foo}"` */ %token T_PAAMAYIM_NEKUDOTAYIM %token T_BINARY_DOUBLE /* unsused in XHP: `b"` in `b"foo"` */ %token T_BINARY_HEREDOC /* unsused in XHP: `b<<<` in `b<<appendChild($1); } ; top_statement_list: top_statement_list top_statement { $$ = $1->appendChild($2); } | /* empty */ { $$ = NNEW(n_STATEMENT_LIST); } ; namespace_name: T_STRING { $$ = NTYPE($1, n_SYMBOL_NAME); } | namespace_name T_NS_SEPARATOR T_STRING { $$ = NMORE($1, $3); } ; top_statement: statement | function_declaration_statement | class_declaration_statement | T_HALT_COMPILER '(' ')' ';' { $1 = NSPAN($1, n_HALT_COMPILER, $3); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $4); } | T_NAMESPACE namespace_name ';' { NSPAN($1, n_NAMESPACE, $2); $1->appendChild($2); $1->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $3); } | T_NAMESPACE namespace_name '{' top_statement_list '}' { NSPAN($1, n_NAMESPACE, $5); $1->appendChild($2); $1->appendChild(NEXPAND($3, $4, $5)); $$ = NNEW(n_STATEMENT)->appendChild($1); } | T_NAMESPACE '{' top_statement_list '}' { NSPAN($1, n_NAMESPACE, $4); $1->appendChild(NNEW(n_EMPTY)); NMORE($3, $4); NLMORE($3, $2); $1->appendChild($3); $$ = NNEW(n_STATEMENT)->appendChild($1); } | T_USE use_declarations ';' { NSPAN($1, n_USE, $2); $1->appendChild($2); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $3); } | constant_declaration ';' { $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $2); } ; use_declarations: use_declarations ',' use_declaration { $$ = $1->appendChild($3); } | use_declaration { $$ = NNEW(n_USE_LIST); $$->appendChild($1); } ; use_declaration: namespace_name { $$ = NNEW(n_USE); $$->appendChild($1); $$->appendChild(NNEW(n_EMPTY)); } | namespace_name T_AS T_STRING { $$ = NNEW(n_USE); $$->appendChild($1); NTYPE($3, n_STRING); $$->appendChild($3); } | T_NS_SEPARATOR namespace_name { $$ = NNEW(n_USE); NLMORE($2, $1); $$->appendChild($2); $$->appendChild(NNEW(n_EMPTY)); } | T_NS_SEPARATOR namespace_name T_AS T_STRING { $$ = NNEW(n_USE); NLMORE($2, $1); $$->appendChild($2); NTYPE($4, n_STRING); $$->appendChild($4); } ; constant_declaration: constant_declaration ',' T_STRING '=' static_scalar { NMORE($$, $5); $$->appendChild( NNEW(n_CONSTANT_DECLARATION) ->appendChild(NTYPE($3, n_STRING)) ->appendChild($5)); } | T_CONST T_STRING '=' static_scalar { NSPAN($$, n_CONSTANT_DECLARATION_LIST, $4); $$->appendChild( NNEW(n_CONSTANT_DECLARATION) ->appendChild(NTYPE($2, n_STRING)) ->appendChild($4)); } ; inner_statement_list: inner_statement_list inner_statement { $$ = $1->appendChild($2); } | /* empty */ { $$ = NNEW(n_STATEMENT_LIST); } ; inner_statement: statement | function_declaration_statement | class_declaration_statement | T_HALT_COMPILER '(' ')' ';' { $1 = NSPAN($1, n_HALT_COMPILER, $3); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $4); } ; statement: unticked_statement | T_STRING ':' { NTYPE($1, n_STRING); $$ = NNEW(n_LABEL); $$->appendChild($1); NMORE($$, $2); } | T_OPEN_TAG { $$ = NTYPE($1, n_OPEN_TAG); } | T_OPEN_TAG_WITH_ECHO { $$ = NTYPE($1, n_OPEN_TAG); } | T_CLOSE_TAG { $$ = NTYPE($1, n_CLOSE_TAG); } ; unticked_statement: '{' inner_statement_list '}' { $$ = NEXPAND($1, $2, $3); } | T_IF '(' expr ')' statement elseif_list else_single { $$ = NNEW(n_CONDITION_LIST); $1 = NTYPE($1, n_IF); $1->appendChild(NSPAN($2, n_CONTROL_CONDITION, $4)->appendChild($3)); $1->appendChild($5); $$->appendChild($1); $$->appendChildren($6); // Hacks: merge a list of if (x) { } else if (y) { } into a single condition // list instead of a condition tree. if ($7->type == n_EMPTY) { // Ignore. } else if ($7->type == n_ELSE) { xhpast::Node *stype = $7->firstChild()->firstChild(); if (stype && stype->type == n_CONDITION_LIST) { NTYPE(stype->firstChild(), n_ELSEIF); stype->firstChild()->l_tok = $7->l_tok; $$->appendChildren(stype); } else { $$->appendChild($7); } } else { $$->appendChild($7); } $$ = NNEW(n_STATEMENT)->appendChild($$); } | T_IF '(' expr ')' ':' inner_statement_list new_elseif_list new_else_single T_ENDIF ';' { $$ = NNEW(n_CONDITION_LIST); NTYPE($1, n_IF); $1->appendChild(NSPAN($2, n_CONTROL_CONDITION, $4)->appendChild($3)); $1->appendChild($6); $$->appendChild($1); $$->appendChildren($7); $$->appendChild($8); NMORE($$, $9); $$ = NNEW(n_STATEMENT)->appendChild($$); NMORE($$, $10); } | T_WHILE '(' expr ')' while_statement { NTYPE($1, n_WHILE); $1->appendChild(NSPAN($2, n_CONTROL_CONDITION, $4)->appendChild($3)); $1->appendChild($5); $$ = NNEW(n_STATEMENT)->appendChild($1); } | T_DO statement T_WHILE '(' expr ')' ';' { NTYPE($1, n_DO_WHILE); $1->appendChild($2); $1->appendChild(NSPAN($4, n_CONTROL_CONDITION, $6)->appendChild($5)); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $7); } | T_FOR '(' for_expr ';' for_expr ';' for_expr ')' for_statement { NTYPE($1, n_FOR); NSPAN($2, n_FOR_EXPRESSION, $8) ->appendChild($3) ->appendChild($5) ->appendChild($7); $1->appendChild($2); $1->appendChild($9); $$ = NNEW(n_STATEMENT)->appendChild($1); } | T_SWITCH '(' expr ')' switch_case_list { NTYPE($1, n_SWITCH); $1->appendChild(NSPAN($2, n_CONTROL_CONDITION, $4)->appendChild($3)); $1->appendChild($5); $$ = NNEW(n_STATEMENT)->appendChild($1); } | T_BREAK ';' { NTYPE($1, n_BREAK); $1->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $2); } | T_BREAK expr ';' { NTYPE($1, n_BREAK); $1->appendChild($2); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $3); } | T_CONTINUE ';' { NTYPE($1, n_CONTINUE); $1->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $2); } | T_CONTINUE expr ';' { NTYPE($1, n_CONTINUE); $1->appendChild($2); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $3); } | T_RETURN ';' { NTYPE($1, n_RETURN); $1->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $2); } | T_RETURN expr_without_variable ';' { NTYPE($1, n_RETURN); $1->appendChild($2); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $3); } | T_RETURN variable ';' { NTYPE($1, n_RETURN); $1->appendChild($2); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $3); } | T_GLOBAL global_var_list ';' { NLMORE($2, $1); $$ = NNEW(n_STATEMENT)->appendChild($2); NMORE($$, $3); } | T_STATIC static_var_list ';' { NLMORE($2, $1); $$ = NNEW(n_STATEMENT)->appendChild($2); NMORE($$, $3); } | T_ECHO echo_expr_list ';' { NLMORE($2, $1); $$ = NNEW(n_STATEMENT)->appendChild($2); NMORE($$, $3); } | T_INLINE_HTML { NTYPE($1, n_INLINE_HTML); $$ = $1; } | expr ';' { $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $2); } +| yield_expr ';' { + $$ = NNEW(n_STATEMENT)->appendChild($1); + NMORE($$, $2); + } | T_UNSET '(' unset_variables ')' ';' { NMORE($3, $4); NLMORE($3, $1); $$ = NNEW(n_STATEMENT)->appendChild($3); NMORE($$, $5); } | T_FOREACH '(' variable T_AS foreach_variable foreach_optional_arg ')' foreach_statement { NTYPE($1, n_FOREACH); NSPAN($2, n_FOREACH_EXPRESSION, $7); $2->appendChild($3); if ($6->type == n_EMPTY) { $2->appendChild($6); $2->appendChild($5); } else { $2->appendChild($5); $2->appendChild($6); } $1->appendChild($2); $1->appendChild($8); $$ = NNEW(n_STATEMENT)->appendChild($1); } | T_FOREACH '(' expr_without_variable T_AS variable foreach_optional_arg ')' foreach_statement { NTYPE($1, n_FOREACH); NSPAN($2, n_FOREACH_EXPRESSION, $7); $2->appendChild($3); if ($6->type == n_EMPTY) { $2->appendChild($6); $2->appendChild($5); } else { $2->appendChild($5); $2->appendChild($6); } $1->appendChild($2); $1->appendChild($8); $$ = NNEW(n_STATEMENT)->appendChild($1); } | T_DECLARE '(' declare_list ')' declare_statement { NTYPE($1, n_DECLARE); $1->appendChild($3); $1->appendChild($5); $$ = NNEW(n_STATEMENT)->appendChild($1); } | ';' /* empty statement */ { $$ = NNEW(n_STATEMENT)->appendChild(NNEW(n_EMPTY)); NMORE($$, $1); } -| T_TRY '{' inner_statement_list '}' T_CATCH '(' fully_qualified_class_name T_VARIABLE ')' '{' inner_statement_list '}' additional_catches { +| T_TRY '{' inner_statement_list '}' T_CATCH '(' fully_qualified_class_name T_VARIABLE ')' '{' inner_statement_list '}' additional_catches finally_statement { NTYPE($1, n_TRY); $1->appendChild(NEXPAND($2, $3, $4)); NTYPE($5, n_CATCH); $5->appendChild($7); $5->appendChild(NTYPE($8, n_VARIABLE)); $5->appendChild(NEXPAND($10, $11, $12)); $1->appendChild(NNEW(n_CATCH_LIST)->appendChild($5)->appendChildren($13)); + $1->appendChild($14); $$ = NNEW(n_STATEMENT)->appendChild($1); } | T_THROW expr ';' { NTYPE($1, n_THROW); $1->appendChild($2); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $3); } | T_GOTO T_STRING ';' { NTYPE($1, n_GOTO); NTYPE($2, n_STRING); $1->appendChild($2); $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $3); } ; additional_catches: non_empty_additional_catches | /* empty */ { $$ = NNEW(n_EMPTY); } ; +finally_statement: + /* empty */ { + $$ = NNEW(n_EMPTY); + } +| T_FINALLY '{' inner_statement_list '}' { + NTYPE($1, n_FINALLY); + $1->appendChild($3); + NMORE($1, $4); + $$ = $1; + } +; + + non_empty_additional_catches: additional_catch { $$ = NNEW(n_CATCH_LIST); $$->appendChild($1); } | non_empty_additional_catches additional_catch { $1->appendChild($2); $$ = $1; } ; additional_catch: T_CATCH '(' fully_qualified_class_name T_VARIABLE ')' '{' inner_statement_list '}' { NTYPE($1, n_CATCH); $1->appendChild($3); $1->appendChild(NTYPE($4, n_VARIABLE)); $1->appendChild(NEXPAND($6, $7, $8)); NMORE($1, $8); $$ = $1; } ; unset_variables: unset_variable { $$ = NNEW(n_UNSET_LIST); $$->appendChild($1); } | unset_variables ',' unset_variable { $1->appendChild($3); $$ = $1; } ; unset_variable: variable ; function_declaration_statement: unticked_function_declaration_statement ; class_declaration_statement: unticked_class_declaration_statement ; is_reference: /* empty */ { $$ = NNEW(n_EMPTY); } | '&' { $$ = NTYPE($1, n_REFERENCE); } ; unticked_function_declaration_statement: function is_reference T_STRING '(' parameter_list ')' '{' inner_statement_list '}' { NSPAN($1, n_FUNCTION_DECLARATION, $9); $1->appendChild(NNEW(n_EMPTY)); $1->appendChild($2); $1->appendChild(NTYPE($3, n_STRING)); $1->appendChild(NEXPAND($4, $5, $6)); $$->appendChild(NNEW(n_EMPTY)); $1->appendChild(NEXPAND($7, $8, $9)); $$ = NNEW(n_STATEMENT)->appendChild($1); } ; unticked_class_declaration_statement: class_entry_type T_STRING extends_from implements_list '{' class_statement_list '}' { $$ = NNEW(n_CLASS_DECLARATION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_CLASS_NAME)); $$->appendChild($3); $$->appendChild($4); $$->appendChild(NEXPAND($5, $6, $7)); NMORE($$, $7); $$ = NNEW(n_STATEMENT)->appendChild($$); } | interface_entry T_STRING interface_extends_list '{' class_statement_list '}' { $$ = NNEW(n_INTERFACE_DECLARATION); $$->appendChild(NNEW(n_CLASS_ATTRIBUTES)); NLMORE($$, $1); $$->appendChild(NTYPE($2, n_CLASS_NAME)); $$->appendChild($3); $$->appendChild(NNEW(n_EMPTY)); $$->appendChild(NEXPAND($4, $5, $6)); NMORE($$, $6); $$ = NNEW(n_STATEMENT)->appendChild($$); } ; class_entry_type: T_CLASS { NTYPE($1, n_CLASS_ATTRIBUTES); $$ = $1; } | T_ABSTRACT T_CLASS { NTYPE($2, n_CLASS_ATTRIBUTES); NLMORE($2, $1); $2->appendChild(NTYPE($1, n_STRING)); $$ = $2; } | T_FINAL T_CLASS { NTYPE($2, n_CLASS_ATTRIBUTES); NLMORE($2, $1); $2->appendChild(NTYPE($1, n_STRING)); $$ = $2; } +| T_TRAIT { + $$ = NNEW(n_CLASS_ATTRIBUTES); + $$->appendChild(NTYPE($1, n_STRING)); + } ; extends_from: /* empty */ { $$ = NNEW(n_EMPTY); } | T_EXTENDS fully_qualified_class_name { $$ = NTYPE($1, n_EXTENDS_LIST)->appendChild($2); } ; interface_entry: T_INTERFACE ; interface_extends_list: /* empty */ { $$ = NNEW(n_EMPTY); } | T_EXTENDS interface_list { NTYPE($1, n_EXTENDS_LIST); $1->appendChildren($2); $$ = $1; } ; implements_list: /* empty */ { $$ = NNEW(n_EMPTY); } | T_IMPLEMENTS interface_list { NTYPE($1, n_IMPLEMENTS_LIST); $1->appendChildren($2); $$ = $1; } ; interface_list: fully_qualified_class_name { $$ = NNEW(n_IMPLEMENTS_LIST)->appendChild($1); } | interface_list ',' fully_qualified_class_name { $$ = $1->appendChild($3); } ; foreach_optional_arg: /* empty */ { $$ = NNEW(n_EMPTY); } | T_DOUBLE_ARROW foreach_variable { $$ = $2; } ; foreach_variable: variable | '&' variable { NTYPE($1, n_VARIABLE_REFERENCE); $1->appendChild($2); $$ = $1; } ; for_statement: statement | ':' inner_statement_list T_ENDFOR ';' { NLMORE($2, $1); NMORE($2, $4); $$ = $2; } ; foreach_statement: statement | ':' inner_statement_list T_ENDFOREACH ';' { NLMORE($2, $1); NMORE($2, $4); $$ = $2; } ; declare_statement: statement | ':' inner_statement_list T_ENDDECLARE ';' { NLMORE($2, $1); NMORE($2, $4); $$ = $2; } ; declare_list: T_STRING '=' static_scalar { $$ = NNEW(n_DECLARE_DECLARATION); $$->appendChild(NTYPE($1, n_STRING)); $$->appendChild($3); $$ = NNEW(n_DECLARE_DECLARATION_LIST)->appendChild($$); } | declare_list ',' T_STRING '=' static_scalar { $$ = NNEW(n_DECLARE_DECLARATION); $$->appendChild(NTYPE($3, n_STRING)); $$->appendChild($5); $1->appendChild($$); $$ = $1; } ; switch_case_list: '{' case_list '}' { $$ = NEXPAND($1, $2, $3); } | '{' ';' case_list '}' { // ...why does this rule exist? NTYPE($2, n_STATEMENT); $1->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_STATEMENT_LIST)->appendChild($2); $$->appendChildren($3); NEXPAND($1, $$, $4); } | ':' case_list T_ENDSWITCH ';' { NMORE($2, $4); NLMORE($2, $1); $$ = $2; } | ':' ';' case_list T_ENDSWITCH ';' { NTYPE($2, n_STATEMENT); $1->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_STATEMENT_LIST)->appendChild($2); $$->appendChildren($3); NMORE($$, $5); NLMORE($$, $1); } ; case_list: /* empty */ { $$ = NNEW(n_STATEMENT_LIST); } | case_list T_CASE expr case_separator inner_statement_list { NTYPE($2, n_CASE); $2->appendChild($3); $2->appendChild($5); $1->appendChild($2); $$ = $1; } | case_list T_DEFAULT case_separator inner_statement_list { NTYPE($2, n_DEFAULT); $2->appendChild($4); $1->appendChild($2); $$ = $1; } ; case_separator: ':' | ';' ; while_statement: statement | ':' inner_statement_list T_ENDWHILE ';' { NMORE($2, $4); NLMORE($2, $1); $$ = $2; } ; elseif_list: /* empty */ { $$ = NNEW(n_CONDITION_LIST); } | elseif_list T_ELSEIF '(' expr ')' statement { NTYPE($2, n_ELSEIF); $2->appendChild(NSPAN($3, n_CONTROL_CONDITION, $5)->appendChild($4)); $2->appendChild($6); $$ = $1->appendChild($2); } ; new_elseif_list: /* empty */ { $$ = NNEW(n_CONDITION_LIST); } | new_elseif_list T_ELSEIF '(' expr ')' ':' inner_statement_list { NTYPE($2, n_ELSEIF); $2->appendChild($4); $2->appendChild($7); $$ = $1->appendChild($2); } ; else_single: /* empty */ { $$ = NNEW(n_EMPTY); } | T_ELSE statement { NTYPE($1, n_ELSE); $1->appendChild($2); $$ = $1; } ; new_else_single: /* empty */ { $$ = NNEW(n_EMPTY); } | T_ELSE ':' inner_statement_list { NTYPE($1, n_ELSE); $1->appendChild($3); $$ = $1; } ; parameter_list: non_empty_parameter_list | /* empty */ { $$ = NNEW(n_DECLARATION_PARAMETER_LIST); } ; non_empty_parameter_list: optional_class_type T_VARIABLE { $$ = NNEW(n_DECLARATION_PARAMETER); $$->appendChild($1); $$->appendChild(NTYPE($2, n_VARIABLE)); $$->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_DECLARATION_PARAMETER_LIST)->appendChild($$); } | optional_class_type '&' T_VARIABLE { $$ = NNEW(n_DECLARATION_PARAMETER); $$->appendChild($1); $$->appendChild(NTYPE($2, n_VARIABLE_REFERENCE)); $2->appendChild(NTYPE($3, n_VARIABLE)); $$->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_DECLARATION_PARAMETER_LIST)->appendChild($$); } | optional_class_type '&' T_VARIABLE '=' static_scalar { $$ = NNEW(n_DECLARATION_PARAMETER); $$->appendChild($1); $$->appendChild(NTYPE($2, n_VARIABLE_REFERENCE)); $2->appendChild(NTYPE($3, n_VARIABLE)); $$->appendChild($5); $$ = NNEW(n_DECLARATION_PARAMETER_LIST)->appendChild($$); } | optional_class_type T_VARIABLE '=' static_scalar { $$ = NNEW(n_DECLARATION_PARAMETER); $$->appendChild($1); $$->appendChild(NTYPE($2, n_VARIABLE)); $$->appendChild($4); $$ = NNEW(n_DECLARATION_PARAMETER_LIST)->appendChild($$); } | non_empty_parameter_list ',' optional_class_type T_VARIABLE { $$ = NNEW(n_DECLARATION_PARAMETER); $$->appendChild($3); $$->appendChild(NTYPE($4, n_VARIABLE)); $$->appendChild(NNEW(n_EMPTY)); $$ = $1->appendChild($$); } | non_empty_parameter_list ',' optional_class_type '&' T_VARIABLE { $$ = NNEW(n_DECLARATION_PARAMETER); $$->appendChild($3); $$->appendChild(NTYPE($4, n_VARIABLE_REFERENCE)); $4->appendChild(NTYPE($5, n_VARIABLE)); $$->appendChild(NNEW(n_EMPTY)); $$ = $1->appendChild($$); } | non_empty_parameter_list ',' optional_class_type '&' T_VARIABLE '=' static_scalar { $$ = NNEW(n_DECLARATION_PARAMETER); $$->appendChild($3); $$->appendChild(NTYPE($4, n_VARIABLE_REFERENCE)); $4->appendChild(NTYPE($5, n_VARIABLE)); $$->appendChild($7); $$ = $1->appendChild($$); } | non_empty_parameter_list ',' optional_class_type T_VARIABLE '=' static_scalar { $$ = NNEW(n_DECLARATION_PARAMETER); $$->appendChild($3); $$->appendChild(NTYPE($4, n_VARIABLE)); $$->appendChild($6); $$ = $1->appendChild($$); } ; optional_class_type: /* empty */ { $$ = NNEW(n_EMPTY); } | fully_qualified_class_name { $$ = $1; } | T_ARRAY { $$ = NTYPE($1, n_TYPE_NAME); } +| T_CALLABLE { + $$ = NTYPE($1, n_TYPE_NAME); + } ; function_call_parameter_list: non_empty_function_call_parameter_list | /* empty */ { $$ = NNEW(n_CALL_PARAMETER_LIST); } ; non_empty_function_call_parameter_list: expr_without_variable { $$ = NNEW(n_CALL_PARAMETER_LIST)->appendChild($1); } | variable { $$ = NNEW(n_CALL_PARAMETER_LIST)->appendChild($1); } | '&' w_variable { NTYPE($1, n_VARIABLE_REFERENCE); $1->appendChild($2); $$ = NNEW(n_CALL_PARAMETER_LIST)->appendChild($1); } | non_empty_function_call_parameter_list ',' expr_without_variable { $$ = $1->appendChild($3); } | non_empty_function_call_parameter_list ',' variable { $$ = $1->appendChild($3); } | non_empty_function_call_parameter_list ',' '&' w_variable { $$ = $1->appendChild($3); } ; global_var_list: global_var_list ',' global_var { $1->appendChild($3); $$ = $1; } | global_var { $$ = NNEW(n_GLOBAL_DECLARATION_LIST); $$->appendChild($1); } ; global_var: T_VARIABLE { $$ = NTYPE($1, n_VARIABLE); } | '$' r_variable { $$ = NTYPE($1, n_VARIABLE_VARIABLE); $$->appendChild($2); } | '$' '{' expr '}' { $$ = NTYPE($1, n_VARIABLE_VARIABLE); $$->appendChild($3); } ; static_var_list: static_var_list ',' T_VARIABLE { NTYPE($3, n_VARIABLE); $$ = NNEW(n_STATIC_DECLARATION); $$->appendChild($3); $$->appendChild(NNEW(n_EMPTY)); $$ = $1->appendChild($$); } | static_var_list ',' T_VARIABLE '=' static_scalar { NTYPE($3, n_VARIABLE); $$ = NNEW(n_STATIC_DECLARATION); $$->appendChild($3); $$->appendChild($5); $$ = $1->appendChild($$); } | T_VARIABLE { NTYPE($1, n_VARIABLE); $$ = NNEW(n_STATIC_DECLARATION); $$->appendChild($1); $$->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_STATIC_DECLARATION_LIST)->appendChild($$); } | T_VARIABLE '=' static_scalar { NTYPE($1, n_VARIABLE); $$ = NNEW(n_STATIC_DECLARATION); $$->appendChild($1); $$->appendChild($3); $$ = NNEW(n_STATIC_DECLARATION_LIST)->appendChild($$); } ; class_statement_list: class_statement_list class_statement { $$ = $1->appendChild($2); } | /* empty */ { $$ = NNEW(n_STATEMENT_LIST); } ; class_statement: variable_modifiers class_variable_declaration ';' { $$ = NNEW(n_CLASS_MEMBER_DECLARATION_LIST); $$->appendChild($1); $$->appendChildren($2); $$ = NNEW(n_STATEMENT)->appendChild($$); NMORE($$, $3); } | class_constant_declaration ';' { $$ = NNEW(n_STATEMENT)->appendChild($1); NMORE($$, $2); } +| trait_use_statement { + $$ = $1; + } | method_modifiers function { yyextra->old_expecting_xhp_class_statements = yyextra->expecting_xhp_class_statements; yyextra->expecting_xhp_class_statements = false; } is_reference T_STRING '(' parameter_list ')' method_body { yyextra->expecting_xhp_class_statements = yyextra->old_expecting_xhp_class_statements; $$ = NNEW(n_METHOD_DECLARATION); $$->appendChild($1); $$->appendChild($4); $$->appendChild(NTYPE($5, n_STRING)); $$->appendChild(NEXPAND($6, $7, $8)); $$->appendChild(NNEW(n_EMPTY)); $$->appendChild($9); $$ = NNEW(n_STATEMENT)->appendChild($$); } ; +trait_use_statement: + T_USE trait_list trait_adaptations { + $$ = NTYPE($1, n_TRAIT_USE); + $$->appendChildren($2); + $$->appendChild($3); + } +; + +trait_list: + fully_qualified_class_name { + $$ = NNEW(n_TRAIT_USE_LIST)->appendChild($1); + } +| trait_list ',' fully_qualified_class_name { + $$ = $1->appendChild($3); + } +; + +trait_adaptations: + ';' { + $$ = NNEW(n_EMPTY); + } +| '{' trait_adaptation_list '}' { + $$ = NEXPAND($1, $2, $3); + } +; + +trait_adaptation_list: + /* empty */ { + $$ = NNEW(n_TRAIT_ADAPTATION_LIST); + } +| non_empty_trait_adaptation_list { + $$ = $1; + } +; + +non_empty_trait_adaptation_list: + trait_adaptation_statement { + $$ = NNEW(n_TRAIT_ADAPTATION_LIST); + $$->appendChild($1); + } +| non_empty_trait_adaptation_list trait_adaptation_statement { + $1->appendChild($2); + $$ = $1; + } +; + +trait_adaptation_statement: + trait_precedence ';' { + $$ = NMORE($1, $2); + } +| trait_alias ';' { + $$ = NMORE($1, $2); + } +; + +trait_precedence: + trait_method_reference_fully_qualified T_INSTEADOF trait_reference_list { + $$ = NNEW(n_TRAIT_INSTEADOF); + $$->appendChild($1); + $$->appendChild($3); + } +; + +trait_reference_list: + fully_qualified_class_name { + $$ = NNEW(n_TRAIT_REFERENCE_LIST); + $$->appendChild($1); + } +| trait_reference_list ',' fully_qualified_class_name { + $1->appendChild($3); + $$ = $1; + } +; + +trait_method_reference: + T_STRING { + $$ = NNEW(n_TRAIT_METHOD_REFERENCE); + $$->appendChild(NTYPE($1, n_STRING)); + } +| trait_method_reference_fully_qualified { + $$ = $1; + } +; + +trait_method_reference_fully_qualified: + fully_qualified_class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING { + NTYPE($2, n_TRAIT_METHOD_REFERENCE); + NEXPAND($1, $2, NTYPE($3, n_STRING)); + $$ = $2; + } +; + +trait_alias: + trait_method_reference T_AS trait_modifiers T_STRING { + $$ = NNEW(n_TRAIT_AS); + $$->appendChild($1); + $$->appendChild($3); + $$->appendChild(NTYPE($4, n_STRING)); + } +| trait_method_reference T_AS member_modifier { + $$ = NNEW(n_TRAIT_AS); + $$->appendChild($1); + $$->appendChild($3); + $$->appendChild(NNEW(n_EMPTY)); + } +; + +trait_modifiers: + /* empty */ { + $$ = NNEW(n_EMPTY); + } +| member_modifier { + $$ = NNEW(n_METHOD_MODIFIER_LIST); + $$->appendChild(NTYPE($1, n_STRING)); + } +; + + method_body: ';' /* abstract method */ { $$ = NNEW(n_EMPTY); } | '{' inner_statement_list '}' { $$ = NEXPAND($1, $2, $3); } ; variable_modifiers: non_empty_member_modifiers | T_VAR { $$ = NNEW(n_CLASS_MEMBER_MODIFIER_LIST); $$->appendChild(NTYPE($1, n_STRING)); } ; method_modifiers: /* empty */ { $$ = NNEW(n_METHOD_MODIFIER_LIST); } | non_empty_member_modifiers { NTYPE($1, n_METHOD_MODIFIER_LIST); $$ = $1; } ; non_empty_member_modifiers: member_modifier { $$ = NNEW(n_CLASS_MEMBER_MODIFIER_LIST); $$->appendChild(NTYPE($1, n_STRING)); } | non_empty_member_modifiers member_modifier { $$ = $1->appendChild(NTYPE($2, n_STRING)); } ; member_modifier: T_PUBLIC | T_PROTECTED | T_PRIVATE | T_STATIC | T_ABSTRACT | T_FINAL ; class_variable_declaration: class_variable_declaration ',' T_VARIABLE { $$ = NNEW(n_CLASS_MEMBER_DECLARATION); $$->appendChild(NTYPE($3, n_VARIABLE)); $$->appendChild(NNEW(n_EMPTY)); $$ = $1->appendChild($$); } | class_variable_declaration ',' T_VARIABLE '=' static_scalar { $$ = NNEW(n_CLASS_MEMBER_DECLARATION); $$->appendChild(NTYPE($3, n_VARIABLE)); $$->appendChild($5); $$ = $1->appendChild($$); } | T_VARIABLE { $$ = NNEW(n_CLASS_MEMBER_DECLARATION); $$->appendChild(NTYPE($1, n_VARIABLE)); $$->appendChild(NNEW(n_EMPTY)); $$ = NNEW(n_CLASS_MEMBER_DECLARATION_LIST)->appendChild($$); } | T_VARIABLE '=' static_scalar { $$ = NNEW(n_CLASS_MEMBER_DECLARATION); $$->appendChild(NTYPE($1, n_VARIABLE)); $$->appendChild($3); $$ = NNEW(n_CLASS_MEMBER_DECLARATION_LIST)->appendChild($$); } ; class_constant_declaration: class_constant_declaration ',' T_STRING '=' static_scalar { $$ = NNEW(n_CLASS_CONSTANT_DECLARATION); $$->appendChild(NTYPE($3, n_STRING)); $$->appendChild($5); $1->appendChild($$); $$ = $1; } | T_CONST T_STRING '=' static_scalar { NTYPE($1, n_CLASS_CONSTANT_DECLARATION_LIST); $$ = NNEW(n_CLASS_CONSTANT_DECLARATION); $$->appendChild(NTYPE($2, n_STRING)); $$->appendChild($4); $1->appendChild($$); $$ = $1; } ; echo_expr_list: echo_expr_list ',' expr { $1->appendChild($3); } | expr { $$ = NNEW(n_ECHO_LIST); $$->appendChild($1); } ; for_expr: /* empty */ { $$ = NNEW(n_EMPTY); } | non_empty_for_expr ; non_empty_for_expr: non_empty_for_expr ',' expr { $1->appendChild($3); } | expr { $$ = NNEW(n_EXPRESSION_LIST); $$->appendChild($1); } ; expr_without_variable: T_LIST '(' assignment_list ')' '=' expr { NTYPE($1, n_LIST); $1->appendChild(NEXPAND($2, $3, $4)); $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($5, n_OPERATOR)); $$->appendChild($6); } | variable '=' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable '=' '&' variable { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); NTYPE($3, n_VARIABLE_REFERENCE); $3->appendChild($4); $$->appendChild($3); } | variable '=' '&' T_NEW class_name_reference ctor_arguments { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); NTYPE($4, n_NEW); $4->appendChild($5); $4->appendChild($6); NTYPE($3, n_VARIABLE_REFERENCE); $3->appendChild($4); $$->appendChild($3); } | T_NEW class_name_reference ctor_arguments { NTYPE($1, n_NEW); $1->appendChild($2); $1->appendChild($3); $$ = $1; } | T_CLONE expr { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | variable T_PLUS_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_MINUS_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_MUL_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_DIV_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_CONCAT_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_MOD_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_AND_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_OR_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_XOR_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_SL_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | variable T_SR_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | rw_variable T_INC { $$ = NNEW(n_UNARY_POSTFIX_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); } | T_INC rw_variable { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | rw_variable T_DEC { $$ = NNEW(n_UNARY_POSTFIX_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); } | T_DEC rw_variable { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | expr T_BOOLEAN_OR expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_BOOLEAN_AND expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_LOGICAL_OR expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_LOGICAL_AND expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_LOGICAL_XOR expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '|' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '&' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '^' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '.' expr { /* The concatenation operator generates n_CONCATENATION_LIST instead of n_BINARY_EXPRESSION because we tend to run into stack depth issues in a lot of real-world cases otherwise (e.g., in PHP and JSON decoders). */ if ($1->type == n_CONCATENATION_LIST && $3->type == n_CONCATENATION_LIST) { $1->appendChild(NTYPE($2, n_OPERATOR)); $1->appendChildren($3); $$ = $1; } else if ($1->type == n_CONCATENATION_LIST) { $1->appendChild(NTYPE($2, n_OPERATOR)); $1->appendChild($3); $$ = $1; } else if ($3->type == n_CONCATENATION_LIST) { $$ = NNEW(n_CONCATENATION_LIST); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChildren($3); } else { $$ = NNEW(n_CONCATENATION_LIST); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } } | expr '+' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '-' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '*' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '/' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '%' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_SL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_SR expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | '+' expr %prec T_INC { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | '-' expr %prec T_INC { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | '!' expr { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | '~' expr { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | expr T_IS_IDENTICAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_IS_NOT_IDENTICAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_IS_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_IS_NOT_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '<' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_IS_SMALLER_OR_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr '>' expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_IS_GREATER_OR_EQUAL expr { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | expr T_INSTANCEOF class_name_reference { $$ = NNEW(n_BINARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NTYPE($2, n_OPERATOR)); $$->appendChild($3); } | '(' expr ')' { NSPAN($1, n_PARENTHETICAL_EXPRESSION, $3); $1->appendChild($2); $$ = $1; } | expr '?' expr ':' expr { $$ = NNEW(n_TERNARY_EXPRESSION); $$->appendChild($1); $$->appendChild($3); $$->appendChild($5); } | expr '?' ':' expr { $$ = NNEW(n_TERNARY_EXPRESSION); $$->appendChild($1); $$->appendChild(NNEW(n_EMPTY)); $$->appendChild($4); } | internal_functions_in_yacc | T_INT_CAST expr { $$ = NNEW(n_CAST_EXPRESSION); $$->appendChild(NTYPE($1, n_CAST)); $$->appendChild($2); } | T_DOUBLE_CAST expr { $$ = NNEW(n_CAST_EXPRESSION); $$->appendChild(NTYPE($1, n_CAST)); $$->appendChild($2); } | T_STRING_CAST expr { $$ = NNEW(n_CAST_EXPRESSION); $$->appendChild(NTYPE($1, n_CAST)); $$->appendChild($2); } | T_ARRAY_CAST expr { $$ = NNEW(n_CAST_EXPRESSION); $$->appendChild(NTYPE($1, n_CAST)); $$->appendChild($2); } | T_OBJECT_CAST expr { $$ = NNEW(n_CAST_EXPRESSION); $$->appendChild(NTYPE($1, n_CAST)); $$->appendChild($2); } | T_BOOL_CAST expr { $$ = NNEW(n_CAST_EXPRESSION); $$->appendChild(NTYPE($1, n_CAST)); $$->appendChild($2); } | T_UNSET_CAST expr { $$ = NNEW(n_CAST_EXPRESSION); $$->appendChild(NTYPE($1, n_CAST)); $$->appendChild($2); } | T_EXIT exit_expr { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | '@' expr { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | T_ARRAY '(' array_pair_list ')' { NTYPE($1, n_ARRAY_LITERAL); $1->appendChild($3); NMORE($1, $4); $$ = $1; } +| '[' array_pair_list ']' { + NTYPE($1, n_ARRAY_LITERAL); + $1->appendChild($2); + NMORE($1, $3); + $$ = $1; + } | T_BACKTICKS_EXPR { NTYPE($1, n_BACKTICKS_EXPRESSION); $$ = $1; } | scalar | T_PRINT expr { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } +| T_YIELD { + NTYPE($1, n_YIELD); + $1->appendChild(NNEW(n_EMPTY)); + $1->appendChild(NNEW(n_EMPTY)); + $$ = $1; + } +| '(' yield_expr ')' { + $$ = NEXPAND($1, $2, $3); + } | function is_reference '(' parameter_list ')' lexical_vars '{' inner_statement_list '}' { NSPAN($1, n_FUNCTION_DECLARATION, $9); $1->appendChild(NNEW(n_EMPTY)); $1->appendChild($2); $1->appendChild(NNEW(n_EMPTY)); $1->appendChild(NEXPAND($3, $4, $5)); $$->appendChild($6); $1->appendChild(NEXPAND($7, $8, $9)); $$ = $1; } | T_STATIC function is_reference '(' parameter_list ')' lexical_vars '{' inner_statement_list '}' { NSPAN($2, n_FUNCTION_DECLARATION, $10); NLMORE($2, $1); $$ = NNEW(n_FUNCTION_MODIFIER_LIST); $$->appendChild(NTYPE($1, n_STRING)); $2->appendChild($1); $2->appendChild(NNEW(n_EMPTY)); $2->appendChild($3); $2->appendChild(NNEW(n_EMPTY)); $2->appendChild(NEXPAND($4, $5, $6)); $2->appendChild($7); $2->appendChild(NEXPAND($8, $9, $10)); $$ = $2; } ; +yield_expr: + T_YIELD expr_without_variable { + NTYPE($1, n_YIELD); + $2->appendChild(NNEW(n_EMPTY)); + $1->appendChild($2); + $$ = $1; + } +| T_YIELD variable { + NTYPE($1, n_YIELD); + $2->appendChild(NNEW(n_EMPTY)); + $1->appendChild($2); + $$ = $1; + } +| T_YIELD expr T_DOUBLE_ARROW expr_without_variable { + NTYPE($1, n_YIELD); + $1->appendChild($2); + $1->appendChild($4); + $$ = $1; + } +| T_YIELD expr T_DOUBLE_ARROW variable { + NTYPE($1, n_YIELD); + $1->appendChild($2); + $1->appendChild($4); + $$ = $1; + } +; + function: T_FUNCTION ; lexical_vars: /* empty */ { $$ = NNEW(n_EMPTY); } | T_USE '(' lexical_var_list ')' { NTYPE($1, n_LEXICAL_VARIABLE_LIST); $1->appendChildren($3); $$ = $1; } ; lexical_var_list: lexical_var_list ',' T_VARIABLE { $$ = $1->appendChild(NTYPE($3, n_VARIABLE)); } | lexical_var_list ',' '&' T_VARIABLE { NTYPE($3, n_VARIABLE_REFERENCE); $3->appendChild(NTYPE($4, n_VARIABLE)); $$ = $1->appendChild($3); } | T_VARIABLE { $$ = NNEW(n_LEXICAL_VARIABLE_LIST); $$->appendChild(NTYPE($1, n_VARIABLE)); } | '&' T_VARIABLE { NTYPE($1, n_VARIABLE_REFERENCE); $1->appendChild(NTYPE($2, n_VARIABLE)); $$ = NNEW(n_LEXICAL_VARIABLE_LIST); $$->appendChild($1); } ; function_call: namespace_name '(' function_call_parameter_list ')' { $$ = NNEW(n_FUNCTION_CALL); $$->appendChild($1); $$->appendChild(NEXPAND($2, $3, $4)); } | T_NAMESPACE T_NS_SEPARATOR namespace_name '(' function_call_parameter_list ')' { NLMORE($3, $1); $$ = NNEW(n_FUNCTION_CALL); $$->appendChild($3); $$->appendChild(NEXPAND($4, $5, $6)); } | T_NS_SEPARATOR namespace_name '(' function_call_parameter_list ')' { NLMORE($2, $1); $$ = NNEW(n_FUNCTION_CALL); $$->appendChild($2); $$->appendChild(NEXPAND($3, $4, $5)); } | class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING '(' function_call_parameter_list ')' { $$ = NNEW(n_CLASS_STATIC_ACCESS); $$->appendChild($1); $$->appendChild(NTYPE($3, n_STRING)); $$ = NNEW(n_FUNCTION_CALL)->appendChild($$); $$->appendChild(NEXPAND($4, $5, $6)); } | variable_class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING '(' function_call_parameter_list ')' { $$ = NNEW(n_CLASS_STATIC_ACCESS); $$->appendChild($1); $$->appendChild(NTYPE($3, n_STRING)); $$ = NNEW(n_FUNCTION_CALL)->appendChild($$); $$->appendChild(NEXPAND($4, $5, $6)); } | variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects '(' function_call_parameter_list ')' { $$ = NNEW(n_CLASS_STATIC_ACCESS); $$->appendChild($1); $$->appendChild(NTYPE($3, n_STRING)); $$ = NNEW(n_FUNCTION_CALL)->appendChild($$); $$->appendChild(NEXPAND($4, $5, $6)); } | class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects '(' function_call_parameter_list ')' { $$ = NNEW(n_CLASS_STATIC_ACCESS); $$->appendChild($1); $$->appendChild(NTYPE($3, n_STRING)); $$ = NNEW(n_FUNCTION_CALL)->appendChild($$); $$->appendChild(NEXPAND($4, $5, $6)); } | variable_without_objects '(' function_call_parameter_list ')' { $$ = NNEW(n_FUNCTION_CALL); $$->appendChild($1); $$->appendChild(NEXPAND($2, $3, $4)); } ; class_name: T_STATIC { $$ = NTYPE($1, n_CLASS_NAME); } | namespace_name { $$ = NTYPE($1, n_CLASS_NAME); } | T_NAMESPACE T_NS_SEPARATOR namespace_name { NLMORE($3, $1); $$ = NTYPE($3, n_CLASS_NAME); } | T_NS_SEPARATOR namespace_name { NLMORE($2, $1); $$ = NTYPE($2, n_CLASS_NAME); } ; fully_qualified_class_name: namespace_name { $$ = NTYPE($1, n_CLASS_NAME); } | T_NAMESPACE T_NS_SEPARATOR namespace_name { NLMORE($3, $1); $$ = NTYPE($3, n_CLASS_NAME); } | T_NS_SEPARATOR namespace_name { NLMORE($2, $1); $$ = NTYPE($2, n_CLASS_NAME); } ; class_name_reference: class_name | dynamic_class_name_reference ; dynamic_class_name_reference: base_variable T_OBJECT_OPERATOR object_property dynamic_class_name_variable_properties { $$ = NNEW(n_OBJECT_PROPERTY_ACCESS); $$->appendChild($1); $$->appendChild($3); for (xhpast::node_list_t::iterator ii = $4->children.begin(); ii != $4->children.end(); ++ii) { $$ = NNEW(n_OBJECT_PROPERTY_ACCESS)->appendChild($$); $$->appendChild(*ii); } } | base_variable ; dynamic_class_name_variable_properties: dynamic_class_name_variable_properties dynamic_class_name_variable_property { $$ = $1->appendChild($2); } | /* empty */ { $$ = NNEW(n_EMPTY); } ; dynamic_class_name_variable_property: T_OBJECT_OPERATOR object_property { $$ = $2; } ; exit_expr: /* empty */ { $$ = NNEW(n_EMPTY); } | '(' ')' { NSPAN($1, n_EMPTY, $2); $$ = $1; } | '(' expr ')' { NSPAN($1, n_PARENTHETICAL_EXPRESSION, $3); $1->appendChild($2); $$ = $1; } ; ctor_arguments: /* empty */ { $$ = NNEW(n_EMPTY); } | '(' function_call_parameter_list ')' { $$ = NEXPAND($1, $2, $3); } ; common_scalar: T_LNUMBER { $$ = NTYPE($1, n_NUMERIC_SCALAR); } | T_DNUMBER { $$ = NTYPE($1, n_NUMERIC_SCALAR); } | T_CONSTANT_ENCAPSED_STRING { $$ = NTYPE($1, n_STRING_SCALAR); } | T_LINE { $$ = NTYPE($1, n_MAGIC_SCALAR); } | T_FILE { $$ = NTYPE($1, n_MAGIC_SCALAR); } | T_DIR { $$ = NTYPE($1, n_MAGIC_SCALAR); } | T_CLASS_C { $$ = NTYPE($1, n_MAGIC_SCALAR); } | T_METHOD_C { $$ = NTYPE($1, n_MAGIC_SCALAR); } +| T_TRAIT_C { + $$ = NTYPE($1, n_MAGIC_SCALAR); + } | T_FUNC_C { $$ = NTYPE($1, n_MAGIC_SCALAR); } | T_NS_C { $$ = NTYPE($1, n_MAGIC_SCALAR); } | T_HEREDOC { $$ = NTYPE($1, n_HEREDOC); } ; static_scalar: /* compile-time evaluated scalars */ common_scalar | namespace_name | T_NAMESPACE T_NS_SEPARATOR namespace_name { NLMORE($3, $1); $$ = $3; } | T_NS_SEPARATOR namespace_name { NLMORE($2, $1); $$ = $2; } | '+' static_scalar { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | '-' static_scalar { $$ = NNEW(n_UNARY_PREFIX_EXPRESSION); $$->appendChild(NTYPE($1, n_OPERATOR)); $$->appendChild($2); } | T_ARRAY '(' static_array_pair_list ')' { NTYPE($1, n_ARRAY_LITERAL); $1->appendChild($3); NMORE($1, $4); $$ = $1; } +| '[' static_array_pair_list ']' { + NTYPE($1, n_ARRAY_LITERAL); + $1->appendChild($2); + NMORE($1, $3); + $$ = $1; + } | static_class_constant ; static_class_constant: class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING { $$ = NNEW(n_CLASS_STATIC_ACCESS); $$->appendChild($1); $$->appendChild(NTYPE($3, n_STRING)); } ; scalar: T_STRING_VARNAME | class_constant | namespace_name | T_NAMESPACE T_NS_SEPARATOR namespace_name { $$ = NLMORE($3, $1); } | T_NS_SEPARATOR namespace_name { $$ = NLMORE($2, $1); } | common_scalar ; static_array_pair_list: /* empty */ { $$ = NNEW(n_ARRAY_VALUE_LIST); } | non_empty_static_array_pair_list possible_comma { $$ = NMORE($1, $2); } ; possible_comma: /* empty */ { $$ = NNEW(n_EMPTY); } | ',' ; non_empty_static_array_pair_list: non_empty_static_array_pair_list ',' static_scalar T_DOUBLE_ARROW static_scalar { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild($3); $$->appendChild($5); $$ = $1->appendChild($$); } | non_empty_static_array_pair_list ',' static_scalar { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild(NNEW(n_EMPTY)); $$->appendChild($3); $$ = $1->appendChild($$); } | static_scalar T_DOUBLE_ARROW static_scalar { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild($1); $$->appendChild($3); $$ = NNEW(n_ARRAY_VALUE_LIST)->appendChild($$); } | static_scalar { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild(NNEW(n_EMPTY)); $$->appendChild($1); $$ = NNEW(n_ARRAY_VALUE_LIST)->appendChild($$); } ; expr: r_variable | expr_without_variable ; r_variable: variable ; w_variable: variable ; rw_variable: variable ; variable: base_variable_with_function_calls T_OBJECT_OPERATOR object_property method_or_not variable_properties { $$ = NNEW(n_OBJECT_PROPERTY_ACCESS); $$->appendChild($1); $$->appendChild($3); if ($4->type != n_EMPTY) { $$ = NNEW(n_METHOD_CALL)->appendChild($$); $$->appendChild($4); } for (xhpast::node_list_t::iterator ii = $5->children.begin(); ii != $5->children.end(); ++ii) { if ((*ii)->type == n_CALL_PARAMETER_LIST) { $$ = NNEW(n_METHOD_CALL)->appendChild($$); $$->appendChild((*ii)); } else { $$ = NNEW(n_OBJECT_PROPERTY_ACCESS)->appendChild($$); $$->appendChild((*ii)); } } } | base_variable_with_function_calls ; variable_properties: variable_properties variable_property { $$ = $1->appendChildren($2); } | /* empty */ { $$ = NNEW(n_EMPTY); } ; variable_property: T_OBJECT_OPERATOR object_property method_or_not { $$ = NNEW(n_EMPTY); $$->appendChild($2); if ($3->type != n_EMPTY) { $$->appendChild($3); } } ; method_or_not: '(' function_call_parameter_list ')' { $$ = NEXPAND($1, $2, $3); } | /* empty */ { $$ = NNEW(n_EMPTY); } ; variable_without_objects: reference_variable | simple_indirect_reference reference_variable { xhpast::Node *last = $1; NMORE($1, $2); while (last->firstChild() && last->firstChild()->type == n_VARIABLE_VARIABLE) { NMORE(last, $2); last = last->firstChild(); } last->appendChild($2); $$ = $1; } ; static_member: class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects { $$ = NNEW(n_CLASS_STATIC_ACCESS); $$->appendChild($1); $$->appendChild($3); } | variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects { $$ = NNEW(n_CLASS_STATIC_ACCESS); $$->appendChild($1); $$->appendChild($3); } ; variable_class_name: reference_variable ; base_variable_with_function_calls: base_variable | function_call ; base_variable: reference_variable | simple_indirect_reference reference_variable { xhpast::Node *last = $1; NMORE($1, $2); while (last->firstChild() && last->firstChild()->type == n_VARIABLE_VARIABLE) { NMORE(last, $2); last = last->firstChild(); } last->appendChild($2); $$ = $1; } | static_member ; reference_variable: reference_variable '[' dim_offset ']' { $$ = NNEW(n_INDEX_ACCESS); $$->appendChild($1); $$->appendChild($3); NMORE($$, $4); } | reference_variable '{' expr '}' { $$ = NNEW(n_INDEX_ACCESS); $$->appendChild($1); $$->appendChild($3); NMORE($$, $4); } | compound_variable ; compound_variable: T_VARIABLE { NTYPE($1, n_VARIABLE); } | '$' '{' expr '}' { NSPAN($1, n_VARIABLE_EXPRESSION, $4); $1->appendChild($3); $$ = $1; } ; dim_offset: /* empty */ { $$ = NNEW(n_EMPTY); } | expr { $$ = $1; } ; object_property: object_dim_list | variable_without_objects ; object_dim_list: object_dim_list '[' dim_offset ']' { $$ = NNEW(n_INDEX_ACCESS); $$->appendChild($1); $$->appendChild($3); NMORE($$, $4) } | object_dim_list '{' expr '}' { $$ = NNEW(n_INDEX_ACCESS); $$->appendChild($1); $$->appendChild($3); NMORE($$, $4); } | variable_name ; variable_name: T_STRING { NTYPE($1, n_STRING); $$ = $1; } | '{' expr '}' { $$ = NEXPAND($1, $2, $3); } ; simple_indirect_reference: '$' { $$ = NTYPE($1, n_VARIABLE_VARIABLE); } | simple_indirect_reference '$' { $2 = NTYPE($2, n_VARIABLE_VARIABLE); xhpast::Node *last = $1; while (last->firstChild() && last->firstChild()->type == n_VARIABLE_VARIABLE) { last = last->firstChild(); } last->appendChild($2); $$ = $1; } ; assignment_list: assignment_list ',' assignment_list_element { $$ = $1->appendChild($3); } | assignment_list_element { $$ = NNEW(n_ASSIGNMENT_LIST); $$->appendChild($1); } ; assignment_list_element: variable | T_LIST '(' assignment_list ')' { $$ = NNEW(n_LIST); $$->appendChild($3); NMORE($$, $4); } | /* empty */ { $$ = NNEW(n_EMPTY); } ; array_pair_list: /* empty */ { $$ = NNEW(n_ARRAY_VALUE_LIST); } | non_empty_array_pair_list possible_comma { $$ = NMORE($1, $2); } ; non_empty_array_pair_list: non_empty_array_pair_list ',' expr T_DOUBLE_ARROW expr { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild($3); $$->appendChild($5); $$ = $1->appendChild($$); } | non_empty_array_pair_list ',' expr { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild(NNEW(n_EMPTY)); $$->appendChild($3); $$ = $1->appendChild($$); } | expr T_DOUBLE_ARROW expr { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild($1); $$->appendChild($3); $$ = NNEW(n_ARRAY_VALUE_LIST)->appendChild($$); } | expr { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild(NNEW(n_EMPTY)); $$->appendChild($1); $$ = NNEW(n_ARRAY_VALUE_LIST)->appendChild($$); } | non_empty_array_pair_list ',' expr T_DOUBLE_ARROW '&' w_variable { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild($3); $$->appendChild(NTYPE($5, n_VARIABLE_REFERENCE)->appendChild($6)); $$ = $1->appendChild($$); } | non_empty_array_pair_list ',' '&' w_variable { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild(NNEW(n_EMPTY)); $$->appendChild(NTYPE($3, n_VARIABLE_REFERENCE)->appendChild($4)); $$ = $1->appendChild($$); } | expr T_DOUBLE_ARROW '&' w_variable { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild($1); $$->appendChild(NTYPE($3, n_VARIABLE_REFERENCE)->appendChild($4)); $$ = NNEW(n_ARRAY_VALUE_LIST)->appendChild($$); } | '&' w_variable { $$ = NNEW(n_ARRAY_VALUE); $$->appendChild(NNEW(n_EMPTY)); $$->appendChild(NTYPE($1, n_VARIABLE_REFERENCE)->appendChild($2)); $$ = NNEW(n_ARRAY_VALUE_LIST)->appendChild($$); } ; internal_functions_in_yacc: T_ISSET '(' isset_variables ')' { NTYPE($1, n_SYMBOL_NAME); NSPAN($2, n_CALL_PARAMETER_LIST, $4); $2->appendChildren($3); $$ = NNEW(n_FUNCTION_CALL); $$->appendChild($1); $$->appendChild($2); } | T_EMPTY '(' variable ')' { NTYPE($1, n_SYMBOL_NAME); NSPAN($2, n_CALL_PARAMETER_LIST, $4); $2->appendChild($3); $$ = NNEW(n_FUNCTION_CALL); $$->appendChild($1); $$->appendChild($2); } | T_INCLUDE expr { $$ = NTYPE($1, n_INCLUDE_FILE)->appendChild($2); } | T_INCLUDE_ONCE expr { $$ = NTYPE($1, n_INCLUDE_FILE)->appendChild($2); } | T_EVAL '(' expr ')' { NTYPE($1, n_SYMBOL_NAME); NSPAN($2, n_CALL_PARAMETER_LIST, $4); $2->appendChild($3); $$ = NNEW(n_FUNCTION_CALL); $$->appendChild($1); $$->appendChild($2); } | T_REQUIRE expr { $$ = NTYPE($1, n_INCLUDE_FILE)->appendChild($2); } | T_REQUIRE_ONCE expr { $$ = NTYPE($1, n_INCLUDE_FILE)->appendChild($2); } ; isset_variables: variable { $$ = NNEW(n_EMPTY); $$->appendChild($1); } | isset_variables ',' variable { $$ = $1->appendChild($3); } ; class_constant: class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING { $$ = NNEW(n_CLASS_STATIC_ACCESS); $$->appendChild($1); $$->appendChild(NTYPE($3, n_STRING)); } | variable_class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING { $$ = NNEW(n_CLASS_STATIC_ACCESS); $$->appendChild($1); $$->appendChild(NTYPE($3, n_STRING)); } ; // Fix the "bug" in PHP's grammar where you can't chain the [] operator on a // function call. // This introduces some shift/reduce conflicts. We want the shift here to fall // back to regular PHP grammar. In the case where it's an extension of the PHP // grammar our code gets picked up. expr_without_variable: expr '[' dim_offset ']' { if (yyextra->idx_expr) { yyextra->used = true; } $$ = NNEW(n_INDEX_ACCESS); $$->appendChild($1); $$->appendChild($3); NMORE($$, $4); } ; %% const char* yytokname(int tok) { if (tok < 255) { return NULL; } return yytname[YYTRANSLATE(tok)]; } diff --git a/support/xhpast/parser.yacc.cpp b/support/xhpast/parser.yacc.cpp index e126fde..5378f8a 100644 --- a/support/xhpast/parser.yacc.cpp +++ b/support/xhpast/parser.yacc.cpp @@ -1,7128 +1,7557 @@ /* A Bison parser, made by GNU Bison 2.3. */ /* Skeleton implementation for Bison's Yacc-like parsers in C Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.3" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Substitute the variable and function names. */ #define yyparse xhpastparse #define yylex xhpastlex #define yyerror xhpasterror #define yylval xhpastlval #define yychar xhpastchar #define yydebug xhpastdebug #define yynerrs xhpastnerrs /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { T_REQUIRE_ONCE = 258, T_REQUIRE = 259, T_EVAL = 260, T_INCLUDE_ONCE = 261, T_INCLUDE = 262, T_LOGICAL_OR = 263, T_LOGICAL_XOR = 264, T_LOGICAL_AND = 265, T_PRINT = 266, T_SR_EQUAL = 267, T_SL_EQUAL = 268, T_XOR_EQUAL = 269, T_OR_EQUAL = 270, T_AND_EQUAL = 271, T_MOD_EQUAL = 272, T_CONCAT_EQUAL = 273, T_DIV_EQUAL = 274, T_MUL_EQUAL = 275, T_MINUS_EQUAL = 276, T_PLUS_EQUAL = 277, T_BOOLEAN_OR = 278, T_BOOLEAN_AND = 279, T_IS_NOT_IDENTICAL = 280, T_IS_IDENTICAL = 281, T_IS_NOT_EQUAL = 282, T_IS_EQUAL = 283, T_IS_GREATER_OR_EQUAL = 284, T_IS_SMALLER_OR_EQUAL = 285, T_SR = 286, T_SL = 287, T_INSTANCEOF = 288, T_UNSET_CAST = 289, T_BOOL_CAST = 290, T_OBJECT_CAST = 291, T_ARRAY_CAST = 292, T_BINARY_CAST = 293, T_UNICODE_CAST = 294, T_STRING_CAST = 295, T_DOUBLE_CAST = 296, T_INT_CAST = 297, T_DEC = 298, T_INC = 299, T_CLONE = 300, T_NEW = 301, T_EXIT = 302, T_IF = 303, T_ELSEIF = 304, T_ELSE = 305, T_ENDIF = 306, T_LNUMBER = 307, T_DNUMBER = 308, T_STRING = 309, T_STRING_VARNAME = 310, T_VARIABLE = 311, T_NUM_STRING = 312, T_INLINE_HTML = 313, T_CHARACTER = 314, T_BAD_CHARACTER = 315, T_ENCAPSED_AND_WHITESPACE = 316, T_CONSTANT_ENCAPSED_STRING = 317, T_BACKTICKS_EXPR = 318, T_ECHO = 319, T_DO = 320, T_WHILE = 321, T_ENDWHILE = 322, T_FOR = 323, T_ENDFOR = 324, T_FOREACH = 325, T_ENDFOREACH = 326, T_DECLARE = 327, T_ENDDECLARE = 328, T_AS = 329, T_SWITCH = 330, T_ENDSWITCH = 331, T_CASE = 332, T_DEFAULT = 333, T_BREAK = 334, T_CONTINUE = 335, T_GOTO = 336, T_FUNCTION = 337, T_CONST = 338, T_RETURN = 339, T_TRY = 340, T_CATCH = 341, T_THROW = 342, T_USE = 343, T_GLOBAL = 344, T_PUBLIC = 345, T_PROTECTED = 346, T_PRIVATE = 347, T_FINAL = 348, T_ABSTRACT = 349, T_STATIC = 350, T_VAR = 351, T_UNSET = 352, T_ISSET = 353, T_EMPTY = 354, T_HALT_COMPILER = 355, T_CLASS = 356, T_INTERFACE = 357, T_EXTENDS = 358, T_IMPLEMENTS = 359, T_OBJECT_OPERATOR = 360, T_DOUBLE_ARROW = 361, T_LIST = 362, T_ARRAY = 363, T_CLASS_C = 364, T_METHOD_C = 365, T_FUNC_C = 366, T_LINE = 367, T_FILE = 368, T_COMMENT = 369, T_DOC_COMMENT = 370, T_OPEN_TAG = 371, T_OPEN_TAG_WITH_ECHO = 372, T_OPEN_TAG_FAKE = 373, T_CLOSE_TAG = 374, T_WHITESPACE = 375, T_START_HEREDOC = 376, T_END_HEREDOC = 377, T_HEREDOC = 378, T_DOLLAR_OPEN_CURLY_BRACES = 379, T_CURLY_OPEN = 380, T_PAAMAYIM_NEKUDOTAYIM = 381, T_BINARY_DOUBLE = 382, T_BINARY_HEREDOC = 383, T_NAMESPACE = 384, T_NS_C = 385, T_DIR = 386, T_NS_SEPARATOR = 387, T_INSTEADOF = 388, T_CALLABLE = 389, T_TRAIT = 390, T_TRAIT_C = 391, - T_YIELD = 392 + T_YIELD = 392, + T_FINALLY = 393 }; #endif /* Tokens. */ #define T_REQUIRE_ONCE 258 #define T_REQUIRE 259 #define T_EVAL 260 #define T_INCLUDE_ONCE 261 #define T_INCLUDE 262 #define T_LOGICAL_OR 263 #define T_LOGICAL_XOR 264 #define T_LOGICAL_AND 265 #define T_PRINT 266 #define T_SR_EQUAL 267 #define T_SL_EQUAL 268 #define T_XOR_EQUAL 269 #define T_OR_EQUAL 270 #define T_AND_EQUAL 271 #define T_MOD_EQUAL 272 #define T_CONCAT_EQUAL 273 #define T_DIV_EQUAL 274 #define T_MUL_EQUAL 275 #define T_MINUS_EQUAL 276 #define T_PLUS_EQUAL 277 #define T_BOOLEAN_OR 278 #define T_BOOLEAN_AND 279 #define T_IS_NOT_IDENTICAL 280 #define T_IS_IDENTICAL 281 #define T_IS_NOT_EQUAL 282 #define T_IS_EQUAL 283 #define T_IS_GREATER_OR_EQUAL 284 #define T_IS_SMALLER_OR_EQUAL 285 #define T_SR 286 #define T_SL 287 #define T_INSTANCEOF 288 #define T_UNSET_CAST 289 #define T_BOOL_CAST 290 #define T_OBJECT_CAST 291 #define T_ARRAY_CAST 292 #define T_BINARY_CAST 293 #define T_UNICODE_CAST 294 #define T_STRING_CAST 295 #define T_DOUBLE_CAST 296 #define T_INT_CAST 297 #define T_DEC 298 #define T_INC 299 #define T_CLONE 300 #define T_NEW 301 #define T_EXIT 302 #define T_IF 303 #define T_ELSEIF 304 #define T_ELSE 305 #define T_ENDIF 306 #define T_LNUMBER 307 #define T_DNUMBER 308 #define T_STRING 309 #define T_STRING_VARNAME 310 #define T_VARIABLE 311 #define T_NUM_STRING 312 #define T_INLINE_HTML 313 #define T_CHARACTER 314 #define T_BAD_CHARACTER 315 #define T_ENCAPSED_AND_WHITESPACE 316 #define T_CONSTANT_ENCAPSED_STRING 317 #define T_BACKTICKS_EXPR 318 #define T_ECHO 319 #define T_DO 320 #define T_WHILE 321 #define T_ENDWHILE 322 #define T_FOR 323 #define T_ENDFOR 324 #define T_FOREACH 325 #define T_ENDFOREACH 326 #define T_DECLARE 327 #define T_ENDDECLARE 328 #define T_AS 329 #define T_SWITCH 330 #define T_ENDSWITCH 331 #define T_CASE 332 #define T_DEFAULT 333 #define T_BREAK 334 #define T_CONTINUE 335 #define T_GOTO 336 #define T_FUNCTION 337 #define T_CONST 338 #define T_RETURN 339 #define T_TRY 340 #define T_CATCH 341 #define T_THROW 342 #define T_USE 343 #define T_GLOBAL 344 #define T_PUBLIC 345 #define T_PROTECTED 346 #define T_PRIVATE 347 #define T_FINAL 348 #define T_ABSTRACT 349 #define T_STATIC 350 #define T_VAR 351 #define T_UNSET 352 #define T_ISSET 353 #define T_EMPTY 354 #define T_HALT_COMPILER 355 #define T_CLASS 356 #define T_INTERFACE 357 #define T_EXTENDS 358 #define T_IMPLEMENTS 359 #define T_OBJECT_OPERATOR 360 #define T_DOUBLE_ARROW 361 #define T_LIST 362 #define T_ARRAY 363 #define T_CLASS_C 364 #define T_METHOD_C 365 #define T_FUNC_C 366 #define T_LINE 367 #define T_FILE 368 #define T_COMMENT 369 #define T_DOC_COMMENT 370 #define T_OPEN_TAG 371 #define T_OPEN_TAG_WITH_ECHO 372 #define T_OPEN_TAG_FAKE 373 #define T_CLOSE_TAG 374 #define T_WHITESPACE 375 #define T_START_HEREDOC 376 #define T_END_HEREDOC 377 #define T_HEREDOC 378 #define T_DOLLAR_OPEN_CURLY_BRACES 379 #define T_CURLY_OPEN 380 #define T_PAAMAYIM_NEKUDOTAYIM 381 #define T_BINARY_DOUBLE 382 #define T_BINARY_HEREDOC 383 #define T_NAMESPACE 384 #define T_NS_C 385 #define T_DIR 386 #define T_NS_SEPARATOR 387 #define T_INSTEADOF 388 #define T_CALLABLE 389 #define T_TRAIT 390 #define T_TRAIT_C 391 #define T_YIELD 392 +#define T_FINALLY 393 /* Copy the first part of user declarations. */ #line 1 "parser.y" /* * If you modify this grammar, please update the version number in * ./xhpast.cpp and libphutil/src/parser/xhpast/bin/xhpast_parse.php */ #include "ast.hpp" #include "node_names.hpp" // PHP's if/else rules use right reduction rather than left reduction which // means while parsing nested if/else's the stack grows until it the last // statement is read. This is annoying, particularly because of a quirk in // bison. // http://www.gnu.org/software/bison/manual/html_node/Memory-Management.html // Apparently if you compile a bison parser with g++ it can no longer grow // the stack. The work around is to just make your initial stack ridiculously // large. Unfortunately that increases memory usage while parsing which is // dumb. Anyway, putting a TODO here to fix PHP's if/else grammar. #define YYINITDEPTH 500 #line 21 "parser.y" #undef yyextra #define yyextra static_cast(xhpastget_extra(yyscanner)) #undef yylineno #define yylineno yyextra->first_lineno #define push_state(s) xhp_new_push_state(s, (struct yyguts_t*) yyscanner) #define pop_state() xhp_new_pop_state((struct yyguts_t*) yyscanner) #define set_state(s) xhp_set_state(s, (struct yyguts_t*) yyscanner) #define NNEW(t) \ (new xhpast::Node(t)) #define NTYPE(n, type) \ ((n)->setType(type)) #define NMORE(n, end) \ ((n)->setEnd(end)) #define NSPAN(n, type, end) \ (NMORE(NTYPE((n), type), end)) #define NLMORE(n, begin) \ ((n)->setBegin(begin)) #define NEXPAND(l, n, r) \ ((n)->setBegin(l)->setEnd(r)) using namespace std; static void yyerror(void* yyscanner, void* _, const char* error) { if (yyextra->terminated) { return; } yyextra->terminated = true; yyextra->error = error; } /* TODO: Restore this. static void replacestr(string &source, const string &find, const string &rep) { size_t j; while ((j = source.find(find)) != std::string::npos) { source.replace(j, find.length(), rep); } } */ /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 1 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef int YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_TRIVIAL 1 #endif /* Copy the second part of user declarations. */ /* Line 216 of yacc.c. */ -#line 458 "parser.yacc.cpp" +#line 460 "parser.yacc.cpp" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int i) #else static int YYID (i) int i; #endif { return i; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef _STDLIB_H # define _STDLIB_H 1 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined _STDLIB_H \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef _STDLIB_H # define _STDLIB_H 1 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss; YYSTYPE yyvs; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack, Stack, yysize); \ Stack = &yyptr->Stack; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif /* YYFINAL -- State number of the termination state. */ #define YYFINAL 3 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 7496 +#define YYLAST 7892 /* YYNTOKENS -- Number of terminals. */ -#define YYNTOKENS 164 +#define YYNTOKENS 165 /* YYNNTS -- Number of nonterminals. */ -#define YYNNTS 110 +#define YYNNTS 124 /* YYNRULES -- Number of rules. */ -#define YYNRULES 383 +#define YYNRULES 419 /* YYNRULES -- Number of states. */ -#define YYNSTATES 804 +#define YYNSTATES 863 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 -#define YYMAXUTOK 392 +#define YYMAXUTOK 393 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 48, 2, 2, 162, 47, 31, 2, - 157, 158, 45, 42, 8, 43, 44, 46, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 26, 159, + 2, 2, 2, 48, 2, 2, 163, 47, 31, 2, + 158, 159, 45, 42, 8, 43, 44, 46, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 26, 160, 36, 13, 37, 25, 51, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 63, 2, 163, 30, 2, 2, 2, 2, 2, + 2, 63, 2, 164, 30, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 160, 29, 161, 50, 2, 2, 2, + 2, 2, 2, 161, 29, 162, 50, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 27, 28, 32, 33, 34, 35, 38, 39, 40, 41, 49, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, - 154, 155, 156 + 154, 155, 156, 157 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 5, 8, 9, 11, 15, 17, 19, 21, 26, 30, 36, 41, 45, 48, 52, 54, 56, 60, 63, 68, 74, 79, 82, 83, 85, 87, 89, 94, 96, 99, 101, 103, 105, 109, 117, 128, 134, 142, 152, 158, 161, 165, 168, 172, 175, 179, 183, - 187, 191, 195, 197, 200, 206, 215, 224, 230, 232, - 246, 250, 254, 256, 257, 259, 262, 271, 273, 277, - 279, 281, 283, 284, 286, 296, 304, 311, 313, 316, - 319, 320, 323, 325, 326, 329, 330, 333, 335, 339, - 340, 343, 345, 348, 350, 355, 357, 362, 364, 369, - 373, 379, 383, 388, 393, 399, 400, 406, 411, 413, - 415, 417, 422, 423, 430, 431, 439, 440, 443, 444, - 448, 450, 451, 454, 458, 464, 469, 474, 480, 488, - 495, 496, 498, 500, 502, 503, 505, 507, 510, 514, - 518, 523, 527, 529, 531, 534, 539, 543, 549, 551, - 555, 558, 559, 563, 566, 567, 577, 579, 583, 585, - 587, 588, 590, 592, 595, 597, 599, 601, 603, 605, - 607, 611, 617, 619, 623, 629, 634, 638, 640, 641, - 643, 647, 649, 656, 660, 665, 672, 676, 679, 683, - 687, 691, 695, 699, 703, 707, 711, 715, 719, 723, - 726, 729, 732, 735, 739, 743, 747, 751, 755, 759, - 763, 767, 771, 775, 779, 783, 787, 791, 795, 799, - 802, 805, 808, 811, 815, 819, 823, 827, 831, 835, - 839, 843, 847, 851, 857, 862, 864, 867, 870, 873, - 876, 879, 882, 885, 888, 891, 896, 898, 900, 903, - 913, 924, 926, 927, 932, 936, 941, 943, 946, 951, - 958, 964, 971, 978, 985, 992, 997, 999, 1001, 1005, - 1008, 1010, 1014, 1017, 1019, 1021, 1026, 1028, 1031, 1032, - 1035, 1036, 1039, 1043, 1044, 1048, 1050, 1052, 1054, 1056, - 1058, 1060, 1062, 1064, 1066, 1068, 1070, 1072, 1074, 1078, - 1081, 1084, 1087, 1092, 1094, 1098, 1100, 1102, 1104, 1108, - 1111, 1113, 1114, 1117, 1118, 1120, 1126, 1130, 1134, 1136, - 1138, 1140, 1142, 1144, 1146, 1152, 1154, 1157, 1158, 1162, - 1166, 1167, 1169, 1172, 1176, 1180, 1182, 1184, 1186, 1188, - 1191, 1193, 1198, 1203, 1205, 1207, 1212, 1213, 1215, 1217, - 1219, 1224, 1229, 1231, 1233, 1237, 1239, 1242, 1246, 1248, - 1250, 1255, 1256, 1257, 1260, 1266, 1270, 1274, 1276, 1283, - 1288, 1293, 1296, 1301, 1306, 1309, 1312, 1317, 1320, 1323, - 1325, 1329, 1333, 1337 + 187, 191, 195, 197, 200, 203, 209, 218, 227, 233, + 235, 250, 254, 258, 260, 261, 262, 267, 269, 272, + 281, 283, 287, 289, 291, 293, 294, 296, 306, 314, + 321, 323, 326, 329, 331, 332, 335, 337, 338, 341, + 342, 345, 347, 351, 352, 355, 357, 360, 362, 367, + 369, 374, 376, 381, 385, 391, 395, 400, 405, 411, + 412, 418, 423, 425, 427, 429, 434, 435, 442, 443, + 451, 452, 455, 456, 460, 462, 463, 466, 470, 476, + 481, 486, 492, 500, 507, 508, 510, 512, 514, 516, + 517, 519, 521, 524, 528, 532, 537, 541, 543, 545, + 548, 553, 557, 563, 565, 569, 572, 573, 577, 580, + 582, 583, 593, 597, 599, 603, 605, 609, 610, 612, + 614, 617, 620, 623, 627, 629, 633, 635, 637, 641, + 646, 650, 651, 653, 655, 659, 661, 663, 664, 666, + 668, 671, 673, 675, 677, 679, 681, 683, 687, 693, + 695, 699, 705, 710, 714, 716, 717, 719, 723, 725, + 732, 736, 741, 748, 752, 755, 759, 763, 767, 771, + 775, 779, 783, 787, 791, 795, 799, 802, 805, 808, + 811, 815, 819, 823, 827, 831, 835, 839, 843, 847, + 851, 855, 859, 863, 867, 871, 875, 878, 881, 884, + 887, 891, 895, 899, 903, 907, 911, 915, 919, 923, + 927, 933, 938, 940, 943, 946, 949, 952, 955, 958, + 961, 964, 967, 972, 976, 978, 980, 983, 985, 989, + 999, 1010, 1013, 1016, 1021, 1026, 1028, 1029, 1034, 1038, + 1043, 1045, 1048, 1053, 1060, 1066, 1073, 1080, 1087, 1094, + 1099, 1101, 1103, 1107, 1110, 1112, 1116, 1119, 1121, 1123, + 1128, 1130, 1133, 1134, 1137, 1138, 1141, 1145, 1146, 1150, + 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, + 1172, 1174, 1176, 1178, 1182, 1185, 1188, 1191, 1196, 1200, + 1202, 1206, 1208, 1210, 1212, 1216, 1219, 1221, 1222, 1225, + 1226, 1228, 1234, 1238, 1242, 1244, 1246, 1248, 1250, 1252, + 1254, 1260, 1262, 1265, 1266, 1270, 1274, 1275, 1277, 1280, + 1284, 1288, 1290, 1292, 1294, 1296, 1299, 1301, 1306, 1311, + 1313, 1315, 1320, 1321, 1323, 1325, 1327, 1332, 1337, 1339, + 1341, 1345, 1347, 1350, 1354, 1356, 1358, 1363, 1364, 1365, + 1368, 1374, 1378, 1382, 1384, 1391, 1396, 1401, 1404, 1409, + 1414, 1417, 1420, 1425, 1428, 1431, 1433, 1437, 1441, 1445 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { - 165, 0, -1, 166, -1, 166, 168, -1, -1, 73, - -1, 167, 151, 73, -1, 174, -1, 181, -1, 182, - -1, 119, 157, 158, 159, -1, 148, 167, 159, -1, - 148, 167, 160, 166, 161, -1, 148, 160, 166, 161, - -1, 107, 169, 159, -1, 171, 159, -1, 169, 8, - 170, -1, 170, -1, 167, -1, 167, 93, 73, -1, - 151, 167, -1, 151, 167, 93, 73, -1, 171, 8, - 73, 13, 241, -1, 102, 73, 13, 241, -1, 172, - 173, -1, -1, 174, -1, 181, -1, 182, -1, 119, - 157, 158, 159, -1, 175, -1, 73, 26, -1, 135, - -1, 136, -1, 138, -1, 160, 172, 161, -1, 67, - 157, 247, 158, 174, 202, 204, -1, 67, 157, 247, - 158, 26, 172, 203, 205, 70, 159, -1, 85, 157, - 247, 158, 201, -1, 84, 174, 85, 157, 247, 158, - 159, -1, 87, 157, 225, 159, 225, 159, 225, 158, - 194, -1, 94, 157, 247, 158, 198, -1, 98, 159, - -1, 98, 247, 159, -1, 99, 159, -1, 99, 247, - 159, -1, 103, 159, -1, 103, 227, 159, -1, 103, - 251, 159, -1, 108, 211, 159, -1, 114, 213, 159, - -1, 83, 224, 159, -1, 77, -1, 247, 159, -1, - 116, 157, 179, 158, 159, -1, 89, 157, 251, 93, - 193, 192, 158, 195, -1, 89, 157, 227, 93, 251, - 192, 158, 195, -1, 91, 157, 197, 158, 196, -1, - 159, -1, 104, 160, 172, 161, 105, 157, 233, 75, - 158, 160, 172, 161, 176, -1, 106, 247, 159, -1, - 100, 73, 159, -1, 177, -1, -1, 178, -1, 177, - 178, -1, 105, 157, 233, 75, 158, 160, 172, 161, - -1, 180, -1, 179, 8, 180, -1, 251, -1, 184, - -1, 185, -1, -1, 31, -1, 228, 183, 73, 157, - 206, 158, 160, 172, 161, -1, 186, 73, 187, 190, - 160, 214, 161, -1, 188, 73, 189, 160, 214, 161, - -1, 120, -1, 113, 120, -1, 112, 120, -1, -1, - 122, 233, -1, 121, -1, -1, 122, 191, -1, -1, - 123, 191, -1, 233, -1, 191, 8, 233, -1, -1, - 125, 193, -1, 251, -1, 31, 251, -1, 174, -1, - 26, 172, 88, 159, -1, 174, -1, 26, 172, 90, - 159, -1, 174, -1, 26, 172, 92, 159, -1, 73, - 13, 241, -1, 197, 8, 73, 13, 241, -1, 160, - 199, 161, -1, 160, 159, 199, 161, -1, 26, 199, - 95, 159, -1, 26, 159, 199, 95, 159, -1, -1, - 199, 96, 247, 200, 172, -1, 199, 97, 200, 172, - -1, 26, -1, 159, -1, 174, -1, 26, 172, 86, - 159, -1, -1, 202, 68, 157, 247, 158, 174, -1, - -1, 203, 68, 157, 247, 158, 26, 172, -1, -1, - 69, 174, -1, -1, 69, 26, 172, -1, 207, -1, - -1, 208, 75, -1, 208, 31, 75, -1, 208, 31, - 75, 13, 241, -1, 208, 75, 13, 241, -1, 207, - 8, 208, 75, -1, 207, 8, 208, 31, 75, -1, - 207, 8, 208, 31, 75, 13, 241, -1, 207, 8, - 208, 75, 13, 241, -1, -1, 233, -1, 127, -1, - 210, -1, -1, 227, -1, 251, -1, 31, 249, -1, - 210, 8, 227, -1, 210, 8, 251, -1, 210, 8, - 31, 249, -1, 211, 8, 212, -1, 212, -1, 75, - -1, 162, 248, -1, 162, 160, 247, 161, -1, 213, - 8, 75, -1, 213, 8, 75, 13, 241, -1, 75, - -1, 75, 13, 241, -1, 214, 215, -1, -1, 218, - 222, 159, -1, 223, 159, -1, -1, 219, 228, 216, - 183, 73, 157, 206, 158, 217, -1, 159, -1, 160, - 172, 161, -1, 220, -1, 115, -1, -1, 220, -1, - 221, -1, 220, 221, -1, 109, -1, 110, -1, 111, - -1, 114, -1, 113, -1, 112, -1, 222, 8, 75, - -1, 222, 8, 75, 13, 241, -1, 75, -1, 75, - 13, 241, -1, 223, 8, 73, 13, 241, -1, 102, - 73, 13, 241, -1, 224, 8, 247, -1, 247, -1, - -1, 226, -1, 226, 8, 247, -1, 247, -1, 126, - 157, 267, 158, 13, 247, -1, 251, 13, 247, -1, - 251, 13, 31, 251, -1, 251, 13, 31, 65, 234, - 239, -1, 65, 234, 239, -1, 64, 247, -1, 251, - 24, 247, -1, 251, 23, 247, -1, 251, 22, 247, - -1, 251, 21, 247, -1, 251, 20, 247, -1, 251, - 19, 247, -1, 251, 18, 247, -1, 251, 17, 247, - -1, 251, 16, 247, -1, 251, 15, 247, -1, 251, - 14, 247, -1, 250, 62, -1, 62, 250, -1, 250, - 61, -1, 61, 250, -1, 247, 27, 247, -1, 247, - 28, 247, -1, 247, 9, 247, -1, 247, 11, 247, - -1, 247, 10, 247, -1, 247, 29, 247, -1, 247, - 31, 247, -1, 247, 30, 247, -1, 247, 44, 247, - -1, 247, 42, 247, -1, 247, 43, 247, -1, 247, - 45, 247, -1, 247, 46, 247, -1, 247, 47, 247, - -1, 247, 41, 247, -1, 247, 40, 247, -1, 42, - 247, -1, 43, 247, -1, 48, 247, -1, 50, 247, - -1, 247, 33, 247, -1, 247, 32, 247, -1, 247, - 35, 247, -1, 247, 34, 247, -1, 247, 36, 247, - -1, 247, 39, 247, -1, 247, 37, 247, -1, 247, - 38, 247, -1, 247, 49, 234, -1, 157, 247, 158, - -1, 247, 25, 247, 26, 247, -1, 247, 25, 26, - 247, -1, 271, -1, 60, 247, -1, 59, 247, -1, - 58, 247, -1, 55, 247, -1, 54, 247, -1, 53, - 247, -1, 52, 247, -1, 66, 238, -1, 51, 247, - -1, 127, 157, 269, 158, -1, 82, -1, 243, -1, - 12, 247, -1, 228, 183, 157, 206, 158, 229, 160, - 172, 161, -1, 114, 228, 183, 157, 206, 158, 229, - 160, 172, 161, -1, 101, -1, -1, 107, 157, 230, - 158, -1, 230, 8, 75, -1, 230, 8, 31, 75, - -1, 75, -1, 31, 75, -1, 167, 157, 209, 158, - -1, 148, 151, 167, 157, 209, 158, -1, 151, 167, - 157, 209, 158, -1, 232, 145, 73, 157, 209, 158, - -1, 257, 145, 73, 157, 209, 158, -1, 257, 145, - 255, 157, 209, 158, -1, 232, 145, 255, 157, 209, - 158, -1, 255, 157, 209, 158, -1, 114, -1, 167, - -1, 148, 151, 167, -1, 151, 167, -1, 167, -1, - 148, 151, 167, -1, 151, 167, -1, 232, -1, 235, - -1, 259, 124, 263, 236, -1, 259, -1, 236, 237, - -1, -1, 124, 263, -1, -1, 157, 158, -1, 157, - 247, 158, -1, -1, 157, 209, 158, -1, 71, -1, - 72, -1, 81, -1, 131, -1, 132, -1, 150, -1, - 128, -1, 129, -1, 130, -1, 149, -1, 142, -1, - 240, -1, 167, -1, 148, 151, 167, -1, 151, 167, - -1, 42, 241, -1, 43, 241, -1, 127, 157, 244, - 158, -1, 242, -1, 232, 145, 73, -1, 74, -1, - 273, -1, 167, -1, 148, 151, 167, -1, 151, 167, - -1, 240, -1, -1, 246, 245, -1, -1, 8, -1, - 246, 8, 241, 125, 241, -1, 246, 8, 241, -1, - 241, 125, 241, -1, 241, -1, 248, -1, 227, -1, - 251, -1, 251, -1, 251, -1, 258, 124, 263, 254, - 252, -1, 258, -1, 252, 253, -1, -1, 124, 263, - 254, -1, 157, 209, 158, -1, -1, 260, -1, 266, - 260, -1, 232, 145, 255, -1, 257, 145, 255, -1, - 260, -1, 259, -1, 231, -1, 260, -1, 266, 260, - -1, 256, -1, 260, 63, 262, 163, -1, 260, 160, - 247, 161, -1, 261, -1, 75, -1, 162, 160, 247, - 161, -1, -1, 247, -1, 264, -1, 255, -1, 264, - 63, 262, 163, -1, 264, 160, 247, 161, -1, 265, - -1, 73, -1, 160, 247, 161, -1, 162, -1, 266, - 162, -1, 267, 8, 268, -1, 268, -1, 251, -1, - 126, 157, 267, 158, -1, -1, -1, 270, 245, -1, - 270, 8, 247, 125, 247, -1, 270, 8, 247, -1, - 247, 125, 247, -1, 247, -1, 270, 8, 247, 125, - 31, 249, -1, 270, 8, 31, 249, -1, 247, 125, - 31, 249, -1, 31, 249, -1, 117, 157, 272, 158, - -1, 118, 157, 251, 158, -1, 7, 247, -1, 6, - 247, -1, 5, 157, 247, 158, -1, 4, 247, -1, - 3, 247, -1, 251, -1, 272, 8, 251, -1, 232, - 145, 73, -1, 257, 145, 73, -1, 247, 63, 262, - 163, -1 + 166, 0, -1, 167, -1, 167, 169, -1, -1, 73, + -1, 168, 151, 73, -1, 175, -1, 183, -1, 184, + -1, 119, 158, 159, 160, -1, 148, 168, 160, -1, + 148, 168, 161, 167, 162, -1, 148, 161, 167, 162, + -1, 107, 170, 160, -1, 172, 160, -1, 170, 8, + 171, -1, 171, -1, 168, -1, 168, 93, 73, -1, + 151, 168, -1, 151, 168, 93, 73, -1, 172, 8, + 73, 13, 256, -1, 102, 73, 13, 256, -1, 173, + 174, -1, -1, 175, -1, 183, -1, 184, -1, 119, + 158, 159, 160, -1, 176, -1, 73, 26, -1, 135, + -1, 136, -1, 138, -1, 161, 173, 162, -1, 67, + 158, 262, 159, 175, 204, 206, -1, 67, 158, 262, + 159, 26, 173, 205, 207, 70, 160, -1, 85, 158, + 262, 159, 203, -1, 84, 175, 85, 158, 262, 159, + 160, -1, 87, 158, 239, 160, 239, 160, 239, 159, + 196, -1, 94, 158, 262, 159, 200, -1, 98, 160, + -1, 98, 262, 160, -1, 99, 160, -1, 99, 262, + 160, -1, 103, 160, -1, 103, 241, 160, -1, 103, + 266, 160, -1, 108, 213, 160, -1, 114, 215, 160, + -1, 83, 238, 160, -1, 77, -1, 262, 160, -1, + 242, 160, -1, 116, 158, 181, 159, 160, -1, 89, + 158, 266, 93, 195, 194, 159, 197, -1, 89, 158, + 241, 93, 266, 194, 159, 197, -1, 91, 158, 199, + 159, 198, -1, 160, -1, 104, 161, 173, 162, 105, + 158, 248, 75, 159, 161, 173, 162, 177, 178, -1, + 106, 262, 160, -1, 100, 73, 160, -1, 179, -1, + -1, -1, 157, 161, 173, 162, -1, 180, -1, 179, + 180, -1, 105, 158, 248, 75, 159, 161, 173, 162, + -1, 182, -1, 181, 8, 182, -1, 266, -1, 186, + -1, 187, -1, -1, 31, -1, 243, 185, 73, 158, + 208, 159, 161, 173, 162, -1, 188, 73, 189, 192, + 161, 216, 162, -1, 190, 73, 191, 161, 216, 162, + -1, 120, -1, 113, 120, -1, 112, 120, -1, 154, + -1, -1, 122, 248, -1, 121, -1, -1, 122, 193, + -1, -1, 123, 193, -1, 248, -1, 193, 8, 248, + -1, -1, 125, 195, -1, 266, -1, 31, 266, -1, + 175, -1, 26, 173, 88, 160, -1, 175, -1, 26, + 173, 90, 160, -1, 175, -1, 26, 173, 92, 160, + -1, 73, 13, 256, -1, 199, 8, 73, 13, 256, + -1, 161, 201, 162, -1, 161, 160, 201, 162, -1, + 26, 201, 95, 160, -1, 26, 160, 201, 95, 160, + -1, -1, 201, 96, 262, 202, 173, -1, 201, 97, + 202, 173, -1, 26, -1, 160, -1, 175, -1, 26, + 173, 86, 160, -1, -1, 204, 68, 158, 262, 159, + 175, -1, -1, 205, 68, 158, 262, 159, 26, 173, + -1, -1, 69, 175, -1, -1, 69, 26, 173, -1, + 209, -1, -1, 210, 75, -1, 210, 31, 75, -1, + 210, 31, 75, 13, 256, -1, 210, 75, 13, 256, + -1, 209, 8, 210, 75, -1, 209, 8, 210, 31, + 75, -1, 209, 8, 210, 31, 75, 13, 256, -1, + 209, 8, 210, 75, 13, 256, -1, -1, 248, -1, + 127, -1, 153, -1, 212, -1, -1, 241, -1, 266, + -1, 31, 264, -1, 212, 8, 241, -1, 212, 8, + 266, -1, 212, 8, 31, 264, -1, 213, 8, 214, + -1, 214, -1, 75, -1, 163, 263, -1, 163, 161, + 262, 162, -1, 215, 8, 75, -1, 215, 8, 75, + 13, 256, -1, 75, -1, 75, 13, 256, -1, 216, + 217, -1, -1, 232, 236, 160, -1, 237, 160, -1, + 219, -1, -1, 233, 243, 218, 185, 73, 158, 208, + 159, 231, -1, 107, 220, 221, -1, 248, -1, 220, + 8, 248, -1, 160, -1, 161, 222, 162, -1, -1, + 223, -1, 224, -1, 223, 224, -1, 225, 160, -1, + 229, 160, -1, 228, 152, 226, -1, 248, -1, 226, + 8, 248, -1, 73, -1, 228, -1, 248, 145, 73, + -1, 227, 93, 230, 73, -1, 227, 93, 235, -1, + -1, 235, -1, 160, -1, 161, 173, 162, -1, 234, + -1, 115, -1, -1, 234, -1, 235, -1, 234, 235, + -1, 109, -1, 110, -1, 111, -1, 114, -1, 113, + -1, 112, -1, 236, 8, 75, -1, 236, 8, 75, + 13, 256, -1, 75, -1, 75, 13, 256, -1, 237, + 8, 73, 13, 256, -1, 102, 73, 13, 256, -1, + 238, 8, 262, -1, 262, -1, -1, 240, -1, 240, + 8, 262, -1, 262, -1, 126, 158, 282, 159, 13, + 262, -1, 266, 13, 262, -1, 266, 13, 31, 266, + -1, 266, 13, 31, 65, 249, 254, -1, 65, 249, + 254, -1, 64, 262, -1, 266, 24, 262, -1, 266, + 23, 262, -1, 266, 22, 262, -1, 266, 21, 262, + -1, 266, 20, 262, -1, 266, 19, 262, -1, 266, + 18, 262, -1, 266, 17, 262, -1, 266, 16, 262, + -1, 266, 15, 262, -1, 266, 14, 262, -1, 265, + 62, -1, 62, 265, -1, 265, 61, -1, 61, 265, + -1, 262, 27, 262, -1, 262, 28, 262, -1, 262, + 9, 262, -1, 262, 11, 262, -1, 262, 10, 262, + -1, 262, 29, 262, -1, 262, 31, 262, -1, 262, + 30, 262, -1, 262, 44, 262, -1, 262, 42, 262, + -1, 262, 43, 262, -1, 262, 45, 262, -1, 262, + 46, 262, -1, 262, 47, 262, -1, 262, 41, 262, + -1, 262, 40, 262, -1, 42, 262, -1, 43, 262, + -1, 48, 262, -1, 50, 262, -1, 262, 33, 262, + -1, 262, 32, 262, -1, 262, 35, 262, -1, 262, + 34, 262, -1, 262, 36, 262, -1, 262, 39, 262, + -1, 262, 37, 262, -1, 262, 38, 262, -1, 262, + 49, 249, -1, 158, 262, 159, -1, 262, 25, 262, + 26, 262, -1, 262, 25, 26, 262, -1, 286, -1, + 60, 262, -1, 59, 262, -1, 58, 262, -1, 55, + 262, -1, 54, 262, -1, 53, 262, -1, 52, 262, + -1, 66, 253, -1, 51, 262, -1, 127, 158, 284, + 159, -1, 63, 284, 164, -1, 82, -1, 258, -1, + 12, 262, -1, 156, -1, 158, 242, 159, -1, 243, + 185, 158, 208, 159, 244, 161, 173, 162, -1, 114, + 243, 185, 158, 208, 159, 244, 161, 173, 162, -1, + 156, 241, -1, 156, 266, -1, 156, 262, 125, 241, + -1, 156, 262, 125, 266, -1, 101, -1, -1, 107, + 158, 245, 159, -1, 245, 8, 75, -1, 245, 8, + 31, 75, -1, 75, -1, 31, 75, -1, 168, 158, + 211, 159, -1, 148, 151, 168, 158, 211, 159, -1, + 151, 168, 158, 211, 159, -1, 247, 145, 73, 158, + 211, 159, -1, 272, 145, 73, 158, 211, 159, -1, + 272, 145, 270, 158, 211, 159, -1, 247, 145, 270, + 158, 211, 159, -1, 270, 158, 211, 159, -1, 114, + -1, 168, -1, 148, 151, 168, -1, 151, 168, -1, + 168, -1, 148, 151, 168, -1, 151, 168, -1, 247, + -1, 250, -1, 274, 124, 278, 251, -1, 274, -1, + 251, 252, -1, -1, 124, 278, -1, -1, 158, 159, + -1, 158, 262, 159, -1, -1, 158, 211, 159, -1, + 71, -1, 72, -1, 81, -1, 131, -1, 132, -1, + 150, -1, 128, -1, 129, -1, 155, -1, 130, -1, + 149, -1, 142, -1, 255, -1, 168, -1, 148, 151, + 168, -1, 151, 168, -1, 42, 256, -1, 43, 256, + -1, 127, 158, 259, 159, -1, 63, 259, 164, -1, + 257, -1, 247, 145, 73, -1, 74, -1, 288, -1, + 168, -1, 148, 151, 168, -1, 151, 168, -1, 255, + -1, -1, 261, 260, -1, -1, 8, -1, 261, 8, + 256, 125, 256, -1, 261, 8, 256, -1, 256, 125, + 256, -1, 256, -1, 263, -1, 241, -1, 266, -1, + 266, -1, 266, -1, 273, 124, 278, 269, 267, -1, + 273, -1, 267, 268, -1, -1, 124, 278, 269, -1, + 158, 211, 159, -1, -1, 275, -1, 281, 275, -1, + 247, 145, 270, -1, 272, 145, 270, -1, 275, -1, + 274, -1, 246, -1, 275, -1, 281, 275, -1, 271, + -1, 275, 63, 277, 164, -1, 275, 161, 262, 162, + -1, 276, -1, 75, -1, 163, 161, 262, 162, -1, + -1, 262, -1, 279, -1, 270, -1, 279, 63, 277, + 164, -1, 279, 161, 262, 162, -1, 280, -1, 73, + -1, 161, 262, 162, -1, 163, -1, 281, 163, -1, + 282, 8, 283, -1, 283, -1, 266, -1, 126, 158, + 282, 159, -1, -1, -1, 285, 260, -1, 285, 8, + 262, 125, 262, -1, 285, 8, 262, -1, 262, 125, + 262, -1, 262, -1, 285, 8, 262, 125, 31, 264, + -1, 285, 8, 31, 264, -1, 262, 125, 31, 264, + -1, 31, 264, -1, 117, 158, 287, 159, -1, 118, + 158, 266, 159, -1, 7, 262, -1, 6, 262, -1, + 5, 158, 262, 159, -1, 4, 262, -1, 3, 262, + -1, 266, -1, 287, 8, 266, -1, 247, 145, 73, + -1, 272, 145, 73, -1, 262, 63, 277, 164, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { - 0, 196, 196, 202, 205, 211, 214, 220, 221, 222, - 223, 228, 235, 241, 249, 255, 262, 265, 272, 277, - 283, 289, 299, 306, 316, 319, 325, 326, 327, 328, - 336, 337, 343, 346, 349, 355, 358, 388, 403, 410, - 418, 431, 438, 445, 452, 459, 466, 473, 480, 487, - 492, 497, 502, 506, 510, 516, 533, 549, 555, 559, - 572, 580, 591, 592, 598, 602, 609, 620, 624, 631, - 635, 639, 643, 646, 652, 666, 677, 692, 696, 703, - 713, 716, 722, 726, 729, 737, 740, 748, 751, 757, - 760, 766, 767, 775, 776, 784, 785, 793, 794, 802, - 808, 819, 822, 832, 837, 849, 852, 860, 870, 871, - 875, 876, 884, 887, 897, 900, 910, 913, 921, 924, - 932, 933, 939, 947, 956, 965, 973, 981, 990, 999, - 1010, 1013, 1016, 1022, 1023, 1029, 1032, 1035, 1040, 1043, - 1046, 1052, 1056, 1063, 1066, 1070, 1077, 1085, 1093, 1101, - 1112, 1115, 1121, 1129, 1133, 1133, 1152, 1155, 1161, 1162, - 1169, 1172, 1179, 1183, 1189, 1190, 1191, 1192, 1193, 1194, - 1198, 1205, 1212, 1219, 1229, 1238, 1250, 1253, 1260, 1263, - 1268, 1271, 1278, 1286, 1292, 1302, 1316, 1322, 1327, 1333, - 1339, 1345, 1351, 1357, 1363, 1369, 1375, 1381, 1387, 1393, - 1398, 1403, 1408, 1413, 1419, 1425, 1431, 1437, 1443, 1449, - 1455, 1461, 1487, 1493, 1499, 1505, 1511, 1517, 1523, 1529, - 1534, 1539, 1544, 1549, 1555, 1561, 1567, 1573, 1579, 1585, - 1591, 1597, 1603, 1608, 1614, 1620, 1621, 1626, 1631, 1636, - 1641, 1646, 1651, 1656, 1661, 1666, 1672, 1676, 1677, 1682, - 1693, 1713, 1717, 1720, 1728, 1731, 1736, 1740, 1749, 1754, - 1760, 1766, 1774, 1782, 1790, 1798, 1806, 1809, 1812, 1816, - 1823, 1826, 1830, 1837, 1838, 1842, 1851, 1855, 1858, 1864, - 1870, 1873, 1877, 1885, 1888, 1894, 1897, 1900, 1903, 1906, - 1909, 1912, 1915, 1918, 1921, 1924, 1930, 1931, 1932, 1936, - 1940, 1945, 1950, 1956, 1960, 1968, 1969, 1970, 1971, 1974, - 1977, 1981, 1984, 1990, 1993, 1997, 2004, 2011, 2018, 2028, - 2029, 2033, 2037, 2041, 2045, 2065, 2069, 2072, 2078, 2088, - 2091, 2097, 2098, 2113, 2118, 2126, 2130, 2131, 2135, 2136, - 2148, 2152, 2158, 2164, 2168, 2171, 2179, 2182, 2188, 2189, - 2193, 2199, 2205, 2209, 2213, 2219, 2222, 2237, 2240, 2247, - 2248, 2253, 2259, 2262, 2268, 2275, 2282, 2289, 2296, 2303, - 2310, 2317, 2327, 2337, 2347, 2350, 2353, 2363, 2366, 2372, - 2376, 2382, 2387, 2400 + 0, 197, 197, 203, 206, 212, 215, 221, 222, 223, + 224, 229, 236, 242, 250, 256, 263, 266, 273, 278, + 284, 290, 300, 307, 317, 320, 326, 327, 328, 329, + 337, 338, 344, 347, 350, 356, 359, 389, 404, 411, + 419, 432, 439, 446, 453, 460, 467, 474, 481, 488, + 493, 498, 503, 507, 511, 515, 521, 538, 554, 560, + 564, 578, 586, 597, 598, 604, 607, 617, 621, 628, + 639, 643, 650, 654, 658, 662, 665, 671, 685, 696, + 711, 715, 722, 729, 736, 739, 745, 749, 752, 760, + 763, 771, 774, 780, 783, 789, 790, 798, 799, 807, + 808, 816, 817, 825, 831, 842, 845, 855, 860, 872, + 875, 883, 893, 894, 898, 899, 907, 910, 920, 923, + 933, 936, 944, 947, 955, 956, 962, 970, 979, 988, + 996, 1004, 1013, 1022, 1033, 1036, 1039, 1042, 1048, 1049, + 1055, 1058, 1061, 1066, 1069, 1072, 1078, 1082, 1089, 1092, + 1096, 1103, 1111, 1119, 1127, 1138, 1141, 1147, 1155, 1159, + 1162, 1162, 1181, 1189, 1192, 1198, 1201, 1207, 1210, 1216, + 1220, 1227, 1230, 1236, 1244, 1248, 1255, 1259, 1265, 1273, + 1279, 1288, 1291, 1299, 1302, 1308, 1309, 1316, 1319, 1326, + 1330, 1336, 1337, 1338, 1339, 1340, 1341, 1345, 1352, 1359, + 1366, 1376, 1385, 1397, 1400, 1407, 1410, 1415, 1418, 1425, + 1433, 1439, 1449, 1463, 1469, 1474, 1480, 1486, 1492, 1498, + 1504, 1510, 1516, 1522, 1528, 1534, 1540, 1545, 1550, 1555, + 1560, 1566, 1572, 1578, 1584, 1590, 1596, 1602, 1608, 1634, + 1640, 1646, 1652, 1658, 1664, 1670, 1676, 1681, 1686, 1691, + 1696, 1702, 1708, 1714, 1720, 1726, 1732, 1738, 1744, 1750, + 1755, 1761, 1767, 1768, 1773, 1778, 1783, 1788, 1793, 1798, + 1803, 1808, 1813, 1819, 1825, 1829, 1830, 1835, 1841, 1844, + 1855, 1875, 1881, 1887, 1893, 1902, 1906, 1909, 1917, 1920, + 1925, 1929, 1938, 1943, 1949, 1955, 1963, 1971, 1979, 1987, + 1995, 1998, 2001, 2005, 2012, 2015, 2019, 2026, 2027, 2031, + 2040, 2044, 2047, 2053, 2059, 2062, 2066, 2074, 2077, 2083, + 2086, 2089, 2092, 2095, 2098, 2101, 2104, 2107, 2110, 2113, + 2116, 2122, 2123, 2124, 2128, 2132, 2137, 2142, 2148, 2154, + 2158, 2166, 2167, 2168, 2169, 2172, 2175, 2179, 2182, 2188, + 2191, 2195, 2202, 2209, 2216, 2226, 2227, 2231, 2235, 2239, + 2243, 2263, 2267, 2270, 2276, 2286, 2289, 2295, 2296, 2311, + 2316, 2324, 2328, 2329, 2333, 2334, 2346, 2350, 2356, 2362, + 2366, 2369, 2377, 2380, 2386, 2387, 2391, 2397, 2403, 2407, + 2411, 2417, 2420, 2435, 2438, 2445, 2446, 2451, 2457, 2460, + 2466, 2473, 2480, 2487, 2494, 2501, 2508, 2515, 2525, 2535, + 2545, 2548, 2551, 2561, 2564, 2570, 2574, 2580, 2585, 2598 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "T_REQUIRE_ONCE", "T_REQUIRE", "T_EVAL", "T_INCLUDE_ONCE", "T_INCLUDE", "','", "T_LOGICAL_OR", "T_LOGICAL_XOR", "T_LOGICAL_AND", "T_PRINT", "'='", "T_SR_EQUAL", "T_SL_EQUAL", "T_XOR_EQUAL", "T_OR_EQUAL", "T_AND_EQUAL", "T_MOD_EQUAL", "T_CONCAT_EQUAL", "T_DIV_EQUAL", "T_MUL_EQUAL", "T_MINUS_EQUAL", "T_PLUS_EQUAL", "'?'", "':'", "T_BOOLEAN_OR", "T_BOOLEAN_AND", "'|'", "'^'", "'&'", "T_IS_NOT_IDENTICAL", "T_IS_IDENTICAL", "T_IS_NOT_EQUAL", "T_IS_EQUAL", "'<'", "'>'", "T_IS_GREATER_OR_EQUAL", "T_IS_SMALLER_OR_EQUAL", "T_SR", "T_SL", "'+'", "'-'", "'.'", "'*'", "'/'", "'%'", "'!'", "T_INSTANCEOF", "'~'", "'@'", "T_UNSET_CAST", "T_BOOL_CAST", "T_OBJECT_CAST", "T_ARRAY_CAST", "T_BINARY_CAST", "T_UNICODE_CAST", "T_STRING_CAST", "T_DOUBLE_CAST", "T_INT_CAST", "T_DEC", "T_INC", "'['", "T_CLONE", "T_NEW", "T_EXIT", "T_IF", "T_ELSEIF", "T_ELSE", "T_ENDIF", "T_LNUMBER", "T_DNUMBER", "T_STRING", "T_STRING_VARNAME", "T_VARIABLE", "T_NUM_STRING", "T_INLINE_HTML", "T_CHARACTER", "T_BAD_CHARACTER", "T_ENCAPSED_AND_WHITESPACE", "T_CONSTANT_ENCAPSED_STRING", "T_BACKTICKS_EXPR", "T_ECHO", "T_DO", "T_WHILE", "T_ENDWHILE", "T_FOR", "T_ENDFOR", "T_FOREACH", "T_ENDFOREACH", "T_DECLARE", "T_ENDDECLARE", "T_AS", "T_SWITCH", "T_ENDSWITCH", "T_CASE", "T_DEFAULT", "T_BREAK", "T_CONTINUE", "T_GOTO", "T_FUNCTION", "T_CONST", "T_RETURN", "T_TRY", "T_CATCH", "T_THROW", "T_USE", "T_GLOBAL", "T_PUBLIC", "T_PROTECTED", "T_PRIVATE", "T_FINAL", "T_ABSTRACT", "T_STATIC", "T_VAR", "T_UNSET", "T_ISSET", "T_EMPTY", "T_HALT_COMPILER", "T_CLASS", "T_INTERFACE", "T_EXTENDS", "T_IMPLEMENTS", "T_OBJECT_OPERATOR", "T_DOUBLE_ARROW", "T_LIST", "T_ARRAY", "T_CLASS_C", "T_METHOD_C", "T_FUNC_C", "T_LINE", "T_FILE", "T_COMMENT", "T_DOC_COMMENT", "T_OPEN_TAG", "T_OPEN_TAG_WITH_ECHO", "T_OPEN_TAG_FAKE", "T_CLOSE_TAG", "T_WHITESPACE", "T_START_HEREDOC", "T_END_HEREDOC", "T_HEREDOC", "T_DOLLAR_OPEN_CURLY_BRACES", "T_CURLY_OPEN", "T_PAAMAYIM_NEKUDOTAYIM", "T_BINARY_DOUBLE", "T_BINARY_HEREDOC", "T_NAMESPACE", "T_NS_C", "T_DIR", "T_NS_SEPARATOR", "T_INSTEADOF", - "T_CALLABLE", "T_TRAIT", "T_TRAIT_C", "T_YIELD", "'('", "')'", "';'", - "'{'", "'}'", "'$'", "']'", "$accept", "start", "top_statement_list", - "namespace_name", "top_statement", "use_declarations", "use_declaration", - "constant_declaration", "inner_statement_list", "inner_statement", - "statement", "unticked_statement", "additional_catches", + "T_CALLABLE", "T_TRAIT", "T_TRAIT_C", "T_YIELD", "T_FINALLY", "'('", + "')'", "';'", "'{'", "'}'", "'$'", "']'", "$accept", "start", + "top_statement_list", "namespace_name", "top_statement", + "use_declarations", "use_declaration", "constant_declaration", + "inner_statement_list", "inner_statement", "statement", + "unticked_statement", "additional_catches", "finally_statement", "non_empty_additional_catches", "additional_catch", "unset_variables", "unset_variable", "function_declaration_statement", "class_declaration_statement", "is_reference", "unticked_function_declaration_statement", "unticked_class_declaration_statement", "class_entry_type", "extends_from", "interface_entry", "interface_extends_list", "implements_list", "interface_list", "foreach_optional_arg", "foreach_variable", "for_statement", "foreach_statement", "declare_statement", "declare_list", "switch_case_list", "case_list", "case_separator", "while_statement", "elseif_list", "new_elseif_list", "else_single", "new_else_single", "parameter_list", "non_empty_parameter_list", "optional_class_type", "function_call_parameter_list", "non_empty_function_call_parameter_list", "global_var_list", "global_var", "static_var_list", - "class_statement_list", "class_statement", "@1", "method_body", - "variable_modifiers", "method_modifiers", "non_empty_member_modifiers", - "member_modifier", "class_variable_declaration", - "class_constant_declaration", "echo_expr_list", "for_expr", - "non_empty_for_expr", "expr_without_variable", "function", - "lexical_vars", "lexical_var_list", "function_call", "class_name", + "class_statement_list", "class_statement", "@1", "trait_use_statement", + "trait_list", "trait_adaptations", "trait_adaptation_list", + "non_empty_trait_adaptation_list", "trait_adaptation_statement", + "trait_precedence", "trait_reference_list", "trait_method_reference", + "trait_method_reference_fully_qualified", "trait_alias", + "trait_modifiers", "method_body", "variable_modifiers", + "method_modifiers", "non_empty_member_modifiers", "member_modifier", + "class_variable_declaration", "class_constant_declaration", + "echo_expr_list", "for_expr", "non_empty_for_expr", + "expr_without_variable", "yield_expr", "function", "lexical_vars", + "lexical_var_list", "function_call", "class_name", "fully_qualified_class_name", "class_name_reference", "dynamic_class_name_reference", "dynamic_class_name_variable_properties", "dynamic_class_name_variable_property", "exit_expr", "ctor_arguments", "common_scalar", "static_scalar", "static_class_constant", "scalar", "static_array_pair_list", "possible_comma", "non_empty_static_array_pair_list", "expr", "r_variable", "w_variable", "rw_variable", "variable", "variable_properties", "variable_property", "method_or_not", "variable_without_objects", "static_member", "variable_class_name", "base_variable_with_function_calls", "base_variable", "reference_variable", "compound_variable", "dim_offset", "object_property", "object_dim_list", "variable_name", "simple_indirect_reference", "assignment_list", "assignment_list_element", "array_pair_list", "non_empty_array_pair_list", "internal_functions_in_yacc", "isset_variables", "class_constant", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 44, 263, 264, 265, 266, 61, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 63, 58, 278, 279, 124, 94, 38, 280, 281, 282, 283, 60, 62, 284, 285, 286, 287, 43, 45, 46, 42, 47, 37, 33, 288, 126, 64, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 91, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, - 386, 387, 388, 389, 390, 391, 392, 40, 41, 59, - 123, 125, 36, 93 + 386, 387, 388, 389, 390, 391, 392, 393, 40, 41, + 59, 123, 125, 36, 93 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { - 0, 164, 165, 166, 166, 167, 167, 168, 168, 168, - 168, 168, 168, 168, 168, 168, 169, 169, 170, 170, - 170, 170, 171, 171, 172, 172, 173, 173, 173, 173, - 174, 174, 174, 174, 174, 175, 175, 175, 175, 175, - 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, - 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, - 175, 175, 176, 176, 177, 177, 178, 179, 179, 180, - 181, 182, 183, 183, 184, 185, 185, 186, 186, 186, - 187, 187, 188, 189, 189, 190, 190, 191, 191, 192, + 0, 165, 166, 167, 167, 168, 168, 169, 169, 169, + 169, 169, 169, 169, 169, 169, 170, 170, 171, 171, + 171, 171, 172, 172, 173, 173, 174, 174, 174, 174, + 175, 175, 175, 175, 175, 176, 176, 176, 176, 176, + 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 176, 176, 177, 177, 178, 178, 179, 179, 180, + 181, 181, 182, 183, 184, 185, 185, 186, 187, 187, + 188, 188, 188, 188, 189, 189, 190, 191, 191, 192, 192, 193, 193, 194, 194, 195, 195, 196, 196, 197, - 197, 198, 198, 198, 198, 199, 199, 199, 200, 200, + 197, 198, 198, 199, 199, 200, 200, 200, 200, 201, 201, 201, 202, 202, 203, 203, 204, 204, 205, 205, - 206, 206, 207, 207, 207, 207, 207, 207, 207, 207, - 208, 208, 208, 209, 209, 210, 210, 210, 210, 210, - 210, 211, 211, 212, 212, 212, 213, 213, 213, 213, - 214, 214, 215, 215, 216, 215, 217, 217, 218, 218, - 219, 219, 220, 220, 221, 221, 221, 221, 221, 221, - 222, 222, 222, 222, 223, 223, 224, 224, 225, 225, - 226, 226, 227, 227, 227, 227, 227, 227, 227, 227, - 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, - 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, - 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, - 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, - 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, - 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, - 227, 228, 229, 229, 230, 230, 230, 230, 231, 231, - 231, 231, 231, 231, 231, 231, 232, 232, 232, 232, - 233, 233, 233, 234, 234, 235, 235, 236, 236, 237, - 238, 238, 238, 239, 239, 240, 240, 240, 240, 240, - 240, 240, 240, 240, 240, 240, 241, 241, 241, 241, - 241, 241, 241, 241, 242, 243, 243, 243, 243, 243, - 243, 244, 244, 245, 245, 246, 246, 246, 246, 247, - 247, 248, 249, 250, 251, 251, 252, 252, 253, 254, - 254, 255, 255, 256, 256, 257, 258, 258, 259, 259, - 259, 260, 260, 260, 261, 261, 262, 262, 263, 263, - 264, 264, 264, 265, 265, 266, 266, 267, 267, 268, - 268, 268, 269, 269, 270, 270, 270, 270, 270, 270, - 270, 270, 271, 271, 271, 271, 271, 271, 271, 272, - 272, 273, 273, 227 + 206, 206, 207, 207, 208, 208, 209, 209, 209, 209, + 209, 209, 209, 209, 210, 210, 210, 210, 211, 211, + 212, 212, 212, 212, 212, 212, 213, 213, 214, 214, + 214, 215, 215, 215, 215, 216, 216, 217, 217, 217, + 218, 217, 219, 220, 220, 221, 221, 222, 222, 223, + 223, 224, 224, 225, 226, 226, 227, 227, 228, 229, + 229, 230, 230, 231, 231, 232, 232, 233, 233, 234, + 234, 235, 235, 235, 235, 235, 235, 236, 236, 236, + 236, 237, 237, 238, 238, 239, 239, 240, 240, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 242, 242, 242, 242, 243, 244, 244, 245, 245, + 245, 245, 246, 246, 246, 246, 246, 246, 246, 246, + 247, 247, 247, 247, 248, 248, 248, 249, 249, 250, + 250, 251, 251, 252, 253, 253, 253, 254, 254, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 256, 256, 256, 256, 256, 256, 256, 256, 256, + 257, 258, 258, 258, 258, 258, 258, 259, 259, 260, + 260, 261, 261, 261, 261, 262, 262, 263, 264, 265, + 266, 266, 267, 267, 268, 269, 269, 270, 270, 271, + 271, 272, 273, 273, 274, 274, 274, 275, 275, 275, + 276, 276, 277, 277, 278, 278, 279, 279, 279, 280, + 280, 281, 281, 282, 282, 283, 283, 283, 284, 284, + 285, 285, 285, 285, 285, 285, 285, 285, 286, 286, + 286, 286, 286, 286, 286, 287, 287, 288, 288, 241 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 1, 2, 0, 1, 3, 1, 1, 1, 4, 3, 5, 4, 3, 2, 3, 1, 1, 3, 2, 4, 5, 4, 2, 0, 1, 1, 1, 4, 1, 2, 1, 1, 1, 3, 7, 10, 5, 7, 9, 5, 2, 3, 2, 3, 2, 3, 3, 3, - 3, 3, 1, 2, 5, 8, 8, 5, 1, 13, - 3, 3, 1, 0, 1, 2, 8, 1, 3, 1, - 1, 1, 0, 1, 9, 7, 6, 1, 2, 2, - 0, 2, 1, 0, 2, 0, 2, 1, 3, 0, - 2, 1, 2, 1, 4, 1, 4, 1, 4, 3, - 5, 3, 4, 4, 5, 0, 5, 4, 1, 1, - 1, 4, 0, 6, 0, 7, 0, 2, 0, 3, - 1, 0, 2, 3, 5, 4, 4, 5, 7, 6, - 0, 1, 1, 1, 0, 1, 1, 2, 3, 3, - 4, 3, 1, 1, 2, 4, 3, 5, 1, 3, - 2, 0, 3, 2, 0, 9, 1, 3, 1, 1, - 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, - 3, 5, 1, 3, 5, 4, 3, 1, 0, 1, - 3, 1, 6, 3, 4, 6, 3, 2, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, - 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, - 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 5, 4, 1, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 4, 1, 1, 2, 9, - 10, 1, 0, 4, 3, 4, 1, 2, 4, 6, - 5, 6, 6, 6, 6, 4, 1, 1, 3, 2, - 1, 3, 2, 1, 1, 4, 1, 2, 0, 2, - 0, 2, 3, 0, 3, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, - 2, 2, 4, 1, 3, 1, 1, 1, 3, 2, - 1, 0, 2, 0, 1, 5, 3, 3, 1, 1, - 1, 1, 1, 1, 5, 1, 2, 0, 3, 3, - 0, 1, 2, 3, 3, 1, 1, 1, 1, 2, - 1, 4, 4, 1, 1, 4, 0, 1, 1, 1, - 4, 4, 1, 1, 3, 1, 2, 3, 1, 1, - 4, 0, 0, 2, 5, 3, 3, 1, 6, 4, - 4, 2, 4, 4, 2, 2, 4, 2, 2, 1, - 3, 3, 3, 4 + 3, 3, 1, 2, 2, 5, 8, 8, 5, 1, + 14, 3, 3, 1, 0, 0, 4, 1, 2, 8, + 1, 3, 1, 1, 1, 0, 1, 9, 7, 6, + 1, 2, 2, 1, 0, 2, 1, 0, 2, 0, + 2, 1, 3, 0, 2, 1, 2, 1, 4, 1, + 4, 1, 4, 3, 5, 3, 4, 4, 5, 0, + 5, 4, 1, 1, 1, 4, 0, 6, 0, 7, + 0, 2, 0, 3, 1, 0, 2, 3, 5, 4, + 4, 5, 7, 6, 0, 1, 1, 1, 1, 0, + 1, 1, 2, 3, 3, 4, 3, 1, 1, 2, + 4, 3, 5, 1, 3, 2, 0, 3, 2, 1, + 0, 9, 3, 1, 3, 1, 3, 0, 1, 1, + 2, 2, 2, 3, 1, 3, 1, 1, 3, 4, + 3, 0, 1, 1, 3, 1, 1, 0, 1, 1, + 2, 1, 1, 1, 1, 1, 1, 3, 5, 1, + 3, 5, 4, 3, 1, 0, 1, 3, 1, 6, + 3, 4, 6, 3, 2, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 5, 4, 1, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 4, 3, 1, 1, 2, 1, 3, 9, + 10, 2, 2, 4, 4, 1, 0, 4, 3, 4, + 1, 2, 4, 6, 5, 6, 6, 6, 6, 4, + 1, 1, 3, 2, 1, 3, 2, 1, 1, 4, + 1, 2, 0, 2, 0, 2, 3, 0, 3, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 3, 2, 2, 2, 4, 3, 1, + 3, 1, 1, 1, 3, 2, 1, 0, 2, 0, + 1, 5, 3, 3, 1, 1, 1, 1, 1, 1, + 5, 1, 2, 0, 3, 3, 0, 1, 2, 3, + 3, 1, 1, 1, 1, 2, 1, 4, 4, 1, + 1, 4, 0, 1, 1, 1, 4, 4, 1, 1, + 3, 1, 2, 3, 1, 1, 4, 0, 0, 2, + 5, 3, 3, 1, 6, 4, 4, 2, 4, 4, + 2, 2, 4, 2, 2, 1, 3, 3, 3, 4 }; /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state STATE-NUM when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 4, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 280, 0, 285, 286, - 5, 305, 344, 52, 287, 246, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 251, 0, 0, 0, - 0, 0, 0, 0, 0, 266, 0, 0, 0, 0, - 77, 82, 0, 0, 291, 292, 293, 288, 289, 32, - 33, 34, 295, 0, 294, 290, 0, 0, 58, 25, - 355, 307, 3, 0, 7, 30, 8, 9, 70, 71, - 0, 0, 320, 72, 337, 0, 310, 247, 0, 319, - 0, 321, 0, 340, 0, 325, 336, 338, 343, 0, - 235, 306, 5, 266, 0, 72, 378, 377, 0, 375, - 374, 248, 219, 220, 221, 222, 244, 242, 241, 240, - 239, 238, 237, 236, 266, 0, 0, 267, 0, 202, - 323, 0, 200, 187, 0, 0, 267, 273, 283, 274, - 0, 276, 338, 0, 0, 243, 0, 31, 0, 177, - 0, 0, 178, 0, 0, 0, 42, 0, 44, 0, - 0, 0, 46, 320, 0, 321, 25, 0, 0, 18, - 0, 17, 143, 0, 0, 142, 79, 78, 148, 0, - 72, 0, 0, 0, 0, 361, 362, 0, 4, 0, - 309, 0, 0, 0, 0, 134, 0, 15, 80, 83, - 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 398, 0, 0, 314, 0, 319, + 320, 5, 341, 380, 52, 321, 274, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 285, 0, 0, + 0, 0, 0, 0, 0, 0, 300, 0, 0, 0, + 0, 80, 86, 0, 0, 325, 326, 328, 322, 323, + 32, 33, 34, 330, 0, 329, 324, 0, 83, 327, + 277, 0, 59, 25, 391, 343, 3, 0, 7, 30, + 8, 9, 73, 74, 0, 0, 356, 0, 75, 373, + 0, 346, 275, 0, 355, 0, 357, 0, 376, 0, + 361, 372, 374, 379, 0, 262, 342, 5, 300, 0, + 277, 75, 414, 413, 0, 411, 410, 276, 246, 247, + 248, 249, 271, 269, 268, 267, 266, 265, 264, 263, + 300, 0, 0, 301, 0, 229, 359, 0, 227, 0, + 403, 0, 349, 214, 0, 0, 301, 307, 317, 308, + 0, 310, 374, 0, 0, 270, 0, 31, 0, 204, + 0, 0, 205, 0, 0, 0, 42, 0, 44, 0, + 0, 0, 46, 356, 0, 357, 25, 0, 0, 18, + 0, 17, 148, 0, 0, 147, 82, 81, 153, 0, + 75, 0, 0, 0, 0, 397, 398, 0, 4, 0, + 345, 356, 0, 357, 0, 0, 0, 0, 0, 139, + 0, 15, 84, 87, 54, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, - 53, 201, 199, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 134, 0, 0, 346, 0, - 356, 339, 0, 0, 0, 269, 0, 0, 0, 269, - 0, 134, 186, 0, 0, 339, 281, 0, 0, 0, - 51, 0, 0, 0, 179, 181, 320, 321, 0, 0, - 0, 43, 45, 61, 0, 47, 48, 0, 60, 20, - 0, 0, 14, 0, 144, 321, 0, 49, 0, 0, - 50, 0, 0, 67, 69, 379, 0, 0, 0, 0, - 359, 0, 358, 0, 367, 0, 313, 308, 0, 11, - 4, 134, 232, 0, 35, 24, 26, 27, 28, 0, - 6, 0, 0, 133, 320, 321, 0, 0, 85, 0, - 0, 0, 130, 381, 333, 331, 0, 205, 207, 206, - 0, 0, 203, 204, 208, 210, 209, 224, 223, 226, - 225, 227, 229, 230, 228, 218, 217, 212, 213, 211, - 214, 215, 216, 231, 347, 0, 0, 183, 198, 197, - 196, 195, 194, 193, 192, 191, 190, 189, 188, 0, - 382, 334, 353, 0, 349, 330, 348, 352, 0, 0, - 376, 268, 0, 0, 268, 333, 0, 334, 278, 282, - 0, 176, 0, 0, 178, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 297, 0, 296, - 23, 303, 0, 0, 19, 16, 0, 141, 149, 146, - 130, 0, 0, 0, 372, 373, 10, 361, 361, 0, - 371, 322, 0, 245, 314, 363, 134, 13, 0, 0, - 0, 345, 137, 258, 0, 0, 0, 0, 270, 81, - 0, 0, 84, 87, 151, 130, 132, 0, 120, 0, - 131, 134, 134, 332, 234, 0, 383, 0, 184, 265, - 134, 134, 0, 134, 327, 346, 0, 341, 342, 284, - 275, 25, 112, 0, 25, 110, 38, 0, 180, 89, - 0, 89, 91, 99, 0, 25, 97, 57, 105, 105, - 41, 300, 301, 311, 0, 299, 0, 0, 21, 145, - 0, 0, 68, 54, 380, 0, 357, 0, 0, 366, - 0, 365, 0, 12, 260, 0, 0, 320, 321, 22, - 0, 272, 86, 151, 0, 160, 0, 252, 130, 0, - 122, 0, 0, 233, 283, 0, 0, 354, 0, 324, - 0, 0, 0, 277, 114, 116, 0, 0, 178, 0, - 0, 92, 0, 0, 0, 105, 0, 105, 0, 318, - 0, 313, 298, 304, 0, 147, 252, 360, 182, 370, - 369, 0, 259, 29, 140, 271, 160, 88, 0, 164, - 165, 166, 169, 168, 167, 159, 76, 150, 0, 0, - 158, 162, 0, 0, 0, 0, 0, 123, 0, 261, - 264, 185, 262, 263, 329, 0, 326, 350, 351, 279, - 118, 0, 0, 36, 39, 0, 0, 90, 0, 0, - 100, 0, 0, 0, 0, 0, 0, 101, 0, 302, - 314, 312, 0, 0, 0, 364, 75, 0, 172, 0, - 154, 163, 0, 153, 25, 0, 25, 0, 126, 0, - 125, 330, 0, 0, 0, 0, 117, 111, 0, 25, - 95, 56, 55, 98, 0, 103, 0, 108, 109, 25, - 102, 317, 316, 0, 25, 368, 0, 0, 0, 152, - 72, 0, 0, 0, 256, 0, 0, 127, 0, 124, - 328, 0, 25, 0, 0, 25, 93, 40, 0, 104, - 25, 107, 0, 0, 0, 175, 173, 170, 0, 0, - 74, 257, 0, 253, 249, 0, 129, 0, 119, 37, - 0, 0, 0, 106, 315, 25, 250, 0, 0, 174, - 0, 254, 128, 0, 113, 0, 96, 0, 171, 130, - 255, 25, 94, 63, 0, 115, 0, 59, 62, 64, - 0, 0, 65, 156, 25, 155, 0, 0, 0, 157, - 0, 25, 0, 66 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 382, 53, 228, 226, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 139, 0, 0, 382, 0, 392, 375, 0, 0, 0, + 303, 0, 0, 407, 358, 0, 273, 350, 399, 0, + 303, 0, 139, 213, 0, 0, 375, 315, 0, 0, + 0, 51, 0, 0, 0, 206, 208, 356, 357, 0, + 0, 0, 43, 45, 62, 0, 47, 48, 0, 61, + 20, 0, 0, 14, 0, 149, 357, 0, 49, 0, + 0, 50, 0, 0, 70, 72, 415, 0, 0, 0, + 0, 395, 0, 394, 0, 344, 0, 11, 4, 139, + 0, 278, 259, 0, 35, 24, 26, 27, 28, 0, + 6, 0, 0, 138, 356, 357, 0, 0, 89, 0, + 0, 0, 134, 417, 369, 367, 0, 232, 234, 233, + 0, 0, 230, 231, 235, 237, 236, 251, 250, 253, + 252, 254, 256, 257, 255, 245, 244, 239, 240, 238, + 241, 242, 243, 258, 383, 0, 0, 210, 225, 224, + 223, 222, 221, 220, 219, 218, 217, 216, 215, 0, + 418, 370, 389, 0, 385, 366, 384, 388, 0, 0, + 412, 302, 0, 0, 0, 402, 0, 401, 302, 369, + 0, 370, 312, 316, 0, 203, 0, 0, 205, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 347, 0, + 0, 0, 332, 0, 331, 23, 339, 0, 0, 19, + 16, 0, 146, 154, 151, 134, 0, 0, 0, 408, + 409, 10, 397, 397, 0, 272, 139, 13, 0, 0, + 356, 357, 0, 381, 142, 292, 0, 0, 0, 0, + 304, 85, 0, 0, 88, 91, 156, 134, 136, 137, + 0, 124, 0, 135, 139, 139, 368, 261, 0, 419, + 0, 211, 299, 139, 139, 0, 139, 363, 382, 0, + 377, 378, 406, 405, 0, 318, 309, 25, 116, 0, + 25, 114, 38, 0, 207, 93, 0, 93, 95, 103, + 0, 25, 101, 58, 109, 109, 41, 335, 336, 354, + 0, 349, 347, 0, 334, 0, 0, 21, 150, 0, + 0, 71, 55, 416, 0, 393, 0, 0, 12, 294, + 0, 0, 356, 357, 22, 0, 306, 90, 156, 0, + 187, 0, 286, 134, 0, 126, 0, 0, 260, 317, + 0, 0, 390, 0, 360, 0, 0, 0, 400, 0, + 311, 118, 120, 0, 0, 205, 0, 0, 96, 0, + 0, 0, 109, 0, 109, 0, 0, 338, 350, 348, + 0, 333, 340, 0, 152, 286, 396, 209, 293, 29, + 145, 305, 187, 92, 0, 0, 191, 192, 193, 196, + 195, 194, 186, 79, 155, 159, 0, 0, 185, 189, + 0, 0, 0, 0, 0, 127, 0, 295, 298, 212, + 296, 297, 365, 0, 362, 386, 387, 404, 313, 122, + 0, 0, 36, 39, 0, 0, 94, 0, 0, 104, + 0, 0, 0, 0, 0, 0, 105, 353, 352, 337, + 0, 0, 78, 0, 0, 163, 199, 0, 160, 190, + 0, 158, 25, 0, 25, 0, 130, 0, 129, 366, + 0, 0, 0, 0, 121, 115, 0, 25, 99, 57, + 56, 102, 0, 107, 0, 112, 113, 25, 106, 0, + 0, 25, 0, 0, 165, 167, 162, 0, 0, 157, + 75, 0, 0, 0, 290, 0, 0, 131, 0, 128, + 364, 0, 25, 0, 0, 25, 97, 40, 0, 108, + 25, 111, 351, 0, 0, 202, 164, 5, 0, 168, + 169, 0, 0, 177, 0, 0, 200, 197, 0, 0, + 77, 291, 0, 287, 279, 0, 133, 0, 123, 37, + 0, 0, 0, 110, 25, 280, 166, 170, 171, 181, + 0, 172, 0, 0, 0, 201, 0, 288, 132, 0, + 117, 0, 100, 0, 0, 180, 173, 174, 178, 198, + 134, 289, 25, 98, 64, 179, 0, 0, 119, 0, + 65, 63, 67, 175, 0, 0, 0, 60, 68, 183, + 25, 161, 0, 25, 0, 0, 0, 184, 0, 66, + 25, 0, 69 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { - -1, 1, 2, 81, 82, 180, 181, 83, 202, 335, - 336, 85, 787, 788, 789, 312, 313, 337, 338, 211, - 88, 89, 90, 348, 91, 350, 481, 482, 590, 521, - 737, 701, 527, 289, 530, 596, 709, 516, 585, 650, - 653, 694, 487, 488, 489, 342, 343, 184, 185, 189, - 565, 627, 720, 795, 628, 629, 630, 631, 679, 632, - 158, 283, 284, 92, 115, 635, 725, 94, 95, 490, - 148, 149, 510, 583, 155, 272, 96, 440, 441, 97, - 600, 465, 601, 98, 99, 460, 100, 101, 579, 646, - 504, 102, 103, 104, 105, 106, 107, 108, 385, 405, - 406, 407, 109, 321, 322, 325, 326, 110, 316, 111 + -1, 1, 2, 85, 86, 190, 191, 87, 216, 355, + 356, 89, 840, 847, 841, 842, 333, 334, 357, 358, + 226, 92, 93, 94, 368, 95, 370, 503, 504, 617, + 547, 767, 729, 553, 310, 556, 623, 737, 542, 612, + 679, 682, 722, 510, 511, 512, 362, 363, 194, 195, + 199, 590, 654, 750, 655, 704, 746, 778, 779, 780, + 781, 826, 782, 783, 784, 824, 851, 656, 657, 658, + 659, 707, 660, 168, 304, 305, 96, 97, 121, 663, + 755, 99, 100, 513, 158, 159, 536, 610, 165, 293, + 101, 559, 466, 102, 560, 288, 561, 103, 104, 283, + 105, 106, 604, 674, 527, 107, 108, 109, 110, 111, + 112, 113, 405, 425, 426, 427, 114, 342, 343, 151, + 152, 115, 337, 116 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -448 +#define YYPACT_NINF -632 static const yytype_int16 yypact[] = { - -448, 62, 1789, -448, 6169, 6169, -85, 6169, 6169, 6169, - 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6169, - 6169, 6169, 201, 201, 6169, 339, -71, -66, -448, -448, - 67, -448, -448, -448, -448, -448, 6169, 4449, -44, -35, - 3, 37, 53, 4589, 4720, 124, -448, 141, 4851, 59, - 6169, -16, -25, 102, 111, 70, 76, 79, 83, 123, - -448, -448, 126, 128, -448, -448, -448, -448, -448, -448, - -448, -448, -448, -43, -448, -448, 175, 6169, -448, -448, - 108, 66, -448, 13, -448, -448, -448, -448, -448, -448, - 217, 221, -448, 261, -448, 158, -448, -448, 6579, -448, - 44, 1477, 148, -448, 169, 194, -448, -36, -448, -20, - -448, -448, -448, 222, 174, 261, 7251, 7251, 6169, 7251, - 7251, 7325, 271, 271, 21, 271, 271, 271, 271, 271, - 271, 271, 271, 271, -448, 200, 175, -68, 220, -448, - -448, 223, -448, -448, 211, 175, 213, 225, 215, -448, - 228, 264, -30, -20, 4982, -448, 6169, -448, 14, 7251, - 322, 6169, 6169, 6169, 335, 6169, -448, 6621, -448, 6662, - 254, 404, -448, 259, 7251, 935, -448, 6712, 175, -41, - 18, -448, -448, 90, 20, -448, -448, -448, 407, 23, - 261, 201, 201, 201, 268, 196, 5114, 175, -448, 153, - 209, 868, 1929, 6169, 349, 5246, 354, -448, 307, 308, - -448, -4, -8, 6169, 6169, 6169, 5378, 6169, 6169, 6169, - 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6169, - 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6169, 339, 6169, - -448, -448, -448, 5510, 6169, 6169, 6169, 6169, 6169, 6169, - 6169, 6169, 6169, 6169, 6169, 5246, 41, -24, 6169, 6169, - 108, -34, 275, 6754, 175, -63, 45, 58, 175, 213, - 0, 5246, -448, 0, -24, -28, -448, 6795, 6845, 6169, - -448, 280, 6886, 286, 438, 7251, 357, 1206, 446, 30, - 6927, -448, -448, -448, 1061, -448, -448, 2069, -448, -39, - 388, -16, -448, 6169, -448, -448, -25, -448, 1061, 387, - -448, 310, 31, -448, -448, -448, 32, 306, 312, 315, - -448, 33, -448, 201, 7109, 317, 457, 210, 1509, -448, - -448, 5246, -448, 321, -448, -448, -448, -448, -448, 6305, - -448, 201, 324, 471, 34, 363, 470, 19, 362, 19, - 328, 332, 91, 336, 340, -28, -20, 1408, 7288, 7325, - 6169, 7210, 7398, 7433, 4642, 4773, 4904, 5035, 5035, 5035, - 5035, 5161, 5161, 5161, 5161, 510, 510, 282, 282, 282, - 21, 21, 21, -448, 7251, 329, -7, 7325, 7325, 7325, - 7325, 7325, 7325, 7325, 7325, 7325, 7325, 7325, 7325, 333, - 341, 342, -448, 6169, -448, 343, -26, -448, 344, 6346, - -448, 55, 336, 341, 213, -448, 338, -448, -448, -448, - 3749, 7251, 6169, 3889, 6169, 6169, 201, 54, 1061, 431, - 4029, -3, 1061, 1061, 348, 355, 175, 84, 364, -448, - -448, -448, 405, 440, -448, -448, 6387, -448, -448, 498, - 91, 201, 356, 201, -448, -448, -448, 196, 196, 505, - -448, -448, 5642, -448, 5774, -448, 5246, -448, 1649, 361, - 366, -448, -448, -448, 5906, 1061, 371, 175, 213, -448, - 19, 365, 518, -448, -448, 91, -448, 370, 521, 29, - -448, 5246, 5246, -28, 7362, 6169, -448, 339, -448, -448, - 5246, 5246, 6442, 5246, -448, 6169, 6169, -448, -448, -448, - 406, -448, -448, 6977, -448, -448, -448, 373, 7251, 409, - 201, 409, -448, -448, 522, -448, -448, -448, 377, 379, - -448, -448, -448, 1061, 175, 113, 468, 389, -448, -448, - 1061, 386, -448, -448, -448, 35, -448, 6169, 201, 7251, - 201, 7150, 390, -448, -448, 399, 201, 38, 382, -448, - 175, 213, 518, -448, 19, -12, 391, 454, 86, 487, - 532, 408, 416, 7362, 215, 417, 419, -448, 422, 441, - 418, 6483, -24, -448, 3609, 219, 424, 2209, 6169, 54, - 426, -448, 428, 1061, 2349, -448, 297, -448, -18, 442, - 430, 581, 121, -448, 19, -448, 454, -448, 7325, -448, - -448, 6038, -448, -448, -448, 213, 187, -448, 535, -448, - -448, -448, -448, -448, -448, -448, -448, -448, 516, 222, - 489, -448, 24, 434, 453, 451, 64, 599, 1061, -448, - -448, -448, -448, -448, -448, -24, -448, -448, -448, -448, - 252, 456, 4449, -448, -448, 455, 458, -448, 4169, 4169, - -448, 459, 359, 460, 6169, -1, 112, -448, 1061, -448, - 1061, -448, 540, 463, 201, 7251, -448, 604, 607, 28, - -448, -448, 551, -448, -448, 94, -448, 550, 613, 1061, - -448, 343, 473, 602, 561, 6169, -448, -448, 4309, -448, - -448, -448, -448, -448, 474, -448, 6524, -448, -448, -448, - -448, -448, 511, 477, -448, -448, 1061, 1061, 562, -448, - 261, 625, 2489, 564, -448, 40, 2629, 627, 1061, -448, - -448, 6169, -448, 482, 7018, -448, -448, -448, 2769, -448, - -448, 3609, 1061, 483, 2909, -448, -448, 631, 572, 1061, - -448, -448, 120, -448, -448, 1061, -448, 7059, 3609, -448, - 4449, 3049, 488, 3609, -448, -448, -448, 1061, 491, -448, - 571, -448, -448, 623, -448, 493, -448, 3189, -448, 91, - -448, -448, -448, 545, 496, 3609, 499, -448, 545, -448, - 181, 19, -448, -448, -448, -448, 583, 3329, 497, -448, - 501, -448, 3469, -448 + -632, 53, 1771, -632, 6283, 6283, -65, 6283, 6283, 6283, + 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, + 6283, 6283, 463, 463, 4711, 6283, 499, -63, -41, -632, + -632, 124, -632, -632, -632, -632, -632, 6283, 4571, -38, + 32, 63, 86, 92, 4842, 4973, 129, -632, 156, 5104, + 91, 6283, 10, -35, 138, 165, -7, 118, 135, 137, + 144, -632, -632, 152, 157, -632, -632, -632, -632, -632, + -632, -632, -632, -632, -6, -632, -632, 248, -632, -632, + 6283, 6414, -632, -632, 167, 67, -632, 14, -632, -632, + -632, -632, -632, -632, 272, 274, -632, 188, 319, -632, + 207, -632, -632, 6833, -632, 29, 1226, 195, -632, 210, + 234, -632, -26, -632, -30, -632, -632, -632, 260, 216, + -632, 319, 7644, 7644, 6283, 7644, 7644, 1617, 311, 311, + 24, 311, 311, 311, 311, 311, 311, 311, 311, 311, + -632, 222, 248, -88, 231, -632, -632, 232, -632, 463, + 7408, 214, 371, -632, 229, 248, 239, 237, 233, -632, + 247, 269, -27, -30, 5235, -632, 6283, -632, 16, 7644, + 313, 6283, 6283, 6283, 327, 6283, -632, 6875, -632, 6916, + 241, 402, -632, 257, 7644, 390, -632, 6967, 248, -4, + 20, -632, -632, 407, 21, -632, -632, -632, 406, 22, + 319, 463, 463, 463, 261, 322, 4711, 248, -632, 158, + 117, -81, 7449, 985, 262, 7009, 1911, 6283, 349, 5366, + 364, -632, 320, 324, -632, -632, -16, -9, 6283, 6283, + 6283, 5497, 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, + 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, + 6283, 6283, 6283, 499, 6283, -632, -632, -632, 5628, 6283, + 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, 6283, + 5366, 2, 1, 6283, 6283, 167, -31, 283, 7050, 248, + -36, 48, 68, -632, -632, 5759, -632, 5890, -632, 248, + 239, -15, 5366, -632, -15, 1, -32, -632, 7101, 7142, + 6283, -632, 291, 7183, 290, 447, 7644, 363, 931, 446, + 27, 7234, -632, -632, -632, 7515, -632, -632, 2051, -632, + 56, 389, 10, -632, 6283, -632, -632, -35, -632, 7515, + 391, -632, 309, 38, -632, -632, -632, 40, 312, 308, + 314, -632, 41, -632, 315, 136, 1470, -632, -632, 5366, + 6283, -632, -632, 318, -632, -632, -632, -632, -632, 6557, + -632, 463, 331, 469, 42, 90, 478, 9, 369, 9, + 332, 337, 71, 340, 341, -32, -30, 7684, 7721, 1617, + 6283, 7572, 7794, 7829, 4764, 4895, 5026, 5157, 5157, 5157, + 5157, 1375, 1375, 1375, 1375, 382, 382, 323, 323, 323, + 24, 24, 24, -632, 7644, 336, 172, 1617, 1617, 1617, + 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 347, + 351, 352, -632, 6283, -632, 360, -22, -632, 355, 6598, + -632, 115, 340, 351, 463, 7644, 463, 7507, 239, -632, + 365, -632, -632, -632, 3871, 7644, 6283, 4011, 6283, 6283, + 463, 65, 7515, 449, 4151, -3, 7515, 7515, 7515, 368, + 372, 248, 72, 384, -632, -632, -632, 422, 457, -632, + -632, 6639, -632, -632, 520, 71, 463, 375, 463, -632, + -632, -632, 322, 322, 524, -632, 5366, -632, 1631, 380, + 12, 1176, 381, -632, -632, -632, 6021, 7515, 395, 248, + 239, -632, 9, 387, 533, -632, -632, 71, -632, -632, + 393, 545, 11, -632, 5366, 5366, -32, 7758, 6283, -632, + 499, -632, -632, 5366, 5366, 6695, 5366, -632, 6283, 6283, + -632, -632, -632, -632, 6152, -632, 430, -632, -632, 7275, + -632, -632, -632, 396, 7644, 434, 463, 434, -632, -632, + 547, -632, -632, -632, 404, 405, -632, -632, -632, 437, + 409, 558, 7515, 248, 75, 496, 418, -632, -632, 7515, + 419, -632, -632, -632, 44, -632, 6283, 420, -632, -632, + 421, 463, 47, 696, -632, 248, 239, 533, -632, 9, + 227, 424, 473, 100, 509, 573, 428, 432, 7758, 233, + 435, 436, -632, 442, 472, 429, 6736, 463, 7644, 1, + -632, 3731, 238, 443, 2191, 6283, 65, 445, -632, 448, + 7515, 2331, -632, 193, -632, 146, 7515, -632, 7515, -632, + 458, 87, -632, 9, -632, 473, -632, 1617, -632, -632, + -632, 239, 583, -632, 548, 9, -632, -632, -632, -632, + -632, -632, -632, -632, -632, -632, 530, 260, 403, -632, + 31, 459, 464, 462, 61, 593, 7515, -632, -632, -632, + -632, -632, -632, 1, -632, -632, -632, -632, -632, 256, + 467, 4571, -632, -632, 468, 470, -632, 4291, 4291, -632, + 471, 217, 475, 6283, -1, 160, -632, -632, 511, -632, + 562, 488, -632, 638, 7, -632, 640, 36, -632, -632, + 581, -632, -632, 94, -632, 582, 646, 7515, -632, 360, + 505, 641, 596, 6283, -632, -632, 4431, -632, -632, -632, + -632, -632, 508, -632, 6777, -632, -632, -632, -632, 7515, + 510, -632, 7515, 9, -632, 15, -632, 7515, 597, -632, + 319, 658, 2471, 599, -632, 50, 2611, 662, 7515, -632, + -632, 6283, -632, 516, 7316, -632, -632, -632, 2751, -632, + -632, 3731, -632, 517, 2891, -632, -632, 584, 521, 15, + -632, 522, 591, 534, 529, 546, -632, 687, 628, 7515, + -632, -632, 164, -632, -632, 7515, -632, 7367, 3731, -632, + 4571, 3031, 543, 3731, -632, -632, -632, -632, -632, 532, + 9, -632, 632, 7515, 549, -632, 631, -632, -632, 682, + -632, 563, -632, 3171, 649, 657, 723, -632, -632, -632, + 71, -632, -632, -632, 627, -632, 9, 574, 3731, 576, + 578, 627, -632, -632, 166, 9, 577, -632, -632, -632, + -632, -632, 664, -632, 3311, 588, 3451, -632, 580, -632, + -632, 3591, -632 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -448, -448, -174, -17, -448, -448, 358, -448, -172, -448, - 8, -448, -448, -448, -126, -448, 212, 5, 9, -114, - -448, -448, -448, -448, -448, -448, -448, 184, 144, 80, - -448, 11, -448, -448, -448, -447, -38, -448, -448, -448, - -448, -448, -441, -448, 103, -184, -448, -448, 367, -448, - 114, -448, -448, -448, -448, -448, -448, 46, -448, -448, - -448, -404, -448, 104, -2, 68, -448, -448, 256, -334, - -222, -448, -448, -448, -448, 101, -247, 580, -448, -448, - -448, 77, -448, 814, 502, -324, 334, 914, -448, -448, - -10, -193, -448, 969, -448, -23, -13, -448, -240, -271, - -448, -448, -11, 229, 232, -448, -448, -448, -448, -448 + -632, -632, -192, -18, -632, -632, 415, -632, -180, -632, + 0, -632, -632, -632, -632, -99, -632, 267, 17, 19, + -120, -632, -632, -632, -632, -632, -632, -632, 246, 202, + 139, -632, 64, -632, -632, -632, -522, 25, -632, -632, + -632, -632, -632, -464, -632, 163, -223, -632, -632, 426, + -632, 174, -632, -632, -632, -632, -632, -632, -632, -11, + -632, -632, -632, -632, -632, -632, -632, -632, -632, -632, + -631, -632, -632, -632, -438, -632, 250, 679, -2, 132, + -632, -632, 182, -349, -240, -632, -632, -632, -632, 171, + -264, 706, -632, -632, 213, 218, -632, 856, 585, -335, + 310, 863, -632, -632, 62, -210, -632, 781, -632, -19, + -17, -632, -261, -292, -632, -632, -12, 298, 299, 579, + -632, -632, -632, -632 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which number is the opposite. If zero, do what YYDEFACT says. If YYTABLE_NINF, syntax error. */ -#define YYTABLE_NINF -336 +#define YYTABLE_NINF -372 static const yytype_int16 yytable[] = { - 93, 262, 151, 418, 297, 137, 137, 86, 146, 541, - 84, 87, 152, 479, 153, 483, 383, 472, 408, 354, - 517, 206, 279, 528, 328, 707, 301, 258, 306, 258, - 112, 309, 682, 258, 179, 258, 718, 505, 429, 451, - 453, 458, -135, 458, 566, 160, -138, 439, 752, 402, - 182, 32, 300, 190, 443, 32, 199, 112, 497, 200, - 569, 439, 3, 401, 404, 353, 112, 32, 32, 351, - 238, 399, 118, 354, 401, 32, 311, 415, 664, 665, - 417, 404, 598, 204, 239, 520, 154, 416, 204, 205, - 618, 156, 112, 157, 331, 687, 261, 619, 620, 621, - 622, 623, 624, 625, 570, 241, 242, 134, 197, -335, - 204, 190, 204, 161, 400, -335, 32, 198, 412, 265, - 32, -331, 162, -332, 259, 723, 259, 112, 269, 32, - 259, 413, 259, 32, 506, 178, 403, 183, 80, 688, - 275, 135, 260, 667, 136, 188, 483, 469, 662, 626, - 666, 770, 173, 352, 80, 80, 468, 529, 708, 112, - 163, 299, 80, 112, 112, 32, 137, 476, 134, 724, - 477, 46, 207, 280, 137, 137, 137, 302, 137, 307, - 327, 439, 310, 683, 656, 439, 439, 719, 430, 452, - 454, 459, -135, 607, 164, 771, -138, 170, 753, 355, - 93, 356, 135, 80, 134, 136, 204, 80, 664, 665, - 165, -267, 466, 486, 171, 151, 80, 204, 486, 176, - 80, 146, 186, 205, 609, 152, 610, 153, 439, -267, - 617, 187, 614, 191, 476, 204, 192, 477, 135, 476, - 193, 136, 477, 355, 355, 356, 356, 411, 112, -121, - 303, 414, 80, 355, 355, 356, 356, 355, -269, 356, - 355, 355, 356, 356, 204, 580, -268, 286, 203, 112, - 672, 32, 204, 710, 112, 574, 32, 437, 138, 138, - 194, 147, 552, 195, 179, 196, 439, 651, 652, 618, - 208, 437, 210, 439, 209, 93, 619, 620, 621, 622, - 623, 624, 625, 212, 204, 255, 137, 571, 572, 344, - 134, 649, 329, 330, 256, 134, 575, 576, 257, 578, - 692, 693, 319, 46, 137, 197, 93, 235, 236, 237, - 478, 238, 478, 86, 239, 478, 84, 87, 784, 584, - 793, 794, 587, 493, 135, 239, 439, 136, 676, 135, - 715, 264, 136, 594, -269, -268, 139, 142, 80, 344, - 204, 204, 268, 80, 204, 266, 331, 466, 267, 137, - 270, -136, 271, 273, 691, 344, 243, 244, 245, 246, - 247, 248, 249, 250, 251, 252, 253, 254, 274, 404, - -139, 439, 663, 664, 665, 243, 244, 245, 246, 247, - 248, 249, 250, 251, 252, 253, 254, 281, 288, 137, - 137, 437, 112, 293, 32, 437, 437, 294, 295, 535, - 308, 439, 340, 439, -323, -323, 318, 346, 512, 347, - 349, 515, 352, 478, 137, 344, 137, 422, 526, 138, - 137, 137, 439, -323, -323, 424, 425, 138, 138, 138, - 426, 138, 404, 134, 704, 664, 665, 796, 437, 428, - 561, 444, 449, 478, 455, 464, 93, 450, 478, 439, - 439, 456, 457, 86, 151, 463, 84, 87, 470, 474, - 146, 439, 473, 475, 152, 480, 153, 144, 484, 485, - 145, 499, 496, 491, 147, 439, 509, 492, 500, 501, - 503, 80, 439, 137, 524, 533, 534, 507, 439, 536, - 537, 540, 722, 538, 726, 543, 437, 602, 547, 554, - 439, -136, 560, 437, 555, 563, 564, 738, 567, 568, - 582, 137, 588, 137, 589, 593, 595, 741, 597, 137, - -139, 603, 744, 615, 606, 638, 604, 478, 612, 633, - 438, 478, 232, 233, 234, 235, 236, 237, 613, 238, - 758, 634, 637, 761, 438, 645, 639, 668, 763, 355, - 344, 356, 137, 239, 640, 642, 437, 643, 557, 138, - 644, 647, 93, 654, 658, 93, 659, 478, 669, 670, - -161, 678, 93, 777, 684, 344, 344, 138, 619, 620, - 621, 622, 623, 624, 344, 344, 748, 344, 677, 785, - 685, 686, 689, 695, 697, 713, 698, 716, 703, 705, - 717, 437, 797, 714, 721, 727, 728, 680, 732, 802, - 731, 733, 355, 739, 356, 743, 742, 747, 749, 751, - 755, 759, 138, 765, 767, 768, 780, 776, 779, 781, - 786, 437, 782, 437, 790, 800, 791, 137, 798, 445, - 696, 801, 792, 542, 562, 592, 700, 700, 740, 657, - 702, 636, 437, 447, 673, 641, 681, 616, 671, 0, - 0, 730, 138, 138, 438, 304, 545, 0, 438, 438, - 546, 0, 0, 0, 0, 0, 0, 0, 0, 437, - 437, 0, 0, 0, 0, 0, 736, 138, 0, 138, - 0, 437, 0, 138, 138, 0, 0, 0, 0, 0, - 93, 0, 0, 0, 93, 437, 0, 0, 0, 0, - 0, 438, 437, 0, 0, 0, 93, 0, 437, 93, - 0, 0, 93, 0, 0, 0, 0, 0, 0, 0, - 437, 0, 0, 147, 0, 0, 93, 0, 0, 93, - 0, 93, 478, 0, 0, 0, 0, 0, 774, 0, - 0, 0, 0, 0, 478, 93, 138, 0, 0, 0, - 0, 0, 0, 93, 0, 0, 0, 0, 0, 438, - 0, 0, 0, 0, 0, 93, 438, 0, 0, 0, - 93, 0, 0, 0, 138, 0, 138, 0, 0, 0, - 0, 0, 138, 0, 0, 0, 0, 0, 116, 117, - 0, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 0, 0, 143, 0, - 0, 0, 0, 0, 0, 138, 0, 0, 0, 438, - 159, 0, 0, 0, 0, 0, 0, 167, 169, 0, - 0, 0, 174, 0, 177, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 213, 214, 215, - 0, 0, 0, 0, 0, 0, 0, 0, 448, 0, - 0, 201, 0, 216, 438, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 233, 234, 235, 236, 237, 0, 238, 0, 0, - 0, 0, 0, 0, 438, 0, 438, 0, 0, 0, - 138, 239, 263, 0, 0, 0, 140, 140, 0, 0, - 0, 0, 0, 0, 0, 438, 0, 0, 243, 244, - 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, - 0, 0, 175, 0, 0, 0, 0, 0, 277, 0, - 278, 0, 438, 438, 0, 282, 285, 174, 0, 290, - 0, 0, 0, 0, 438, 0, 0, 0, 0, 0, - 0, 141, 141, 0, 150, 0, -323, -323, 438, 0, - 0, 0, 0, 0, 0, 438, 0, 0, 523, 0, - 324, 438, 531, 532, 0, 0, 0, 339, 0, 174, - 0, 0, 0, 438, 0, 0, 332, 357, 358, 359, - 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, - 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, - 381, 382, 0, 384, 0, 559, 0, 387, 388, 389, - 390, 391, 392, 393, 394, 395, 396, 397, 398, 174, - 0, 0, 384, 409, 0, 0, 0, 287, 0, 0, - 0, 0, 0, 0, 0, 174, 0, 0, 0, 0, - 0, 0, 0, 421, 296, 0, 0, 305, 0, 0, - 0, 0, 0, 432, 433, 314, 315, 317, 0, 320, - 0, 0, 0, 599, 0, 0, 0, 446, 0, 345, - 605, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 28, 29, 112, 0, 0, 0, 0, 0, - 0, 0, 34, 0, 0, 174, 0, 0, 0, 0, - 0, 0, 141, 0, 0, 0, 0, 0, 0, 0, - 141, 141, 141, 0, 141, 0, 0, 0, 0, 345, - 0, 0, 0, 660, 494, 134, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 345, 0, 0, 434, 64, - 65, 66, 67, 68, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 72, 0, 0, 0, 150, 0, 435, - 74, 75, 436, 0, 0, 0, 0, 502, 690, 243, - 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, - 254, 0, 0, 0, 0, 0, 513, 461, 285, 518, - 0, 0, 0, 0, 0, 345, 0, 0, 711, 0, - 712, 0, 0, 0, 0, 461, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -323, -323, 729, - 0, 0, 0, 0, 0, 0, 549, 0, 551, 0, - 174, 0, 0, 0, 0, 0, 0, 0, 174, 0, - 0, 0, 141, 0, 0, 0, 745, 746, 0, 427, - 498, 0, 0, 0, 0, 174, 174, 0, 756, 573, - 141, 0, 0, 0, 174, 174, 0, 174, 0, 384, - 581, 0, 764, 0, 0, 0, 0, 0, 0, 769, - 0, 0, 0, 0, 0, 772, 0, 0, 0, 0, - 519, 522, 0, 0, 0, 0, 0, 778, 0, 0, - 0, 0, 0, 0, 0, 141, 0, 0, 0, 0, - 0, 608, 0, 0, 0, 314, 0, 544, 0, 0, - 0, 320, 320, 0, 0, 0, 0, 0, 0, 0, - 345, 0, 0, 0, 0, 0, 0, 0, 558, 0, - 0, 0, 0, 0, 0, 141, 141, 0, 0, 0, - 0, 0, 285, 0, 0, 345, 345, 0, 0, 0, - 0, 0, 0, 0, 345, 345, 0, 345, 214, 215, - 141, 0, 141, 0, 0, 675, 141, 141, 0, 0, - 0, 0, 0, 216, 591, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 233, 234, 235, 236, 237, 0, 238, 0, 0, - 0, 0, 461, 0, 461, 0, 150, 0, 0, 0, - 461, 239, 0, 0, 0, 0, 0, 0, 706, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, - 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, - 253, 254, 0, 522, 0, 0, 0, 0, 0, 734, - 0, 0, 4, 5, 6, 7, 8, 141, 0, 141, - 0, 9, 0, 0, 0, 141, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -323, -323, - 0, 0, 0, 0, 0, 757, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 141, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 461, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 47, 48, 49, 0, 50, 51, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 59, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 141, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 73, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 467, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 98, 277, 88, 442, 143, 143, 318, 161, 156, 162, + 543, 570, 428, 403, 163, 743, 346, 374, 501, 90, + 505, 91, 220, 554, 300, 735, 494, 709, 322, 327, + 330, 273, 273, 625, 189, 453, 273, 273, 170, 710, + 192, 528, 594, 591, 748, 33, 476, 419, 478, 483, + -140, 464, 483, 3, 200, -143, 209, 371, 792, 210, + 33, 421, 424, 218, 373, 464, 33, 117, 198, 440, + 219, 374, 421, 253, 422, 420, 33, 33, -281, -281, + 332, 439, 117, 117, 441, 424, 595, 254, 777, 321, + 256, 257, 715, 124, 47, 164, 546, 276, -141, 532, + 691, 533, 695, 258, 259, 260, 261, 262, 263, 264, + 265, 266, 267, 268, 269, 218, 200, 166, -371, -371, + 171, 432, 349, 33, 280, 753, 489, -368, 193, 274, + 274, 143, -367, 275, 274, 274, 716, 290, 117, 529, + 33, 433, 372, 33, 117, 207, 296, 218, 84, 468, + 167, -359, -359, 505, 84, 208, 488, 498, 555, 736, + 499, 188, 423, 498, 84, 84, 499, 744, 745, 754, + 320, -283, -283, 117, 221, 143, 301, 685, 825, 140, + 323, 328, 331, 143, 143, 143, 454, 143, 464, 345, + 172, 711, 464, 464, 464, 816, 749, 477, 508, 479, + 484, -140, 180, 636, 144, 144, -143, 218, 157, 793, + 375, 84, -301, 141, 98, 376, 142, -301, 218, 498, + -303, 173, 499, 218, 509, 219, 218, 508, 84, 181, + -125, 84, -302, 464, 161, 156, 162, 520, 218, 817, + 643, 163, 693, 694, 174, 117, 640, 33, 498, -141, + 175, 499, 186, 509, 375, 375, 693, 694, 196, 376, + 376, 431, -303, 577, 375, 375, 218, 605, 218, 376, + 376, 438, 677, 486, 375, 349, 201, 375, 375, 376, + 599, -302, 376, 376, 700, 197, 140, 218, 692, 693, + 694, 596, 597, 202, 486, 203, 705, 462, 464, 183, + 600, 601, 204, 603, 189, 464, 680, 681, 696, 218, + 205, 462, 732, 693, 694, 206, 98, 678, 347, 348, + 141, 117, 738, 142, 720, 721, 849, 850, 217, 644, + 211, 144, 145, 148, 645, 84, 646, 647, 648, 649, + 650, 651, 652, 143, 98, 222, 88, 223, 224, 500, + 225, 500, 227, 270, 500, 271, 464, 611, 272, 516, + 614, 47, 464, 90, 464, 91, 837, 207, 250, 251, + 252, 621, 253, 279, 254, 144, 281, 282, 286, 287, + 289, 719, 291, 144, 144, 144, 254, 144, 143, 653, + 218, 292, 294, 295, 776, 117, 785, 33, 302, 424, + 309, 314, 464, 258, 259, 260, 261, 262, 263, 264, + 265, 266, 267, 268, 269, 315, 143, 316, 143, 329, + 339, 351, 360, 307, 247, 248, 249, 250, 251, 252, + 785, 253, 143, 143, 462, 157, 140, 366, 462, 462, + 462, 372, 367, 564, 538, 254, 369, 541, 340, 446, + 448, -359, -359, 464, 552, 449, 450, 500, 143, 452, + 143, 827, 469, 424, 143, 143, 474, 475, 481, 364, + 141, 480, 482, 142, 485, 464, 492, 496, 464, 462, + 117, 586, 33, 464, 500, 84, 98, 843, 88, 500, + 495, 497, 502, 506, 464, 507, 852, 463, 514, 515, + 519, 161, 156, 162, -188, 90, 522, 91, 163, 523, + 524, 463, 646, 647, 648, 649, 650, 651, 526, 530, + 364, 140, 550, 563, 535, 464, 562, 566, 143, 565, + 567, 464, 752, 569, 756, 572, 117, 576, 33, 579, + 580, 589, 364, 144, 462, 631, 585, 768, 588, 464, + 317, 462, 592, 593, 609, 141, 615, 771, 142, 616, + 620, 774, 626, 143, 622, 624, 628, 641, 324, 632, + 84, 500, 117, 627, 33, 500, 633, 140, 635, 638, + 662, 639, 798, 661, 665, 801, 666, 667, 144, 143, + 803, 668, 375, 675, 670, 671, 673, 376, 143, 364, + 490, 672, 462, 683, 687, 706, 717, 688, 462, 98, + 462, 141, 98, 140, 142, 500, 144, 699, 144, 98, + 712, 703, 713, 714, 823, 723, 84, 500, 725, 726, + 788, 731, 144, 144, 463, 733, 739, 740, 463, 463, + 463, 646, 647, 648, 649, 650, 651, 154, 462, 741, + 155, 742, 838, 747, 751, 708, 375, 757, 144, 758, + 144, 376, 84, 761, 144, 144, 763, 762, 769, 773, + 854, 789, 787, 856, 791, 795, 799, -176, 804, 463, + 861, 724, 808, 806, 809, 644, 810, 728, 728, 811, + 645, 812, 646, 647, 648, 649, 650, 651, 652, 462, + 813, 814, 157, 822, -144, 828, 831, 830, 832, 258, + 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, + 269, 462, 835, 833, 462, 500, 766, 500, 144, 462, + -182, 836, 839, 844, 845, 846, 364, 470, 853, 855, + 462, 860, 848, 571, 463, 702, 582, 858, 587, 619, + 98, 463, 730, 472, 98, 686, 664, -359, -359, 770, + 214, 500, 642, 144, 364, 364, 98, 701, 807, 98, + 669, 462, 98, 364, 364, 630, 364, 462, 325, 629, + 574, 760, 575, 0, 0, 344, 0, 0, 0, 144, + 0, 0, 500, 0, 0, 462, 98, 0, 144, 98, + 820, 98, 463, 147, 147, 0, 0, 160, 463, 0, + 463, 0, 500, 0, 0, 0, 0, 0, 500, 0, + 0, 98, 0, 0, 0, 0, 0, 500, 0, 0, + 0, 0, 0, 0, 0, 0, 98, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 463, 0, + 0, 0, 98, 0, 98, -144, 0, 0, 0, 98, + 122, 123, 0, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 0, 0, + 150, 153, 0, 0, 0, 146, 146, 0, 0, 0, + 0, 0, 0, 169, 0, 0, 0, 0, 0, 463, + 177, 179, 0, 0, 0, 184, 0, 187, 0, 0, + 0, 0, 185, 0, 0, 0, 0, 0, 0, 0, + 0, 463, 0, 0, 463, 0, 0, 0, 0, 463, + 147, 0, 0, 0, 0, 0, 212, 215, 0, 0, + 463, 0, 0, 213, 258, 259, 260, 261, 262, 263, + 264, 265, 266, 267, 268, 269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 47, 48, 49, 0, 50, 51, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 59, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 73, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 553, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 463, 0, 0, 147, 0, 0, 463, 0, 0, + 278, 0, 147, 147, 147, 0, 147, 0, 0, 0, + 0, 0, -359, -359, 0, 463, 0, 0, 258, 259, + 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, + 0, 0, 284, 0, 0, 0, 0, 0, 0, 0, + 298, 465, 299, 0, 451, 0, 0, 303, 306, 184, + 0, 311, 0, 0, 160, 473, 308, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -359, -359, 0, 0, + 0, 0, 0, 0, 0, 0, 326, 0, 0, 0, + 0, 0, 150, 0, 335, 336, 338, 0, 341, 0, + 0, 0, 0, 359, 0, 184, 0, 0, 0, 0, + 0, 0, 365, 0, 377, 378, 379, 381, 382, 383, + 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, + 394, 395, 396, 397, 398, 399, 400, 401, 402, 0, + 404, 0, 0, 0, 407, 408, 409, 410, 411, 412, + 413, 414, 415, 416, 417, 418, 184, 0, 0, 404, + 429, 0, 0, 365, 0, 0, 0, 0, 0, 0, + 0, 435, 147, 437, -282, -282, 0, 0, 184, 0, + 0, 0, 0, 0, 0, 365, 445, 0, 549, 0, + 0, 0, 557, 558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 47, 48, 49, 0, 50, 51, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 59, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 73, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 471, 0, 0, 0, 0, 0, 0, 147, 0, 258, + 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, + 269, 0, 0, 584, 0, 184, 184, 0, 0, 0, + 0, 0, 365, 491, 0, 147, 0, 147, 0, 0, + 0, 0, 0, 0, 284, 0, 0, 0, 0, 0, + 0, 147, 147, 0, 0, 0, 517, -359, -359, 258, + 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, + 269, 0, 0, 0, 0, 0, 0, 147, 0, 147, + 0, 0, 0, 147, 147, 0, 0, 0, 0, 521, + 0, 0, 0, 0, 0, 634, 0, 0, 0, 525, + 0, 0, 0, 0, 0, 0, 0, -359, -359, 0, + 0, 0, 0, 0, 0, 0, 0, 284, 0, 284, + 0, 160, 539, 0, 306, 544, 0, 0, 0, 0, + 0, 0, 0, 545, 548, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 689, 147, 0, 0, + 0, 0, 697, 0, 698, -284, -284, 0, 0, 335, + 0, 573, 184, 0, 0, 341, 341, 0, 0, 365, + 0, 0, 184, 0, 0, 0, 0, 0, 0, 583, + 0, 0, 147, 0, 0, 0, 0, 0, 0, 0, + 184, 184, 718, 0, 598, 0, 0, 365, 365, 184, + 184, 0, 184, 0, 404, 606, 365, 365, 147, 365, + 608, 0, 0, 0, 0, 0, 0, 147, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 618, + 0, -372, -372, -372, -372, 245, 246, 247, 248, 249, + 250, 251, 252, 759, 253, 0, 0, 0, 0, 0, + 0, 0, 637, 0, 0, 0, 0, 0, 254, 0, + 0, 0, 0, 0, 284, 772, 0, 0, 775, 0, + 0, 0, 0, 786, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 796, 0, 0, 0, 0, 0, + 284, 306, 0, 4, 5, 6, 7, 8, 0, 548, + 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 815, 0, 0, 0, 0, + 0, 818, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 10, 11, 0, 0, 0, 0, 12, 829, + 13, 14, 15, 16, 17, 18, 0, 0, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 0, 0, + 0, 29, 30, 31, 32, 33, 0, 34, 0, 734, + 0, 35, 36, 37, 38, 39, 0, 40, 0, 41, + 0, 42, 0, 0, 43, 0, 0, 0, 44, 45, + 46, 47, 48, 49, 50, 0, 51, 52, 53, 764, + 0, 0, 54, 55, 56, 0, 57, 58, 59, 60, + 61, 62, 0, 0, 0, 0, 63, 64, 65, 66, + 67, 68, 69, 0, 0, 70, 71, 0, 72, 0, + 0, 0, 73, 0, 0, 0, 0, 797, 74, 75, + 76, 77, 0, 0, 78, 79, 80, 0, 81, 0, + 82, 83, 487, 84, 4, 5, 6, 7, 8, 0, + 0, 0, 231, 9, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 0, 253, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 254, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 48, 49, 50, 0, 51, 52, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 60, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 74, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 578, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 334, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 48, 49, 50, 0, 51, 52, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 60, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 74, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 442, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 354, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 655, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 467, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 661, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 684, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 750, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 690, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 754, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 790, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 762, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 794, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 766, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 802, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 775, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 805, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 783, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 821, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 799, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 834, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 803, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 857, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 53, 54, 55, 0, 56, 57, 58, 333, 60, - 61, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 511, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 859, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 0, 0, 55, 0, 56, 57, 58, 0, 0, - 0, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 514, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 862, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 0, 0, 55, 0, 56, 57, 58, 0, 0, - 0, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 525, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 54, 55, 56, 0, 57, 58, 59, + 353, 61, 62, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 78, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 0, 0, 55, 0, 56, 57, 58, 0, 0, - 0, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 699, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 0, 0, 56, 0, 57, 58, 59, + 0, 0, 0, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 0, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 0, 0, 55, 0, 56, 57, 58, 0, 0, - 0, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 735, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 0, 0, 56, 0, 57, 58, 59, + 0, 0, 0, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 0, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 0, 0, 55, 0, 56, 57, 58, 0, 0, - 0, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 0, 0, 56, 0, 57, 58, 59, + 0, 0, 0, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 0, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 27, 0, 0, 0, - 28, 29, 30, 31, 32, 0, 33, 0, 0, 0, - 34, 35, 36, 37, 38, 0, 39, 0, 40, 0, - 41, 0, 0, 42, 0, 0, 0, 43, 44, 45, - 46, 0, 48, 49, 0, 50, 0, 52, 0, 0, - 0, 0, 0, 55, 0, 56, 57, 58, 0, 0, - 0, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 69, 70, 0, 71, 0, 0, - 0, 72, 4, 5, 6, 7, 8, 114, 74, 75, - 76, 9, 0, 0, 0, 0, 77, 0, 78, 79, - 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 0, 0, 56, 0, 57, 58, 59, + 0, 0, 0, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 0, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 0, 0, 0, 0, - 28, 29, 112, 31, 32, 0, 0, 0, 0, 0, - 34, 35, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, - 46, 238, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 113, 0, 239, 57, 58, 0, 0, - 0, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 4, 5, 6, 7, 8, 0, 0, - 0, 72, 9, 0, 0, 0, 0, 114, 74, 75, - 76, 0, 0, 0, 0, 0, 77, 0, 166, 0, - 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 10, 11, 0, 0, 0, 0, 12, 0, - 13, 14, 15, 16, 17, 18, 0, 0, 19, 20, - 21, 22, 23, 0, 24, 25, 26, 0, 0, 0, - 0, 28, 29, 112, 31, 32, 0, 0, 0, 0, - 0, 34, 35, 0, 221, 222, 223, 224, 225, 226, - 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, - 237, 46, 238, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 113, 0, 239, 57, 58, 0, - 0, 0, 0, 0, 0, 0, 62, 63, 64, 65, - 66, 67, 68, 0, 4, 5, 6, 7, 8, 0, - 0, 0, 72, 9, 0, 0, 0, 0, 114, 74, - 75, 76, 0, 0, 0, 0, 0, 77, 0, 168, - 0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, - 20, 21, 22, 23, 0, 24, 25, 26, 0, 0, - 0, 0, 28, 29, 112, 31, 32, 0, 0, 0, - 0, 0, 34, 35, 0, 0, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, - 236, 237, 46, 238, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 113, 0, 239, 57, 58, - 0, 0, 0, 0, 0, 0, 0, 62, 63, 64, - 65, 66, 67, 68, 0, 4, 5, 6, 7, 8, - 0, 0, 0, 72, 9, 0, 0, 0, 0, 114, - 74, 75, 76, 0, 0, 0, 0, 0, 77, 0, - 172, 0, 0, 80, 0, 0, 0, 0, 0, 0, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 0, 0, 56, 0, 57, 58, 59, + 0, 0, 0, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 0, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 0, + 0, 0, 29, 30, 31, 32, 33, 0, 34, 0, + 0, 0, 35, 36, 37, 38, 39, 0, 40, 0, + 41, 0, 42, 0, 0, 43, 0, 0, 0, 44, + 45, 46, 47, 0, 49, 50, 0, 51, 0, 53, + 0, 0, 0, 0, 0, 56, 0, 57, 58, 59, + 0, 0, 0, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 0, 70, 71, 0, 72, + 0, 0, 0, 73, 4, 5, 6, 7, 8, 119, + 75, 76, 77, 9, 0, 0, 79, 80, 0, 81, + 0, 82, 83, 0, 84, 0, 0, 0, 0, 0, + 0, 0, 149, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, + 0, 0, 29, 30, 117, 32, 33, 0, 0, 0, + 0, 0, 35, 36, 235, 236, 237, 238, 239, 240, + 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, + 251, 252, 47, 253, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 118, 0, 254, 58, 59, + 0, 0, 0, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 4, 5, 6, 7, 8, + 0, 0, 0, 73, 9, 0, 0, 0, 0, 119, + 75, 76, 77, 0, 0, 0, 79, 120, 0, 81, + 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, 14, 15, 16, 17, 18, 0, 0, - 19, 20, 21, 22, 23, 0, 24, 25, 26, 0, - 0, 0, 0, 28, 29, 112, 31, 32, 0, 0, - 0, 0, 0, 34, 35, 0, 0, -336, -336, -336, - -336, 226, 227, 228, 229, 230, 231, 232, 233, 234, - 235, 236, 237, 46, 238, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 113, 0, 239, 57, - 58, 0, 0, 0, 0, 0, 0, 0, 62, 63, - 64, 65, 66, 67, 68, 0, 0, 4, 5, 6, - 7, 8, 0, 0, 72, 0, 9, 0, 0, 0, - 114, 74, 75, 76, 0, 0, 0, 0, 0, 77, - 276, 0, 0, 0, 80, 323, 0, 0, 0, 0, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, + 0, 0, 0, 29, 30, 117, 32, 33, 0, 0, + 0, 0, 0, 35, 36, 0, 236, 237, 238, 239, + 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, + 250, 251, 252, 47, 253, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 118, 0, 254, 58, + 59, 0, 0, 0, 0, 0, 0, 0, 63, 64, + 65, 66, 67, 68, 69, 0, 4, 5, 6, 7, + 8, 0, 0, 0, 73, 9, 0, 0, 0, 0, + 119, 75, 76, 77, 0, 0, 0, 79, 120, 0, + 81, 0, 176, 0, 0, 84, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, + 0, 12, 0, 13, 14, 15, 16, 17, 18, 0, + 0, 19, 20, 21, 22, 23, 24, 25, 26, 27, + 0, 0, 0, 0, 29, 30, 117, 32, 33, 0, + 0, 0, 0, 0, 35, 36, 0, 0, 237, 238, + 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, + 249, 250, 251, 252, 47, 253, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 118, 0, 254, + 58, 59, 0, 0, 0, 0, 0, 0, 0, 63, + 64, 65, 66, 67, 68, 69, 0, 4, 5, 6, + 7, 8, 0, 0, 0, 73, 9, 0, 0, 0, + 0, 119, 75, 76, 77, 0, 0, 0, 79, 120, + 0, 81, 0, 178, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, 14, 15, 16, 17, 18, - 0, 0, 19, 20, 21, 22, 23, 0, 24, 25, - 26, 0, 0, 0, 0, 28, 29, 112, 31, 32, - 0, 0, 0, 0, 0, 34, 35, -336, -336, -336, - -336, 230, 231, 232, 233, 234, 235, 236, 237, 0, - 238, 0, 0, 0, 0, 46, 0, 0, 0, 0, - 0, 0, 0, 0, 239, 0, 0, 0, 113, 0, - 0, 57, 58, 0, 0, 0, 0, 0, 0, 0, - 62, 63, 64, 65, 66, 67, 68, 0, 0, 4, - 5, 6, 7, 8, 0, 0, 72, 0, 9, 0, - 0, 0, 114, 74, 75, 76, 0, 0, 0, 0, - 0, 77, 0, 0, 0, 0, 80, 341, 0, 0, + 0, 0, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 0, 0, 0, 0, 29, 30, 117, 32, 33, + 0, 0, 0, 0, 0, 35, 36, 0, 0, -372, + -372, -372, -372, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 47, 253, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 118, 0, + 254, 58, 59, 0, 0, 0, 0, 0, 0, 0, + 63, 64, 65, 66, 67, 68, 69, 0, 4, 5, + 6, 7, 8, 0, 0, 0, 73, 9, 0, 0, + 0, 0, 119, 75, 76, 77, 0, 0, 0, 79, + 120, 0, 81, 0, 182, 0, 0, 84, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, + 0, 0, 0, 12, 0, 13, 14, 15, 16, 17, + 18, 0, 0, 19, 20, 21, 22, 23, 24, 25, + 26, 27, 0, 0, 0, 0, 29, 30, 117, 32, + 33, 0, 0, 0, 0, 0, 35, 36, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, + 0, 0, 58, 59, 0, 0, 0, 0, 0, 0, + 0, 63, 64, 65, 66, 67, 68, 69, 0, 4, + 5, 6, 7, 8, 0, 0, 0, 73, 9, 0, + 0, 0, 0, 119, 75, 76, 77, 0, 0, 0, + 79, 120, 0, 81, 297, 0, 0, 361, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, 14, 15, 16, - 17, 18, 0, 0, 19, 20, 21, 22, 23, 0, - 24, 25, 26, 0, 0, 0, 0, 28, 29, 112, - 31, 32, 0, 0, 0, 0, 0, 34, 35, 0, + 17, 18, 0, 0, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 0, 0, 0, 0, 29, 30, 117, + 32, 33, 0, 0, 0, 0, 0, 35, 36, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 46, 0, 0, + 118, 0, 0, 58, 59, 0, 0, 0, 0, 0, + 0, 0, 63, 64, 65, 66, 67, 68, 69, 0, + 4, 5, 6, 7, 8, 0, 0, 0, 73, 9, + 0, 0, 0, 0, 119, 75, 76, 77, 0, 0, + 0, 79, 120, 380, 81, 0, 0, 0, 0, 84, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, + 11, 0, 0, 0, 0, 12, 0, 13, 14, 15, + 16, 17, 18, 0, 0, 19, 20, 21, 22, 23, + 24, 25, 26, 27, 0, 0, 0, 0, 29, 30, + 117, 32, 33, 0, 0, 0, 0, 0, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 113, 0, 0, 57, 58, 0, 0, 0, 0, 0, - 0, 0, 62, 63, 64, 65, 66, 67, 68, 0, - 0, 4, 5, 6, 7, 8, 0, 0, 72, 0, - 9, 0, 0, 0, 114, 74, 75, 76, 0, 0, - 0, 0, 0, 77, 360, 0, 0, 0, 80, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 118, 0, 0, 58, 59, 0, 0, 0, 0, + 0, 0, 0, 63, 64, 65, 66, 67, 68, 69, + 0, 4, 5, 6, 7, 8, 0, 0, 0, 73, + 9, 0, 0, 0, 0, 119, 75, 76, 77, 0, + 0, 0, 79, 120, 0, 81, 0, 0, 0, 406, + 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, 22, - 23, 0, 24, 25, 26, 0, 0, 0, 0, 28, - 29, 112, 31, 32, 0, 0, 0, 0, 0, 34, - 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, + 23, 24, 25, 26, 27, 0, 0, 0, 0, 29, + 30, 117, 32, 33, 0, 0, 0, 0, 0, 35, + 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 113, 0, 0, 57, 58, 0, 0, 0, - 0, 0, 0, 0, 62, 63, 64, 65, 66, 67, - 68, 0, 0, 4, 5, 6, 7, 8, 0, 0, - 72, 0, 9, 0, 0, 0, 114, 74, 75, 76, - 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, - 80, 386, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 118, 0, 0, 58, 59, 0, 0, 0, + 0, 0, 0, 0, 63, 64, 65, 66, 67, 68, + 69, 0, 4, 5, 6, 7, 8, 0, 0, 0, + 73, 9, 0, 0, 0, 0, 119, 75, 76, 77, + 0, 0, 0, 79, 120, 0, 81, 0, 0, 0, + 434, 84, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, + 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 0, 0, 0, 0, + 29, 30, 117, 32, 33, 0, 0, 0, 0, 0, + 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 118, 0, 0, 58, 59, 0, 0, + 0, 0, 0, 0, 0, 63, 64, 65, 66, 67, + 68, 69, 0, 4, 5, 6, 7, 8, 0, 0, + 0, 73, 9, 0, 0, 0, 0, 119, 75, 76, + 77, 0, 0, 0, 79, 120, 0, 81, 0, 0, + 0, 436, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, 20, - 21, 22, 23, 0, 24, 25, 26, 0, 0, 0, - 0, 28, 29, 112, 31, 32, 0, 0, 0, 0, - 0, 34, 35, 0, 0, 0, 0, 0, 0, 0, + 21, 22, 23, 24, 25, 26, 27, 0, 0, 0, + 0, 29, 30, 117, 32, 33, 0, 0, 0, 0, + 0, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 113, 0, 0, 57, 58, 0, - 0, 0, 0, 0, 0, 0, 62, 63, 64, 65, - 66, 67, 68, 0, 0, 4, 5, 6, 7, 8, - 0, 0, 72, 0, 9, 0, 0, 0, 114, 74, - 75, 76, 0, 0, 0, 0, 0, 77, 0, 0, - 0, 0, 80, 548, 0, 0, 0, 0, 0, 0, + 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 118, 0, 0, 58, 59, 0, + 0, 0, 0, 0, 0, 0, 63, 64, 65, 66, + 67, 68, 69, 0, 4, 5, 6, 7, 8, 0, + 0, 0, 73, 9, 0, 0, 0, 0, 119, 75, + 76, 77, 0, 0, 0, 79, 120, 0, 81, 0, + 0, 0, 581, 84, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, + 0, 13, 14, 15, 16, 17, 18, 0, 0, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, + 0, 0, 29, 30, 117, 32, 33, 0, 0, 0, + 0, 0, 35, 36, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 47, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 118, 0, 0, 58, 59, + 0, 0, 0, 0, 0, 0, 0, 63, 64, 65, + 66, 67, 68, 69, 0, 4, 5, 6, 7, 8, + 0, 0, 0, 73, 9, 0, 0, 0, 0, 119, + 75, 76, 77, 0, 0, 0, 79, 120, 0, 81, + 0, 0, 0, 607, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, 14, 15, 16, 17, 18, 0, 0, - 19, 20, 21, 22, 23, 0, 24, 25, 26, 0, - 0, 0, 0, 28, 29, 112, 31, 32, 0, 0, - 0, 0, 0, 34, 35, 0, 0, 0, 0, 0, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, + 0, 0, 0, 29, 30, 117, 32, 33, 0, 0, + 0, 0, 0, 35, 36, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 118, 0, 0, 58, + 59, 0, 0, 0, 0, 0, 0, 0, 63, 64, + 65, 66, 67, 68, 69, 0, 4, 5, 6, 7, + 8, 0, 0, 0, 73, 9, 0, 0, 0, 0, + 119, 75, 76, 77, 0, 0, 0, 79, 120, 0, + 81, 0, 0, 0, 0, 84, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, + 0, 12, 0, 13, 14, 15, 16, 17, 18, 0, + 0, 19, 20, 21, 22, 23, 24, 25, 26, 27, + 0, 0, 0, 0, 29, 30, 117, 32, 33, 0, + 0, 0, 0, 0, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 113, 0, 0, 57, - 58, 0, 0, 0, 0, 0, 0, 0, 62, 63, - 64, 65, 66, 67, 68, 0, 0, 4, 5, 6, - 7, 8, 0, 0, 72, 0, 9, 0, 0, 0, - 114, 74, 75, 76, 0, 0, 0, 0, 0, 77, - 0, 0, 0, 0, 80, 550, 0, 0, 0, 0, + 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 118, 0, 0, + 58, 59, 0, 0, 0, 0, 0, 0, 0, 63, + 64, 65, 66, 67, 68, 69, 0, 4, 5, 6, + 7, 8, 0, 0, 0, 73, 9, 0, 0, 0, + 0, 119, 75, 76, 77, 0, 0, 0, 79, 120, + 0, 81, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, 14, 15, 16, 17, 18, - 0, 0, 19, 20, 21, 22, 23, 0, 24, 25, - 26, 0, 0, 0, 0, 28, 29, 112, 31, 32, - 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, + 0, 0, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 0, 0, 0, 0, 29, 30, 117, 32, 33, + 0, 0, 0, 0, 0, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 113, 0, - 0, 57, 58, 0, 0, 0, 0, 0, 0, 0, - 62, 63, 64, 65, 66, 67, 68, 0, 0, 4, - 5, 6, 7, 8, 0, 0, 72, 0, 9, 0, - 0, 0, 114, 74, 75, 76, 0, 0, 0, 0, - 0, 77, 0, 0, 0, 0, 80, 556, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, - 0, 0, 0, 0, 12, 0, 13, 14, 15, 16, - 17, 18, 0, 0, 19, 20, 21, 22, 23, 0, - 24, 25, 26, 0, 0, 0, 0, 28, 29, 112, - 31, 32, 0, 0, 0, 0, 0, 34, 35, 0, + 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 118, 0, + 0, 58, 59, 0, 0, 0, 0, 0, 0, 0, + 63, 64, 65, 66, 67, 68, 69, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, + 0, 0, 119, 75, 76, 77, 228, 229, 230, 79, + 80, 0, 81, 0, 0, 0, 0, 84, 0, 0, + 0, 0, 231, 0, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 0, 253, 228, 229, 230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 46, 0, 0, + 254, 0, 0, 231, 0, 232, 233, 234, 235, 236, + 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, + 247, 248, 249, 250, 251, 252, 0, 253, 228, 229, + 230, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 254, 0, 0, 231, 0, 232, 233, 234, 235, + 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, + 246, 247, 248, 249, 250, 251, 252, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 113, 0, 0, 57, 58, 0, 0, 0, 0, 0, - 0, 0, 62, 63, 64, 65, 66, 67, 68, 0, - 0, 4, 5, 6, 7, 8, 0, 0, 72, 0, - 9, 0, 0, 0, 114, 74, 75, 76, 0, 0, - 0, 0, 0, 77, 0, 0, 0, 0, 80, 674, + 0, 0, 254, 0, 228, 229, 230, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 493, + 231, 0, 232, 233, 234, 235, 236, 237, 238, 239, + 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, + 250, 251, 252, 0, 253, 228, 229, 230, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 254, 0, + 531, 231, 0, 232, 233, 234, 235, 236, 237, 238, + 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, + 249, 250, 251, 252, 0, 253, 228, 229, 230, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, + 0, 568, 231, 735, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 10, 11, 0, 0, 0, 0, 12, 0, 13, 14, - 15, 16, 17, 18, 0, 0, 19, 20, 21, 22, - 23, 0, 24, 25, 26, 0, 0, 0, 0, 28, - 29, 112, 31, 32, 0, 0, 0, 0, 0, 34, - 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, + 254, 0, 228, 229, 230, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 602, 231, 0, + 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, + 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, + 252, 0, 253, 0, 228, 229, 230, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 254, 0, 676, 0, + 231, 0, 232, 233, 234, 235, 236, 237, 238, 239, + 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, + 250, 251, 252, 0, 253, 228, 229, 230, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 736, 254, 0, + 0, 231, 0, 232, 233, 234, 235, 236, 237, 238, + 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, + 249, 250, 251, 252, 0, 253, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 228, 229, 230, 254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 113, 0, 0, 57, 58, 0, 0, 0, - 0, 0, 0, 0, 62, 63, 64, 65, 66, 67, - 68, 0, 4, 5, 6, 7, 8, 0, 0, 0, - 72, 9, 0, 0, 0, 0, 114, 74, 75, 76, - 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, - 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 11, 0, 0, 0, 0, 12, 0, 13, - 14, 15, 16, 17, 18, 0, 0, 19, 20, 21, - 22, 23, 0, 24, 25, 26, 0, 0, 0, 0, - 28, 29, 112, 31, 32, 0, 0, 0, 0, 0, - 34, 35, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 231, 255, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 0, 253, 0, 228, 229, + 230, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 254, 0, 0, 0, 231, 312, 232, 233, 234, 235, + 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, + 246, 247, 248, 249, 250, 251, 252, 0, 253, 228, + 229, 230, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 254, 0, 0, 231, 313, 232, 233, 234, + 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, + 245, 246, 247, 248, 249, 250, 251, 252, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 113, 0, 0, 57, 58, 0, 0, - 0, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 68, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 72, 0, 0, 213, 214, 215, 114, 74, 75, - 76, 0, 0, 0, 0, 0, 77, 0, 0, 0, - 216, 80, 217, 218, 219, 220, 221, 222, 223, 224, - 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, - 235, 236, 237, 0, 238, 213, 214, 215, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 239, 0, - 0, 216, 0, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, - 234, 235, 236, 237, 0, 238, 213, 214, 215, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, - 0, 0, 216, 0, 217, 218, 219, 220, 221, 222, - 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, - 233, 234, 235, 236, 237, 0, 238, 0, 0, 0, + 228, 229, 230, 254, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 231, 319, 232, 233, + 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, + 244, 245, 246, 247, 248, 249, 250, 251, 252, 0, + 253, 228, 229, 230, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 254, 0, 0, 231, 352, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, + 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, + 0, 253, 228, 229, 230, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 254, 0, 0, 231, 430, + 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, + 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, + 252, 0, 253, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 228, 229, 230, 254, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 231, + 443, 232, 233, 234, 235, 236, 237, 238, 239, 240, + 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, + 251, 252, 0, 253, 228, 229, 230, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 254, 0, 0, + 231, 444, 232, 233, 234, 235, 236, 237, 238, 239, + 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, + 250, 251, 252, 0, 253, 228, 229, 230, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 254, 0, + 0, 231, 447, 232, 233, 234, 235, 236, 237, 238, + 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, + 249, 250, 251, 252, 0, 253, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 228, 229, 230, 254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 239, 213, 214, 215, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 471, 216, 0, 217, - 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, - 0, 238, 213, 214, 215, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 239, 0, 508, 216, 0, - 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, - 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, - 237, 0, 238, 213, 214, 215, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 239, 0, 539, 216, - 707, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, - 236, 237, 0, 238, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 239, 213, 214, - 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 577, 216, 0, 217, 218, 219, 220, - 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, - 231, 232, 233, 234, 235, 236, 237, 0, 238, 0, - 213, 214, 215, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 239, 0, 648, 0, 216, 0, 217, 218, - 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230, 231, 232, 233, 234, 235, 236, 237, 0, - 238, 213, 214, 215, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 708, 239, 0, 0, 216, 0, 217, - 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, - 0, 238, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 213, 214, 215, 0, 239, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 216, 240, 217, - 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, - 0, 238, 0, 213, 214, 215, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 239, 0, 0, 0, 216, - 291, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, - 236, 237, 0, 238, 213, 214, 215, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 239, 0, 0, - 216, 292, 217, 218, 219, 220, 221, 222, 223, 224, - 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, - 235, 236, 237, 0, 238, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 213, 214, 215, 0, 239, 0, + 0, 0, 231, 455, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 0, 253, 228, 229, 230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 216, 298, 217, 218, 219, 220, 221, 222, 223, 224, - 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, - 235, 236, 237, 0, 238, 213, 214, 215, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 239, 0, - 0, 216, 410, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, - 234, 235, 236, 237, 0, 238, 213, 214, 215, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, - 0, 0, 216, 419, 217, 218, 219, 220, 221, 222, - 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, - 233, 234, 235, 236, 237, 0, 238, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 213, 214, 215, 0, - 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 216, 420, 217, 218, 219, 220, 221, 222, - 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, - 233, 234, 235, 236, 237, 0, 238, 213, 214, 215, + 254, 0, 0, 231, 613, 232, 233, 234, 235, 236, + 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, + 247, 248, 249, 250, 251, 252, 0, 253, 228, 229, + 230, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 254, 0, 0, 231, 800, 232, 233, 234, 235, + 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, + 246, 247, 248, 249, 250, 251, 252, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 239, 0, 0, 216, 423, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 233, 234, 235, 236, 237, 0, 238, 213, 214, - 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 239, 0, 0, 216, 431, 217, 218, 219, 220, - 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, - 231, 232, 233, 234, 235, 236, 237, 0, 238, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 213, 214, - 215, 0, 239, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 216, 586, 217, 218, 219, 220, - 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, - 231, 232, 233, 234, 235, 236, 237, 0, 238, 213, - 214, 215, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 239, 0, 0, 216, 760, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 233, 234, 235, 236, 237, 0, 238, + 0, 0, 254, 0, 0, 0, 228, 229, 230, 0, + 0, 0, 0, 0, 0, 0, 819, 0, 0, 0, + 0, 0, 231, 285, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 0, 253, 456, 457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 239, 0, 0, 0, 773, 0, 213, - 214, 215, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 462, 216, 495, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 233, 234, 235, 236, 237, 0, 238, - 213, 214, 215, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 239, 0, 611, 216, 0, 217, 218, - 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230, 231, 232, 233, 234, 235, 236, 237, 215, - 238, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 216, 239, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 233, 234, 235, 236, 237, 0, 238, 0, 0, + 254, 0, 0, 0, 350, 0, 0, 0, 458, 0, + 0, 228, 229, 230, 0, 0, 29, 30, 117, 0, + 0, 0, 0, 0, 0, 0, 35, 231, 518, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, + 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, + 0, 253, 0, 0, 0, 0, 0, 0, 0, 140, + 0, 0, 534, 0, 0, 254, 0, 0, 0, 0, + 0, 0, 459, 65, 66, 67, 68, 69, 0, 0, + 0, 0, 0, 228, 229, 230, 0, 73, 0, 0, + 0, 0, 0, 460, 75, 76, 461, 0, 0, 231, + 79, 232, 233, 234, 235, 236, 237, 238, 239, 240, + 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, + 251, 252, 0, 253, 229, 230, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 254, 0, 231, + 0, 232, 233, 234, 235, 236, 237, 238, 239, 240, + 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, + 251, 252, 230, 253, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 231, 254, 232, 233, + 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, + 244, 245, 246, 247, 248, 249, 250, 251, 252, 0, + 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 254, 232, 233, 234, 235, 236, + 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, + 247, 248, 249, 250, 251, 252, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 216, 239, 217, 218, 219, 220, 221, 222, 223, 224, - 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, - 235, 236, 237, 0, 238, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 239, 217, - 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, - 0, 238, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 239, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 233, 234, 235, 236, 237, 0, 238, 0, 0, + 0, 254, 233, 234, 235, 236, 237, 238, 239, 240, + 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, + 251, 252, 0, 253, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 254, 234, 235, + 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, + 246, 247, 248, 249, 250, 251, 252, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 239, 219, 220, 221, 222, 223, 224, 225, 226, - 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, - 237, 0, 238, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 239 + 0, 0, 254 }; static const yytype_int16 yycheck[] = { - 2, 115, 25, 274, 176, 22, 23, 2, 25, 450, - 2, 2, 25, 347, 25, 349, 238, 341, 258, 212, - 424, 8, 8, 26, 198, 26, 8, 63, 8, 63, - 73, 8, 8, 63, 51, 63, 8, 63, 8, 8, - 8, 8, 8, 8, 485, 37, 8, 294, 8, 73, - 75, 75, 93, 55, 93, 75, 73, 73, 65, 76, - 31, 308, 0, 256, 257, 73, 73, 75, 75, 73, - 49, 255, 157, 266, 267, 75, 190, 270, 96, 97, - 273, 274, 529, 151, 63, 31, 157, 271, 151, 157, - 102, 157, 73, 26, 157, 31, 109, 109, 110, 111, - 112, 113, 114, 115, 75, 61, 62, 114, 151, 145, - 151, 113, 151, 157, 73, 145, 75, 160, 73, 136, - 75, 157, 157, 157, 160, 31, 160, 73, 145, 75, - 160, 73, 160, 75, 160, 151, 160, 162, 162, 75, - 153, 148, 162, 161, 151, 75, 480, 331, 595, 161, - 597, 31, 48, 157, 162, 162, 330, 160, 159, 73, - 157, 178, 162, 73, 73, 75, 183, 148, 114, 75, - 151, 101, 159, 159, 191, 192, 193, 159, 195, 159, - 197, 428, 159, 159, 588, 432, 433, 159, 158, 158, - 158, 158, 158, 158, 157, 75, 158, 73, 158, 212, - 202, 212, 148, 162, 114, 151, 151, 162, 96, 97, - 157, 145, 157, 127, 73, 238, 162, 151, 127, 160, - 162, 238, 120, 157, 548, 238, 550, 238, 475, 145, - 564, 120, 556, 157, 148, 151, 157, 151, 148, 148, - 157, 151, 151, 256, 257, 256, 257, 264, 73, 158, - 160, 268, 162, 266, 267, 266, 267, 270, 145, 270, - 273, 274, 273, 274, 151, 505, 145, 163, 160, 73, - 604, 75, 151, 161, 73, 497, 75, 294, 22, 23, - 157, 25, 466, 157, 301, 157, 533, 68, 69, 102, - 73, 308, 31, 540, 73, 297, 109, 110, 111, 112, - 113, 114, 115, 145, 151, 157, 323, 491, 492, 205, - 114, 582, 159, 160, 145, 114, 500, 501, 124, 503, - 68, 69, 126, 101, 341, 151, 328, 45, 46, 47, - 347, 49, 349, 328, 63, 352, 328, 328, 779, 511, - 159, 160, 514, 356, 148, 63, 593, 151, 161, 148, - 674, 151, 151, 525, 145, 145, 22, 23, 162, 255, - 151, 151, 151, 162, 151, 145, 157, 157, 145, 386, - 145, 8, 157, 145, 645, 271, 13, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 124, 582, - 8, 638, 95, 96, 97, 13, 14, 15, 16, 17, - 18, 19, 20, 21, 22, 23, 24, 85, 73, 426, - 427, 428, 73, 159, 75, 432, 433, 13, 159, 436, - 13, 668, 73, 670, 61, 62, 158, 73, 420, 122, - 122, 423, 157, 450, 451, 331, 453, 157, 430, 183, - 457, 458, 689, 61, 62, 159, 8, 191, 192, 193, - 93, 195, 645, 114, 95, 96, 97, 791, 475, 13, - 477, 73, 75, 480, 158, 8, 468, 157, 485, 716, - 717, 159, 157, 468, 497, 158, 468, 468, 157, 8, - 497, 728, 158, 13, 497, 123, 497, 148, 160, 157, - 151, 158, 163, 157, 238, 742, 158, 157, 157, 157, - 157, 162, 749, 520, 73, 157, 151, 163, 755, 145, - 105, 13, 684, 73, 686, 159, 533, 534, 13, 158, - 767, 158, 151, 540, 158, 160, 8, 699, 158, 8, - 124, 548, 159, 550, 125, 13, 159, 709, 159, 556, - 158, 73, 714, 560, 158, 13, 157, 564, 158, 158, - 294, 568, 42, 43, 44, 45, 46, 47, 159, 49, - 732, 107, 75, 735, 308, 124, 158, 125, 740, 582, - 466, 582, 589, 63, 158, 158, 593, 158, 474, 323, - 158, 163, 584, 159, 158, 587, 158, 604, 158, 8, - 101, 75, 594, 765, 160, 491, 492, 341, 109, 110, - 111, 112, 113, 114, 500, 501, 720, 503, 73, 781, - 157, 160, 13, 157, 159, 75, 158, 13, 159, 159, - 13, 638, 794, 160, 73, 75, 13, 629, 26, 801, - 157, 70, 645, 159, 645, 158, 125, 75, 13, 75, - 13, 159, 386, 160, 13, 73, 75, 159, 157, 26, - 105, 668, 159, 670, 158, 158, 157, 674, 75, 301, - 652, 160, 788, 451, 480, 521, 658, 659, 706, 589, - 659, 568, 689, 306, 606, 574, 630, 563, 601, -1, - -1, 691, 426, 427, 428, 183, 457, -1, 432, 433, - 458, -1, -1, -1, -1, -1, -1, -1, -1, 716, - 717, -1, -1, -1, -1, -1, 698, 451, -1, 453, - -1, 728, -1, 457, 458, -1, -1, -1, -1, -1, - 722, -1, -1, -1, 726, 742, -1, -1, -1, -1, - -1, 475, 749, -1, -1, -1, 738, -1, 755, 741, - -1, -1, 744, -1, -1, -1, -1, -1, -1, -1, - 767, -1, -1, 497, -1, -1, 758, -1, -1, 761, - -1, 763, 779, -1, -1, -1, -1, -1, 760, -1, - -1, -1, -1, -1, 791, 777, 520, -1, -1, -1, - -1, -1, -1, 785, -1, -1, -1, -1, -1, 533, - -1, -1, -1, -1, -1, 797, 540, -1, -1, -1, - 802, -1, -1, -1, 548, -1, 550, -1, -1, -1, - -1, -1, 556, -1, -1, -1, -1, -1, 4, 5, - -1, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, -1, -1, 24, -1, - -1, -1, -1, -1, -1, 589, -1, -1, -1, 593, - 36, -1, -1, -1, -1, -1, -1, 43, 44, -1, - -1, -1, 48, -1, 50, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 9, 10, 11, - -1, -1, -1, -1, -1, -1, -1, -1, 308, -1, - -1, 77, -1, 25, 638, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 45, 46, 47, -1, 49, -1, -1, - -1, -1, -1, -1, 668, -1, 670, -1, -1, -1, - 674, 63, 118, -1, -1, -1, 22, 23, -1, -1, - -1, -1, -1, -1, -1, 689, -1, -1, 13, 14, - 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, - -1, -1, 48, -1, -1, -1, -1, -1, 154, -1, - 156, -1, 716, 717, -1, 161, 162, 163, -1, 165, - -1, -1, -1, -1, 728, -1, -1, -1, -1, -1, - -1, 22, 23, -1, 25, -1, 61, 62, 742, -1, - -1, -1, -1, -1, -1, 749, -1, -1, 428, -1, - 196, 755, 432, 433, -1, -1, -1, 203, -1, 205, - -1, -1, -1, 767, -1, -1, 158, 213, 214, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, - 236, 237, -1, 239, -1, 475, -1, 243, 244, 245, - 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, - -1, -1, 258, 259, -1, -1, -1, 163, -1, -1, - -1, -1, -1, -1, -1, 271, -1, -1, -1, -1, - -1, -1, -1, 279, 159, -1, -1, 183, -1, -1, - -1, -1, -1, 42, 43, 191, 192, 193, -1, 195, - -1, -1, -1, 533, -1, -1, -1, 303, -1, 205, - 540, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 71, 72, 73, -1, -1, -1, -1, -1, - -1, -1, 81, -1, -1, 331, -1, -1, -1, -1, - -1, -1, 183, -1, -1, -1, -1, -1, -1, -1, - 191, 192, 193, -1, 195, -1, -1, -1, -1, 255, - -1, -1, -1, 593, 360, 114, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 271, -1, -1, 127, 128, - 129, 130, 131, 132, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 142, -1, -1, -1, 238, -1, 148, - 149, 150, 151, -1, -1, -1, -1, 403, 638, 13, + 2, 121, 2, 295, 22, 23, 186, 26, 26, 26, + 448, 475, 273, 253, 26, 8, 208, 227, 367, 2, + 369, 2, 8, 26, 8, 26, 361, 658, 8, 8, + 8, 63, 63, 555, 52, 8, 63, 63, 38, 8, + 75, 63, 31, 507, 8, 75, 8, 270, 8, 8, + 8, 315, 8, 0, 56, 8, 74, 73, 8, 77, + 75, 271, 272, 151, 73, 329, 75, 73, 75, 292, + 158, 281, 282, 49, 73, 73, 75, 75, 159, 160, + 200, 291, 73, 73, 294, 295, 75, 63, 73, 93, + 61, 62, 31, 158, 101, 158, 31, 114, 8, 434, + 622, 436, 624, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 151, 118, 158, 145, 145, + 158, 73, 158, 75, 142, 31, 349, 158, 163, 161, + 161, 149, 158, 163, 161, 161, 75, 155, 73, 161, + 75, 73, 158, 75, 73, 151, 163, 151, 163, 93, + 26, 61, 62, 502, 163, 161, 348, 148, 161, 160, + 151, 151, 161, 148, 163, 163, 151, 160, 161, 75, + 188, 159, 160, 73, 160, 193, 160, 615, 809, 114, + 160, 160, 160, 201, 202, 203, 159, 205, 452, 207, + 158, 160, 456, 457, 458, 31, 160, 159, 127, 159, + 159, 159, 73, 159, 22, 23, 159, 151, 26, 159, + 227, 163, 145, 148, 216, 227, 151, 145, 151, 148, + 145, 158, 151, 151, 153, 158, 151, 127, 163, 73, + 159, 163, 145, 497, 253, 253, 253, 65, 151, 75, + 589, 253, 96, 97, 158, 73, 581, 75, 148, 159, + 158, 151, 161, 153, 271, 272, 96, 97, 120, 271, + 272, 279, 145, 486, 281, 282, 151, 528, 151, 281, + 282, 289, 607, 158, 291, 158, 158, 294, 295, 291, + 520, 145, 294, 295, 633, 120, 114, 151, 95, 96, + 97, 514, 515, 158, 158, 158, 645, 315, 562, 49, + 523, 524, 158, 526, 322, 569, 68, 69, 162, 151, + 158, 329, 95, 96, 97, 158, 318, 609, 160, 161, + 148, 73, 162, 151, 68, 69, 160, 161, 161, 102, + 80, 149, 22, 23, 107, 163, 109, 110, 111, 112, + 113, 114, 115, 361, 346, 73, 346, 73, 160, 367, + 31, 369, 145, 158, 372, 145, 620, 537, 124, 376, + 540, 101, 626, 346, 628, 346, 830, 151, 45, 46, + 47, 551, 49, 151, 63, 193, 145, 145, 164, 8, + 151, 673, 145, 201, 202, 203, 63, 205, 406, 162, + 151, 158, 145, 124, 743, 73, 745, 75, 85, 609, + 73, 160, 666, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 13, 434, 160, 436, 13, + 159, 159, 73, 173, 42, 43, 44, 45, 46, 47, + 779, 49, 450, 451, 452, 253, 114, 73, 456, 457, + 458, 158, 122, 461, 444, 63, 122, 447, 126, 158, + 160, 61, 62, 717, 454, 8, 93, 475, 476, 13, + 478, 810, 73, 673, 482, 483, 75, 158, 160, 219, + 148, 159, 158, 151, 159, 739, 158, 8, 742, 497, + 73, 499, 75, 747, 502, 163, 488, 836, 488, 507, + 159, 13, 123, 161, 758, 158, 845, 315, 158, 158, + 164, 520, 520, 520, 101, 488, 159, 488, 520, 158, + 158, 329, 109, 110, 111, 112, 113, 114, 158, 164, + 270, 114, 73, 151, 159, 789, 158, 105, 546, 145, + 73, 795, 712, 13, 714, 160, 73, 13, 75, 159, + 159, 8, 292, 361, 562, 563, 151, 727, 161, 813, + 160, 569, 159, 8, 124, 148, 160, 737, 151, 125, + 13, 741, 125, 581, 160, 160, 8, 585, 161, 73, + 163, 589, 73, 164, 75, 593, 158, 114, 159, 159, + 107, 160, 762, 159, 75, 765, 13, 159, 406, 607, + 770, 159, 609, 164, 159, 159, 124, 609, 616, 349, + 350, 159, 620, 160, 159, 75, 13, 159, 626, 611, + 628, 148, 614, 114, 151, 633, 434, 159, 436, 621, + 161, 73, 158, 161, 804, 158, 163, 645, 160, 159, + 750, 160, 450, 451, 452, 160, 125, 75, 456, 457, + 458, 109, 110, 111, 112, 113, 114, 148, 666, 161, + 151, 13, 832, 13, 73, 657, 673, 75, 476, 13, + 478, 673, 163, 158, 482, 483, 70, 26, 160, 159, + 850, 13, 75, 853, 75, 13, 160, 93, 161, 497, + 860, 681, 160, 162, 93, 102, 152, 687, 688, 160, + 107, 145, 109, 110, 111, 112, 113, 114, 115, 717, + 13, 73, 520, 160, 8, 73, 75, 158, 26, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, -1, -1, -1, -1, -1, 422, 323, 424, 425, - -1, -1, -1, -1, -1, 331, -1, -1, 668, -1, - 670, -1, -1, -1, -1, 341, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 61, 62, 689, - -1, -1, -1, -1, -1, -1, 462, -1, 464, -1, - 466, -1, -1, -1, -1, -1, -1, -1, 474, -1, - -1, -1, 323, -1, -1, -1, 716, 717, -1, 93, - 386, -1, -1, -1, -1, 491, 492, -1, 728, 495, - 341, -1, -1, -1, 500, 501, -1, 503, -1, 505, - 506, -1, 742, -1, -1, -1, -1, -1, -1, 749, - -1, -1, -1, -1, -1, 755, -1, -1, -1, -1, - 426, 427, -1, -1, -1, -1, -1, 767, -1, -1, - -1, -1, -1, -1, -1, 386, -1, -1, -1, -1, - -1, 547, -1, -1, -1, 451, -1, 453, -1, -1, - -1, 457, 458, -1, -1, -1, -1, -1, -1, -1, - 466, -1, -1, -1, -1, -1, -1, -1, 474, -1, - -1, -1, -1, -1, -1, 426, 427, -1, -1, -1, - -1, -1, 588, -1, -1, 491, 492, -1, -1, -1, - -1, -1, -1, -1, 500, 501, -1, 503, 10, 11, - 451, -1, 453, -1, -1, 611, 457, 458, -1, -1, - -1, -1, -1, 25, 520, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 45, 46, 47, -1, 49, -1, -1, - -1, -1, 548, -1, 550, -1, 497, -1, -1, -1, - 556, 63, -1, -1, -1, -1, -1, -1, 664, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 520, - 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, -1, 589, -1, -1, -1, -1, -1, 695, - -1, -1, 3, 4, 5, 6, 7, 548, -1, 550, - -1, 12, -1, -1, -1, 556, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 61, 62, - -1, -1, -1, -1, -1, 731, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, 589, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, 674, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, 102, 103, 104, -1, 106, 107, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, 674, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + 24, 739, 73, 160, 742, 743, 726, 745, 546, 747, + 73, 8, 105, 159, 158, 157, 486, 322, 161, 75, + 758, 161, 841, 476, 562, 162, 496, 159, 502, 547, + 752, 569, 688, 327, 756, 616, 593, 61, 62, 734, + 81, 779, 588, 581, 514, 515, 768, 635, 779, 771, + 599, 789, 774, 523, 524, 562, 526, 795, 193, 561, + 482, 719, 483, -1, -1, 206, -1, -1, -1, 607, + -1, -1, 810, -1, -1, 813, 798, -1, 616, 801, + 800, 803, 620, 22, 23, -1, -1, 26, 626, -1, + 628, -1, 830, -1, -1, -1, -1, -1, 836, -1, + -1, 823, -1, -1, -1, -1, -1, 845, -1, -1, + -1, -1, -1, -1, -1, -1, 838, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 666, -1, + -1, -1, 854, -1, 856, 159, -1, -1, -1, 861, + 4, 5, -1, 7, 8, 9, 10, 11, 12, 13, + 14, 15, 16, 17, 18, 19, 20, 21, -1, -1, + 24, 25, -1, -1, -1, 22, 23, -1, -1, -1, + -1, -1, -1, 37, -1, -1, -1, -1, -1, 717, + 44, 45, -1, -1, -1, 49, -1, 51, -1, -1, + -1, -1, 49, -1, -1, -1, -1, -1, -1, -1, + -1, 739, -1, -1, 742, -1, -1, -1, -1, 747, + 149, -1, -1, -1, -1, -1, 80, 81, -1, -1, + 758, -1, -1, 80, 13, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, 102, 103, 104, -1, 106, 107, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 789, -1, -1, 193, -1, -1, 795, -1, -1, + 124, -1, 201, 202, 203, -1, 205, -1, -1, -1, + -1, -1, 61, 62, -1, 813, -1, -1, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + -1, -1, 149, -1, -1, -1, -1, -1, -1, -1, + 164, 315, 166, -1, 93, -1, -1, 171, 172, 173, + -1, 175, -1, -1, 253, 329, 173, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 61, 62, -1, -1, + -1, -1, -1, -1, -1, -1, 193, -1, -1, -1, + -1, -1, 206, -1, 201, 202, 203, -1, 205, -1, + -1, -1, -1, 217, -1, 219, -1, -1, -1, -1, + -1, -1, 219, -1, 228, 229, 230, 231, 232, 233, + 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, + 244, 245, 246, 247, 248, 249, 250, 251, 252, -1, + 254, -1, -1, -1, 258, 259, 260, 261, 262, 263, + 264, 265, 266, 267, 268, 269, 270, -1, -1, 273, + 274, -1, -1, 270, -1, -1, -1, -1, -1, -1, + -1, 285, 361, 287, 159, 160, -1, -1, 292, -1, + -1, -1, -1, -1, -1, 292, 300, -1, 452, -1, + -1, -1, 456, 457, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, 102, 103, 104, -1, 106, 107, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, -1, -1, -1, -1, -1, + 324, -1, -1, -1, -1, -1, -1, 406, -1, 13, + 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, + 24, -1, -1, 497, -1, 349, 350, -1, -1, -1, + -1, -1, 349, 350, -1, 434, -1, 436, -1, -1, + -1, -1, -1, -1, 361, -1, -1, -1, -1, -1, + -1, 450, 451, -1, -1, -1, 380, 61, 62, 13, + 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, + 24, -1, -1, -1, -1, -1, -1, 476, -1, 478, + -1, -1, -1, 482, 483, -1, -1, -1, -1, 406, + -1, -1, -1, -1, -1, 569, -1, -1, -1, 423, + -1, -1, -1, -1, -1, -1, -1, 61, 62, -1, + -1, -1, -1, -1, -1, -1, -1, 434, -1, 436, + -1, 520, 446, -1, 448, 449, -1, -1, -1, -1, + -1, -1, -1, 450, 451, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 620, 546, -1, -1, + -1, -1, 626, -1, 628, 159, 160, -1, -1, 476, + -1, 478, 486, -1, -1, 482, 483, -1, -1, 486, + -1, -1, 496, -1, -1, -1, -1, -1, -1, 496, + -1, -1, 581, -1, -1, -1, -1, -1, -1, -1, + 514, 515, 666, -1, 518, -1, -1, 514, 515, 523, + 524, -1, 526, -1, 528, 529, 523, 524, 607, 526, + 534, -1, -1, -1, -1, -1, -1, 616, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 546, + -1, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 717, 49, -1, -1, -1, -1, -1, + -1, -1, 576, -1, -1, -1, -1, -1, 63, -1, + -1, -1, -1, -1, 581, 739, -1, -1, 742, -1, + -1, -1, -1, 747, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 758, -1, -1, -1, -1, -1, + 607, 615, -1, 3, 4, 5, 6, 7, -1, 616, + -1, -1, 12, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 789, -1, -1, -1, -1, + -1, 795, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 42, 43, -1, -1, -1, -1, 48, 813, + 50, 51, 52, 53, 54, 55, -1, -1, 58, 59, + 60, 61, 62, 63, 64, 65, 66, 67, -1, -1, + -1, 71, 72, 73, 74, 75, -1, 77, -1, 693, + -1, 81, 82, 83, 84, 85, -1, 87, -1, 89, + -1, 91, -1, -1, 94, -1, -1, -1, 98, 99, + 100, 101, 102, 103, 104, -1, 106, 107, 108, 723, + -1, -1, 112, 113, 114, -1, 116, 117, 118, 119, + 120, 121, -1, -1, -1, -1, 126, 127, 128, 129, + 130, 131, 132, -1, -1, 135, 136, -1, 138, -1, + -1, -1, 142, -1, -1, -1, -1, 761, 148, 149, + 150, 151, -1, -1, 154, 155, 156, -1, 158, -1, + 160, 161, 162, 163, 3, 4, 5, 6, 7, -1, + -1, -1, 25, 12, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, -1, 49, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + 63, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, 102, 103, 104, -1, 106, 107, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, 102, 103, 104, -1, 106, 107, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, 86, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, 92, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, 86, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, 92, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, 90, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, 90, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, 88, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, 88, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, 112, 113, 114, -1, 116, 117, 118, 119, 120, - 121, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, 26, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, -1, -1, 114, -1, 116, 117, 118, -1, -1, - -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, 26, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, 162, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, -1, -1, 114, -1, 116, 117, 118, -1, -1, - -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, 26, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, 112, 113, 114, -1, 116, 117, 118, + 119, 120, 121, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, 154, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, 26, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, -1, -1, 114, -1, 116, 117, 118, -1, -1, - -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, 26, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, -1, -1, 114, -1, 116, 117, 118, + -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, -1, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, 26, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, -1, -1, 114, -1, 116, 117, 118, -1, -1, - -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, 26, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, -1, -1, 114, -1, 116, 117, 118, + -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, -1, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, 26, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, -1, -1, 114, -1, 116, 117, 118, -1, -1, - -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, -1, -1, 114, -1, 116, 117, 118, + -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, -1, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, 26, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, 67, -1, -1, -1, - 71, 72, 73, 74, 75, -1, 77, -1, -1, -1, - 81, 82, 83, 84, 85, -1, 87, -1, 89, -1, - 91, -1, -1, 94, -1, -1, -1, 98, 99, 100, - 101, -1, 103, 104, -1, 106, -1, 108, -1, -1, - -1, -1, -1, 114, -1, 116, 117, 118, -1, -1, - -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, 135, 136, -1, 138, -1, -1, - -1, 142, 3, 4, 5, 6, 7, 148, 149, 150, - 151, 12, -1, -1, -1, -1, 157, -1, 159, 160, - -1, 162, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, -1, -1, 114, -1, 116, 117, 118, + -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, -1, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, 26, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, -1, -1, -1, -1, - 71, 72, 73, 74, 75, -1, -1, -1, -1, -1, - 81, 82, 30, 31, 32, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 101, 49, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 114, -1, 63, 117, 118, -1, -1, - -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, 3, 4, 5, 6, 7, -1, -1, - -1, 142, 12, -1, -1, -1, -1, 148, 149, 150, - 151, -1, -1, -1, -1, -1, 157, -1, 159, -1, - -1, 162, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 42, 43, -1, -1, -1, -1, 48, -1, - 50, 51, 52, 53, 54, 55, -1, -1, 58, 59, - 60, 61, 62, -1, 64, 65, 66, -1, -1, -1, - -1, 71, 72, 73, 74, 75, -1, -1, -1, -1, - -1, 81, 82, -1, 31, 32, 33, 34, 35, 36, - 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - 47, 101, 49, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 114, -1, 63, 117, 118, -1, - -1, -1, -1, -1, -1, -1, 126, 127, 128, 129, - 130, 131, 132, -1, 3, 4, 5, 6, 7, -1, - -1, -1, 142, 12, -1, -1, -1, -1, 148, 149, - 150, 151, -1, -1, -1, -1, -1, 157, -1, 159, - -1, -1, 162, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, - 59, 60, 61, 62, -1, 64, 65, 66, -1, -1, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, -1, -1, 114, -1, 116, 117, 118, + -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, -1, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, -1, + -1, -1, 71, 72, 73, 74, 75, -1, 77, -1, + -1, -1, 81, 82, 83, 84, 85, -1, 87, -1, + 89, -1, 91, -1, -1, 94, -1, -1, -1, 98, + 99, 100, 101, -1, 103, 104, -1, 106, -1, 108, + -1, -1, -1, -1, -1, 114, -1, 116, 117, 118, + -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, -1, 135, 136, -1, 138, + -1, -1, -1, 142, 3, 4, 5, 6, 7, 148, + 149, 150, 151, 12, -1, -1, 155, 156, -1, 158, + -1, 160, 161, -1, 163, -1, -1, -1, -1, -1, + -1, -1, 31, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, -1, -1, -1, -1, 71, 72, 73, 74, 75, -1, -1, -1, - -1, -1, 81, 82, -1, -1, 32, 33, 34, 35, + -1, -1, 81, 82, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 101, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 63, 117, 118, -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, 131, 132, -1, 3, 4, 5, 6, 7, -1, -1, -1, 142, 12, -1, -1, -1, -1, 148, - 149, 150, 151, -1, -1, -1, -1, -1, 157, -1, - 159, -1, -1, 162, -1, -1, -1, -1, -1, -1, + 149, 150, 151, -1, -1, -1, 155, 156, -1, 158, + -1, -1, -1, -1, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, -1, - 58, 59, 60, 61, 62, -1, 64, 65, 66, -1, + 58, 59, 60, 61, 62, 63, 64, 65, 66, -1, -1, -1, -1, 71, 72, 73, 74, 75, -1, -1, - -1, -1, -1, 81, 82, -1, -1, 32, 33, 34, + -1, -1, -1, 81, 82, -1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 101, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 63, 117, 118, -1, -1, -1, -1, -1, -1, -1, 126, 127, - 128, 129, 130, 131, 132, -1, -1, 3, 4, 5, - 6, 7, -1, -1, 142, -1, 12, -1, -1, -1, - 148, 149, 150, 151, -1, -1, -1, -1, -1, 157, - 158, -1, -1, -1, 162, 31, -1, -1, -1, -1, + 128, 129, 130, 131, 132, -1, 3, 4, 5, 6, + 7, -1, -1, -1, 142, 12, -1, -1, -1, -1, + 148, 149, 150, 151, -1, -1, -1, 155, 156, -1, + 158, -1, 160, -1, -1, 163, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, + -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, + -1, 58, 59, 60, 61, 62, 63, 64, 65, 66, + -1, -1, -1, -1, 71, 72, 73, 74, 75, -1, + -1, -1, -1, -1, 81, 82, -1, -1, 32, 33, + 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, + 44, 45, 46, 47, 101, 49, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 114, -1, 63, + 117, 118, -1, -1, -1, -1, -1, -1, -1, 126, + 127, 128, 129, 130, 131, 132, -1, 3, 4, 5, + 6, 7, -1, -1, -1, 142, 12, -1, -1, -1, + -1, 148, 149, 150, 151, -1, -1, -1, 155, 156, + -1, 158, -1, 160, -1, -1, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, 51, 52, 53, 54, 55, - -1, -1, 58, 59, 60, 61, 62, -1, 64, 65, + -1, -1, 58, 59, 60, 61, 62, 63, 64, 65, 66, -1, -1, -1, -1, 71, 72, 73, 74, 75, - -1, -1, -1, -1, -1, 81, 82, 36, 37, 38, - 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, - 49, -1, -1, -1, -1, 101, -1, -1, -1, -1, - -1, -1, -1, -1, 63, -1, -1, -1, 114, -1, - -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, - 126, 127, 128, 129, 130, 131, 132, -1, -1, 3, - 4, 5, 6, 7, -1, -1, 142, -1, 12, -1, - -1, -1, 148, 149, 150, 151, -1, -1, -1, -1, - -1, 157, -1, -1, -1, -1, 162, 31, -1, -1, + -1, -1, -1, -1, -1, 81, 82, -1, -1, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, 101, 49, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, + 63, 117, 118, -1, -1, -1, -1, -1, -1, -1, + 126, 127, 128, 129, 130, 131, 132, -1, 3, 4, + 5, 6, 7, -1, -1, -1, 142, 12, -1, -1, + -1, -1, 148, 149, 150, 151, -1, -1, -1, 155, + 156, -1, 158, -1, 160, -1, -1, 163, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, + -1, -1, -1, 48, -1, 50, 51, 52, 53, 54, + 55, -1, -1, 58, 59, 60, 61, 62, 63, 64, + 65, 66, -1, -1, -1, -1, 71, 72, 73, 74, + 75, -1, -1, -1, -1, -1, 81, 82, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, + -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, + -1, 126, 127, 128, 129, 130, 131, 132, -1, 3, + 4, 5, 6, 7, -1, -1, -1, 142, 12, -1, + -1, -1, -1, 148, 149, 150, 151, -1, -1, -1, + 155, 156, -1, 158, 159, -1, -1, 31, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, 51, 52, 53, - 54, 55, -1, -1, 58, 59, 60, 61, 62, -1, + 54, 55, -1, -1, 58, 59, 60, 61, 62, 63, 64, 65, 66, -1, -1, -1, -1, 71, 72, 73, 74, 75, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, 131, 132, -1, - -1, 3, 4, 5, 6, 7, -1, -1, 142, -1, - 12, -1, -1, -1, 148, 149, 150, 151, -1, -1, - -1, -1, -1, 157, 26, -1, -1, -1, 162, -1, + 3, 4, 5, 6, 7, -1, -1, -1, 142, 12, + -1, -1, -1, -1, 148, 149, 150, 151, -1, -1, + -1, 155, 156, 26, 158, -1, -1, -1, -1, 163, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, + 43, -1, -1, -1, -1, 48, -1, 50, 51, 52, + 53, 54, 55, -1, -1, 58, 59, 60, 61, 62, + 63, 64, 65, 66, -1, -1, -1, -1, 71, 72, + 73, 74, 75, -1, -1, -1, -1, -1, 81, 82, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 114, -1, -1, 117, 118, -1, -1, -1, -1, + -1, -1, -1, 126, 127, 128, 129, 130, 131, 132, + -1, 3, 4, 5, 6, 7, -1, -1, -1, 142, + 12, -1, -1, -1, -1, 148, 149, 150, 151, -1, + -1, -1, 155, 156, -1, 158, -1, -1, -1, 31, + 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, 61, - 62, -1, 64, 65, 66, -1, -1, -1, -1, 71, + 62, 63, 64, 65, 66, -1, -1, -1, -1, 71, 72, 73, 74, 75, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, 131, - 132, -1, -1, 3, 4, 5, 6, 7, -1, -1, - 142, -1, 12, -1, -1, -1, 148, 149, 150, 151, - -1, -1, -1, -1, -1, 157, -1, -1, -1, -1, - 162, 31, -1, -1, -1, -1, -1, -1, -1, -1, + 132, -1, 3, 4, 5, 6, 7, -1, -1, -1, + 142, 12, -1, -1, -1, -1, 148, 149, 150, 151, + -1, -1, -1, 155, 156, -1, 158, -1, -1, -1, + 31, 163, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, + 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, + 61, 62, 63, 64, 65, 66, -1, -1, -1, -1, + 71, 72, 73, 74, 75, -1, -1, -1, -1, -1, + 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 114, -1, -1, 117, 118, -1, -1, + -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, + 131, 132, -1, 3, 4, 5, 6, 7, -1, -1, + -1, 142, 12, -1, -1, -1, -1, 148, 149, 150, + 151, -1, -1, -1, 155, 156, -1, 158, -1, -1, + -1, 31, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, 59, - 60, 61, 62, -1, 64, 65, 66, -1, -1, -1, + 60, 61, 62, 63, 64, 65, 66, -1, -1, -1, -1, 71, 72, 73, 74, 75, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, 129, - 130, 131, 132, -1, -1, 3, 4, 5, 6, 7, - -1, -1, 142, -1, 12, -1, -1, -1, 148, 149, - 150, 151, -1, -1, -1, -1, -1, 157, -1, -1, - -1, -1, 162, 31, -1, -1, -1, -1, -1, -1, + 130, 131, 132, -1, 3, 4, 5, 6, 7, -1, + -1, -1, 142, 12, -1, -1, -1, -1, 148, 149, + 150, 151, -1, -1, -1, 155, 156, -1, 158, -1, + -1, -1, 31, 163, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, + -1, 50, 51, 52, 53, 54, 55, -1, -1, 58, + 59, 60, 61, 62, 63, 64, 65, 66, -1, -1, + -1, -1, 71, 72, 73, 74, 75, -1, -1, -1, + -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 114, -1, -1, 117, 118, + -1, -1, -1, -1, -1, -1, -1, 126, 127, 128, + 129, 130, 131, 132, -1, 3, 4, 5, 6, 7, + -1, -1, -1, 142, 12, -1, -1, -1, -1, 148, + 149, 150, 151, -1, -1, -1, 155, 156, -1, 158, + -1, -1, -1, 31, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, -1, - 58, 59, 60, 61, 62, -1, 64, 65, 66, -1, + 58, 59, 60, 61, 62, 63, 64, 65, 66, -1, -1, -1, -1, 71, 72, 73, 74, 75, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, 126, 127, - 128, 129, 130, 131, 132, -1, -1, 3, 4, 5, - 6, 7, -1, -1, 142, -1, 12, -1, -1, -1, - 148, 149, 150, 151, -1, -1, -1, -1, -1, 157, - -1, -1, -1, -1, 162, 31, -1, -1, -1, -1, + 128, 129, 130, 131, 132, -1, 3, 4, 5, 6, + 7, -1, -1, -1, 142, 12, -1, -1, -1, -1, + 148, 149, 150, 151, -1, -1, -1, 155, 156, -1, + 158, -1, -1, -1, -1, 163, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, + -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, + -1, 58, 59, 60, 61, 62, 63, 64, 65, 66, + -1, -1, -1, -1, 71, 72, 73, 74, 75, -1, + -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 114, -1, -1, + 117, 118, -1, -1, -1, -1, -1, -1, -1, 126, + 127, 128, 129, 130, 131, 132, -1, 3, 4, 5, + 6, 7, -1, -1, -1, 142, 12, -1, -1, -1, + -1, 148, 149, 150, 151, -1, -1, -1, 155, 156, + -1, 158, -1, -1, -1, -1, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, 51, 52, 53, 54, 55, - -1, -1, 58, 59, 60, 61, 62, -1, 64, 65, + -1, -1, 58, 59, 60, 61, 62, 63, 64, 65, 66, -1, -1, -1, -1, 71, 72, 73, 74, 75, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, - 126, 127, 128, 129, 130, 131, 132, -1, -1, 3, - 4, 5, 6, 7, -1, -1, 142, -1, 12, -1, - -1, -1, 148, 149, 150, 151, -1, -1, -1, -1, - -1, 157, -1, -1, -1, -1, 162, 31, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, - -1, -1, -1, -1, 48, -1, 50, 51, 52, 53, - 54, 55, -1, -1, 58, 59, 60, 61, 62, -1, - 64, 65, 66, -1, -1, -1, -1, 71, 72, 73, - 74, 75, -1, -1, -1, -1, -1, 81, 82, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 114, -1, -1, 117, 118, -1, -1, -1, -1, -1, - -1, -1, 126, 127, 128, 129, 130, 131, 132, -1, - -1, 3, 4, 5, 6, 7, -1, -1, 142, -1, - 12, -1, -1, -1, 148, 149, 150, 151, -1, -1, - -1, -1, -1, 157, -1, -1, -1, -1, 162, 31, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 42, 43, -1, -1, -1, -1, 48, -1, 50, 51, - 52, 53, 54, 55, -1, -1, 58, 59, 60, 61, - 62, -1, 64, 65, 66, -1, -1, -1, -1, 71, - 72, 73, 74, 75, -1, -1, -1, -1, -1, 81, - 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, + 126, 127, 128, 129, 130, 131, 132, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 142, -1, -1, -1, + -1, -1, 148, 149, 150, 151, 9, 10, 11, 155, + 156, -1, 158, -1, -1, -1, -1, 163, -1, -1, + -1, -1, 25, -1, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 114, -1, -1, 117, 118, -1, -1, -1, - -1, -1, -1, -1, 126, 127, 128, 129, 130, 131, - 132, -1, 3, 4, 5, 6, 7, -1, -1, -1, - 142, 12, -1, -1, -1, -1, 148, 149, 150, 151, - -1, -1, -1, -1, -1, 157, -1, -1, -1, -1, - 162, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 42, 43, -1, -1, -1, -1, 48, -1, 50, - 51, 52, 53, 54, 55, -1, -1, 58, 59, 60, - 61, 62, -1, 64, 65, 66, -1, -1, -1, -1, - 71, 72, 73, 74, 75, -1, -1, -1, -1, -1, - 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, + 63, -1, -1, 25, -1, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 42, 43, 44, 45, 46, 47, -1, 49, 9, 10, + 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 63, -1, -1, 25, -1, 27, 28, 29, 30, + 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + 41, 42, 43, 44, 45, 46, 47, -1, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 114, -1, -1, 117, 118, -1, -1, - -1, -1, -1, -1, -1, 126, 127, 128, 129, 130, - 131, 132, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 142, -1, -1, 9, 10, 11, 148, 149, 150, - 151, -1, -1, -1, -1, -1, 157, -1, -1, -1, - 25, 162, 27, 28, 29, 30, 31, 32, 33, 34, + -1, -1, 63, -1, 9, 10, 11, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 162, + 25, -1, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 63, -1, - -1, 25, -1, 27, 28, 29, 30, 31, 32, 33, + 162, 25, -1, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 63, - -1, -1, 25, -1, 27, 28, 29, 30, 31, 32, + -1, 162, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 63, 9, 10, 11, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 161, 25, -1, 27, - 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 63, -1, 161, 25, -1, + 63, -1, 9, 10, 11, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 162, 25, -1, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - 47, -1, 49, 9, 10, 11, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 63, -1, 161, 25, - 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, - 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, - 46, 47, -1, 49, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 63, 9, 10, + 47, -1, 49, -1, 9, 10, 11, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 63, -1, 162, -1, + 25, -1, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, -1, 49, 9, 10, 11, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 160, 63, -1, + -1, 25, -1, 27, 28, 29, 30, 31, 32, 33, + 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, + 44, 45, 46, 47, -1, 49, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 9, 10, 11, 63, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 25, 160, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, -1, 49, -1, 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 161, 25, -1, 27, 28, 29, 30, + 63, -1, -1, -1, 25, 160, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - 41, 42, 43, 44, 45, 46, 47, -1, 49, -1, - 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 63, -1, 161, -1, 25, -1, 27, 28, + 41, 42, 43, 44, 45, 46, 47, -1, 49, 9, + 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 63, -1, -1, 25, 160, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 9, 10, 11, 63, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 25, 160, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 159, 63, -1, -1, 25, -1, 27, - 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - -1, 49, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 9, 10, 11, -1, 63, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 25, 159, 27, + -1, -1, -1, -1, 63, -1, -1, 25, 159, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - -1, 49, -1, 9, 10, 11, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 63, -1, -1, -1, 25, + -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 63, -1, -1, 25, 159, + 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, + 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, + 47, -1, 49, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 9, 10, 11, 63, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 159, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 63, -1, -1, 25, 159, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - 45, 46, 47, -1, 49, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 9, 10, 11, -1, 63, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 25, 159, 27, 28, 29, 30, 31, 32, 33, 34, - 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 63, -1, - -1, 25, 158, 27, 28, 29, 30, 31, 32, 33, + -1, 25, 159, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, - 44, 45, 46, 47, -1, 49, 9, 10, 11, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 63, - -1, -1, 25, 158, 27, 28, 29, 30, 31, 32, - 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - 43, 44, 45, 46, 47, -1, 49, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 9, 10, 11, -1, - 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 25, 158, 27, 28, 29, 30, 31, 32, + 44, 45, 46, 47, -1, 49, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 9, 10, 11, 63, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 25, 159, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 63, -1, -1, 25, 158, 27, 28, 29, 30, 31, + 63, -1, -1, 25, 159, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 63, -1, -1, 25, 158, 27, 28, 29, 30, + -1, 63, -1, -1, 25, 159, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 9, 10, - 11, -1, 63, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 25, 158, 27, 28, 29, 30, - 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - 41, 42, 43, 44, 45, 46, 47, -1, 49, 9, - 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 63, -1, -1, 25, 158, 27, 28, 29, - 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, - 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 63, -1, -1, -1, 158, -1, 9, - 10, 11, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 125, 25, 26, 27, 28, 29, - 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, - 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, - 9, 10, 11, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 63, -1, 125, 25, -1, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, 42, 43, 44, 45, 46, 47, 11, - 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 25, 63, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 45, 46, 47, -1, 49, -1, -1, + -1, -1, 63, -1, -1, -1, 9, 10, 11, -1, + -1, -1, -1, -1, -1, -1, 159, -1, -1, -1, + -1, -1, 25, 125, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, -1, 49, 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 25, 63, 27, 28, 29, 30, 31, 32, 33, 34, - 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - 45, 46, 47, -1, 49, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 63, 27, + 63, -1, -1, -1, 125, -1, -1, -1, 63, -1, + -1, 9, 10, 11, -1, -1, 71, 72, 73, -1, + -1, -1, -1, -1, -1, -1, 81, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - -1, 49, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 63, 28, 29, 30, 31, + -1, 49, -1, -1, -1, -1, -1, -1, -1, 114, + -1, -1, 125, -1, -1, 63, -1, -1, -1, -1, + -1, -1, 127, 128, 129, 130, 131, 132, -1, -1, + -1, -1, -1, 9, 10, 11, -1, 142, -1, -1, + -1, -1, -1, 148, 149, 150, 151, -1, -1, 25, + 155, 27, 28, 29, 30, 31, 32, 33, 34, 35, + 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + 46, 47, -1, 49, 10, 11, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 63, -1, 25, + -1, 27, 28, 29, 30, 31, 32, 33, 34, 35, + 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + 46, 47, 11, 49, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 25, 63, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, + 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 63, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 63, 29, 30, 31, 32, 33, 34, 35, 36, - 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - 47, -1, 49, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 63 + -1, 63, 28, 29, 30, 31, 32, 33, 34, 35, + 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + 46, 47, -1, 49, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 63, 29, 30, + 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + 41, 42, 43, 44, 45, 46, 47, -1, 49, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 63 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { - 0, 165, 166, 0, 3, 4, 5, 6, 7, 12, + 0, 166, 167, 0, 3, 4, 5, 6, 7, 12, 42, 43, 48, 50, 51, 52, 53, 54, 55, 58, - 59, 60, 61, 62, 64, 65, 66, 67, 71, 72, - 73, 74, 75, 77, 81, 82, 83, 84, 85, 87, - 89, 91, 94, 98, 99, 100, 101, 102, 103, 104, - 106, 107, 108, 112, 113, 114, 116, 117, 118, 119, - 120, 121, 126, 127, 128, 129, 130, 131, 132, 135, - 136, 138, 142, 148, 149, 150, 151, 157, 159, 160, - 162, 167, 168, 171, 174, 175, 181, 182, 184, 185, - 186, 188, 227, 228, 231, 232, 240, 243, 247, 248, - 250, 251, 255, 256, 257, 258, 259, 260, 261, 266, - 271, 273, 73, 114, 148, 228, 247, 247, 157, 247, - 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, - 247, 247, 247, 247, 114, 148, 151, 167, 232, 250, - 251, 257, 250, 247, 148, 151, 167, 232, 234, 235, - 257, 259, 260, 266, 157, 238, 157, 26, 224, 247, - 174, 157, 157, 157, 157, 157, 159, 247, 159, 247, - 73, 73, 159, 227, 247, 251, 160, 247, 151, 167, - 169, 170, 75, 162, 211, 212, 120, 120, 75, 213, - 228, 157, 157, 157, 157, 157, 157, 151, 160, 167, - 167, 247, 172, 160, 151, 157, 8, 159, 73, 73, - 31, 183, 145, 9, 10, 11, 25, 27, 28, 29, - 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, - 40, 41, 42, 43, 44, 45, 46, 47, 49, 63, - 159, 61, 62, 13, 14, 15, 16, 17, 18, 19, - 20, 21, 22, 23, 24, 157, 145, 124, 63, 160, - 162, 260, 183, 247, 151, 167, 145, 145, 151, 167, - 145, 157, 239, 145, 124, 260, 158, 247, 247, 8, - 159, 85, 247, 225, 226, 247, 227, 251, 73, 197, - 247, 159, 159, 159, 13, 159, 159, 172, 159, 167, - 93, 8, 159, 160, 248, 251, 8, 159, 13, 8, - 159, 183, 179, 180, 251, 251, 272, 251, 158, 126, - 251, 267, 268, 31, 247, 269, 270, 167, 166, 159, - 160, 157, 158, 119, 161, 173, 174, 181, 182, 247, - 73, 31, 209, 210, 227, 251, 73, 122, 187, 122, - 189, 73, 157, 73, 255, 260, 266, 247, 247, 247, - 26, 247, 247, 247, 247, 247, 247, 247, 247, 247, - 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, - 247, 247, 247, 234, 247, 262, 31, 247, 247, 247, - 247, 247, 247, 247, 247, 247, 247, 247, 247, 209, - 73, 255, 73, 160, 255, 263, 264, 265, 262, 247, - 158, 167, 73, 73, 167, 255, 209, 255, 263, 158, - 158, 247, 157, 158, 159, 8, 93, 93, 13, 8, - 158, 158, 42, 43, 127, 148, 151, 167, 232, 240, - 241, 242, 161, 93, 73, 170, 247, 212, 241, 75, - 157, 8, 158, 8, 158, 158, 159, 157, 8, 158, - 249, 251, 125, 158, 8, 245, 157, 161, 166, 209, - 157, 161, 249, 158, 8, 13, 148, 151, 167, 233, - 123, 190, 191, 233, 160, 157, 127, 206, 207, 208, - 233, 157, 157, 260, 247, 26, 163, 65, 251, 158, - 157, 157, 247, 157, 254, 63, 160, 163, 161, 158, - 236, 26, 174, 247, 26, 174, 201, 225, 247, 251, - 31, 193, 251, 241, 73, 26, 174, 196, 26, 160, - 198, 241, 241, 157, 151, 167, 145, 105, 73, 161, - 13, 206, 180, 159, 251, 267, 268, 13, 31, 247, - 31, 247, 209, 161, 158, 158, 31, 227, 251, 241, - 151, 167, 191, 160, 8, 214, 206, 158, 8, 31, - 75, 209, 209, 247, 234, 209, 209, 161, 209, 252, - 262, 247, 124, 237, 172, 202, 158, 172, 159, 125, - 192, 251, 192, 13, 172, 159, 199, 159, 199, 241, - 244, 246, 167, 73, 157, 241, 158, 158, 247, 249, - 249, 125, 158, 159, 249, 167, 214, 233, 102, 109, - 110, 111, 112, 113, 114, 115, 161, 215, 218, 219, - 220, 221, 223, 158, 107, 229, 208, 75, 13, 158, - 158, 239, 158, 158, 158, 124, 253, 163, 161, 263, - 203, 68, 69, 204, 159, 86, 225, 193, 158, 158, - 241, 92, 199, 95, 96, 97, 199, 161, 125, 158, - 8, 245, 233, 229, 31, 247, 161, 73, 75, 222, - 228, 221, 8, 159, 160, 157, 160, 31, 75, 13, - 241, 263, 68, 69, 205, 157, 174, 159, 158, 26, - 174, 195, 195, 159, 95, 159, 247, 26, 159, 200, - 161, 241, 241, 75, 160, 249, 13, 13, 8, 159, - 216, 73, 172, 31, 75, 230, 172, 75, 13, 241, - 254, 157, 26, 70, 247, 26, 174, 194, 172, 159, - 200, 172, 125, 158, 172, 241, 241, 75, 183, 13, - 161, 75, 8, 158, 161, 13, 241, 247, 172, 159, - 158, 172, 90, 172, 241, 160, 161, 13, 73, 241, - 31, 75, 241, 158, 174, 88, 159, 172, 241, 157, - 75, 26, 159, 161, 206, 172, 105, 176, 177, 178, - 158, 157, 178, 159, 160, 217, 233, 172, 75, 161, - 158, 160, 172, 161 + 59, 60, 61, 62, 63, 64, 65, 66, 67, 71, + 72, 73, 74, 75, 77, 81, 82, 83, 84, 85, + 87, 89, 91, 94, 98, 99, 100, 101, 102, 103, + 104, 106, 107, 108, 112, 113, 114, 116, 117, 118, + 119, 120, 121, 126, 127, 128, 129, 130, 131, 132, + 135, 136, 138, 142, 148, 149, 150, 151, 154, 155, + 156, 158, 160, 161, 163, 168, 169, 172, 175, 176, + 183, 184, 186, 187, 188, 190, 241, 242, 243, 246, + 247, 255, 258, 262, 263, 265, 266, 270, 271, 272, + 273, 274, 275, 276, 281, 286, 288, 73, 114, 148, + 156, 243, 262, 262, 158, 262, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 114, 148, 151, 168, 247, 265, 266, 272, 265, 31, + 262, 284, 285, 262, 148, 151, 168, 247, 249, 250, + 272, 274, 275, 281, 158, 253, 158, 26, 238, 262, + 175, 158, 158, 158, 158, 158, 160, 262, 160, 262, + 73, 73, 160, 241, 262, 266, 161, 262, 151, 168, + 170, 171, 75, 163, 213, 214, 120, 120, 75, 215, + 243, 158, 158, 158, 158, 158, 158, 151, 161, 168, + 168, 241, 262, 266, 242, 262, 173, 161, 151, 158, + 8, 160, 73, 73, 160, 31, 185, 145, 9, 10, + 11, 25, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 49, 63, 160, 61, 62, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 158, 145, 124, 63, 161, 163, 275, 185, 262, 151, + 168, 145, 145, 264, 266, 125, 164, 8, 260, 151, + 168, 145, 158, 254, 145, 124, 275, 159, 262, 262, + 8, 160, 85, 262, 239, 240, 262, 241, 266, 73, + 199, 262, 160, 160, 160, 13, 160, 160, 173, 160, + 168, 93, 8, 160, 161, 263, 266, 8, 160, 13, + 8, 160, 185, 181, 182, 266, 266, 287, 266, 159, + 126, 266, 282, 283, 284, 168, 167, 160, 161, 158, + 125, 159, 159, 119, 162, 174, 175, 183, 184, 262, + 73, 31, 211, 212, 241, 266, 73, 122, 189, 122, + 191, 73, 158, 73, 270, 275, 281, 262, 262, 262, + 26, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 262, 262, 262, 249, 262, 277, 31, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 211, + 73, 270, 73, 161, 270, 278, 279, 280, 277, 262, + 159, 168, 73, 73, 31, 262, 31, 262, 168, 270, + 211, 270, 278, 159, 159, 262, 158, 159, 160, 8, + 93, 93, 13, 8, 159, 159, 42, 43, 63, 127, + 148, 151, 168, 247, 255, 256, 257, 162, 93, 73, + 171, 262, 214, 256, 75, 158, 8, 159, 8, 159, + 159, 160, 158, 8, 159, 159, 158, 162, 167, 211, + 241, 266, 158, 162, 264, 159, 8, 13, 148, 151, + 168, 248, 123, 192, 193, 248, 161, 158, 127, 153, + 208, 209, 210, 248, 158, 158, 275, 262, 26, 164, + 65, 266, 159, 158, 158, 262, 158, 269, 63, 161, + 164, 162, 264, 264, 125, 159, 251, 26, 175, 262, + 26, 175, 203, 239, 262, 266, 31, 195, 266, 256, + 73, 26, 175, 198, 26, 161, 200, 256, 256, 256, + 259, 261, 158, 151, 168, 145, 105, 73, 162, 13, + 208, 182, 160, 266, 282, 283, 13, 211, 162, 159, + 159, 31, 241, 266, 256, 151, 168, 193, 161, 8, + 216, 208, 159, 8, 31, 75, 211, 211, 262, 249, + 211, 211, 162, 211, 267, 277, 262, 31, 262, 124, + 252, 173, 204, 159, 173, 160, 125, 194, 266, 194, + 13, 173, 160, 201, 160, 201, 125, 164, 8, 260, + 259, 168, 73, 158, 256, 159, 159, 262, 159, 160, + 264, 168, 216, 248, 102, 107, 109, 110, 111, 112, + 113, 114, 115, 162, 217, 219, 232, 233, 234, 235, + 237, 159, 107, 244, 210, 75, 13, 159, 159, 254, + 159, 159, 159, 124, 268, 164, 162, 264, 278, 205, + 68, 69, 206, 160, 86, 239, 195, 159, 159, 256, + 92, 201, 95, 96, 97, 201, 162, 256, 256, 159, + 248, 244, 162, 73, 220, 248, 75, 236, 243, 235, + 8, 160, 161, 158, 161, 31, 75, 13, 256, 278, + 68, 69, 207, 158, 175, 160, 159, 26, 175, 197, + 197, 160, 95, 160, 262, 26, 160, 202, 162, 125, + 75, 161, 13, 8, 160, 161, 221, 13, 8, 160, + 218, 73, 173, 31, 75, 245, 173, 75, 13, 256, + 269, 158, 26, 70, 262, 26, 175, 196, 173, 160, + 202, 173, 256, 159, 173, 256, 248, 73, 222, 223, + 224, 225, 227, 228, 229, 248, 256, 75, 185, 13, + 162, 75, 8, 159, 162, 13, 256, 262, 173, 160, + 159, 173, 90, 173, 161, 162, 162, 224, 160, 93, + 152, 160, 145, 13, 73, 256, 31, 75, 256, 159, + 175, 88, 160, 173, 230, 235, 226, 248, 73, 256, + 158, 75, 26, 160, 162, 73, 8, 208, 173, 105, + 177, 179, 180, 248, 159, 158, 157, 178, 180, 160, + 161, 231, 248, 161, 173, 75, 173, 162, 159, 162, + 161, 173, 162 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. */ #define YYFAIL goto yyerrlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ yytoken = YYTRANSLATE (yychar); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (yyscanner, root, YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* YY_LOCATION_PRINT -- Print the location on the stream. This macro was not mandated originally: define only if we know we won't break user code: when these are the locations we know. */ #ifndef YY_LOCATION_PRINT # if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL # define YY_LOCATION_PRINT(File, Loc) \ fprintf (File, "%d.%d-%d.%d", \ (Loc).first_line, (Loc).first_column, \ (Loc).last_line, (Loc).last_column) # else # define YY_LOCATION_PRINT(File, Loc) ((void) 0) # endif #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (&yylval, YYLEX_PARAM) #else # define YYLEX yylex (&yylval, yyscanner) #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value, yyscanner, root); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, void* yyscanner, xhpast::Node** root) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep, yyscanner, root) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; void* yyscanner; xhpast::Node** root; #endif { if (!yyvaluep) return; YYUSE (yyscanner); YYUSE (root); # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, void* yyscanner, xhpast::Node** root) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep, yyscanner, root) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; void* yyscanner; xhpast::Node** root; #endif { if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); else YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep, yyscanner, root); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *bottom, yytype_int16 *top) #else static void yy_stack_print (bottom, top) yytype_int16 *bottom; yytype_int16 *top; #endif { YYFPRINTF (stderr, "Stack now"); for (; bottom <= top; ++bottom) YYFPRINTF (stderr, " %d", *bottom); YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule, void* yyscanner, xhpast::Node** root) #else static void yy_reduce_print (yyvsp, yyrule, yyscanner, root) YYSTYPE *yyvsp; int yyrule; void* yyscanner; xhpast::Node** root; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { fprintf (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) , yyscanner, root); fprintf (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyvsp, Rule, yyscanner, root); \ } while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into YYRESULT an error message about the unexpected token YYCHAR while in state YYSTATE. Return the number of bytes copied, including the terminating null byte. If YYRESULT is null, do not copy anything; just return the number of bytes that would be copied. As a special case, return 0 if an ordinary "syntax error" message will do. Return YYSIZE_MAXIMUM if overflow occurs during size calculation. */ static YYSIZE_T yysyntax_error (char *yyresult, int yystate, int yychar) { int yyn = yypact[yystate]; if (! (YYPACT_NINF < yyn && yyn <= YYLAST)) return 0; else { int yytype = YYTRANSLATE (yychar); YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; int yysize_overflow = 0; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; int yyx; # if 0 /* This is so xgettext sees the translatable formats that are constructed on the fly. */ YY_("syntax error, unexpected %s"); YY_("syntax error, unexpected %s, expecting %s"); YY_("syntax error, unexpected %s, expecting %s or %s"); YY_("syntax error, unexpected %s, expecting %s or %s or %s"); YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"); # endif char *yyfmt; char const *yyf; static char const yyunexpected[] = "syntax error, unexpected %s"; static char const yyexpecting[] = ", expecting %s"; static char const yyor[] = " or %s"; char yyformat[sizeof yyunexpected + sizeof yyexpecting - 1 + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2) * (sizeof yyor - 1))]; char const *yyprefix = yyexpecting; /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yycount = 1; yyarg[0] = yytname[yytype]; yyfmt = yystpcpy (yyformat, yyunexpected); for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; yyformat[sizeof yyunexpected - 1] = '\0'; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (0, yytname[yyx]); yysize_overflow |= (yysize1 < yysize); yysize = yysize1; yyfmt = yystpcpy (yyfmt, yyprefix); yyprefix = yyor; } yyf = YY_(yyformat); yysize1 = yysize + yystrlen (yyf); yysize_overflow |= (yysize1 < yysize); yysize = yysize1; if (yysize_overflow) return YYSIZE_MAXIMUM; if (yyresult) { /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ char *yyp = yyresult; int yyi = 0; while ((*yyp = *yyf) != '\0') { if (*yyp == '%' && yyf[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyf += 2; } else { yyp++; yyf++; } } } return yysize; } } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, void* yyscanner, xhpast::Node** root) #else static void yydestruct (yymsg, yytype, yyvaluep, yyscanner, root) const char *yymsg; int yytype; YYSTYPE *yyvaluep; void* yyscanner; xhpast::Node** root; #endif { YYUSE (yyvaluep); YYUSE (yyscanner); YYUSE (root); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { default: break; } } /* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); #else int yyparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int yyparse (void* yyscanner, xhpast::Node** root); #else int yyparse (); #endif #endif /* ! YYPARSE_PARAM */ /*----------. | yyparse. | `----------*/ #ifdef YYPARSE_PARAM #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void *YYPARSE_PARAM) #else int yyparse (YYPARSE_PARAM) void *YYPARSE_PARAM; #endif #else /* ! YYPARSE_PARAM */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void* yyscanner, xhpast::Node** root) #else int yyparse (yyscanner, root) void* yyscanner; xhpast::Node** root; #endif #endif { /* The look-ahead symbol. */ int yychar; /* The semantic value of the look-ahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; int yystate; int yyn; int yyresult; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* Look-ahead token as an internal (translated) token number. */ int yytoken = 0; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif /* Three stacks and their tools: `yyss': related to states, `yyvs': related to semantic values, `yyls': related to locations. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss = yyssa; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs = yyvsa; YYSTYPE *yyvsp; #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) YYSIZE_T yystacksize = YYINITDEPTH; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss); YYSTACK_RELOCATE (yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a look-ahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to look-ahead token. */ yyn = yypact[yystate]; if (yyn == YYPACT_NINF) goto yydefault; /* Not known => get a look-ahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yyn == 0 || yyn == YYTABLE_NINF) goto yyerrlab; yyn = -yyn; goto yyreduce; } if (yyn == YYFINAL) YYACCEPT; /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the look-ahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token unless it is eof. */ if (yychar != YYEOF) yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: -#line 196 "parser.y" +#line 197 "parser.y" { *root = NNEW(n_PROGRAM)->appendChild((yyvsp[(1) - (1)])); ;} break; case 3: -#line 202 "parser.y" +#line 203 "parser.y" { (yyval) = (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); ;} break; case 4: -#line 205 "parser.y" +#line 206 "parser.y" { (yyval) = NNEW(n_STATEMENT_LIST); ;} break; case 5: -#line 211 "parser.y" +#line 212 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_SYMBOL_NAME); ;} break; case 6: -#line 214 "parser.y" +#line 215 "parser.y" { (yyval) = NMORE((yyvsp[(1) - (3)]), (yyvsp[(3) - (3)])); ;} break; case 10: -#line 223 "parser.y" +#line 224 "parser.y" { (yyvsp[(1) - (4)]) = NSPAN((yyvsp[(1) - (4)]), n_HALT_COMPILER, (yyvsp[(3) - (4)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (4)])); NMORE((yyval), (yyvsp[(4) - (4)])); ;} break; case 11: -#line 228 "parser.y" +#line 229 "parser.y" { NSPAN((yyvsp[(1) - (3)]), n_NAMESPACE, (yyvsp[(2) - (3)])); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyvsp[(1) - (3)])->appendChild(NNEW(n_EMPTY)); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; case 12: -#line 235 "parser.y" +#line 236 "parser.y" { NSPAN((yyvsp[(1) - (5)]), n_NAMESPACE, (yyvsp[(5) - (5)])); (yyvsp[(1) - (5)])->appendChild((yyvsp[(2) - (5)])); (yyvsp[(1) - (5)])->appendChild(NEXPAND((yyvsp[(3) - (5)]), (yyvsp[(4) - (5)]), (yyvsp[(5) - (5)]))); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (5)])); ;} break; case 13: -#line 241 "parser.y" +#line 242 "parser.y" { NSPAN((yyvsp[(1) - (4)]), n_NAMESPACE, (yyvsp[(4) - (4)])); (yyvsp[(1) - (4)])->appendChild(NNEW(n_EMPTY)); NMORE((yyvsp[(3) - (4)]), (yyvsp[(4) - (4)])); NLMORE((yyvsp[(3) - (4)]), (yyvsp[(2) - (4)])); (yyvsp[(1) - (4)])->appendChild((yyvsp[(3) - (4)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (4)])); ;} break; case 14: -#line 249 "parser.y" +#line 250 "parser.y" { NSPAN((yyvsp[(1) - (3)]), n_USE, (yyvsp[(2) - (3)])); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; case 15: -#line 255 "parser.y" +#line 256 "parser.y" { (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (2)])); NMORE((yyval), (yyvsp[(2) - (2)])); ;} break; case 16: -#line 262 "parser.y" +#line 263 "parser.y" { (yyval) = (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); ;} break; case 17: -#line 265 "parser.y" +#line 266 "parser.y" { (yyval) = NNEW(n_USE_LIST); (yyval)->appendChild((yyvsp[(1) - (1)])); ;} break; case 18: -#line 272 "parser.y" +#line 273 "parser.y" { (yyval) = NNEW(n_USE); (yyval)->appendChild((yyvsp[(1) - (1)])); (yyval)->appendChild(NNEW(n_EMPTY)); ;} break; case 19: -#line 277 "parser.y" +#line 278 "parser.y" { (yyval) = NNEW(n_USE); (yyval)->appendChild((yyvsp[(1) - (3)])); NTYPE((yyvsp[(3) - (3)]), n_STRING); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; case 20: -#line 283 "parser.y" +#line 284 "parser.y" { (yyval) = NNEW(n_USE); NLMORE((yyvsp[(2) - (2)]), (yyvsp[(1) - (2)])); (yyval)->appendChild((yyvsp[(2) - (2)])); (yyval)->appendChild(NNEW(n_EMPTY)); ;} break; case 21: -#line 289 "parser.y" +#line 290 "parser.y" { (yyval) = NNEW(n_USE); NLMORE((yyvsp[(2) - (4)]), (yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(2) - (4)])); NTYPE((yyvsp[(4) - (4)]), n_STRING); (yyval)->appendChild((yyvsp[(4) - (4)])); ;} break; case 22: -#line 299 "parser.y" +#line 300 "parser.y" { NMORE((yyval), (yyvsp[(5) - (5)])); (yyval)->appendChild( NNEW(n_CONSTANT_DECLARATION) ->appendChild(NTYPE((yyvsp[(3) - (5)]), n_STRING)) ->appendChild((yyvsp[(5) - (5)]))); ;} break; case 23: -#line 306 "parser.y" +#line 307 "parser.y" { NSPAN((yyval), n_CONSTANT_DECLARATION_LIST, (yyvsp[(4) - (4)])); (yyval)->appendChild( NNEW(n_CONSTANT_DECLARATION) ->appendChild(NTYPE((yyvsp[(2) - (4)]), n_STRING)) ->appendChild((yyvsp[(4) - (4)]))); ;} break; case 24: -#line 316 "parser.y" +#line 317 "parser.y" { (yyval) = (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); ;} break; case 25: -#line 319 "parser.y" +#line 320 "parser.y" { (yyval) = NNEW(n_STATEMENT_LIST); ;} break; case 29: -#line 328 "parser.y" +#line 329 "parser.y" { (yyvsp[(1) - (4)]) = NSPAN((yyvsp[(1) - (4)]), n_HALT_COMPILER, (yyvsp[(3) - (4)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (4)])); NMORE((yyval), (yyvsp[(4) - (4)])); ;} break; case 31: -#line 337 "parser.y" +#line 338 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_STRING); (yyval) = NNEW(n_LABEL); (yyval)->appendChild((yyvsp[(1) - (2)])); NMORE((yyval), (yyvsp[(2) - (2)])); ;} break; case 32: -#line 343 "parser.y" +#line 344 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_OPEN_TAG); ;} break; case 33: -#line 346 "parser.y" +#line 347 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_OPEN_TAG); ;} break; case 34: -#line 349 "parser.y" +#line 350 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_CLOSE_TAG); ;} break; case 35: -#line 355 "parser.y" +#line 356 "parser.y" { (yyval) = NEXPAND((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)])); ;} break; case 36: -#line 358 "parser.y" +#line 359 "parser.y" { (yyval) = NNEW(n_CONDITION_LIST); (yyvsp[(1) - (7)]) = NTYPE((yyvsp[(1) - (7)]), n_IF); (yyvsp[(1) - (7)])->appendChild(NSPAN((yyvsp[(2) - (7)]), n_CONTROL_CONDITION, (yyvsp[(4) - (7)]))->appendChild((yyvsp[(3) - (7)]))); (yyvsp[(1) - (7)])->appendChild((yyvsp[(5) - (7)])); (yyval)->appendChild((yyvsp[(1) - (7)])); (yyval)->appendChildren((yyvsp[(6) - (7)])); // Hacks: merge a list of if (x) { } else if (y) { } into a single condition // list instead of a condition tree. if ((yyvsp[(7) - (7)])->type == n_EMPTY) { // Ignore. } else if ((yyvsp[(7) - (7)])->type == n_ELSE) { xhpast::Node *stype = (yyvsp[(7) - (7)])->firstChild()->firstChild(); if (stype && stype->type == n_CONDITION_LIST) { NTYPE(stype->firstChild(), n_ELSEIF); stype->firstChild()->l_tok = (yyvsp[(7) - (7)])->l_tok; (yyval)->appendChildren(stype); } else { (yyval)->appendChild((yyvsp[(7) - (7)])); } } else { (yyval)->appendChild((yyvsp[(7) - (7)])); } (yyval) = NNEW(n_STATEMENT)->appendChild((yyval)); ;} break; case 37: -#line 388 "parser.y" +#line 389 "parser.y" { (yyval) = NNEW(n_CONDITION_LIST); NTYPE((yyvsp[(1) - (10)]), n_IF); (yyvsp[(1) - (10)])->appendChild(NSPAN((yyvsp[(2) - (10)]), n_CONTROL_CONDITION, (yyvsp[(4) - (10)]))->appendChild((yyvsp[(3) - (10)]))); (yyvsp[(1) - (10)])->appendChild((yyvsp[(6) - (10)])); (yyval)->appendChild((yyvsp[(1) - (10)])); (yyval)->appendChildren((yyvsp[(7) - (10)])); (yyval)->appendChild((yyvsp[(8) - (10)])); NMORE((yyval), (yyvsp[(9) - (10)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyval)); NMORE((yyval), (yyvsp[(10) - (10)])); ;} break; case 38: -#line 403 "parser.y" +#line 404 "parser.y" { NTYPE((yyvsp[(1) - (5)]), n_WHILE); (yyvsp[(1) - (5)])->appendChild(NSPAN((yyvsp[(2) - (5)]), n_CONTROL_CONDITION, (yyvsp[(4) - (5)]))->appendChild((yyvsp[(3) - (5)]))); (yyvsp[(1) - (5)])->appendChild((yyvsp[(5) - (5)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (5)])); ;} break; case 39: -#line 410 "parser.y" +#line 411 "parser.y" { NTYPE((yyvsp[(1) - (7)]), n_DO_WHILE); (yyvsp[(1) - (7)])->appendChild((yyvsp[(2) - (7)])); (yyvsp[(1) - (7)])->appendChild(NSPAN((yyvsp[(4) - (7)]), n_CONTROL_CONDITION, (yyvsp[(6) - (7)]))->appendChild((yyvsp[(5) - (7)]))); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (7)])); NMORE((yyval), (yyvsp[(7) - (7)])); ;} break; case 40: -#line 418 "parser.y" +#line 419 "parser.y" { NTYPE((yyvsp[(1) - (9)]), n_FOR); NSPAN((yyvsp[(2) - (9)]), n_FOR_EXPRESSION, (yyvsp[(8) - (9)])) ->appendChild((yyvsp[(3) - (9)])) ->appendChild((yyvsp[(5) - (9)])) ->appendChild((yyvsp[(7) - (9)])); (yyvsp[(1) - (9)])->appendChild((yyvsp[(2) - (9)])); (yyvsp[(1) - (9)])->appendChild((yyvsp[(9) - (9)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (9)])); ;} break; case 41: -#line 431 "parser.y" +#line 432 "parser.y" { NTYPE((yyvsp[(1) - (5)]), n_SWITCH); (yyvsp[(1) - (5)])->appendChild(NSPAN((yyvsp[(2) - (5)]), n_CONTROL_CONDITION, (yyvsp[(4) - (5)]))->appendChild((yyvsp[(3) - (5)]))); (yyvsp[(1) - (5)])->appendChild((yyvsp[(5) - (5)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (5)])); ;} break; case 42: -#line 438 "parser.y" +#line 439 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_BREAK); (yyvsp[(1) - (2)])->appendChild(NNEW(n_EMPTY)); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (2)])); NMORE((yyval), (yyvsp[(2) - (2)])); ;} break; case 43: -#line 445 "parser.y" +#line 446 "parser.y" { NTYPE((yyvsp[(1) - (3)]), n_BREAK); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; case 44: -#line 452 "parser.y" +#line 453 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_CONTINUE); (yyvsp[(1) - (2)])->appendChild(NNEW(n_EMPTY)); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (2)])); NMORE((yyval), (yyvsp[(2) - (2)])); ;} break; case 45: -#line 459 "parser.y" +#line 460 "parser.y" { NTYPE((yyvsp[(1) - (3)]), n_CONTINUE); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; case 46: -#line 466 "parser.y" +#line 467 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_RETURN); (yyvsp[(1) - (2)])->appendChild(NNEW(n_EMPTY)); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (2)])); NMORE((yyval), (yyvsp[(2) - (2)])); ;} break; case 47: -#line 473 "parser.y" +#line 474 "parser.y" { NTYPE((yyvsp[(1) - (3)]), n_RETURN); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; case 48: -#line 480 "parser.y" +#line 481 "parser.y" { NTYPE((yyvsp[(1) - (3)]), n_RETURN); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; case 49: -#line 487 "parser.y" +#line 488 "parser.y" { NLMORE((yyvsp[(2) - (3)]), (yyvsp[(1) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(2) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; case 50: -#line 492 "parser.y" +#line 493 "parser.y" { NLMORE((yyvsp[(2) - (3)]), (yyvsp[(1) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(2) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; case 51: -#line 497 "parser.y" +#line 498 "parser.y" { NLMORE((yyvsp[(2) - (3)]), (yyvsp[(1) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(2) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; case 52: -#line 502 "parser.y" +#line 503 "parser.y" { NTYPE((yyvsp[(1) - (1)]), n_INLINE_HTML); (yyval) = (yyvsp[(1) - (1)]); ;} break; case 53: -#line 506 "parser.y" +#line 507 "parser.y" { (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (2)])); NMORE((yyval), (yyvsp[(2) - (2)])); ;} break; case 54: -#line 510 "parser.y" +#line 511 "parser.y" + { + (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (2)])); + NMORE((yyval), (yyvsp[(2) - (2)])); + ;} + break; + + case 55: +#line 515 "parser.y" { NMORE((yyvsp[(3) - (5)]), (yyvsp[(4) - (5)])); NLMORE((yyvsp[(3) - (5)]), (yyvsp[(1) - (5)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(3) - (5)])); NMORE((yyval), (yyvsp[(5) - (5)])); ;} break; - case 55: -#line 516 "parser.y" + case 56: +#line 521 "parser.y" { NTYPE((yyvsp[(1) - (8)]), n_FOREACH); NSPAN((yyvsp[(2) - (8)]), n_FOREACH_EXPRESSION, (yyvsp[(7) - (8)])); (yyvsp[(2) - (8)])->appendChild((yyvsp[(3) - (8)])); if ((yyvsp[(6) - (8)])->type == n_EMPTY) { (yyvsp[(2) - (8)])->appendChild((yyvsp[(6) - (8)])); (yyvsp[(2) - (8)])->appendChild((yyvsp[(5) - (8)])); } else { (yyvsp[(2) - (8)])->appendChild((yyvsp[(5) - (8)])); (yyvsp[(2) - (8)])->appendChild((yyvsp[(6) - (8)])); } (yyvsp[(1) - (8)])->appendChild((yyvsp[(2) - (8)])); (yyvsp[(1) - (8)])->appendChild((yyvsp[(8) - (8)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (8)])); ;} break; - case 56: -#line 533 "parser.y" + case 57: +#line 538 "parser.y" { NTYPE((yyvsp[(1) - (8)]), n_FOREACH); NSPAN((yyvsp[(2) - (8)]), n_FOREACH_EXPRESSION, (yyvsp[(7) - (8)])); (yyvsp[(2) - (8)])->appendChild((yyvsp[(3) - (8)])); if ((yyvsp[(6) - (8)])->type == n_EMPTY) { (yyvsp[(2) - (8)])->appendChild((yyvsp[(6) - (8)])); (yyvsp[(2) - (8)])->appendChild((yyvsp[(5) - (8)])); } else { (yyvsp[(2) - (8)])->appendChild((yyvsp[(5) - (8)])); (yyvsp[(2) - (8)])->appendChild((yyvsp[(6) - (8)])); } (yyvsp[(1) - (8)])->appendChild((yyvsp[(2) - (8)])); (yyvsp[(1) - (8)])->appendChild((yyvsp[(8) - (8)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (8)])); ;} break; - case 57: -#line 549 "parser.y" + case 58: +#line 554 "parser.y" { NTYPE((yyvsp[(1) - (5)]), n_DECLARE); (yyvsp[(1) - (5)])->appendChild((yyvsp[(3) - (5)])); (yyvsp[(1) - (5)])->appendChild((yyvsp[(5) - (5)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (5)])); ;} break; - case 58: -#line 555 "parser.y" + case 59: +#line 560 "parser.y" { (yyval) = NNEW(n_STATEMENT)->appendChild(NNEW(n_EMPTY)); NMORE((yyval), (yyvsp[(1) - (1)])); ;} break; - case 59: -#line 559 "parser.y" + case 60: +#line 564 "parser.y" { - NTYPE((yyvsp[(1) - (13)]), n_TRY); - (yyvsp[(1) - (13)])->appendChild(NEXPAND((yyvsp[(2) - (13)]), (yyvsp[(3) - (13)]), (yyvsp[(4) - (13)]))); + NTYPE((yyvsp[(1) - (14)]), n_TRY); + (yyvsp[(1) - (14)])->appendChild(NEXPAND((yyvsp[(2) - (14)]), (yyvsp[(3) - (14)]), (yyvsp[(4) - (14)]))); - NTYPE((yyvsp[(5) - (13)]), n_CATCH); - (yyvsp[(5) - (13)])->appendChild((yyvsp[(7) - (13)])); - (yyvsp[(5) - (13)])->appendChild(NTYPE((yyvsp[(8) - (13)]), n_VARIABLE)); - (yyvsp[(5) - (13)])->appendChild(NEXPAND((yyvsp[(10) - (13)]), (yyvsp[(11) - (13)]), (yyvsp[(12) - (13)]))); + NTYPE((yyvsp[(5) - (14)]), n_CATCH); + (yyvsp[(5) - (14)])->appendChild((yyvsp[(7) - (14)])); + (yyvsp[(5) - (14)])->appendChild(NTYPE((yyvsp[(8) - (14)]), n_VARIABLE)); + (yyvsp[(5) - (14)])->appendChild(NEXPAND((yyvsp[(10) - (14)]), (yyvsp[(11) - (14)]), (yyvsp[(12) - (14)]))); - (yyvsp[(1) - (13)])->appendChild(NNEW(n_CATCH_LIST)->appendChild((yyvsp[(5) - (13)]))->appendChildren((yyvsp[(13) - (13)]))); + (yyvsp[(1) - (14)])->appendChild(NNEW(n_CATCH_LIST)->appendChild((yyvsp[(5) - (14)]))->appendChildren((yyvsp[(13) - (14)]))); + (yyvsp[(1) - (14)])->appendChild((yyvsp[(14) - (14)])); - (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (13)])); + (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (14)])); ;} break; - case 60: -#line 572 "parser.y" + case 61: +#line 578 "parser.y" { NTYPE((yyvsp[(1) - (3)]), n_THROW); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; - case 61: -#line 580 "parser.y" + case 62: +#line 586 "parser.y" { NTYPE((yyvsp[(1) - (3)]), n_GOTO); NTYPE((yyvsp[(2) - (3)]), n_STRING); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (3)])); NMORE((yyval), (yyvsp[(3) - (3)])); ;} break; - case 63: -#line 592 "parser.y" + case 64: +#line 598 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 64: -#line 598 "parser.y" + case 65: +#line 604 "parser.y" + { + (yyval) = NNEW(n_EMPTY); + ;} + break; + + case 66: +#line 607 "parser.y" + { + NTYPE((yyvsp[(1) - (4)]), n_FINALLY); + (yyvsp[(1) - (4)])->appendChild((yyvsp[(3) - (4)])); + NMORE((yyvsp[(1) - (4)]), (yyvsp[(4) - (4)])); + (yyval) = (yyvsp[(1) - (4)]); + ;} + break; + + case 67: +#line 617 "parser.y" { (yyval) = NNEW(n_CATCH_LIST); (yyval)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 65: -#line 602 "parser.y" + case 68: +#line 621 "parser.y" { (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); (yyval) = (yyvsp[(1) - (2)]); ;} break; - case 66: -#line 609 "parser.y" + case 69: +#line 628 "parser.y" { NTYPE((yyvsp[(1) - (8)]), n_CATCH); (yyvsp[(1) - (8)])->appendChild((yyvsp[(3) - (8)])); (yyvsp[(1) - (8)])->appendChild(NTYPE((yyvsp[(4) - (8)]), n_VARIABLE)); (yyvsp[(1) - (8)])->appendChild(NEXPAND((yyvsp[(6) - (8)]), (yyvsp[(7) - (8)]), (yyvsp[(8) - (8)]))); NMORE((yyvsp[(1) - (8)]), (yyvsp[(8) - (8)])); (yyval) = (yyvsp[(1) - (8)]); ;} break; - case 67: -#line 620 "parser.y" + case 70: +#line 639 "parser.y" { (yyval) = NNEW(n_UNSET_LIST); (yyval)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 68: -#line 624 "parser.y" + case 71: +#line 643 "parser.y" { (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); (yyval) = (yyvsp[(1) - (3)]); ;} break; - case 72: -#line 643 "parser.y" + case 75: +#line 662 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 73: -#line 646 "parser.y" + case 76: +#line 665 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_REFERENCE); ;} break; - case 74: -#line 652 "parser.y" + case 77: +#line 671 "parser.y" { NSPAN((yyvsp[(1) - (9)]), n_FUNCTION_DECLARATION, (yyvsp[(9) - (9)])); (yyvsp[(1) - (9)])->appendChild(NNEW(n_EMPTY)); (yyvsp[(1) - (9)])->appendChild((yyvsp[(2) - (9)])); (yyvsp[(1) - (9)])->appendChild(NTYPE((yyvsp[(3) - (9)]), n_STRING)); (yyvsp[(1) - (9)])->appendChild(NEXPAND((yyvsp[(4) - (9)]), (yyvsp[(5) - (9)]), (yyvsp[(6) - (9)]))); (yyval)->appendChild(NNEW(n_EMPTY)); (yyvsp[(1) - (9)])->appendChild(NEXPAND((yyvsp[(7) - (9)]), (yyvsp[(8) - (9)]), (yyvsp[(9) - (9)]))); (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (9)])); ;} break; - case 75: -#line 666 "parser.y" + case 78: +#line 685 "parser.y" { (yyval) = NNEW(n_CLASS_DECLARATION); (yyval)->appendChild((yyvsp[(1) - (7)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (7)]), n_CLASS_NAME)); (yyval)->appendChild((yyvsp[(3) - (7)])); (yyval)->appendChild((yyvsp[(4) - (7)])); (yyval)->appendChild(NEXPAND((yyvsp[(5) - (7)]), (yyvsp[(6) - (7)]), (yyvsp[(7) - (7)]))); NMORE((yyval), (yyvsp[(7) - (7)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyval)); ;} break; - case 76: -#line 677 "parser.y" + case 79: +#line 696 "parser.y" { (yyval) = NNEW(n_INTERFACE_DECLARATION); (yyval)->appendChild(NNEW(n_CLASS_ATTRIBUTES)); NLMORE((yyval), (yyvsp[(1) - (6)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (6)]), n_CLASS_NAME)); (yyval)->appendChild((yyvsp[(3) - (6)])); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval)->appendChild(NEXPAND((yyvsp[(4) - (6)]), (yyvsp[(5) - (6)]), (yyvsp[(6) - (6)]))); NMORE((yyval), (yyvsp[(6) - (6)])); (yyval) = NNEW(n_STATEMENT)->appendChild((yyval)); ;} break; - case 77: -#line 692 "parser.y" + case 80: +#line 711 "parser.y" { NTYPE((yyvsp[(1) - (1)]), n_CLASS_ATTRIBUTES); (yyval) = (yyvsp[(1) - (1)]); ;} break; - case 78: -#line 696 "parser.y" + case 81: +#line 715 "parser.y" { NTYPE((yyvsp[(2) - (2)]), n_CLASS_ATTRIBUTES); NLMORE((yyvsp[(2) - (2)]), (yyvsp[(1) - (2)])); (yyvsp[(2) - (2)])->appendChild(NTYPE((yyvsp[(1) - (2)]), n_STRING)); (yyval) = (yyvsp[(2) - (2)]); ;} break; - case 79: -#line 703 "parser.y" + case 82: +#line 722 "parser.y" { NTYPE((yyvsp[(2) - (2)]), n_CLASS_ATTRIBUTES); NLMORE((yyvsp[(2) - (2)]), (yyvsp[(1) - (2)])); (yyvsp[(2) - (2)])->appendChild(NTYPE((yyvsp[(1) - (2)]), n_STRING)); (yyval) = (yyvsp[(2) - (2)]); ;} break; - case 80: -#line 713 "parser.y" + case 83: +#line 729 "parser.y" + { + (yyval) = NNEW(n_CLASS_ATTRIBUTES); + (yyval)->appendChild(NTYPE((yyvsp[(1) - (1)]), n_STRING)); + ;} + break; + + case 84: +#line 736 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 81: -#line 716 "parser.y" + case 85: +#line 739 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (2)]), n_EXTENDS_LIST)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 83: -#line 726 "parser.y" + case 87: +#line 749 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 84: -#line 729 "parser.y" + case 88: +#line 752 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_EXTENDS_LIST); (yyvsp[(1) - (2)])->appendChildren((yyvsp[(2) - (2)])); (yyval) = (yyvsp[(1) - (2)]); ;} break; - case 85: -#line 737 "parser.y" + case 89: +#line 760 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 86: -#line 740 "parser.y" + case 90: +#line 763 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_IMPLEMENTS_LIST); (yyvsp[(1) - (2)])->appendChildren((yyvsp[(2) - (2)])); (yyval) = (yyvsp[(1) - (2)]); ;} break; - case 87: -#line 748 "parser.y" + case 91: +#line 771 "parser.y" { (yyval) = NNEW(n_IMPLEMENTS_LIST)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 88: -#line 751 "parser.y" + case 92: +#line 774 "parser.y" { (yyval) = (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); ;} break; - case 89: -#line 757 "parser.y" + case 93: +#line 780 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 90: -#line 760 "parser.y" + case 94: +#line 783 "parser.y" { (yyval) = (yyvsp[(2) - (2)]); ;} break; - case 92: -#line 767 "parser.y" + case 96: +#line 790 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_VARIABLE_REFERENCE); (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); (yyval) = (yyvsp[(1) - (2)]); ;} break; - case 94: -#line 776 "parser.y" + case 98: +#line 799 "parser.y" { NLMORE((yyvsp[(2) - (4)]), (yyvsp[(1) - (4)])); NMORE((yyvsp[(2) - (4)]), (yyvsp[(4) - (4)])); (yyval) = (yyvsp[(2) - (4)]); ;} break; - case 96: -#line 785 "parser.y" + case 100: +#line 808 "parser.y" { NLMORE((yyvsp[(2) - (4)]), (yyvsp[(1) - (4)])); NMORE((yyvsp[(2) - (4)]), (yyvsp[(4) - (4)])); (yyval) = (yyvsp[(2) - (4)]); ;} break; - case 98: -#line 794 "parser.y" + case 102: +#line 817 "parser.y" { NLMORE((yyvsp[(2) - (4)]), (yyvsp[(1) - (4)])); NMORE((yyvsp[(2) - (4)]), (yyvsp[(4) - (4)])); (yyval) = (yyvsp[(2) - (4)]); ;} break; - case 99: -#line 802 "parser.y" + case 103: +#line 825 "parser.y" { (yyval) = NNEW(n_DECLARE_DECLARATION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (3)]), n_STRING)); (yyval)->appendChild((yyvsp[(3) - (3)])); (yyval) = NNEW(n_DECLARE_DECLARATION_LIST)->appendChild((yyval)); ;} break; - case 100: -#line 808 "parser.y" + case 104: +#line 831 "parser.y" { (yyval) = NNEW(n_DECLARE_DECLARATION); (yyval)->appendChild(NTYPE((yyvsp[(3) - (5)]), n_STRING)); (yyval)->appendChild((yyvsp[(5) - (5)])); (yyvsp[(1) - (5)])->appendChild((yyval)); (yyval) = (yyvsp[(1) - (5)]); ;} break; - case 101: -#line 819 "parser.y" + case 105: +#line 842 "parser.y" { (yyval) = NEXPAND((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)])); ;} break; - case 102: -#line 822 "parser.y" + case 106: +#line 845 "parser.y" { // ...why does this rule exist? NTYPE((yyvsp[(2) - (4)]), n_STATEMENT); (yyvsp[(1) - (4)])->appendChild(NNEW(n_EMPTY)); (yyval) = NNEW(n_STATEMENT_LIST)->appendChild((yyvsp[(2) - (4)])); (yyval)->appendChildren((yyvsp[(3) - (4)])); NEXPAND((yyvsp[(1) - (4)]), (yyval), (yyvsp[(4) - (4)])); ;} break; - case 103: -#line 832 "parser.y" + case 107: +#line 855 "parser.y" { NMORE((yyvsp[(2) - (4)]), (yyvsp[(4) - (4)])); NLMORE((yyvsp[(2) - (4)]), (yyvsp[(1) - (4)])); (yyval) = (yyvsp[(2) - (4)]); ;} break; - case 104: -#line 837 "parser.y" + case 108: +#line 860 "parser.y" { NTYPE((yyvsp[(2) - (5)]), n_STATEMENT); (yyvsp[(1) - (5)])->appendChild(NNEW(n_EMPTY)); (yyval) = NNEW(n_STATEMENT_LIST)->appendChild((yyvsp[(2) - (5)])); (yyval)->appendChildren((yyvsp[(3) - (5)])); NMORE((yyval), (yyvsp[(5) - (5)])); NLMORE((yyval), (yyvsp[(1) - (5)])); ;} break; - case 105: -#line 849 "parser.y" + case 109: +#line 872 "parser.y" { (yyval) = NNEW(n_STATEMENT_LIST); ;} break; - case 106: -#line 852 "parser.y" + case 110: +#line 875 "parser.y" { NTYPE((yyvsp[(2) - (5)]), n_CASE); (yyvsp[(2) - (5)])->appendChild((yyvsp[(3) - (5)])); (yyvsp[(2) - (5)])->appendChild((yyvsp[(5) - (5)])); (yyvsp[(1) - (5)])->appendChild((yyvsp[(2) - (5)])); (yyval) = (yyvsp[(1) - (5)]); ;} break; - case 107: -#line 860 "parser.y" + case 111: +#line 883 "parser.y" { NTYPE((yyvsp[(2) - (4)]), n_DEFAULT); (yyvsp[(2) - (4)])->appendChild((yyvsp[(4) - (4)])); (yyvsp[(1) - (4)])->appendChild((yyvsp[(2) - (4)])); (yyval) = (yyvsp[(1) - (4)]); ;} break; - case 111: -#line 876 "parser.y" + case 115: +#line 899 "parser.y" { NMORE((yyvsp[(2) - (4)]), (yyvsp[(4) - (4)])); NLMORE((yyvsp[(2) - (4)]), (yyvsp[(1) - (4)])); (yyval) = (yyvsp[(2) - (4)]); ;} break; - case 112: -#line 884 "parser.y" + case 116: +#line 907 "parser.y" { (yyval) = NNEW(n_CONDITION_LIST); ;} break; - case 113: -#line 887 "parser.y" + case 117: +#line 910 "parser.y" { NTYPE((yyvsp[(2) - (6)]), n_ELSEIF); (yyvsp[(2) - (6)])->appendChild(NSPAN((yyvsp[(3) - (6)]), n_CONTROL_CONDITION, (yyvsp[(5) - (6)]))->appendChild((yyvsp[(4) - (6)]))); (yyvsp[(2) - (6)])->appendChild((yyvsp[(6) - (6)])); (yyval) = (yyvsp[(1) - (6)])->appendChild((yyvsp[(2) - (6)])); ;} break; - case 114: -#line 897 "parser.y" + case 118: +#line 920 "parser.y" { (yyval) = NNEW(n_CONDITION_LIST); ;} break; - case 115: -#line 900 "parser.y" + case 119: +#line 923 "parser.y" { NTYPE((yyvsp[(2) - (7)]), n_ELSEIF); (yyvsp[(2) - (7)])->appendChild((yyvsp[(4) - (7)])); (yyvsp[(2) - (7)])->appendChild((yyvsp[(7) - (7)])); (yyval) = (yyvsp[(1) - (7)])->appendChild((yyvsp[(2) - (7)])); ;} break; - case 116: -#line 910 "parser.y" + case 120: +#line 933 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 117: -#line 913 "parser.y" + case 121: +#line 936 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_ELSE); (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); (yyval) = (yyvsp[(1) - (2)]); ;} break; - case 118: -#line 921 "parser.y" + case 122: +#line 944 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 119: -#line 924 "parser.y" + case 123: +#line 947 "parser.y" { NTYPE((yyvsp[(1) - (3)]), n_ELSE); (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); (yyval) = (yyvsp[(1) - (3)]); ;} break; - case 121: -#line 933 "parser.y" + case 125: +#line 956 "parser.y" { (yyval) = NNEW(n_DECLARATION_PARAMETER_LIST); ;} break; - case 122: -#line 939 "parser.y" + case 126: +#line 962 "parser.y" { (yyval) = NNEW(n_DECLARATION_PARAMETER); (yyval)->appendChild((yyvsp[(1) - (2)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (2)]), n_VARIABLE)); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval) = NNEW(n_DECLARATION_PARAMETER_LIST)->appendChild((yyval)); ;} break; - case 123: -#line 947 "parser.y" + case 127: +#line 970 "parser.y" { (yyval) = NNEW(n_DECLARATION_PARAMETER); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_VARIABLE_REFERENCE)); (yyvsp[(2) - (3)])->appendChild(NTYPE((yyvsp[(3) - (3)]), n_VARIABLE)); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval) = NNEW(n_DECLARATION_PARAMETER_LIST)->appendChild((yyval)); ;} break; - case 124: -#line 956 "parser.y" + case 128: +#line 979 "parser.y" { (yyval) = NNEW(n_DECLARATION_PARAMETER); (yyval)->appendChild((yyvsp[(1) - (5)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (5)]), n_VARIABLE_REFERENCE)); (yyvsp[(2) - (5)])->appendChild(NTYPE((yyvsp[(3) - (5)]), n_VARIABLE)); (yyval)->appendChild((yyvsp[(5) - (5)])); (yyval) = NNEW(n_DECLARATION_PARAMETER_LIST)->appendChild((yyval)); ;} break; - case 125: -#line 965 "parser.y" + case 129: +#line 988 "parser.y" { (yyval) = NNEW(n_DECLARATION_PARAMETER); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (4)]), n_VARIABLE)); (yyval)->appendChild((yyvsp[(4) - (4)])); (yyval) = NNEW(n_DECLARATION_PARAMETER_LIST)->appendChild((yyval)); ;} break; - case 126: -#line 973 "parser.y" + case 130: +#line 996 "parser.y" { (yyval) = NNEW(n_DECLARATION_PARAMETER); (yyval)->appendChild((yyvsp[(3) - (4)])); (yyval)->appendChild(NTYPE((yyvsp[(4) - (4)]), n_VARIABLE)); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval) = (yyvsp[(1) - (4)])->appendChild((yyval)); ;} break; - case 127: -#line 981 "parser.y" + case 131: +#line 1004 "parser.y" { (yyval) = NNEW(n_DECLARATION_PARAMETER); (yyval)->appendChild((yyvsp[(3) - (5)])); (yyval)->appendChild(NTYPE((yyvsp[(4) - (5)]), n_VARIABLE_REFERENCE)); (yyvsp[(4) - (5)])->appendChild(NTYPE((yyvsp[(5) - (5)]), n_VARIABLE)); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval) = (yyvsp[(1) - (5)])->appendChild((yyval)); ;} break; - case 128: -#line 990 "parser.y" + case 132: +#line 1013 "parser.y" { (yyval) = NNEW(n_DECLARATION_PARAMETER); (yyval)->appendChild((yyvsp[(3) - (7)])); (yyval)->appendChild(NTYPE((yyvsp[(4) - (7)]), n_VARIABLE_REFERENCE)); (yyvsp[(4) - (7)])->appendChild(NTYPE((yyvsp[(5) - (7)]), n_VARIABLE)); (yyval)->appendChild((yyvsp[(7) - (7)])); (yyval) = (yyvsp[(1) - (7)])->appendChild((yyval)); ;} break; - case 129: -#line 999 "parser.y" + case 133: +#line 1022 "parser.y" { (yyval) = NNEW(n_DECLARATION_PARAMETER); (yyval)->appendChild((yyvsp[(3) - (6)])); (yyval)->appendChild(NTYPE((yyvsp[(4) - (6)]), n_VARIABLE)); (yyval)->appendChild((yyvsp[(6) - (6)])); (yyval) = (yyvsp[(1) - (6)])->appendChild((yyval)); ;} break; - case 130: -#line 1010 "parser.y" + case 134: +#line 1033 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 131: -#line 1013 "parser.y" + case 135: +#line 1036 "parser.y" { (yyval) = (yyvsp[(1) - (1)]); ;} break; - case 132: -#line 1016 "parser.y" + case 136: +#line 1039 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_TYPE_NAME); ;} break; - case 134: -#line 1023 "parser.y" + case 137: +#line 1042 "parser.y" + { + (yyval) = NTYPE((yyvsp[(1) - (1)]), n_TYPE_NAME); + ;} + break; + + case 139: +#line 1049 "parser.y" { (yyval) = NNEW(n_CALL_PARAMETER_LIST); ;} break; - case 135: -#line 1029 "parser.y" + case 140: +#line 1055 "parser.y" { (yyval) = NNEW(n_CALL_PARAMETER_LIST)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 136: -#line 1032 "parser.y" + case 141: +#line 1058 "parser.y" { (yyval) = NNEW(n_CALL_PARAMETER_LIST)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 137: -#line 1035 "parser.y" + case 142: +#line 1061 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_VARIABLE_REFERENCE); (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); (yyval) = NNEW(n_CALL_PARAMETER_LIST)->appendChild((yyvsp[(1) - (2)])); ;} break; - case 138: -#line 1040 "parser.y" + case 143: +#line 1066 "parser.y" { (yyval) = (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); ;} break; - case 139: -#line 1043 "parser.y" + case 144: +#line 1069 "parser.y" + { + (yyval) = (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); + ;} + break; + + case 145: +#line 1072 "parser.y" + { + (yyval) = (yyvsp[(1) - (4)])->appendChild((yyvsp[(3) - (4)])); + ;} + break; + + case 146: +#line 1078 "parser.y" + { + (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); + (yyval) = (yyvsp[(1) - (3)]); + ;} + break; + + case 147: +#line 1082 "parser.y" + { + (yyval) = NNEW(n_GLOBAL_DECLARATION_LIST); + (yyval)->appendChild((yyvsp[(1) - (1)])); + ;} + break; + + case 148: +#line 1089 "parser.y" + { + (yyval) = NTYPE((yyvsp[(1) - (1)]), n_VARIABLE); + ;} + break; + + case 149: +#line 1092 "parser.y" + { + (yyval) = NTYPE((yyvsp[(1) - (2)]), n_VARIABLE_VARIABLE); + (yyval)->appendChild((yyvsp[(2) - (2)])); + ;} + break; + + case 150: +#line 1096 "parser.y" + { + (yyval) = NTYPE((yyvsp[(1) - (4)]), n_VARIABLE_VARIABLE); + (yyval)->appendChild((yyvsp[(3) - (4)])); + ;} + break; + + case 151: +#line 1103 "parser.y" + { + NTYPE((yyvsp[(3) - (3)]), n_VARIABLE); + (yyval) = NNEW(n_STATIC_DECLARATION); + (yyval)->appendChild((yyvsp[(3) - (3)])); + (yyval)->appendChild(NNEW(n_EMPTY)); + + (yyval) = (yyvsp[(1) - (3)])->appendChild((yyval)); + ;} + break; + + case 152: +#line 1111 "parser.y" + { + NTYPE((yyvsp[(3) - (5)]), n_VARIABLE); + (yyval) = NNEW(n_STATIC_DECLARATION); + (yyval)->appendChild((yyvsp[(3) - (5)])); + (yyval)->appendChild((yyvsp[(5) - (5)])); + + (yyval) = (yyvsp[(1) - (5)])->appendChild((yyval)); + ;} + break; + + case 153: +#line 1119 "parser.y" + { + NTYPE((yyvsp[(1) - (1)]), n_VARIABLE); + (yyval) = NNEW(n_STATIC_DECLARATION); + (yyval)->appendChild((yyvsp[(1) - (1)])); + (yyval)->appendChild(NNEW(n_EMPTY)); + + (yyval) = NNEW(n_STATIC_DECLARATION_LIST)->appendChild((yyval)); + ;} + break; + + case 154: +#line 1127 "parser.y" + { + NTYPE((yyvsp[(1) - (3)]), n_VARIABLE); + (yyval) = NNEW(n_STATIC_DECLARATION); + (yyval)->appendChild((yyvsp[(1) - (3)])); + (yyval)->appendChild((yyvsp[(3) - (3)])); + + (yyval) = NNEW(n_STATIC_DECLARATION_LIST)->appendChild((yyval)); + ;} + break; + + case 155: +#line 1138 "parser.y" + { + (yyval) = (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); + ;} + break; + + case 156: +#line 1141 "parser.y" + { + (yyval) = NNEW(n_STATEMENT_LIST); + ;} + break; + + case 157: +#line 1147 "parser.y" + { + (yyval) = NNEW(n_CLASS_MEMBER_DECLARATION_LIST); + (yyval)->appendChild((yyvsp[(1) - (3)])); + (yyval)->appendChildren((yyvsp[(2) - (3)])); + + (yyval) = NNEW(n_STATEMENT)->appendChild((yyval)); + NMORE((yyval), (yyvsp[(3) - (3)])); + ;} + break; + + case 158: +#line 1155 "parser.y" + { + (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (2)])); + NMORE((yyval), (yyvsp[(2) - (2)])); + ;} + break; + + case 159: +#line 1159 "parser.y" + { + (yyval) = (yyvsp[(1) - (1)]); + ;} + break; + + case 160: +#line 1162 "parser.y" + { + yyextra->old_expecting_xhp_class_statements = yyextra->expecting_xhp_class_statements; + yyextra->expecting_xhp_class_statements = false; + ;} + break; + + case 161: +#line 1165 "parser.y" + { + yyextra->expecting_xhp_class_statements = yyextra->old_expecting_xhp_class_statements; + + (yyval) = NNEW(n_METHOD_DECLARATION); + (yyval)->appendChild((yyvsp[(1) - (9)])); + (yyval)->appendChild((yyvsp[(4) - (9)])); + (yyval)->appendChild(NTYPE((yyvsp[(5) - (9)]), n_STRING)); + (yyval)->appendChild(NEXPAND((yyvsp[(6) - (9)]), (yyvsp[(7) - (9)]), (yyvsp[(8) - (9)]))); + (yyval)->appendChild(NNEW(n_EMPTY)); + (yyval)->appendChild((yyvsp[(9) - (9)])); + + (yyval) = NNEW(n_STATEMENT)->appendChild((yyval)); + ;} + break; + + case 162: +#line 1181 "parser.y" + { + (yyval) = NTYPE((yyvsp[(1) - (3)]), n_TRAIT_USE); + (yyval)->appendChildren((yyvsp[(2) - (3)])); + (yyval)->appendChild((yyvsp[(3) - (3)])); + ;} + break; + + case 163: +#line 1189 "parser.y" + { + (yyval) = NNEW(n_TRAIT_USE_LIST)->appendChild((yyvsp[(1) - (1)])); + ;} + break; + + case 164: +#line 1192 "parser.y" { (yyval) = (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); ;} break; - case 140: -#line 1046 "parser.y" + case 165: +#line 1198 "parser.y" { - (yyval) = (yyvsp[(1) - (4)])->appendChild((yyvsp[(3) - (4)])); + (yyval) = NNEW(n_EMPTY); ;} break; - case 141: -#line 1052 "parser.y" + case 166: +#line 1201 "parser.y" { - (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); - (yyval) = (yyvsp[(1) - (3)]); + (yyval) = NEXPAND((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)])); ;} break; - case 142: -#line 1056 "parser.y" + case 167: +#line 1207 "parser.y" { - (yyval) = NNEW(n_GLOBAL_DECLARATION_LIST); - (yyval)->appendChild((yyvsp[(1) - (1)])); + (yyval) = NNEW(n_TRAIT_ADAPTATION_LIST); ;} break; - case 143: -#line 1063 "parser.y" + case 168: +#line 1210 "parser.y" { - (yyval) = NTYPE((yyvsp[(1) - (1)]), n_VARIABLE); + (yyval) = (yyvsp[(1) - (1)]); ;} break; - case 144: -#line 1066 "parser.y" + case 169: +#line 1216 "parser.y" { - (yyval) = NTYPE((yyvsp[(1) - (2)]), n_VARIABLE_VARIABLE); - (yyval)->appendChild((yyvsp[(2) - (2)])); + (yyval) = NNEW(n_TRAIT_ADAPTATION_LIST); + (yyval)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 145: -#line 1070 "parser.y" + case 170: +#line 1220 "parser.y" { - (yyval) = NTYPE((yyvsp[(1) - (4)]), n_VARIABLE_VARIABLE); - (yyval)->appendChild((yyvsp[(3) - (4)])); - ;} + (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); + (yyval) = (yyvsp[(1) - (2)]); + ;} break; - case 146: -#line 1077 "parser.y" + case 171: +#line 1227 "parser.y" { - NTYPE((yyvsp[(3) - (3)]), n_VARIABLE); - (yyval) = NNEW(n_STATIC_DECLARATION); - (yyval)->appendChild((yyvsp[(3) - (3)])); - (yyval)->appendChild(NNEW(n_EMPTY)); - - (yyval) = (yyvsp[(1) - (3)])->appendChild((yyval)); - ;} + (yyval) = NMORE((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); + ;} break; - case 147: -#line 1085 "parser.y" + case 172: +#line 1230 "parser.y" { - NTYPE((yyvsp[(3) - (5)]), n_VARIABLE); - (yyval) = NNEW(n_STATIC_DECLARATION); - (yyval)->appendChild((yyvsp[(3) - (5)])); - (yyval)->appendChild((yyvsp[(5) - (5)])); - - (yyval) = (yyvsp[(1) - (5)])->appendChild((yyval)); - ;} + (yyval) = NMORE((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); + ;} break; - case 148: -#line 1093 "parser.y" + case 173: +#line 1236 "parser.y" { - NTYPE((yyvsp[(1) - (1)]), n_VARIABLE); - (yyval) = NNEW(n_STATIC_DECLARATION); - (yyval)->appendChild((yyvsp[(1) - (1)])); - (yyval)->appendChild(NNEW(n_EMPTY)); - - (yyval) = NNEW(n_STATIC_DECLARATION_LIST)->appendChild((yyval)); - ;} + (yyval) = NNEW(n_TRAIT_INSTEADOF); + (yyval)->appendChild((yyvsp[(1) - (3)])); + (yyval)->appendChild((yyvsp[(3) - (3)])); + ;} break; - case 149: -#line 1101 "parser.y" + case 174: +#line 1244 "parser.y" { - NTYPE((yyvsp[(1) - (3)]), n_VARIABLE); - (yyval) = NNEW(n_STATIC_DECLARATION); - (yyval)->appendChild((yyvsp[(1) - (3)])); - (yyval)->appendChild((yyvsp[(3) - (3)])); + (yyval) = NNEW(n_TRAIT_REFERENCE_LIST); + (yyval)->appendChild((yyvsp[(1) - (1)])); + ;} + break; - (yyval) = NNEW(n_STATIC_DECLARATION_LIST)->appendChild((yyval)); + case 175: +#line 1248 "parser.y" + { + (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); + (yyval) = (yyvsp[(1) - (3)]); ;} break; - case 150: -#line 1112 "parser.y" + case 176: +#line 1255 "parser.y" { - (yyval) = (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); + (yyval) = NNEW(n_TRAIT_METHOD_REFERENCE); + (yyval)->appendChild(NTYPE((yyvsp[(1) - (1)]), n_STRING)); ;} break; - case 151: -#line 1115 "parser.y" + case 177: +#line 1259 "parser.y" { - (yyval) = NNEW(n_STATEMENT_LIST); + (yyval) = (yyvsp[(1) - (1)]); ;} break; - case 152: -#line 1121 "parser.y" + case 178: +#line 1265 "parser.y" { - (yyval) = NNEW(n_CLASS_MEMBER_DECLARATION_LIST); - (yyval)->appendChild((yyvsp[(1) - (3)])); - (yyval)->appendChildren((yyvsp[(2) - (3)])); - - (yyval) = NNEW(n_STATEMENT)->appendChild((yyval)); - NMORE((yyval), (yyvsp[(3) - (3)])); + NTYPE((yyvsp[(2) - (3)]), n_TRAIT_METHOD_REFERENCE); + NEXPAND((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), NTYPE((yyvsp[(3) - (3)]), n_STRING)); + (yyval) = (yyvsp[(2) - (3)]); ;} break; - case 153: -#line 1129 "parser.y" + case 179: +#line 1273 "parser.y" { - (yyval) = NNEW(n_STATEMENT)->appendChild((yyvsp[(1) - (2)])); - NMORE((yyval), (yyvsp[(2) - (2)])); - ;} + (yyval) = NNEW(n_TRAIT_AS); + (yyval)->appendChild((yyvsp[(1) - (4)])); + (yyval)->appendChild((yyvsp[(3) - (4)])); + (yyval)->appendChild(NTYPE((yyvsp[(4) - (4)]), n_STRING)); + ;} break; - case 154: -#line 1133 "parser.y" + case 180: +#line 1279 "parser.y" { - yyextra->old_expecting_xhp_class_statements = yyextra->expecting_xhp_class_statements; - yyextra->expecting_xhp_class_statements = false; + (yyval) = NNEW(n_TRAIT_AS); + (yyval)->appendChild((yyvsp[(1) - (3)])); + (yyval)->appendChild((yyvsp[(3) - (3)])); + (yyval)->appendChild(NNEW(n_EMPTY)); ;} break; - case 155: -#line 1136 "parser.y" + case 181: +#line 1288 "parser.y" { - yyextra->expecting_xhp_class_statements = yyextra->old_expecting_xhp_class_statements; - - (yyval) = NNEW(n_METHOD_DECLARATION); - (yyval)->appendChild((yyvsp[(1) - (9)])); - (yyval)->appendChild((yyvsp[(4) - (9)])); - (yyval)->appendChild(NTYPE((yyvsp[(5) - (9)]), n_STRING)); - (yyval)->appendChild(NEXPAND((yyvsp[(6) - (9)]), (yyvsp[(7) - (9)]), (yyvsp[(8) - (9)]))); - (yyval)->appendChild(NNEW(n_EMPTY)); - (yyval)->appendChild((yyvsp[(9) - (9)])); + (yyval) = NNEW(n_EMPTY); + ;} + break; - (yyval) = NNEW(n_STATEMENT)->appendChild((yyval)); + case 182: +#line 1291 "parser.y" + { + (yyval) = NNEW(n_METHOD_MODIFIER_LIST); + (yyval)->appendChild(NTYPE((yyvsp[(1) - (1)]), n_STRING)); ;} break; - case 156: -#line 1152 "parser.y" + case 183: +#line 1299 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 157: -#line 1155 "parser.y" + case 184: +#line 1302 "parser.y" { (yyval) = NEXPAND((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)])); ;} break; - case 159: -#line 1162 "parser.y" + case 186: +#line 1309 "parser.y" { (yyval) = NNEW(n_CLASS_MEMBER_MODIFIER_LIST); (yyval)->appendChild(NTYPE((yyvsp[(1) - (1)]), n_STRING)); ;} break; - case 160: -#line 1169 "parser.y" + case 187: +#line 1316 "parser.y" { (yyval) = NNEW(n_METHOD_MODIFIER_LIST); ;} break; - case 161: -#line 1172 "parser.y" + case 188: +#line 1319 "parser.y" { NTYPE((yyvsp[(1) - (1)]), n_METHOD_MODIFIER_LIST); (yyval) = (yyvsp[(1) - (1)]); ;} break; - case 162: -#line 1179 "parser.y" + case 189: +#line 1326 "parser.y" { (yyval) = NNEW(n_CLASS_MEMBER_MODIFIER_LIST); (yyval)->appendChild(NTYPE((yyvsp[(1) - (1)]), n_STRING)); ;} break; - case 163: -#line 1183 "parser.y" + case 190: +#line 1330 "parser.y" { (yyval) = (yyvsp[(1) - (2)])->appendChild(NTYPE((yyvsp[(2) - (2)]), n_STRING)); ;} break; - case 170: -#line 1198 "parser.y" + case 197: +#line 1345 "parser.y" { (yyval) = NNEW(n_CLASS_MEMBER_DECLARATION); (yyval)->appendChild(NTYPE((yyvsp[(3) - (3)]), n_VARIABLE)); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval) = (yyvsp[(1) - (3)])->appendChild((yyval)); ;} break; - case 171: -#line 1205 "parser.y" + case 198: +#line 1352 "parser.y" { (yyval) = NNEW(n_CLASS_MEMBER_DECLARATION); (yyval)->appendChild(NTYPE((yyvsp[(3) - (5)]), n_VARIABLE)); (yyval)->appendChild((yyvsp[(5) - (5)])); (yyval) = (yyvsp[(1) - (5)])->appendChild((yyval)); ;} break; - case 172: -#line 1212 "parser.y" + case 199: +#line 1359 "parser.y" { (yyval) = NNEW(n_CLASS_MEMBER_DECLARATION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (1)]), n_VARIABLE)); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval) = NNEW(n_CLASS_MEMBER_DECLARATION_LIST)->appendChild((yyval)); ;} break; - case 173: -#line 1219 "parser.y" + case 200: +#line 1366 "parser.y" { (yyval) = NNEW(n_CLASS_MEMBER_DECLARATION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (3)]), n_VARIABLE)); (yyval)->appendChild((yyvsp[(3) - (3)])); (yyval) = NNEW(n_CLASS_MEMBER_DECLARATION_LIST)->appendChild((yyval)); ;} break; - case 174: -#line 1229 "parser.y" + case 201: +#line 1376 "parser.y" { (yyval) = NNEW(n_CLASS_CONSTANT_DECLARATION); (yyval)->appendChild(NTYPE((yyvsp[(3) - (5)]), n_STRING)); (yyval)->appendChild((yyvsp[(5) - (5)])); (yyvsp[(1) - (5)])->appendChild((yyval)); (yyval) = (yyvsp[(1) - (5)]); ;} break; - case 175: -#line 1238 "parser.y" + case 202: +#line 1385 "parser.y" { NTYPE((yyvsp[(1) - (4)]), n_CLASS_CONSTANT_DECLARATION_LIST); (yyval) = NNEW(n_CLASS_CONSTANT_DECLARATION); (yyval)->appendChild(NTYPE((yyvsp[(2) - (4)]), n_STRING)); (yyval)->appendChild((yyvsp[(4) - (4)])); (yyvsp[(1) - (4)])->appendChild((yyval)); (yyval) = (yyvsp[(1) - (4)]); ;} break; - case 176: -#line 1250 "parser.y" + case 203: +#line 1397 "parser.y" { (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); ;} break; - case 177: -#line 1253 "parser.y" + case 204: +#line 1400 "parser.y" { (yyval) = NNEW(n_ECHO_LIST); (yyval)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 178: -#line 1260 "parser.y" + case 205: +#line 1407 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 180: -#line 1268 "parser.y" + case 207: +#line 1415 "parser.y" { (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); ;} break; - case 181: -#line 1271 "parser.y" + case 208: +#line 1418 "parser.y" { (yyval) = NNEW(n_EXPRESSION_LIST); (yyval)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 182: -#line 1278 "parser.y" + case 209: +#line 1425 "parser.y" { NTYPE((yyvsp[(1) - (6)]), n_LIST); (yyvsp[(1) - (6)])->appendChild(NEXPAND((yyvsp[(2) - (6)]), (yyvsp[(3) - (6)]), (yyvsp[(4) - (6)]))); (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (6)])); (yyval)->appendChild(NTYPE((yyvsp[(5) - (6)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(6) - (6)])); ;} break; - case 183: -#line 1286 "parser.y" + case 210: +#line 1433 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 184: -#line 1292 "parser.y" + case 211: +#line 1439 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (4)]), n_OPERATOR)); NTYPE((yyvsp[(3) - (4)]), n_VARIABLE_REFERENCE); (yyvsp[(3) - (4)])->appendChild((yyvsp[(4) - (4)])); (yyval)->appendChild((yyvsp[(3) - (4)])); ;} break; - case 185: -#line 1302 "parser.y" + case 212: +#line 1449 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (6)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (6)]), n_OPERATOR)); NTYPE((yyvsp[(4) - (6)]), n_NEW); (yyvsp[(4) - (6)])->appendChild((yyvsp[(5) - (6)])); (yyvsp[(4) - (6)])->appendChild((yyvsp[(6) - (6)])); NTYPE((yyvsp[(3) - (6)]), n_VARIABLE_REFERENCE); (yyvsp[(3) - (6)])->appendChild((yyvsp[(4) - (6)])); (yyval)->appendChild((yyvsp[(3) - (6)])); ;} break; - case 186: -#line 1316 "parser.y" + case 213: +#line 1463 "parser.y" { NTYPE((yyvsp[(1) - (3)]), n_NEW); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); (yyval) = (yyvsp[(1) - (3)]); ;} break; - case 187: -#line 1322 "parser.y" + case 214: +#line 1469 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 188: -#line 1327 "parser.y" + case 215: +#line 1474 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 189: -#line 1333 "parser.y" + case 216: +#line 1480 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 190: -#line 1339 "parser.y" + case 217: +#line 1486 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 191: -#line 1345 "parser.y" + case 218: +#line 1492 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 192: -#line 1351 "parser.y" + case 219: +#line 1498 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 193: -#line 1357 "parser.y" + case 220: +#line 1504 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 194: -#line 1363 "parser.y" + case 221: +#line 1510 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 195: -#line 1369 "parser.y" + case 222: +#line 1516 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 196: -#line 1375 "parser.y" + case 223: +#line 1522 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 197: -#line 1381 "parser.y" + case 224: +#line 1528 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 198: -#line 1387 "parser.y" + case 225: +#line 1534 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 199: -#line 1393 "parser.y" + case 226: +#line 1540 "parser.y" { (yyval) = NNEW(n_UNARY_POSTFIX_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (2)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (2)]), n_OPERATOR)); ;} break; - case 200: -#line 1398 "parser.y" + case 227: +#line 1545 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 201: -#line 1403 "parser.y" + case 228: +#line 1550 "parser.y" { (yyval) = NNEW(n_UNARY_POSTFIX_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (2)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (2)]), n_OPERATOR)); ;} break; - case 202: -#line 1408 "parser.y" + case 229: +#line 1555 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 203: -#line 1413 "parser.y" + case 230: +#line 1560 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 204: -#line 1419 "parser.y" + case 231: +#line 1566 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 205: -#line 1425 "parser.y" + case 232: +#line 1572 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 206: -#line 1431 "parser.y" + case 233: +#line 1578 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 207: -#line 1437 "parser.y" + case 234: +#line 1584 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 208: -#line 1443 "parser.y" + case 235: +#line 1590 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 209: -#line 1449 "parser.y" + case 236: +#line 1596 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 210: -#line 1455 "parser.y" + case 237: +#line 1602 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 211: -#line 1461 "parser.y" + case 238: +#line 1608 "parser.y" { /* The concatenation operator generates n_CONCATENATION_LIST instead of n_BINARY_EXPRESSION because we tend to run into stack depth issues in a lot of real-world cases otherwise (e.g., in PHP and JSON decoders). */ if ((yyvsp[(1) - (3)])->type == n_CONCATENATION_LIST && (yyvsp[(3) - (3)])->type == n_CONCATENATION_LIST) { (yyvsp[(1) - (3)])->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyvsp[(1) - (3)])->appendChildren((yyvsp[(3) - (3)])); (yyval) = (yyvsp[(1) - (3)]); } else if ((yyvsp[(1) - (3)])->type == n_CONCATENATION_LIST) { (yyvsp[(1) - (3)])->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); (yyval) = (yyvsp[(1) - (3)]); } else if ((yyvsp[(3) - (3)])->type == n_CONCATENATION_LIST) { (yyval) = NNEW(n_CONCATENATION_LIST); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChildren((yyvsp[(3) - (3)])); } else { (yyval) = NNEW(n_CONCATENATION_LIST); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); } ;} break; - case 212: -#line 1487 "parser.y" + case 239: +#line 1634 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 213: -#line 1493 "parser.y" + case 240: +#line 1640 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 214: -#line 1499 "parser.y" + case 241: +#line 1646 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 215: -#line 1505 "parser.y" + case 242: +#line 1652 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 216: -#line 1511 "parser.y" + case 243: +#line 1658 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 217: -#line 1517 "parser.y" + case 244: +#line 1664 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 218: -#line 1523 "parser.y" + case 245: +#line 1670 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 219: -#line 1529 "parser.y" + case 246: +#line 1676 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 220: -#line 1534 "parser.y" + case 247: +#line 1681 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 221: -#line 1539 "parser.y" + case 248: +#line 1686 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 222: -#line 1544 "parser.y" + case 249: +#line 1691 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 223: -#line 1549 "parser.y" + case 250: +#line 1696 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 224: -#line 1555 "parser.y" + case 251: +#line 1702 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 225: -#line 1561 "parser.y" + case 252: +#line 1708 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 226: -#line 1567 "parser.y" + case 253: +#line 1714 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 227: -#line 1573 "parser.y" + case 254: +#line 1720 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 228: -#line 1579 "parser.y" + case 255: +#line 1726 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 229: -#line 1585 "parser.y" + case 256: +#line 1732 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 230: -#line 1591 "parser.y" + case 257: +#line 1738 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 231: -#line 1597 "parser.y" + case 258: +#line 1744 "parser.y" { (yyval) = NNEW(n_BINARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(2) - (3)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 232: -#line 1603 "parser.y" + case 259: +#line 1750 "parser.y" { NSPAN((yyvsp[(1) - (3)]), n_PARENTHETICAL_EXPRESSION, (yyvsp[(3) - (3)])); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyval) = (yyvsp[(1) - (3)]); ;} break; - case 233: -#line 1608 "parser.y" + case 260: +#line 1755 "parser.y" { (yyval) = NNEW(n_TERNARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (5)])); (yyval)->appendChild((yyvsp[(3) - (5)])); (yyval)->appendChild((yyvsp[(5) - (5)])); ;} break; - case 234: -#line 1614 "parser.y" + case 261: +#line 1761 "parser.y" { (yyval) = NNEW(n_TERNARY_EXPRESSION); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval)->appendChild((yyvsp[(4) - (4)])); ;} break; - case 236: -#line 1621 "parser.y" + case 263: +#line 1768 "parser.y" { (yyval) = NNEW(n_CAST_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_CAST)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 237: -#line 1626 "parser.y" + case 264: +#line 1773 "parser.y" { (yyval) = NNEW(n_CAST_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_CAST)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 238: -#line 1631 "parser.y" + case 265: +#line 1778 "parser.y" { (yyval) = NNEW(n_CAST_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_CAST)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 239: -#line 1636 "parser.y" + case 266: +#line 1783 "parser.y" { (yyval) = NNEW(n_CAST_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_CAST)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 240: -#line 1641 "parser.y" + case 267: +#line 1788 "parser.y" { (yyval) = NNEW(n_CAST_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_CAST)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 241: -#line 1646 "parser.y" + case 268: +#line 1793 "parser.y" { (yyval) = NNEW(n_CAST_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_CAST)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 242: -#line 1651 "parser.y" + case 269: +#line 1798 "parser.y" { (yyval) = NNEW(n_CAST_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_CAST)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 243: -#line 1656 "parser.y" + case 270: +#line 1803 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 244: -#line 1661 "parser.y" + case 271: +#line 1808 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 245: -#line 1666 "parser.y" + case 272: +#line 1813 "parser.y" { NTYPE((yyvsp[(1) - (4)]), n_ARRAY_LITERAL); (yyvsp[(1) - (4)])->appendChild((yyvsp[(3) - (4)])); NMORE((yyvsp[(1) - (4)]), (yyvsp[(4) - (4)])); (yyval) = (yyvsp[(1) - (4)]); ;} break; - case 246: -#line 1672 "parser.y" + case 273: +#line 1819 "parser.y" + { + NTYPE((yyvsp[(1) - (3)]), n_ARRAY_LITERAL); + (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); + NMORE((yyvsp[(1) - (3)]), (yyvsp[(3) - (3)])); + (yyval) = (yyvsp[(1) - (3)]); + ;} + break; + + case 274: +#line 1825 "parser.y" { NTYPE((yyvsp[(1) - (1)]), n_BACKTICKS_EXPRESSION); (yyval) = (yyvsp[(1) - (1)]); ;} break; - case 248: -#line 1677 "parser.y" + case 276: +#line 1830 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 249: -#line 1682 "parser.y" + case 277: +#line 1835 "parser.y" + { + NTYPE((yyvsp[(1) - (1)]), n_YIELD); + (yyvsp[(1) - (1)])->appendChild(NNEW(n_EMPTY)); + (yyvsp[(1) - (1)])->appendChild(NNEW(n_EMPTY)); + (yyval) = (yyvsp[(1) - (1)]); + ;} + break; + + case 278: +#line 1841 "parser.y" + { + (yyval) = NEXPAND((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)])); + ;} + break; + + case 279: +#line 1844 "parser.y" { NSPAN((yyvsp[(1) - (9)]), n_FUNCTION_DECLARATION, (yyvsp[(9) - (9)])); (yyvsp[(1) - (9)])->appendChild(NNEW(n_EMPTY)); (yyvsp[(1) - (9)])->appendChild((yyvsp[(2) - (9)])); (yyvsp[(1) - (9)])->appendChild(NNEW(n_EMPTY)); (yyvsp[(1) - (9)])->appendChild(NEXPAND((yyvsp[(3) - (9)]), (yyvsp[(4) - (9)]), (yyvsp[(5) - (9)]))); (yyval)->appendChild((yyvsp[(6) - (9)])); (yyvsp[(1) - (9)])->appendChild(NEXPAND((yyvsp[(7) - (9)]), (yyvsp[(8) - (9)]), (yyvsp[(9) - (9)]))); (yyval) = (yyvsp[(1) - (9)]); ;} break; - case 250: -#line 1693 "parser.y" + case 280: +#line 1855 "parser.y" { NSPAN((yyvsp[(2) - (10)]), n_FUNCTION_DECLARATION, (yyvsp[(10) - (10)])); NLMORE((yyvsp[(2) - (10)]), (yyvsp[(1) - (10)])); (yyval) = NNEW(n_FUNCTION_MODIFIER_LIST); (yyval)->appendChild(NTYPE((yyvsp[(1) - (10)]), n_STRING)); (yyvsp[(2) - (10)])->appendChild((yyvsp[(1) - (10)])); (yyvsp[(2) - (10)])->appendChild(NNEW(n_EMPTY)); (yyvsp[(2) - (10)])->appendChild((yyvsp[(3) - (10)])); (yyvsp[(2) - (10)])->appendChild(NNEW(n_EMPTY)); (yyvsp[(2) - (10)])->appendChild(NEXPAND((yyvsp[(4) - (10)]), (yyvsp[(5) - (10)]), (yyvsp[(6) - (10)]))); (yyvsp[(2) - (10)])->appendChild((yyvsp[(7) - (10)])); (yyvsp[(2) - (10)])->appendChild(NEXPAND((yyvsp[(8) - (10)]), (yyvsp[(9) - (10)]), (yyvsp[(10) - (10)]))); (yyval) = (yyvsp[(2) - (10)]); ;} break; - case 252: -#line 1717 "parser.y" + case 281: +#line 1875 "parser.y" + { + NTYPE((yyvsp[(1) - (2)]), n_YIELD); + (yyvsp[(2) - (2)])->appendChild(NNEW(n_EMPTY)); + (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); + (yyval) = (yyvsp[(1) - (2)]); + ;} + break; + + case 282: +#line 1881 "parser.y" + { + NTYPE((yyvsp[(1) - (2)]), n_YIELD); + (yyvsp[(2) - (2)])->appendChild(NNEW(n_EMPTY)); + (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); + (yyval) = (yyvsp[(1) - (2)]); + ;} + break; + + case 283: +#line 1887 "parser.y" + { + NTYPE((yyvsp[(1) - (4)]), n_YIELD); + (yyvsp[(1) - (4)])->appendChild((yyvsp[(2) - (4)])); + (yyvsp[(1) - (4)])->appendChild((yyvsp[(4) - (4)])); + (yyval) = (yyvsp[(1) - (4)]); + ;} + break; + + case 284: +#line 1893 "parser.y" + { + NTYPE((yyvsp[(1) - (4)]), n_YIELD); + (yyvsp[(1) - (4)])->appendChild((yyvsp[(2) - (4)])); + (yyvsp[(1) - (4)])->appendChild((yyvsp[(4) - (4)])); + (yyval) = (yyvsp[(1) - (4)]); + ;} + break; + + case 286: +#line 1906 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 253: -#line 1720 "parser.y" + case 287: +#line 1909 "parser.y" { NTYPE((yyvsp[(1) - (4)]), n_LEXICAL_VARIABLE_LIST); (yyvsp[(1) - (4)])->appendChildren((yyvsp[(3) - (4)])); (yyval) = (yyvsp[(1) - (4)]); ;} break; - case 254: -#line 1728 "parser.y" + case 288: +#line 1917 "parser.y" { (yyval) = (yyvsp[(1) - (3)])->appendChild(NTYPE((yyvsp[(3) - (3)]), n_VARIABLE)); ;} break; - case 255: -#line 1731 "parser.y" + case 289: +#line 1920 "parser.y" { NTYPE((yyvsp[(3) - (4)]), n_VARIABLE_REFERENCE); (yyvsp[(3) - (4)])->appendChild(NTYPE((yyvsp[(4) - (4)]), n_VARIABLE)); (yyval) = (yyvsp[(1) - (4)])->appendChild((yyvsp[(3) - (4)])); ;} break; - case 256: -#line 1736 "parser.y" + case 290: +#line 1925 "parser.y" { (yyval) = NNEW(n_LEXICAL_VARIABLE_LIST); (yyval)->appendChild(NTYPE((yyvsp[(1) - (1)]), n_VARIABLE)); ;} break; - case 257: -#line 1740 "parser.y" + case 291: +#line 1929 "parser.y" { NTYPE((yyvsp[(1) - (2)]), n_VARIABLE_REFERENCE); (yyvsp[(1) - (2)])->appendChild(NTYPE((yyvsp[(2) - (2)]), n_VARIABLE)); (yyval) = NNEW(n_LEXICAL_VARIABLE_LIST); (yyval)->appendChild((yyvsp[(1) - (2)])); ;} break; - case 258: -#line 1749 "parser.y" + case 292: +#line 1938 "parser.y" { (yyval) = NNEW(n_FUNCTION_CALL); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild(NEXPAND((yyvsp[(2) - (4)]), (yyvsp[(3) - (4)]), (yyvsp[(4) - (4)]))); ;} break; - case 259: -#line 1754 "parser.y" + case 293: +#line 1943 "parser.y" { NLMORE((yyvsp[(3) - (6)]), (yyvsp[(1) - (6)])); (yyval) = NNEW(n_FUNCTION_CALL); (yyval)->appendChild((yyvsp[(3) - (6)])); (yyval)->appendChild(NEXPAND((yyvsp[(4) - (6)]), (yyvsp[(5) - (6)]), (yyvsp[(6) - (6)]))); ;} break; - case 260: -#line 1760 "parser.y" + case 294: +#line 1949 "parser.y" { NLMORE((yyvsp[(2) - (5)]), (yyvsp[(1) - (5)])); (yyval) = NNEW(n_FUNCTION_CALL); (yyval)->appendChild((yyvsp[(2) - (5)])); (yyval)->appendChild(NEXPAND((yyvsp[(3) - (5)]), (yyvsp[(4) - (5)]), (yyvsp[(5) - (5)]))); ;} break; - case 261: -#line 1766 "parser.y" + case 295: +#line 1955 "parser.y" { (yyval) = NNEW(n_CLASS_STATIC_ACCESS); (yyval)->appendChild((yyvsp[(1) - (6)])); (yyval)->appendChild(NTYPE((yyvsp[(3) - (6)]), n_STRING)); (yyval) = NNEW(n_FUNCTION_CALL)->appendChild((yyval)); (yyval)->appendChild(NEXPAND((yyvsp[(4) - (6)]), (yyvsp[(5) - (6)]), (yyvsp[(6) - (6)]))); ;} break; - case 262: -#line 1774 "parser.y" + case 296: +#line 1963 "parser.y" { (yyval) = NNEW(n_CLASS_STATIC_ACCESS); (yyval)->appendChild((yyvsp[(1) - (6)])); (yyval)->appendChild(NTYPE((yyvsp[(3) - (6)]), n_STRING)); (yyval) = NNEW(n_FUNCTION_CALL)->appendChild((yyval)); (yyval)->appendChild(NEXPAND((yyvsp[(4) - (6)]), (yyvsp[(5) - (6)]), (yyvsp[(6) - (6)]))); ;} break; - case 263: -#line 1782 "parser.y" + case 297: +#line 1971 "parser.y" { (yyval) = NNEW(n_CLASS_STATIC_ACCESS); (yyval)->appendChild((yyvsp[(1) - (6)])); (yyval)->appendChild(NTYPE((yyvsp[(3) - (6)]), n_STRING)); (yyval) = NNEW(n_FUNCTION_CALL)->appendChild((yyval)); (yyval)->appendChild(NEXPAND((yyvsp[(4) - (6)]), (yyvsp[(5) - (6)]), (yyvsp[(6) - (6)]))); ;} break; - case 264: -#line 1790 "parser.y" + case 298: +#line 1979 "parser.y" { (yyval) = NNEW(n_CLASS_STATIC_ACCESS); (yyval)->appendChild((yyvsp[(1) - (6)])); (yyval)->appendChild(NTYPE((yyvsp[(3) - (6)]), n_STRING)); (yyval) = NNEW(n_FUNCTION_CALL)->appendChild((yyval)); (yyval)->appendChild(NEXPAND((yyvsp[(4) - (6)]), (yyvsp[(5) - (6)]), (yyvsp[(6) - (6)]))); ;} break; - case 265: -#line 1798 "parser.y" + case 299: +#line 1987 "parser.y" { (yyval) = NNEW(n_FUNCTION_CALL); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild(NEXPAND((yyvsp[(2) - (4)]), (yyvsp[(3) - (4)]), (yyvsp[(4) - (4)]))); ;} break; - case 266: -#line 1806 "parser.y" + case 300: +#line 1995 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_CLASS_NAME); ;} break; - case 267: -#line 1809 "parser.y" + case 301: +#line 1998 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_CLASS_NAME); ;} break; - case 268: -#line 1812 "parser.y" + case 302: +#line 2001 "parser.y" { NLMORE((yyvsp[(3) - (3)]), (yyvsp[(1) - (3)])); (yyval) = NTYPE((yyvsp[(3) - (3)]), n_CLASS_NAME); ;} break; - case 269: -#line 1816 "parser.y" + case 303: +#line 2005 "parser.y" { NLMORE((yyvsp[(2) - (2)]), (yyvsp[(1) - (2)])); (yyval) = NTYPE((yyvsp[(2) - (2)]), n_CLASS_NAME); ;} break; - case 270: -#line 1823 "parser.y" + case 304: +#line 2012 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_CLASS_NAME); ;} break; - case 271: -#line 1826 "parser.y" + case 305: +#line 2015 "parser.y" { NLMORE((yyvsp[(3) - (3)]), (yyvsp[(1) - (3)])); (yyval) = NTYPE((yyvsp[(3) - (3)]), n_CLASS_NAME); ;} break; - case 272: -#line 1830 "parser.y" + case 306: +#line 2019 "parser.y" { NLMORE((yyvsp[(2) - (2)]), (yyvsp[(1) - (2)])); (yyval) = NTYPE((yyvsp[(2) - (2)]), n_CLASS_NAME); ;} break; - case 275: -#line 1842 "parser.y" + case 309: +#line 2031 "parser.y" { (yyval) = NNEW(n_OBJECT_PROPERTY_ACCESS); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(3) - (4)])); for (xhpast::node_list_t::iterator ii = (yyvsp[(4) - (4)])->children.begin(); ii != (yyvsp[(4) - (4)])->children.end(); ++ii) { (yyval) = NNEW(n_OBJECT_PROPERTY_ACCESS)->appendChild((yyval)); (yyval)->appendChild(*ii); } ;} break; - case 277: -#line 1855 "parser.y" + case 311: +#line 2044 "parser.y" { (yyval) = (yyvsp[(1) - (2)])->appendChild((yyvsp[(2) - (2)])); ;} break; - case 278: -#line 1858 "parser.y" + case 312: +#line 2047 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 279: -#line 1864 "parser.y" + case 313: +#line 2053 "parser.y" { (yyval) = (yyvsp[(2) - (2)]); ;} break; - case 280: -#line 1870 "parser.y" + case 314: +#line 2059 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 281: -#line 1873 "parser.y" + case 315: +#line 2062 "parser.y" { NSPAN((yyvsp[(1) - (2)]), n_EMPTY, (yyvsp[(2) - (2)])); (yyval) = (yyvsp[(1) - (2)]); ;} break; - case 282: -#line 1877 "parser.y" + case 316: +#line 2066 "parser.y" { NSPAN((yyvsp[(1) - (3)]), n_PARENTHETICAL_EXPRESSION, (yyvsp[(3) - (3)])); (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); (yyval) = (yyvsp[(1) - (3)]); ;} break; - case 283: -#line 1885 "parser.y" + case 317: +#line 2074 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 284: -#line 1888 "parser.y" + case 318: +#line 2077 "parser.y" { (yyval) = NEXPAND((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)])); ;} break; - case 285: -#line 1894 "parser.y" + case 319: +#line 2083 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_NUMERIC_SCALAR); ;} break; - case 286: -#line 1897 "parser.y" + case 320: +#line 2086 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_NUMERIC_SCALAR); ;} break; - case 287: -#line 1900 "parser.y" + case 321: +#line 2089 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_STRING_SCALAR); ;} break; - case 288: -#line 1903 "parser.y" + case 322: +#line 2092 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_MAGIC_SCALAR); ;} break; - case 289: -#line 1906 "parser.y" + case 323: +#line 2095 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_MAGIC_SCALAR); ;} break; - case 290: -#line 1909 "parser.y" + case 324: +#line 2098 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_MAGIC_SCALAR); ;} break; - case 291: -#line 1912 "parser.y" + case 325: +#line 2101 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_MAGIC_SCALAR); ;} break; - case 292: -#line 1915 "parser.y" + case 326: +#line 2104 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_MAGIC_SCALAR); ;} break; - case 293: -#line 1918 "parser.y" + case 327: +#line 2107 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_MAGIC_SCALAR); ;} break; - case 294: -#line 1921 "parser.y" + case 328: +#line 2110 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_MAGIC_SCALAR); ;} break; - case 295: -#line 1924 "parser.y" + case 329: +#line 2113 "parser.y" + { + (yyval) = NTYPE((yyvsp[(1) - (1)]), n_MAGIC_SCALAR); + ;} + break; + + case 330: +#line 2116 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_HEREDOC); ;} break; - case 298: -#line 1932 "parser.y" + case 333: +#line 2124 "parser.y" { NLMORE((yyvsp[(3) - (3)]), (yyvsp[(1) - (3)])); (yyval) = (yyvsp[(3) - (3)]); ;} break; - case 299: -#line 1936 "parser.y" + case 334: +#line 2128 "parser.y" { NLMORE((yyvsp[(2) - (2)]), (yyvsp[(1) - (2)])); (yyval) = (yyvsp[(2) - (2)]); ;} break; - case 300: -#line 1940 "parser.y" + case 335: +#line 2132 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 301: -#line 1945 "parser.y" + case 336: +#line 2137 "parser.y" { (yyval) = NNEW(n_UNARY_PREFIX_EXPRESSION); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_OPERATOR)); (yyval)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 302: -#line 1950 "parser.y" + case 337: +#line 2142 "parser.y" { NTYPE((yyvsp[(1) - (4)]), n_ARRAY_LITERAL); (yyvsp[(1) - (4)])->appendChild((yyvsp[(3) - (4)])); NMORE((yyvsp[(1) - (4)]), (yyvsp[(4) - (4)])); (yyval) = (yyvsp[(1) - (4)]); ;} break; - case 304: -#line 1960 "parser.y" + case 338: +#line 2148 "parser.y" + { + NTYPE((yyvsp[(1) - (3)]), n_ARRAY_LITERAL); + (yyvsp[(1) - (3)])->appendChild((yyvsp[(2) - (3)])); + NMORE((yyvsp[(1) - (3)]), (yyvsp[(3) - (3)])); + (yyval) = (yyvsp[(1) - (3)]); + ;} + break; + + case 340: +#line 2158 "parser.y" { (yyval) = NNEW(n_CLASS_STATIC_ACCESS); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(3) - (3)]), n_STRING)); ;} break; - case 308: -#line 1971 "parser.y" + case 344: +#line 2169 "parser.y" { (yyval) = NLMORE((yyvsp[(3) - (3)]), (yyvsp[(1) - (3)])); ;} break; - case 309: -#line 1974 "parser.y" + case 345: +#line 2172 "parser.y" { (yyval) = NLMORE((yyvsp[(2) - (2)]), (yyvsp[(1) - (2)])); ;} break; - case 311: -#line 1981 "parser.y" + case 347: +#line 2179 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE_LIST); ;} break; - case 312: -#line 1984 "parser.y" + case 348: +#line 2182 "parser.y" { (yyval) = NMORE((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); ;} break; - case 313: -#line 1990 "parser.y" + case 349: +#line 2188 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 315: -#line 1997 "parser.y" + case 351: +#line 2195 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild((yyvsp[(3) - (5)])); (yyval)->appendChild((yyvsp[(5) - (5)])); (yyval) = (yyvsp[(1) - (5)])->appendChild((yyval)); ;} break; - case 316: -#line 2004 "parser.y" + case 352: +#line 2202 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval)->appendChild((yyvsp[(3) - (3)])); (yyval) = (yyvsp[(1) - (3)])->appendChild((yyval)); ;} break; - case 317: -#line 2011 "parser.y" + case 353: +#line 2209 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild((yyvsp[(3) - (3)])); (yyval) = NNEW(n_ARRAY_VALUE_LIST)->appendChild((yyval)); ;} break; - case 318: -#line 2018 "parser.y" + case 354: +#line 2216 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval)->appendChild((yyvsp[(1) - (1)])); (yyval) = NNEW(n_ARRAY_VALUE_LIST)->appendChild((yyval)); ;} break; - case 324: -#line 2045 "parser.y" + case 360: +#line 2243 "parser.y" { (yyval) = NNEW(n_OBJECT_PROPERTY_ACCESS); (yyval)->appendChild((yyvsp[(1) - (5)])); (yyval)->appendChild((yyvsp[(3) - (5)])); if ((yyvsp[(4) - (5)])->type != n_EMPTY) { (yyval) = NNEW(n_METHOD_CALL)->appendChild((yyval)); (yyval)->appendChild((yyvsp[(4) - (5)])); } for (xhpast::node_list_t::iterator ii = (yyvsp[(5) - (5)])->children.begin(); ii != (yyvsp[(5) - (5)])->children.end(); ++ii) { if ((*ii)->type == n_CALL_PARAMETER_LIST) { (yyval) = NNEW(n_METHOD_CALL)->appendChild((yyval)); (yyval)->appendChild((*ii)); } else { (yyval) = NNEW(n_OBJECT_PROPERTY_ACCESS)->appendChild((yyval)); (yyval)->appendChild((*ii)); } } ;} break; - case 326: -#line 2069 "parser.y" + case 362: +#line 2267 "parser.y" { (yyval) = (yyvsp[(1) - (2)])->appendChildren((yyvsp[(2) - (2)])); ;} break; - case 327: -#line 2072 "parser.y" + case 363: +#line 2270 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 328: -#line 2078 "parser.y" + case 364: +#line 2276 "parser.y" { (yyval) = NNEW(n_EMPTY); (yyval)->appendChild((yyvsp[(2) - (3)])); if ((yyvsp[(3) - (3)])->type != n_EMPTY) { (yyval)->appendChild((yyvsp[(3) - (3)])); } ;} break; - case 329: -#line 2088 "parser.y" + case 365: +#line 2286 "parser.y" { (yyval) = NEXPAND((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)])); ;} break; - case 330: -#line 2091 "parser.y" + case 366: +#line 2289 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 332: -#line 2098 "parser.y" + case 368: +#line 2296 "parser.y" { xhpast::Node *last = (yyvsp[(1) - (2)]); NMORE((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); while (last->firstChild() && last->firstChild()->type == n_VARIABLE_VARIABLE) { NMORE(last, (yyvsp[(2) - (2)])); last = last->firstChild(); } last->appendChild((yyvsp[(2) - (2)])); (yyval) = (yyvsp[(1) - (2)]); ;} break; - case 333: -#line 2113 "parser.y" + case 369: +#line 2311 "parser.y" { (yyval) = NNEW(n_CLASS_STATIC_ACCESS); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 334: -#line 2118 "parser.y" + case 370: +#line 2316 "parser.y" { (yyval) = NNEW(n_CLASS_STATIC_ACCESS); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild((yyvsp[(3) - (3)])); ;} break; - case 339: -#line 2136 "parser.y" + case 375: +#line 2334 "parser.y" { xhpast::Node *last = (yyvsp[(1) - (2)]); NMORE((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); while (last->firstChild() && last->firstChild()->type == n_VARIABLE_VARIABLE) { NMORE(last, (yyvsp[(2) - (2)])); last = last->firstChild(); } last->appendChild((yyvsp[(2) - (2)])); (yyval) = (yyvsp[(1) - (2)]); ;} break; - case 341: -#line 2152 "parser.y" + case 377: +#line 2350 "parser.y" { (yyval) = NNEW(n_INDEX_ACCESS); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(3) - (4)])); NMORE((yyval), (yyvsp[(4) - (4)])); ;} break; - case 342: -#line 2158 "parser.y" + case 378: +#line 2356 "parser.y" { (yyval) = NNEW(n_INDEX_ACCESS); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(3) - (4)])); NMORE((yyval), (yyvsp[(4) - (4)])); ;} break; - case 344: -#line 2168 "parser.y" + case 380: +#line 2366 "parser.y" { NTYPE((yyvsp[(1) - (1)]), n_VARIABLE); ;} break; - case 345: -#line 2171 "parser.y" + case 381: +#line 2369 "parser.y" { NSPAN((yyvsp[(1) - (4)]), n_VARIABLE_EXPRESSION, (yyvsp[(4) - (4)])); (yyvsp[(1) - (4)])->appendChild((yyvsp[(3) - (4)])); (yyval) = (yyvsp[(1) - (4)]); ;} break; - case 346: -#line 2179 "parser.y" + case 382: +#line 2377 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 347: -#line 2182 "parser.y" + case 383: +#line 2380 "parser.y" { (yyval) = (yyvsp[(1) - (1)]); ;} break; - case 350: -#line 2193 "parser.y" + case 386: +#line 2391 "parser.y" { (yyval) = NNEW(n_INDEX_ACCESS); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(3) - (4)])); NMORE((yyval), (yyvsp[(4) - (4)])) ;} break; - case 351: -#line 2199 "parser.y" + case 387: +#line 2397 "parser.y" { (yyval) = NNEW(n_INDEX_ACCESS); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(3) - (4)])); NMORE((yyval), (yyvsp[(4) - (4)])); ;} break; - case 353: -#line 2209 "parser.y" + case 389: +#line 2407 "parser.y" { NTYPE((yyvsp[(1) - (1)]), n_STRING); (yyval) = (yyvsp[(1) - (1)]); ;} break; - case 354: -#line 2213 "parser.y" + case 390: +#line 2411 "parser.y" { (yyval) = NEXPAND((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)])); ;} break; - case 355: -#line 2219 "parser.y" + case 391: +#line 2417 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (1)]), n_VARIABLE_VARIABLE); ;} break; - case 356: -#line 2222 "parser.y" + case 392: +#line 2420 "parser.y" { (yyvsp[(2) - (2)]) = NTYPE((yyvsp[(2) - (2)]), n_VARIABLE_VARIABLE); xhpast::Node *last = (yyvsp[(1) - (2)]); while (last->firstChild() && last->firstChild()->type == n_VARIABLE_VARIABLE) { last = last->firstChild(); } last->appendChild((yyvsp[(2) - (2)])); (yyval) = (yyvsp[(1) - (2)]); ;} break; - case 357: -#line 2237 "parser.y" + case 393: +#line 2435 "parser.y" { (yyval) = (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); ;} break; - case 358: -#line 2240 "parser.y" + case 394: +#line 2438 "parser.y" { (yyval) = NNEW(n_ASSIGNMENT_LIST); (yyval)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 360: -#line 2248 "parser.y" + case 396: +#line 2446 "parser.y" { (yyval) = NNEW(n_LIST); (yyval)->appendChild((yyvsp[(3) - (4)])); NMORE((yyval), (yyvsp[(4) - (4)])); ;} break; - case 361: -#line 2253 "parser.y" + case 397: +#line 2451 "parser.y" { (yyval) = NNEW(n_EMPTY); ;} break; - case 362: -#line 2259 "parser.y" + case 398: +#line 2457 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE_LIST); ;} break; - case 363: -#line 2262 "parser.y" + case 399: +#line 2460 "parser.y" { (yyval) = NMORE((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); ;} break; - case 364: -#line 2268 "parser.y" + case 400: +#line 2466 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild((yyvsp[(3) - (5)])); (yyval)->appendChild((yyvsp[(5) - (5)])); (yyval) = (yyvsp[(1) - (5)])->appendChild((yyval)); ;} break; - case 365: -#line 2275 "parser.y" + case 401: +#line 2473 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval)->appendChild((yyvsp[(3) - (3)])); (yyval) = (yyvsp[(1) - (3)])->appendChild((yyval)); ;} break; - case 366: -#line 2282 "parser.y" + case 402: +#line 2480 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild((yyvsp[(3) - (3)])); (yyval) = NNEW(n_ARRAY_VALUE_LIST)->appendChild((yyval)); ;} break; - case 367: -#line 2289 "parser.y" + case 403: +#line 2487 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval)->appendChild((yyvsp[(1) - (1)])); (yyval) = NNEW(n_ARRAY_VALUE_LIST)->appendChild((yyval)); ;} break; - case 368: -#line 2296 "parser.y" + case 404: +#line 2494 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild((yyvsp[(3) - (6)])); (yyval)->appendChild(NTYPE((yyvsp[(5) - (6)]), n_VARIABLE_REFERENCE)->appendChild((yyvsp[(6) - (6)]))); (yyval) = (yyvsp[(1) - (6)])->appendChild((yyval)); ;} break; - case 369: -#line 2303 "parser.y" + case 405: +#line 2501 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval)->appendChild(NTYPE((yyvsp[(3) - (4)]), n_VARIABLE_REFERENCE)->appendChild((yyvsp[(4) - (4)]))); (yyval) = (yyvsp[(1) - (4)])->appendChild((yyval)); ;} break; - case 370: -#line 2310 "parser.y" + case 406: +#line 2508 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild(NTYPE((yyvsp[(3) - (4)]), n_VARIABLE_REFERENCE)->appendChild((yyvsp[(4) - (4)]))); (yyval) = NNEW(n_ARRAY_VALUE_LIST)->appendChild((yyval)); ;} break; - case 371: -#line 2317 "parser.y" + case 407: +#line 2515 "parser.y" { (yyval) = NNEW(n_ARRAY_VALUE); (yyval)->appendChild(NNEW(n_EMPTY)); (yyval)->appendChild(NTYPE((yyvsp[(1) - (2)]), n_VARIABLE_REFERENCE)->appendChild((yyvsp[(2) - (2)]))); (yyval) = NNEW(n_ARRAY_VALUE_LIST)->appendChild((yyval)); ;} break; - case 372: -#line 2327 "parser.y" + case 408: +#line 2525 "parser.y" { NTYPE((yyvsp[(1) - (4)]), n_SYMBOL_NAME); NSPAN((yyvsp[(2) - (4)]), n_CALL_PARAMETER_LIST, (yyvsp[(4) - (4)])); (yyvsp[(2) - (4)])->appendChildren((yyvsp[(3) - (4)])); (yyval) = NNEW(n_FUNCTION_CALL); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(2) - (4)])); ;} break; - case 373: -#line 2337 "parser.y" + case 409: +#line 2535 "parser.y" { NTYPE((yyvsp[(1) - (4)]), n_SYMBOL_NAME); NSPAN((yyvsp[(2) - (4)]), n_CALL_PARAMETER_LIST, (yyvsp[(4) - (4)])); (yyvsp[(2) - (4)])->appendChild((yyvsp[(3) - (4)])); (yyval) = NNEW(n_FUNCTION_CALL); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(2) - (4)])); ;} break; - case 374: -#line 2347 "parser.y" + case 410: +#line 2545 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (2)]), n_INCLUDE_FILE)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 375: -#line 2350 "parser.y" + case 411: +#line 2548 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (2)]), n_INCLUDE_FILE)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 376: -#line 2353 "parser.y" + case 412: +#line 2551 "parser.y" { NTYPE((yyvsp[(1) - (4)]), n_SYMBOL_NAME); NSPAN((yyvsp[(2) - (4)]), n_CALL_PARAMETER_LIST, (yyvsp[(4) - (4)])); (yyvsp[(2) - (4)])->appendChild((yyvsp[(3) - (4)])); (yyval) = NNEW(n_FUNCTION_CALL); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(2) - (4)])); ;} break; - case 377: -#line 2363 "parser.y" + case 413: +#line 2561 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (2)]), n_INCLUDE_FILE)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 378: -#line 2366 "parser.y" + case 414: +#line 2564 "parser.y" { (yyval) = NTYPE((yyvsp[(1) - (2)]), n_INCLUDE_FILE)->appendChild((yyvsp[(2) - (2)])); ;} break; - case 379: -#line 2372 "parser.y" + case 415: +#line 2570 "parser.y" { (yyval) = NNEW(n_EMPTY); (yyval)->appendChild((yyvsp[(1) - (1)])); ;} break; - case 380: -#line 2376 "parser.y" + case 416: +#line 2574 "parser.y" { (yyval) = (yyvsp[(1) - (3)])->appendChild((yyvsp[(3) - (3)])); ;} break; - case 381: -#line 2382 "parser.y" + case 417: +#line 2580 "parser.y" { (yyval) = NNEW(n_CLASS_STATIC_ACCESS); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(3) - (3)]), n_STRING)); ;} break; - case 382: -#line 2387 "parser.y" + case 418: +#line 2585 "parser.y" { (yyval) = NNEW(n_CLASS_STATIC_ACCESS); (yyval)->appendChild((yyvsp[(1) - (3)])); (yyval)->appendChild(NTYPE((yyvsp[(3) - (3)]), n_STRING)); ;} break; - case 383: -#line 2400 "parser.y" + case 419: +#line 2598 "parser.y" { if (yyextra->idx_expr) { yyextra->used = true; } (yyval) = NNEW(n_INDEX_ACCESS); (yyval)->appendChild((yyvsp[(1) - (4)])); (yyval)->appendChild((yyvsp[(3) - (4)])); NMORE((yyval), (yyvsp[(4) - (4)])); ;} break; /* Line 1267 of yacc.c. */ -#line 6905 "parser.yacc.cpp" +#line 7334 "parser.yacc.cpp" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*------------------------------------. | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (yyscanner, root, YY_("syntax error")); #else { YYSIZE_T yysize = yysyntax_error (0, yystate, yychar); if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM) { YYSIZE_T yyalloc = 2 * yysize; if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM)) yyalloc = YYSTACK_ALLOC_MAXIMUM; if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yyalloc); if (yymsg) yymsg_alloc = yyalloc; else { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; } } if (0 < yysize && yysize <= yymsg_alloc) { (void) yysyntax_error (yymsg, yystate, yychar); yyerror (yyscanner, root, yymsg); } else { yyerror (yyscanner, root, YY_("syntax error")); if (yysize != 0) goto yyexhaustedlab; } } #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse look-ahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval, yyscanner, root); yychar = YYEMPTY; } } /* Else will try to reuse look-ahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule which action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (yyn != YYPACT_NINF) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp, yyscanner, root); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } if (yyn == YYFINAL) YYACCEPT; *++yyvsp = yylval; /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #ifndef yyoverflow /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (yyscanner, root, YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEOF && yychar != YYEMPTY) yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval, yyscanner, root); /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp, yyscanner, root); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif /* Make sure YYID is used. */ return YYID (yyresult); } -#line 2412 "parser.y" +#line 2610 "parser.y" const char* yytokname(int tok) { if (tok < 255) { return NULL; } return yytname[YYTRANSLATE(tok)]; } /* @generated */ diff --git a/support/xhpast/parser.yacc.hpp b/support/xhpast/parser.yacc.hpp index 5e8e077..27a7c14 100644 --- a/support/xhpast/parser.yacc.hpp +++ b/support/xhpast/parser.yacc.hpp @@ -1,328 +1,330 @@ /* A Bison parser, made by GNU Bison 2.3. */ /* Skeleton interface for Bison's Yacc-like parsers in C Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { T_REQUIRE_ONCE = 258, T_REQUIRE = 259, T_EVAL = 260, T_INCLUDE_ONCE = 261, T_INCLUDE = 262, T_LOGICAL_OR = 263, T_LOGICAL_XOR = 264, T_LOGICAL_AND = 265, T_PRINT = 266, T_SR_EQUAL = 267, T_SL_EQUAL = 268, T_XOR_EQUAL = 269, T_OR_EQUAL = 270, T_AND_EQUAL = 271, T_MOD_EQUAL = 272, T_CONCAT_EQUAL = 273, T_DIV_EQUAL = 274, T_MUL_EQUAL = 275, T_MINUS_EQUAL = 276, T_PLUS_EQUAL = 277, T_BOOLEAN_OR = 278, T_BOOLEAN_AND = 279, T_IS_NOT_IDENTICAL = 280, T_IS_IDENTICAL = 281, T_IS_NOT_EQUAL = 282, T_IS_EQUAL = 283, T_IS_GREATER_OR_EQUAL = 284, T_IS_SMALLER_OR_EQUAL = 285, T_SR = 286, T_SL = 287, T_INSTANCEOF = 288, T_UNSET_CAST = 289, T_BOOL_CAST = 290, T_OBJECT_CAST = 291, T_ARRAY_CAST = 292, T_BINARY_CAST = 293, T_UNICODE_CAST = 294, T_STRING_CAST = 295, T_DOUBLE_CAST = 296, T_INT_CAST = 297, T_DEC = 298, T_INC = 299, T_CLONE = 300, T_NEW = 301, T_EXIT = 302, T_IF = 303, T_ELSEIF = 304, T_ELSE = 305, T_ENDIF = 306, T_LNUMBER = 307, T_DNUMBER = 308, T_STRING = 309, T_STRING_VARNAME = 310, T_VARIABLE = 311, T_NUM_STRING = 312, T_INLINE_HTML = 313, T_CHARACTER = 314, T_BAD_CHARACTER = 315, T_ENCAPSED_AND_WHITESPACE = 316, T_CONSTANT_ENCAPSED_STRING = 317, T_BACKTICKS_EXPR = 318, T_ECHO = 319, T_DO = 320, T_WHILE = 321, T_ENDWHILE = 322, T_FOR = 323, T_ENDFOR = 324, T_FOREACH = 325, T_ENDFOREACH = 326, T_DECLARE = 327, T_ENDDECLARE = 328, T_AS = 329, T_SWITCH = 330, T_ENDSWITCH = 331, T_CASE = 332, T_DEFAULT = 333, T_BREAK = 334, T_CONTINUE = 335, T_GOTO = 336, T_FUNCTION = 337, T_CONST = 338, T_RETURN = 339, T_TRY = 340, T_CATCH = 341, T_THROW = 342, T_USE = 343, T_GLOBAL = 344, T_PUBLIC = 345, T_PROTECTED = 346, T_PRIVATE = 347, T_FINAL = 348, T_ABSTRACT = 349, T_STATIC = 350, T_VAR = 351, T_UNSET = 352, T_ISSET = 353, T_EMPTY = 354, T_HALT_COMPILER = 355, T_CLASS = 356, T_INTERFACE = 357, T_EXTENDS = 358, T_IMPLEMENTS = 359, T_OBJECT_OPERATOR = 360, T_DOUBLE_ARROW = 361, T_LIST = 362, T_ARRAY = 363, T_CLASS_C = 364, T_METHOD_C = 365, T_FUNC_C = 366, T_LINE = 367, T_FILE = 368, T_COMMENT = 369, T_DOC_COMMENT = 370, T_OPEN_TAG = 371, T_OPEN_TAG_WITH_ECHO = 372, T_OPEN_TAG_FAKE = 373, T_CLOSE_TAG = 374, T_WHITESPACE = 375, T_START_HEREDOC = 376, T_END_HEREDOC = 377, T_HEREDOC = 378, T_DOLLAR_OPEN_CURLY_BRACES = 379, T_CURLY_OPEN = 380, T_PAAMAYIM_NEKUDOTAYIM = 381, T_BINARY_DOUBLE = 382, T_BINARY_HEREDOC = 383, T_NAMESPACE = 384, T_NS_C = 385, T_DIR = 386, T_NS_SEPARATOR = 387, T_INSTEADOF = 388, T_CALLABLE = 389, T_TRAIT = 390, T_TRAIT_C = 391, - T_YIELD = 392 + T_YIELD = 392, + T_FINALLY = 393 }; #endif /* Tokens. */ #define T_REQUIRE_ONCE 258 #define T_REQUIRE 259 #define T_EVAL 260 #define T_INCLUDE_ONCE 261 #define T_INCLUDE 262 #define T_LOGICAL_OR 263 #define T_LOGICAL_XOR 264 #define T_LOGICAL_AND 265 #define T_PRINT 266 #define T_SR_EQUAL 267 #define T_SL_EQUAL 268 #define T_XOR_EQUAL 269 #define T_OR_EQUAL 270 #define T_AND_EQUAL 271 #define T_MOD_EQUAL 272 #define T_CONCAT_EQUAL 273 #define T_DIV_EQUAL 274 #define T_MUL_EQUAL 275 #define T_MINUS_EQUAL 276 #define T_PLUS_EQUAL 277 #define T_BOOLEAN_OR 278 #define T_BOOLEAN_AND 279 #define T_IS_NOT_IDENTICAL 280 #define T_IS_IDENTICAL 281 #define T_IS_NOT_EQUAL 282 #define T_IS_EQUAL 283 #define T_IS_GREATER_OR_EQUAL 284 #define T_IS_SMALLER_OR_EQUAL 285 #define T_SR 286 #define T_SL 287 #define T_INSTANCEOF 288 #define T_UNSET_CAST 289 #define T_BOOL_CAST 290 #define T_OBJECT_CAST 291 #define T_ARRAY_CAST 292 #define T_BINARY_CAST 293 #define T_UNICODE_CAST 294 #define T_STRING_CAST 295 #define T_DOUBLE_CAST 296 #define T_INT_CAST 297 #define T_DEC 298 #define T_INC 299 #define T_CLONE 300 #define T_NEW 301 #define T_EXIT 302 #define T_IF 303 #define T_ELSEIF 304 #define T_ELSE 305 #define T_ENDIF 306 #define T_LNUMBER 307 #define T_DNUMBER 308 #define T_STRING 309 #define T_STRING_VARNAME 310 #define T_VARIABLE 311 #define T_NUM_STRING 312 #define T_INLINE_HTML 313 #define T_CHARACTER 314 #define T_BAD_CHARACTER 315 #define T_ENCAPSED_AND_WHITESPACE 316 #define T_CONSTANT_ENCAPSED_STRING 317 #define T_BACKTICKS_EXPR 318 #define T_ECHO 319 #define T_DO 320 #define T_WHILE 321 #define T_ENDWHILE 322 #define T_FOR 323 #define T_ENDFOR 324 #define T_FOREACH 325 #define T_ENDFOREACH 326 #define T_DECLARE 327 #define T_ENDDECLARE 328 #define T_AS 329 #define T_SWITCH 330 #define T_ENDSWITCH 331 #define T_CASE 332 #define T_DEFAULT 333 #define T_BREAK 334 #define T_CONTINUE 335 #define T_GOTO 336 #define T_FUNCTION 337 #define T_CONST 338 #define T_RETURN 339 #define T_TRY 340 #define T_CATCH 341 #define T_THROW 342 #define T_USE 343 #define T_GLOBAL 344 #define T_PUBLIC 345 #define T_PROTECTED 346 #define T_PRIVATE 347 #define T_FINAL 348 #define T_ABSTRACT 349 #define T_STATIC 350 #define T_VAR 351 #define T_UNSET 352 #define T_ISSET 353 #define T_EMPTY 354 #define T_HALT_COMPILER 355 #define T_CLASS 356 #define T_INTERFACE 357 #define T_EXTENDS 358 #define T_IMPLEMENTS 359 #define T_OBJECT_OPERATOR 360 #define T_DOUBLE_ARROW 361 #define T_LIST 362 #define T_ARRAY 363 #define T_CLASS_C 364 #define T_METHOD_C 365 #define T_FUNC_C 366 #define T_LINE 367 #define T_FILE 368 #define T_COMMENT 369 #define T_DOC_COMMENT 370 #define T_OPEN_TAG 371 #define T_OPEN_TAG_WITH_ECHO 372 #define T_OPEN_TAG_FAKE 373 #define T_CLOSE_TAG 374 #define T_WHITESPACE 375 #define T_START_HEREDOC 376 #define T_END_HEREDOC 377 #define T_HEREDOC 378 #define T_DOLLAR_OPEN_CURLY_BRACES 379 #define T_CURLY_OPEN 380 #define T_PAAMAYIM_NEKUDOTAYIM 381 #define T_BINARY_DOUBLE 382 #define T_BINARY_HEREDOC 383 #define T_NAMESPACE 384 #define T_NS_C 385 #define T_DIR 386 #define T_NS_SEPARATOR 387 #define T_INSTEADOF 388 #define T_CALLABLE 389 #define T_TRAIT 390 #define T_TRAIT_C 391 #define T_YIELD 392 +#define T_FINALLY 393 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef int YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_TRIVIAL 1 #endif /* @generated */ diff --git a/support/xhpast/parser_nodes.php b/support/xhpast/parser_nodes.php index 30b96cc..63a3bf2 100644 --- a/support/xhpast/parser_nodes.php +++ b/support/xhpast/parser_nodes.php @@ -1,113 +1,122 @@ 'n_PROGRAM', 9001 => 'n_SYMBOL_NAME', 9002 => 'n_HALT_COMPILER', 9003 => 'n_NAMESPACE', 9004 => 'n_STATEMENT', 9005 => 'n_EMPTY', 9006 => 'n_STATEMENT_LIST', 9007 => 'n_OPEN_TAG', 9008 => 'n_CLOSE_TAG', 9009 => 'n_USE_LIST', 9010 => 'n_USE', 9011 => 'n_CONSTANT_DECLARATION_LIST', 9012 => 'n_CONSTANT_DECLARATION', 9013 => 'n_STRING', 9014 => 'n_LABEL', 9015 => 'n_CONDITION_LIST', 9016 => 'n_CONTROL_CONDITION', 9017 => 'n_IF', 9018 => 'n_ELSEIF', 9019 => 'n_ELSE', 9020 => 'n_WHILE', 9021 => 'n_DO_WHILE', 9022 => 'n_FOR', 9023 => 'n_FOR_EXPRESSION', 9024 => 'n_SWITCH', 9025 => 'n_BREAK', 9026 => 'n_CONTINUE', 9027 => 'n_RETURN', 9028 => 'n_GLOBAL_DECLARATION_LIST', 9029 => 'n_GLOBAL_DECLARATION', 9030 => 'n_STATIC_DECLARATION_LIST', 9031 => 'n_STATIC_DECLARATION', 9032 => 'n_ECHO_LIST', 9033 => 'n_ECHO', 9034 => 'n_INLINE_HTML', 9035 => 'n_UNSET_LIST', 9036 => 'n_UNSET', 9037 => 'n_FOREACH', 9038 => 'n_FOREACH_EXPRESSION', 9039 => 'n_THROW', 9040 => 'n_GOTO', 9041 => 'n_TRY', 9042 => 'n_CATCH_LIST', 9043 => 'n_CATCH', 9044 => 'n_DECLARE', 9045 => 'n_DECLARE_DECLARATION_LIST', 9046 => 'n_DECLARE_DECLARATION', 9047 => 'n_VARIABLE', 9048 => 'n_REFERENCE', 9049 => 'n_VARIABLE_REFERENCE', 9050 => 'n_FUNCTION_DECLARATION', 9051 => 'n_CLASS_DECLARATION', 9052 => 'n_CLASS_ATTRIBUTES', 9053 => 'n_EXTENDS', 9054 => 'n_EXTENDS_LIST', 9055 => 'n_IMPLEMENTS_LIST', 9056 => 'n_INTERFACE_DECLARATION', 9057 => 'n_CASE', 9058 => 'n_DEFAULT', 9059 => 'n_DECLARATION_PARAMETER_LIST', 9060 => 'n_DECLARATION_PARAMETER', 9061 => 'n_TYPE_NAME', 9062 => 'n_VARIABLE_VARIABLE', 9063 => 'n_CLASS_MEMBER_DECLARATION_LIST', 9064 => 'n_CLASS_MEMBER_DECLARATION', 9065 => 'n_CLASS_CONSTANT_DECLARATION_LIST', 9066 => 'n_CLASS_CONSTANT_DECLARATION', 9067 => 'n_METHOD_DECLARATION', 9068 => 'n_METHOD_MODIFIER_LIST', 9069 => 'n_FUNCTION_MODIFIER_LIST', 9070 => 'n_CLASS_MEMBER_MODIFIER_LIST', 9071 => 'n_EXPRESSION_LIST', 9072 => 'n_LIST', 9073 => 'n_ASSIGNMENT', 9074 => 'n_NEW', 9075 => 'n_UNARY_PREFIX_EXPRESSION', 9076 => 'n_UNARY_POSTFIX_EXPRESSION', 9077 => 'n_BINARY_EXPRESSION', 9078 => 'n_TERNARY_EXPRESSION', 9079 => 'n_CAST_EXPRESSION', 9080 => 'n_CAST', 9081 => 'n_OPERATOR', 9082 => 'n_ARRAY_LITERAL', 9083 => 'n_EXIT_EXPRESSION', 9084 => 'n_BACKTICKS_EXPRESSION', 9085 => 'n_LEXICAL_VARIABLE_LIST', 9086 => 'n_NUMERIC_SCALAR', 9087 => 'n_STRING_SCALAR', 9088 => 'n_MAGIC_SCALAR', 9089 => 'n_CLASS_STATIC_ACCESS', 9090 => 'n_CLASS_NAME', 9091 => 'n_MAGIC_CLASS_KEYWORD', 9092 => 'n_OBJECT_PROPERTY_ACCESS', 9093 => 'n_ARRAY_VALUE_LIST', 9094 => 'n_ARRAY_VALUE', 9095 => 'n_CALL_PARAMETER_LIST', 9096 => 'n_VARIABLE_EXPRESSION', 9097 => 'n_INCLUDE_FILE', 9098 => 'n_HEREDOC', 9099 => 'n_FUNCTION_CALL', 9100 => 'n_INDEX_ACCESS', 9101 => 'n_ASSIGNMENT_LIST', 9102 => 'n_METHOD_CALL', 9103 => 'n_CONCATENATION_LIST', 9104 => 'n_PARENTHETICAL_EXPRESSION', + 9105 => 'n_TRAIT_USE', + 9106 => 'n_TRAIT_USE_LIST', + 9107 => 'n_TRAIT_ADAPTATION_LIST', + 9108 => 'n_TRAIT_INSTEADOF', + 9109 => 'n_TRAIT_REFERENCE_LIST', + 9110 => 'n_TRAIT_METHOD_REFERENCE', + 9111 => 'n_TRAIT_AS', + 9112 => 'n_YIELD', + 9113 => 'n_FINALLY', ); } diff --git a/support/xhpast/scanner.l b/support/xhpast/scanner.l index b807034..5992231 100644 --- a/support/xhpast/scanner.l +++ b/support/xhpast/scanner.l @@ -1,513 +1,514 @@ %{ #include "ast.hpp" #define push_state(s) xhp_new_push_state(s, yyg) #define pop_state() xhp_new_pop_state(yyg) #define set_state(s) xhp_set_state(s, yyg) #define last_token() yyextra->last_token #define YY_USER_ACTION \ if (!yyg->yy_more_len) \ yyextra->first_lineno = yyextra->lineno; #define pttok(t, txt) \ yyextra->token_list.push_back(new xhpast::Token(t, txt, yyextra->list_size++)); \ *yylval = new xhpast::Node(0, yyextra->list_size - 1); #define ptok(t) \ pttok(t, yytext); #define tok(t) \ ptok(t); \ return yy_token(t, yyg) #define YY_USER_INIT \ if (yyextra->insert_token) { \ yyg->yy_init = 0; \ int ft = yyextra->insert_token; \ yyextra->insert_token = 0; \ return yy_token(ft, yyg); \ } using namespace std; const char* yytokname(int tok); static int yy_token(int tok, struct yyguts_t* yyg); static void yy_scan_newlines(const char* text, struct yyguts_t* yyg); %} %option prefix="xhpast" %option reentrant /* PHP allows IF or if */ %option case-insensitive %option noyywrap nodefault %option stack %option bison-bridge %option 8bit /* I think an interactive scanner is required because of the bison state * pushing we do. I'm putting an explicit interactive declaration here in case * someone tries adding -CF or whatever to the make flags. */ %option interactive /* The different lexing states. Note that the transitions are done either * in the lex actions, or in a generic manner in yy_token(). */ %s PHP %s PHP_COMMENT %s PHP_EOL_COMMENT %s PHP_DOC_COMMENT %s PHP_HEREDOC_START %s PHP_HEREDOC_NSTART %s PHP_HEREDOC_NEWLINE %s PHP_NO_RESERVED_WORDS %s PHP_NO_RESERVED_WORDS_PERSIST %s PHP_ LNUM [0-9]+ DNUM ([0-9]*"."[0-9]+)|([0-9]+"."[0-9]*) EXPONENT_DNUM (({LNUM}|{DNUM})[eE][+-]?{LNUM}) HNUM "0x"[0-9a-fA-F]+ BNUM "0b"[01]+ LABEL [a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]* BYTE (.|\n) WHITESPACE [ \n\r\t]+ TABS_AND_SPACES [ \t]* NEWLINE ("\r\n"|"\n"|"\r") %% /* Open / close PHP + inline HTML */ { "short_tags) { tok(T_OPEN_TAG); } else { tok(T_INLINE_HTML); } } "short_tags) { tok(T_OPEN_TAG_WITH_ECHO); } else { tok(T_INLINE_HTML); } } "<%" { if (yyextra->asp_tags) { tok(T_OPEN_TAG); } else { tok(T_INLINE_HTML); } } "<%=" { if (yyextra->asp_tags) { tok(T_OPEN_TAG_WITH_ECHO); } else { tok(T_INLINE_HTML); } } "<"|[^<]* { yy_scan_newlines(yytext, yyg); tok(T_INLINE_HTML); } } { ("?>"|""){NEWLINE}? { yy_scan_newlines(yytext + 2, yyg); tok(T_CLOSE_TAG); } "%>" { if (yyextra->asp_tags) { tok(T_CLOSE_TAG); } else { yyless(1); tok(yytext[0]); } } } /* Comments and whitespace */ { "#"|"//" { push_state(PHP_EOL_COMMENT); yymore(); } "/**"{WHITESPACE} { yy_scan_newlines(yytext + 3, yyg); push_state(PHP_DOC_COMMENT); yymore(); } "/*" { push_state(PHP_COMMENT); yymore(); } {WHITESPACE}+ { yy_scan_newlines(yytext, yyg); ptok(T_WHITESPACE); } } <> { ptok(T_COMMENT); pop_state(); } { {NEWLINE} { ++yyextra->lineno; ptok(T_COMMENT); pop_state(); } [^\r\n?]+ yymore(); "?>" { yyless(yyleng - 2); ptok(T_COMMENT); pop_state(); } . yymore(); } { {NEWLINE} { ++yyextra->lineno; yymore(); } [^*\r\n]+|"*" yymore(); } "*/" { ptok(T_DOC_COMMENT); pop_state(); } <> { ptok(T_DOC_COMMENT); pop_state(); } "*/" { ptok(T_COMMENT); pop_state(); } <> { ptok(T_COMMENT); pop_state(); } /* Reserved words */ { include tok(T_INCLUDE); include_once tok(T_INCLUDE_ONCE); eval tok(T_EVAL); require tok(T_REQUIRE); require_once tok(T_REQUIRE_ONCE); or tok(T_LOGICAL_OR); xor tok(T_LOGICAL_XOR); and tok(T_LOGICAL_AND); print tok(T_PRINT); instanceof tok(T_INSTANCEOF); new tok(T_NEW); clone tok(T_CLONE); exit tok(T_EXIT); if tok(T_IF); elseif tok(T_ELSEIF); else tok(T_ELSE); endif tok(T_ENDIF); echo tok(T_ECHO); do tok(T_DO); while tok(T_WHILE); endwhile tok(T_ENDWHILE); for tok(T_FOR); endfor tok(T_ENDFOR); foreach tok(T_FOREACH); endforeach tok(T_ENDFOREACH); declare tok(T_DECLARE); enddeclare tok(T_ENDDECLARE); as tok(T_AS); switch tok(T_SWITCH); endswitch tok(T_ENDSWITCH); case tok(T_CASE); default tok(T_DEFAULT); break tok(T_BREAK); continue tok(T_CONTINUE); goto tok(T_GOTO); function tok(T_FUNCTION); const tok(T_CONST); return tok(T_RETURN); try tok(T_TRY); catch tok(T_CATCH); throw tok(T_THROW); use tok(T_USE); global tok(T_GLOBAL); static tok(T_STATIC); abstract tok(T_ABSTRACT); final tok(T_FINAL); private tok(T_PRIVATE); protected tok(T_PROTECTED); public tok(T_PUBLIC); var tok(T_VAR); unset tok(T_UNSET); isset tok(T_ISSET); empty tok(T_EMPTY); __halt_compiler tok(T_HALT_COMPILER); class tok(T_CLASS); interface tok(T_INTERFACE); extends tok(T_EXTENDS); implements tok(T_IMPLEMENTS); list tok(T_LIST); array tok(T_ARRAY); __class__ tok(T_CLASS_C); __method__ tok(T_METHOD_C); __function__ tok(T_FUNC_C); __line__ tok(T_LINE); __file__ tok(T_FILE); namespace tok(T_NAMESPACE); __namespace__ tok(T_NS_C); __dir__ tok(T_DIR); insteadof tok(T_INSTEADOF); callable tok(T_CALLABLE); trait tok(T_TRAIT); __trait__ tok(T_TRAIT_C); yield tok(T_YIELD); + finally tok(T_FINALLY); } /* Operators */ { "+=" tok(T_PLUS_EQUAL); "-=" tok(T_MINUS_EQUAL); "*=" tok(T_MUL_EQUAL); "/=" tok(T_DIV_EQUAL); ".=" tok(T_CONCAT_EQUAL); "%=" tok(T_MOD_EQUAL); "&=" tok(T_AND_EQUAL); "|=" tok(T_OR_EQUAL); "^=" tok(T_XOR_EQUAL); "<<=" tok(T_SL_EQUAL); ">>=" tok(T_SR_EQUAL); "||" tok(T_BOOLEAN_OR); "&&" tok(T_BOOLEAN_AND); "==" tok(T_IS_EQUAL); "!="|"<>" tok(T_IS_NOT_EQUAL); "===" tok(T_IS_IDENTICAL); "!==" tok(T_IS_NOT_IDENTICAL); "<=" tok(T_IS_SMALLER_OR_EQUAL); ">=" tok(T_IS_GREATER_OR_EQUAL); "<<" tok(T_SL); ">>" tok(T_SR); "++" tok(T_INC); "--" tok(T_DEC); "->" tok(T_OBJECT_OPERATOR); "=>" tok(T_DOUBLE_ARROW); "::" tok(T_PAAMAYIM_NEKUDOTAYIM); "\\" tok(T_NS_SEPARATOR); } /* Casts */ { "("{TABS_AND_SPACES}(int|integer){TABS_AND_SPACES}")" tok(T_INT_CAST); "("{TABS_AND_SPACES}(real|double|float){TABS_AND_SPACES}")" tok(T_DOUBLE_CAST); "("{TABS_AND_SPACES}(string|binary){TABS_AND_SPACES}")" tok(T_STRING_CAST); "("{TABS_AND_SPACES}array{TABS_AND_SPACES}")" tok(T_ARRAY_CAST); "("{TABS_AND_SPACES}object{TABS_AND_SPACES}")" tok(T_OBJECT_CAST); "("{TABS_AND_SPACES}(bool|boolean){TABS_AND_SPACES}")" tok(T_BOOL_CAST); "("{TABS_AND_SPACES}unset{TABS_AND_SPACES}")" tok(T_UNSET_CAST); } /* Scalars (parsing these doesn't really matter since we just pass them through literally) */ { {LNUM}|{HNUM}|{BNUM} tok(T_LNUMBER); {DNUM}|{EXPONENT_DNUM} tok(T_DNUMBER); {LABEL} tok(T_STRING); "$"{LABEL} tok(T_VARIABLE); b?'(\\.|\\\n|[^\\']+)*'|b?\"(\\.|\\\n|[^\\\"]+)*\" { yy_scan_newlines(yytext, yyg); tok(T_CONSTANT_ENCAPSED_STRING); } `[^`]*` { yy_scan_newlines(yytext, yyg); tok(T_BACKTICKS_EXPR); } } /* (HERE|NOW)DOC's */ b?"<<<"{TABS_AND_SPACES} { push_state(PHP_HEREDOC_START); yyextra->heredoc_yyleng = yyleng; yymore(); } { "'"{LABEL}"'"|\"{LABEL}\" { // Create a new string for the heredoc label. Since we're using yymore above // yytext will actually start at the "<<<" and not the label. Use of // heredoc_yyleng jumps past that. Then we add 1 to get past the " or '. The // match is similar to calculate length. yyextra->heredoc_label = string(yytext + yyextra->heredoc_yyleng + 1, yyleng - yyextra->heredoc_yyleng - 2); set_state(PHP_HEREDOC_NSTART); yyextra->heredoc_yyleng = yyleng; yymore(); } {LABEL} { yyextra->heredoc_label = string(yytext + yyextra->heredoc_yyleng); set_state(PHP_HEREDOC_NSTART); yyextra->heredoc_yyleng = yyleng; yymore(); } } {NEWLINE} { yyextra->heredoc_yyleng = yyleng; set_state(PHP_HEREDOC_NEWLINE); yymore(); } { {LABEL};?{NEWLINE} { if (strncmp(yyextra->heredoc_label.c_str(), yytext + yyextra->heredoc_yyleng, yyextra->heredoc_label.size()) == 0) { switch (yytext[yyextra->heredoc_yyleng + yyextra->heredoc_label.size()]) { case ';': case '\n': case '\r': yyless(yyleng - (yyleng - yyextra->heredoc_yyleng - yyextra->heredoc_label.size())); pop_state(); tok(T_HEREDOC); } } ++yyextra->lineno; yyextra->heredoc_yyleng = yyleng; yymore(); } [^\r\n]+ { yyextra->heredoc_yyleng = yyleng; yymore(); } {NEWLINE} { ++yyextra->lineno; yyextra->heredoc_yyleng = yyleng; yymore(); } } /* Other */ <*>{BYTE} { tok(yytext[0]); // fix unused function warnings yy_top_state(NULL); yyunput(0, 0, NULL); } %% #ifdef DEBUG static const char* yy_state_name(int state) { switch (state) { case INITIAL: return "INITIAL"; case PHP: return "PHP"; case PHP_COMMENT: return "PHP_COMMENT"; case PHP_EOL_COMMENT: return "PHP_EOL_COMMENT"; case PHP_DOC_COMMENT: return "PHP_DOC_COMMENT"; case PHP_HEREDOC_START: return "PHP_HEREDOC_START"; case PHP_HEREDOC_NSTART: return "PHP_HEREDOC_NSTART"; case PHP_HEREDOC_NEWLINE: return "PHP_HEREDOC_NEWLINE"; case PHP_NO_RESERVED_WORDS: return "PHP_NO_RESERVED_WORDS"; case PHP_NO_RESERVED_WORDS_PERSIST: return "PHP_NO_RESERVED_WORDS_PERSIST"; default: return "???"; } } static void yy_log_token(int tok) { const char* tokname = yytokname(tok); if (tokname) { fprintf(stderr, "--> %s\n", tokname); } else { fprintf(stderr, "--> '%c'\n", tok); } } #endif static int yy_token(int tok, yyguts_t* yyg) { if (YY_START == PHP_NO_RESERVED_WORDS) { pop_state(); } switch (tok) { case T_OPEN_TAG: case T_OPEN_TAG_WITH_ECHO: case T_OPEN_TAG_FAKE: push_state(PHP); break; case T_CLOSE_TAG: pop_state(); // We need to return a ';', not a T_CLOSE_TAG, because a construct like // "" is valid and there are about a billion parser rules // which terminate with ';' so making a new rule like // "semicolon_or_close_tag" would be hard. The token in yylval has the // correct type and value, we just don't generate a node. return ';'; // In PHP it's ok to use keywords such as 'if' as field names // or function names. case T_OBJECT_OPERATOR: case T_FUNCTION: push_state(PHP_NO_RESERVED_WORDS); break; case T_PAAMAYIM_NEKUDOTAYIM: if (yyextra->colon_hack) { yyextra->colon_hack = false; } else { push_state(PHP_NO_RESERVED_WORDS); } break; case '{': // not used anymore yyextra->curly_stack.push(tok); break; } #ifdef DEBUG yy_log_token(tok); #endif return yyextra->last_token = tok; } static inline void yy_scan_newlines(const char* text, struct yyguts_t* yyg) { for (; *text; ++text) { if (*text == '\r') { if (text[1] == '\n') { ++text; } ++yyextra->lineno; } else if (*text == '\n') { ++yyextra->lineno; } } } void xhp_new_push_state(int s, struct yyguts_t* yyg) { #ifdef DEBUG fprintf(stderr, "--> PUSH(%s -> %s)\n", yy_state_name(YY_START), yy_state_name(s)); #endif yy_push_state(s, yyg); } void xhp_new_pop_state(struct yyguts_t* yyg) { #ifdef DEBUG int s = YY_START; #endif yy_pop_state(yyg); #ifdef DEBUG fprintf(stderr, "--> POP(%s -> %s)\n", yy_state_name(s), yy_state_name(YY_START)); #endif } void xhp_set_state(int s, struct yyguts_t* yyg) { #ifdef DEBUG fprintf(stderr, "--> SET(%s)\n", yy_state_name(s)); #endif BEGIN(s); } diff --git a/support/xhpast/scanner.lex.cpp b/support/xhpast/scanner.lex.cpp index 9884f95..5e7cbf1 100644 --- a/support/xhpast/scanner.lex.cpp +++ b/support/xhpast/scanner.lex.cpp @@ -1,6357 +1,6362 @@ #line 2 "scanner.lex.cpp" #line 4 "scanner.lex.cpp" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ /* %not-for-header */ /* %if-c-only */ /* %if-not-reentrant */ /* %endif */ /* %endif */ /* %ok-for-header */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 35 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* %if-c++-only */ /* %endif */ /* %if-c-only */ /* %endif */ /* %if-c-only */ /* %endif */ /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ /* %if-c-only */ #include #include #include #include /* %endif */ /* %if-tables-serialization */ /* %endif */ /* end standard C headers. */ /* %if-c-or-c++ */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; #endif /* ! C99 */ /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! FLEXINT_H */ /* %endif */ /* %if-c++-only */ /* %endif */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* %not-for-header */ /* Returned upon end-of-file. */ #define YY_NULL 0 /* %ok-for-header */ /* %not-for-header */ /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* %ok-for-header */ /* %if-reentrant */ /* An opaque pointer. */ #ifndef YY_TYPEDEF_YY_SCANNER_T #define YY_TYPEDEF_YY_SCANNER_T typedef void* yyscan_t; #endif /* For convenience, these vars (plus the bison vars far below) are macros in the reentrant scanner. */ #define yyin yyg->yyin_r #define yyout yyg->yyout_r #define yyextra yyg->yyextra_r #define yyleng yyg->yyleng_r #define yytext yyg->yytext_r #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column) #define yy_flex_debug yyg->yy_flex_debug_r /* %endif */ /* %if-not-reentrant */ /* %endif */ /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN yyg->yy_start = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yyg->yy_start - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE xhpastrestart(yyin ,yyscanner ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif /* %if-not-reentrant */ /* %endif */ /* %if-c-only */ /* %if-not-reentrant */ /* %endif */ /* %endif */ #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = yyg->yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { /* %if-c-only */ FILE *yy_input_file; /* %endif */ /* %if-c++-only */ /* %endif */ char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via xhpastrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ /* %if-not-reentrant */ /* %endif */ /* %ok-for-header */ /* %endif */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \ ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] /* %if-c-only Standard (non-C++) definition */ /* %if-not-reentrant */ /* %not-for-header */ /* %ok-for-header */ /* %endif */ void xhpastrestart (FILE *input_file ,yyscan_t yyscanner ); void xhpast_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); YY_BUFFER_STATE xhpast_create_buffer (FILE *file,int size ,yyscan_t yyscanner ); void xhpast_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); void xhpast_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); void xhpastpush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); void xhpastpop_buffer_state (yyscan_t yyscanner ); static void xhpastensure_buffer_stack (yyscan_t yyscanner ); static void xhpast_load_buffer_state (yyscan_t yyscanner ); static void xhpast_init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner ); #define YY_FLUSH_BUFFER xhpast_flush_buffer(YY_CURRENT_BUFFER ,yyscanner) YY_BUFFER_STATE xhpast_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner ); YY_BUFFER_STATE xhpast_scan_string (yyconst char *yy_str ,yyscan_t yyscanner ); YY_BUFFER_STATE xhpast_scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner ); /* %endif */ void *xhpastalloc (yy_size_t ,yyscan_t yyscanner ); void *xhpastrealloc (void *,yy_size_t ,yyscan_t yyscanner ); void xhpastfree (void * ,yyscan_t yyscanner ); #define yy_new_buffer xhpast_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ xhpastensure_buffer_stack (yyscanner); \ YY_CURRENT_BUFFER_LVALUE = \ xhpast_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ xhpastensure_buffer_stack (yyscanner); \ YY_CURRENT_BUFFER_LVALUE = \ xhpast_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */ /* Begin user sect3 */ #define xhpastwrap(n) 1 #define YY_SKIP_YYWRAP #define FLEX_DEBUG typedef unsigned char YY_CHAR; typedef int yy_state_type; #define yytext_ptr yytext_r /* %if-c-only Standard (non-C++) definition */ static yy_state_type yy_get_previous_state (yyscan_t yyscanner ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ,yyscan_t yyscanner); static int yy_get_next_buffer (yyscan_t yyscanner ); static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner ); /* %endif */ /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ yyg->yytext_ptr = yy_bp; \ /* %% [2.0] code to fiddle yytext and yyleng for yymore() goes here \ */\ yyg->yytext_ptr -= yyg->yy_more_len; \ yyleng = (size_t) (yy_cp - yyg->yytext_ptr); \ yyg->yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ /* %% [3.0] code to copy yytext_ptr to yytext[] goes here, if %array \ */\ yyg->yy_c_buf_p = yy_cp; /* %% [4.0] data tables for the DFA and the user's section 1 definitions go here */ -#define YY_NUM_RULES 142 -#define YY_END_OF_BUFFER 143 +#define YY_NUM_RULES 143 +#define YY_END_OF_BUFFER 144 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static yyconst flex_int16_t yy_accept[607] = +static yyconst flex_int16_t yy_accept[609] = { 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 143, 6, 6, 141, 12, 141, 141, 9, - 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, - 128, 128, 141, 141, 141, 141, 141, 130, 130, 130, - 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, - 130, 130, 130, 130, 130, 130, 130, 130, 120, 141, - 130, 141, 141, 18, 17, 17, 18, 14, 13, 13, - 16, 18, 141, 141, 136, 137, 137, 139, 140, 140, - 139, 130, 6, 4, 2, 12, 108, 0, 132, 0, - - 131, 99, 8, 106, 100, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 96, 115, 94, - 116, 95, 117, 129, 98, 11, 9, 97, 129, 128, - 0, 0, 0, 119, 0, 113, 111, 108, 107, 118, - 112, 114, 7, 130, 130, 130, 130, 48, 0, 0, - 0, 130, 130, 130, 130, 130, 39, 130, 130, 130, - 130, 130, 130, 130, 130, 130, 130, 130, 34, 130, - 130, 130, 130, 130, 130, 26, 130, 130, 130, 130, - 130, 130, 130, 130, 130, 130, 130, 130, 130, 102, - 130, 0, 133, 101, 105, 18, 17, 20, 14, 13, - - 15, 19, 0, 0, 136, 137, 139, 140, 138, 138, - 139, 139, 5, 3, 0, 110, 0, 131, 0, 0, + 0, 0, 144, 6, 6, 142, 12, 142, 142, 9, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 129, 129, 142, 142, 142, 142, 142, 131, 131, 131, + 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, + 131, 131, 131, 131, 131, 131, 131, 131, 121, 142, + 131, 142, 142, 18, 17, 17, 18, 14, 13, 13, + 16, 18, 142, 142, 137, 138, 138, 140, 141, 141, + 140, 131, 6, 4, 2, 12, 109, 0, 133, 0, + + 132, 100, 8, 107, 101, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 97, 116, 95, + 117, 96, 118, 130, 99, 11, 9, 98, 130, 129, + 0, 0, 0, 120, 0, 114, 112, 109, 108, 119, + 113, 115, 7, 131, 131, 131, 131, 48, 0, 0, + 0, 131, 131, 131, 131, 131, 39, 131, 131, 131, + 131, 131, 131, 131, 131, 131, 131, 131, 34, 131, + 131, 131, 131, 131, 131, 26, 131, 131, 131, 131, + 131, 131, 131, 131, 131, 131, 131, 131, 131, 103, + 131, 0, 134, 102, 106, 18, 17, 20, 14, 13, + + 15, 19, 0, 0, 137, 138, 140, 141, 139, 139, + 140, 140, 5, 3, 0, 111, 0, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 129, 128, 0, 129, 128, 0, 134, 103, 109, 104, - 7, 7, 130, 28, 130, 0, 130, 130, 130, 130, - 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, - 130, 130, 130, 42, 130, 130, 130, 130, 130, 130, - 130, 130, 130, 130, 31, 130, 130, 130, 130, 130, - 130, 130, 130, 130, 59, 130, 62, 70, 130, 27, - 130, 130, 130, 130, 130, 130, 130, 130, 130, 135, + 130, 129, 0, 130, 129, 0, 135, 104, 110, 105, + 7, 7, 131, 28, 131, 0, 131, 131, 131, 131, + 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, + 131, 131, 131, 42, 131, 131, 131, 131, 131, 131, + 131, 131, 131, 131, 31, 131, 131, 131, 131, 131, + 131, 131, 131, 131, 59, 131, 62, 70, 131, 27, + 131, 131, 131, 131, 131, 131, 131, 131, 131, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 10, 0, 134, 130, 130, 130, 130, - 51, 130, 130, 130, 130, 130, 130, 130, 38, 36, - 130, 130, 130, 130, 130, 130, 23, 33, 130, 130, - 130, 130, 130, 55, 130, 130, 130, 130, 130, 79, - 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, - 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, - 130, 130, 130, 0, 0, 0, 0, 0, 0, 0, - 121, 0, 0, 0, 0, 0, 0, 130, 80, 53, - 130, 60, 75, 32, 57, 130, 130, 130, 130, 73, - - 130, 130, 37, 130, 130, 130, 66, 130, 130, 130, - 130, 130, 130, 130, 130, 72, 130, 29, 130, 130, - 130, 130, 130, 130, 130, 61, 91, 71, 40, 93, - 130, 130, 130, 130, 130, 130, 130, 130, 130, 1, - 1, 0, 0, 0, 126, 0, 0, 0, 0, 0, - 0, 122, 0, 0, 0, 130, 130, 130, 130, 130, - 35, 130, 43, 130, 130, 130, 130, 130, 63, 130, - 130, 130, 130, 130, 130, 130, 130, 69, 130, 58, - 64, 49, 130, 130, 130, 130, 130, 130, 130, 130, - 130, 0, 124, 0, 0, 0, 0, 0, 0, 0, - - 127, 0, 130, 130, 130, 46, 52, 130, 130, 130, - 130, 77, 44, 130, 130, 21, 130, 130, 130, 130, - 67, 130, 24, 130, 88, 130, 130, 130, 130, 130, - 130, 130, 0, 123, 0, 0, 0, 125, 0, 65, - 90, 54, 130, 130, 130, 41, 56, 130, 130, 130, - 130, 130, 130, 130, 130, 130, 85, 130, 130, 84, - 130, 130, 130, 0, 130, 130, 50, 130, 130, 130, - 89, 76, 86, 68, 130, 81, 130, 130, 130, 130, - 92, 47, 45, 78, 130, 30, 130, 130, 130, 82, - 130, 130, 130, 130, 130, 130, 22, 25, 83, 130, - - 130, 130, 87, 130, 74, 0 + 0, 0, 0, 10, 0, 135, 131, 131, 131, 131, + 51, 131, 131, 131, 131, 131, 131, 131, 38, 36, + 131, 131, 131, 131, 131, 131, 23, 33, 131, 131, + 131, 131, 131, 55, 131, 131, 131, 131, 131, 79, + 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, + 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, + 131, 131, 131, 0, 0, 0, 0, 0, 0, 0, + 122, 0, 0, 0, 0, 0, 0, 131, 80, 53, + 131, 60, 75, 32, 57, 131, 131, 131, 131, 73, + + 131, 131, 37, 131, 131, 131, 66, 131, 131, 131, + 131, 131, 131, 131, 131, 72, 131, 29, 131, 131, + 131, 131, 131, 131, 131, 61, 91, 71, 40, 93, + 131, 131, 131, 131, 131, 131, 131, 131, 131, 1, + 1, 0, 0, 0, 127, 0, 0, 0, 0, 0, + 0, 123, 0, 0, 0, 131, 131, 131, 131, 131, + 35, 131, 43, 131, 131, 131, 131, 131, 131, 63, + 131, 131, 131, 131, 131, 131, 131, 131, 69, 131, + 58, 64, 49, 131, 131, 131, 131, 131, 131, 131, + 131, 131, 0, 125, 0, 0, 0, 0, 0, 0, + + 0, 128, 0, 131, 131, 131, 46, 52, 131, 131, + 131, 131, 77, 94, 44, 131, 131, 21, 131, 131, + 131, 131, 67, 131, 24, 131, 88, 131, 131, 131, + 131, 131, 131, 131, 0, 124, 0, 0, 0, 126, + 0, 65, 90, 54, 131, 131, 131, 41, 56, 131, + 131, 131, 131, 131, 131, 131, 131, 131, 85, 131, + 131, 84, 131, 131, 131, 0, 131, 131, 50, 131, + 131, 131, 89, 76, 86, 68, 131, 81, 131, 131, + 131, 131, 92, 47, 45, 78, 131, 30, 131, 131, + 131, 82, 131, 131, 131, 131, 131, 131, 22, 25, + + 83, 131, 131, 131, 87, 131, 74, 0 } ; -static yyconst flex_int16_t yy_base[648] = +static yyconst flex_int16_t yy_base[650] = { 0, 875, 874, 0, 0, 246, 247, 248, 252, 253, 254, 315, 441, 258, 259, 567, 693, 819, 945, 0, 0, - 0, 0, 933, 0, 236,12078, 265, 870, 980,12078, + 0, 0, 933, 0, 236,12079, 265, 870, 980,12079, 0, 215, 232, 341, 1008, 869, 237, 239, 333, 243, 996, 460, 871, 245, 220, 225, 865, 441, 995, 326, 324, 565, 319, 320, 0, 448, 322, 568, 315, 445, - 331, 551, 562, 562, 455, 449, 443, 455,12078, 865, - 826, 824, 951, 0,12078, 909, 871, 0,12078, 906, - 852, 764, 0, 0, 0,12078, 800, 0,12078, 798, - 1125, 618, 0, 746, 575, 749, 745, 987,12078, 0, - - 0,12078,12078,12078,12078, 721, 0, 1173, 557, 575, - 568, 573, 572, 590, 692, 679, 686,12078,12078,12078, - 12078,12078,12078, 838,12078, 763,12078,12078, 1143, 1176, - 254, 722, 1243,12078, 683, 248,12078,12078, 743,12078, - 12078, 742, 281, 749, 1174, 996, 1201, 862, 988, 845, + 331, 551, 562, 562, 455, 449, 443, 455,12079, 865, + 826, 824, 951, 0,12079, 909, 871, 0,12079, 906, + 852, 764, 0, 0, 0,12079, 800, 0,12079, 798, + 1125, 618, 0, 746, 575, 749, 745, 987,12079, 0, + + 0,12079,12079,12079,12079, 721, 0, 1173, 557, 575, + 568, 573, 572, 590, 692, 679, 686,12079,12079,12079, + 12079,12079,12079, 838,12079, 763,12079,12079, 1143, 1176, + 254, 722, 1243,12079, 683, 248,12079,12079, 743,12079, + 12079, 742, 281, 749, 1174, 996, 1201, 862, 988, 845, 742, 994, 1242, 1267, 1176, 1289, 863, 1295, 1313, 1225, 1314, 1327, 1329, 1326, 1337, 1338, 1203, 1341, 864, 1351, 1366, 1369, 1378, 1381, 1384, 865, 1393, 1396, 1408, 1420, - 1435, 1436, 1449, 1439, 1463, 1452, 1466, 1467, 1476,12078, - 1491, 703,12078,12078,12078, 0,12078,12078, 0,12078, + 1435, 1436, 1449, 1439, 1463, 1452, 1466, 1467, 1476,12079, + 1491, 703,12079,12079,12079, 0,12079,12079, 0,12079, - 12078,12078, 763, 755, 0,12078, 0,12078,12078, 781, - 1607, 300,12078,12078, 696,12078, 990, 0, 974, 687, + 12079,12079, 763, 755, 0,12079, 0,12079,12079, 781, + 1607, 300,12079,12079, 696,12079, 990, 0, 974, 687, 702, 703, 815, 827, 824, 835, 960, 944, 944, 1079, - 1607, 364, 492, 1629, 1669, 1000, 783,12078,12078,12078, - 12078, 780, 999, 0, 1020, 629, 1021, 1098, 1106, 1110, + 1607, 364, 492, 1629, 1669, 1000, 783,12079,12079,12079, + 12079, 780, 999, 0, 1020, 629, 1021, 1098, 1106, 1110, 1096, 1169, 1220, 1231, 1254, 1243, 1261, 1254, 1672, 1331, 1371, 1410, 1451, 1451, 1461, 1467, 1462, 1466, 1468, 1463, 1484, 1486, 1472, 1488, 0, 1663, 1478, 1496, 1587, 1588, 1590, 1591, 1616, 1623, 0, 1628, 0, 0, 1635, 0, - 1636, 1638, 1642, 1675, 1685, 1678, 1683, 1688, 1672,12078, + 1636, 1638, 1642, 1675, 1685, 1678, 1683, 1688, 1672,12079, 650, 629, 1676, 1692, 1693, 1685, 1696, 1698, 1766, 1695, 1689, 1703, 1709, 1573, 1697, 896, 1717, 1711, 1726, 1737, 0, 1732, 1722, 1737, 1725, 1739, 1748, 1729, 0, 1742, 1727, 1748, 1739, 1749, 1733, 1749, 0, 0, 1744, 1747, 1759, 1741, 1761, 0, 1758, 1743, 1774, 1747, 1746, 0, 1757, 1758, 1798, 1795, 1792, 1793, 1786, 1796, 1803, 1786, 1792, 1793, 1809, 1811, 1815, 1799, 1806, 1805, 1808, 1807, 1802, 1810, 1823, 1678, 1800, 1808, 1894, 1815, 1808, 1895, - 12078, 1822, 1832, 1897, 1829, 1844, 1857, 1867, 0, 0, + 12079, 1822, 1832, 1897, 1829, 1844, 1857, 1867, 0, 0, 1867, 0, 0, 0, 0, 1856, 1855, 1864, 1871, 0, - 1875, 1861, 0, 1871, 1872, 1878, 0, 1880, 1875, 1873, - 1873, 1883, 1874, 1888, 1884, 0, 1875, 0, 1872, 1890, - 1891, 1877, 1883, 1900, 1896, 0, 0, 0, 0, 0, - 1887, 567, 1902, 1925, 1910, 1927, 1925, 1929, 1928,12078, - 636, 1995, 1916, 1999,12078, 1941, 1938, 2000, 1941, 1927, - 2003,12078, 1942, 2014, 1935, 1949, 1941, 1933, 1950, 1936, - 0, 1945, 1953, 1941, 1958, 1973, 1986, 1980, 0, 1991, - 1992, 1995, 1995, 1999, 2000, 1998, 1984, 0, 2000, 0, - 0, 0, 1987, 443, 441, 1987, 331, 327, 1993, 1990, - 1990, 2066,12078, 2076, 1999, 2078, 1997, 2080, 2104, 2105, - - 12078, 1999, 2000, 2017, 2051, 0, 0, 2057, 2058, 2057, - 2056, 0, 0, 2048, 2049, 326, 2059, 2050, 2063, 2064, - 0, 2063, 325, 324, 0, 323, 2060, 2067, 322, 2067, - 2058, 321, 2139,12078, 2140, 2141, 2142,12078, 2166, 0, - 0, 0, 2071, 2101, 2097, 0, 0, 2093, 2099, 2105, - 2116, 2118, 2119, 2121, 2111, 320, 0, 2112, 2113, 0, - 319, 2128, 315, 2194, 2126, 2125, 0, 2116, 2124, 2135, - 0, 0, 0, 0, 2128, 0, 2130, 2134, 306, 2145, - 0, 0, 0, 0, 2146, 0, 2147, 219, 2135, 0, - 2148, 2161, 2163, 217, 2160, 188, 0, 0, 0, 2159, - - 184, 2167, 0, 2157, 0,12078, 2271, 2526, 2781, 3036, - 3291, 3546, 3801, 4056, 4311, 4502, 4757, 4965, 5220, 5475, - 5730, 5921, 6112, 6320, 6575, 6830, 7052, 7307, 7562, 7817, - 8025, 8280, 8535, 8790, 9045, 9300, 9522, 9739, 9947,10202, - 10457,10712,10920,11175,11383,11605,11822 + 1875, 1861, 0, 1871, 1872, 1878, 1871, 1881, 1876, 1874, + 1874, 1884, 1875, 1889, 1885, 0, 1876, 0, 1873, 1891, + 1892, 1879, 1889, 1901, 1898, 0, 0, 0, 0, 0, + 1888, 567, 1923, 1927, 1912, 1928, 1926, 1932, 1931,12079, + 636, 1999, 1916, 2000,12079, 1941, 1938, 2002, 1941, 1928, + 2013,12079, 1943, 2016, 1935, 1950, 1942, 1934, 1951, 1937, + 0, 1947, 1958, 1951, 1980, 1975, 1971, 1989, 1983, 0, + 1994, 1995, 1998, 1998, 2003, 2004, 2001, 1987, 0, 2003, + 0, 0, 0, 1990, 443, 441, 1990, 331, 327, 1996, + 1993, 1993, 2078,12079, 2080, 2001, 2082, 1999, 2090, 2106, + + 2107,12079, 2001, 2002, 2051, 2055, 0, 0, 2060, 2061, + 2060, 2059, 0, 0, 0, 2051, 2052, 326, 2063, 2054, + 2067, 2068, 0, 2067, 325, 324, 0, 323, 2064, 2073, + 322, 2073, 2062, 321, 2144,12079, 2145, 2146, 2161,12079, + 2171, 0, 0, 0, 2061, 2083, 2079, 0, 0, 2079, + 2100, 2109, 2119, 2121, 2122, 2124, 2115, 320, 0, 2117, + 2118, 0, 319, 2133, 315, 2195, 2130, 2128, 0, 2123, + 2129, 2139, 0, 0, 0, 0, 2132, 0, 2134, 2136, + 306, 2147, 0, 0, 0, 0, 2148, 0, 2149, 219, + 2137, 0, 2149, 2150, 2165, 217, 2162, 188, 0, 0, + + 0, 2160, 184, 2168, 0, 2158, 0,12079, 2272, 2527, + 2782, 3037, 3292, 3547, 3802, 4057, 4312, 4503, 4758, 4966, + 5221, 5476, 5731, 5922, 6113, 6321, 6576, 6831, 7053, 7308, + 7563, 7818, 8026, 8281, 8536, 8791, 9046, 9301, 9523, 9740, + 9948,10203,10458,10713,10921,11176,11384,11606,11823 } ; -static yyconst flex_int16_t yy_def[648] = +static yyconst flex_int16_t yy_def[650] = { 0, - 607, 607, 606, 3, 608, 608, 609, 609, 608, 608, - 610, 610, 611, 611, 612, 612, 613, 613, 18, 18, - 611, 611, 606, 614, 606, 606, 606, 606, 615, 606, - 616, 606, 606, 617, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 618, 618, 618, - 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, - 618, 618, 618, 618, 618, 618, 618, 618, 606, 606, - 618, 619, 606, 620, 606, 606, 606, 621, 606, 606, - 606, 606, 622, 623, 624, 606, 606, 625, 606, 606, - 626, 627, 628, 606, 606, 606, 606, 629, 606, 630, - - 631, 606, 606, 606, 606, 632, 633, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 627, 627, 627, 627, 627, 629, 632, - 606, 627, 627, 627, 627, 627, 627, 627, 627, 627, - 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, - 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, - 627, 627, 627, 627, 627, 627, 627, 627, 627, 606, - 627, 634, 606, 606, 606, 635, 606, 606, 636, 606, - - 606, 606, 637, 638, 639, 606, 640, 606, 606, 606, - 641, 640, 606, 606, 606, 606, 642, 643, 644, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 645, 645, 645, 606, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 606, + 609, 609, 608, 3, 610, 610, 611, 611, 610, 610, + 612, 612, 613, 613, 614, 614, 615, 615, 18, 18, + 613, 613, 608, 616, 608, 608, 608, 608, 617, 608, + 618, 608, 608, 619, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 620, 620, 620, + 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, + 620, 620, 620, 620, 620, 620, 620, 620, 608, 608, + 620, 621, 608, 622, 608, 608, 608, 623, 608, 608, + 608, 608, 624, 625, 626, 608, 608, 627, 608, 608, + 628, 629, 630, 608, 608, 608, 608, 631, 608, 632, - 646, 647, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, + 633, 608, 608, 608, 608, 634, 635, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 629, 629, 629, 629, 629, 631, 634, + 608, 629, 629, 629, 629, 629, 629, 629, 629, 629, + 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, + 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, + 629, 629, 629, 629, 629, 629, 629, 629, 629, 608, + 629, 636, 608, 608, 608, 637, 608, 608, 638, 608, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 606, 606, 606, 606, 606, 606, 606, 606, 606, + 608, 608, 639, 640, 641, 608, 642, 608, 608, 608, + 643, 642, 608, 608, 608, 608, 644, 645, 646, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 647, 647, 647, 608, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 608, - 606, 606, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 606, 606, 606, 606, 606, 606, 606, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 606, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, + 648, 649, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, - 645, 645, 645, 645, 645, 0, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606 + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 608, 608, 608, 608, 608, 608, 608, 608, + + 608, 608, 608, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 608, 608, 608, 608, 608, 608, + 608, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 608, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + + 647, 647, 647, 647, 647, 647, 647, 0, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608 } ; -static yyconst flex_int16_t yy_nxt[12335] = +static yyconst flex_int16_t yy_nxt[12336] = { 0, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 26, 26, 27, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 26, 36, 37, 26, 38, 39, 40, 41, 42, 42, 42, 42, 42, 42, 42, 42, 42, 43, 26, 44, 45, 46, 47, 26, 48, 49, 50, 51, 52, 53, 54, 55, 56, 55, 55, 57, 55, 58, 59, 60, 55, 61, 62, 63, 64, 65, 66, 67, 68, 55, 26, 69, 26, 70, 71, 72, 48, 49, 50, 51, 52, 53, 54, 55, 56, 55, 55, 57, 55, 58, 59, 60, 55, 61, 62, 63, 64, 65, 66, 67, 68, 55, 26, 73, 26, 26, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 75, 75, 79, 76, 76, 80, 79, 75, 75, 80, 76, 76, 86, 86, 104, - 87, 87, 94, 96, 96, 102, 103, 96, 603, 119, - 139, 140, 601, 121, 126, 141, 142, 77, 77, 127, + 87, 87, 94, 96, 96, 102, 103, 96, 605, 119, + 139, 140, 603, 121, 126, 141, 142, 77, 77, 127, 241, 135, 105, 242, 82, 82, 96, 120, 95, 122, 123, 232, 232, 128, 136, 137, 138, 237, 238, 209, - 81, 599, 210, 594, 81, 26, 26, 26, 26, 26, + 81, 601, 210, 596, 81, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 83, 26, 26, 26, 26, 84, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 99, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 153, 164, 156, 125, 173, 167, 176, 165, 168, 179, - 590, 154, 157, 166, 155, 26, 26, 26, 26, 581, - 26, 232, 232, 579, 576, 563, 560, 557, 556, 555, - 549, 529, 153, 164, 156, 528, 173, 167, 176, 165, + 592, 154, 157, 166, 155, 26, 26, 26, 26, 583, + 26, 232, 232, 581, 578, 565, 562, 559, 558, 557, + 551, 531, 153, 164, 156, 530, 173, 167, 176, 165, 168, 179, 107, 154, 157, 166, 155, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 83, 26, 26, 26, 26, 84, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 129, 145, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 169, 146, 186, 187, 188, 147, 148, 170, 171, 177, 189, 132, 178, - 172, 26, 26, 26, 26, 526, 26, 525, 145, 234, + 172, 26, 26, 26, 26, 528, 26, 527, 145, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 169, 146, 186, 187, 188, 147, 148, 170, 171, 177, 189, 132, 178, 172, 26, 26, 26, 26, 88, 88, 88, 88, 88, 88, 88, 88, 88, 89, 88, 88, 90, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 158, 174, 182, 180, 214, 175, 181, 220, 184, 159, 160, 161, 183, 185, 440, 223, 221, 224, 225, 162, 149, 163, 222, 215, 226, 150, 88, 88, 88, - 88, 484, 88, 158, 174, 182, 180, 300, 175, 181, + 88, 485, 88, 158, 174, 182, 180, 300, 175, 181, 220, 184, 159, 160, 161, 183, 185, 151, 223, 221, 224, 225, 162, 300, 163, 222, 215, 226, 237, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 89, 88, 88, 90, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 96, 96, 99, 227, 96, 228, 229, 233, 236, 233, 303, 304, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 305, - 96, 306, 606, 88, 88, 88, 88, 606, 88, 241, + 96, 306, 608, 88, 88, 88, 88, 608, 88, 241, 209, 316, 227, 300, 228, 229, 300, 236, 193, 303, - 304, 246, 240, 239, 230, 216, 213, 208, 606, 206, + 304, 246, 240, 239, 230, 216, 213, 208, 608, 206, 202, 305, 107, 306, 316, 88, 88, 88, 88, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 26, 26, 27, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 26, 36, 37, 26, 38, 39, 40, 41, 42, 42, 42, 42, 42, 42, 42, 42, 42, 43, 26, 44, 45, 46, 47, 26, 99, 92, 124, 124, 124, 124, 124, - 124, 124, 124, 124, 124, 606, 606, 606, 606, 307, + 124, 124, 124, 124, 124, 608, 608, 608, 608, 307, - 606, 606, 606, 606, 316, 308, 132, 309, 310, 26, + 608, 608, 608, 608, 316, 308, 132, 309, 310, 26, 69, 26, 70, 201, 72, 200, 92, 198, 197, 193, - 191, 606, 606, 606, 606, 190, 143, 316, 134, 118, - 97, 307, 606, 25, 25, 606, 107, 308, 132, 309, + 191, 608, 608, 608, 608, 190, 143, 316, 134, 118, + 97, 307, 608, 25, 25, 608, 107, 308, 132, 309, 310, 26, 73, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 26, 26, 27, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 26, 36, 37, 26, 38, 39, 40, 41, 42, 42, 42, 42, 42, 42, 42, - 42, 42, 43, 26, 44, 45, 46, 47, 26, 606, - 92, 194, 99, 99, 606, 606, 108, 606, 606, 606, - 99, 99, 606, 99, 311, 312, 313, 606, 149, 606, - 606, 606, 606, 150, 606, 26, 69, 26, 70, 108, + 42, 42, 43, 26, 44, 45, 46, 47, 26, 608, + 92, 194, 99, 99, 608, 608, 108, 608, 608, 608, + 99, 99, 608, 99, 311, 312, 313, 608, 149, 608, + 608, 608, 608, 150, 608, 26, 69, 26, 70, 108, 72, 129, 92, 130, 130, 130, 130, 130, 130, 130, - 130, 130, 130, 606, 151, 606, 311, 312, 313, 606, - 606, 131, 247, 244, 132, 107, 315, 26, 73, 26, + 130, 130, 130, 608, 151, 608, 311, 312, 313, 608, + 608, 131, 247, 244, 132, 107, 315, 26, 73, 26, 26, 100, 109, 110, 195, 111, 152, 112, 100, 100, 113, 100, 317, 133, 318, 319, 114, 314, 314, 115, - 116, 314, 117, 131, 247, 244, 132, 606, 315, 606, + 116, 314, 117, 131, 247, 244, 132, 608, 315, 608, - 606, 606, 606, 606, 109, 110, 606, 111, 152, 112, - 314, 606, 113, 606, 317, 133, 318, 319, 114, 606, - 606, 115, 116, 606, 117, 207, 207, 207, 207, 207, + 608, 608, 608, 608, 109, 110, 608, 111, 152, 112, + 314, 608, 113, 608, 317, 133, 318, 319, 114, 608, + 608, 115, 116, 608, 117, 207, 207, 207, 207, 207, 207, 207, 207, 207, 209, 207, 207, 210, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, - 207, 207, 606, 320, 321, 606, 322, 606, 323, 606, - 606, 108, 207, 212, 207, 207, 207, 207, 207, 606, + 207, 207, 608, 320, 321, 608, 322, 608, 323, 608, + 608, 108, 207, 212, 207, 207, 207, 207, 207, 608, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, - 606, 606, 606, 606, 108, 320, 321, 606, 322, 606, - 323, 132, 606, 606, 606, 207, 207, 207, 207, 606, - 207, 129, 606, 130, 130, 130, 130, 130, 130, 130, - 130, 130, 130, 606, 606, 606, 606, 109, 110, 606, - 111, 606, 112, 132, 132, 113, 324, 207, 207, 207, - 207, 114, 606, 253, 115, 116, 243, 117, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 109, - 110, 606, 111, 606, 112, 606, 132, 113, 324, 606, - 606, 266, 245, 114, 606, 253, 115, 116, 243, 117, + 608, 608, 608, 608, 108, 320, 321, 608, 322, 608, + 323, 132, 608, 608, 608, 207, 207, 207, 207, 608, + 207, 129, 608, 130, 130, 130, 130, 130, 130, 130, + 130, 130, 130, 608, 608, 608, 608, 109, 110, 608, + 111, 608, 112, 132, 132, 113, 324, 207, 207, 207, + 207, 114, 608, 253, 115, 116, 243, 117, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 109, + 110, 608, 111, 608, 112, 608, 132, 113, 324, 608, + 608, 266, 245, 114, 608, 253, 115, 116, 243, 117, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, - 606, 606, 325, 326, 258, 606, 327, 235, 235, 235, - 235, 235, 235, 266, 245, 606, 606, 248, 328, 606, - 606, 329, 606, 606, 249, 250, 606, 606, 606, 330, - 606, 251, 606, 606, 325, 326, 258, 331, 327, 235, - 235, 235, 235, 235, 235, 252, 606, 606, 606, 248, - 328, 606, 606, 329, 606, 254, 249, 250, 255, 606, - 606, 330, 606, 251, 606, 606, 256, 606, 606, 331, - 606, 606, 606, 606, 606, 606, 606, 252, 606, 606, - 606, 259, 606, 606, 606, 606, 606, 254, 606, 606, - 255, 260, 606, 606, 606, 257, 606, 606, 256, 606, - - 606, 261, 606, 263, 606, 606, 337, 606, 606, 606, - 606, 606, 262, 259, 606, 265, 606, 606, 264, 606, - 606, 606, 606, 260, 267, 606, 606, 257, 606, 606, - 268, 606, 269, 261, 606, 263, 606, 606, 337, 606, - 606, 606, 606, 606, 262, 606, 606, 265, 270, 271, - 264, 272, 606, 606, 338, 606, 267, 274, 606, 606, - 273, 278, 268, 606, 269, 276, 606, 606, 606, 606, - 275, 277, 606, 606, 606, 606, 606, 606, 339, 606, - 270, 271, 606, 272, 281, 606, 338, 606, 279, 274, - 606, 280, 273, 278, 606, 606, 606, 276, 606, 606, - - 606, 606, 275, 277, 606, 606, 606, 282, 606, 606, - 339, 606, 606, 284, 606, 340, 281, 283, 606, 341, - 279, 286, 606, 280, 606, 606, 606, 342, 606, 606, - 606, 287, 343, 288, 606, 606, 606, 285, 289, 282, - 344, 345, 606, 346, 291, 284, 347, 340, 290, 283, - 606, 341, 348, 286, 349, 350, 351, 292, 293, 342, + 608, 608, 325, 326, 258, 608, 327, 235, 235, 235, + 235, 235, 235, 266, 245, 608, 608, 248, 328, 608, + 608, 329, 608, 608, 249, 250, 608, 608, 608, 330, + 608, 251, 608, 608, 325, 326, 258, 331, 327, 235, + 235, 235, 235, 235, 235, 252, 608, 608, 608, 248, + 328, 608, 608, 329, 608, 254, 249, 250, 255, 608, + 608, 330, 608, 251, 608, 608, 256, 608, 608, 331, + 608, 608, 608, 608, 608, 608, 608, 252, 608, 608, + 608, 259, 608, 608, 608, 608, 608, 254, 608, 608, + 255, 260, 608, 608, 608, 257, 608, 608, 256, 608, + + 608, 261, 608, 263, 608, 608, 337, 608, 608, 608, + 608, 608, 262, 259, 608, 265, 608, 608, 264, 608, + 608, 608, 608, 260, 267, 608, 608, 257, 608, 608, + 268, 608, 269, 261, 608, 263, 608, 608, 337, 608, + 608, 608, 608, 608, 262, 608, 608, 265, 270, 271, + 264, 272, 608, 608, 338, 608, 267, 274, 608, 608, + 273, 278, 268, 608, 269, 276, 608, 608, 608, 608, + 275, 277, 608, 608, 608, 608, 608, 608, 339, 608, + 270, 271, 608, 272, 281, 608, 338, 608, 279, 274, + 608, 280, 273, 278, 608, 608, 608, 276, 608, 608, + + 608, 608, 275, 277, 608, 608, 608, 282, 608, 608, + 339, 608, 608, 284, 608, 340, 281, 283, 608, 341, + 279, 286, 608, 280, 608, 608, 608, 342, 608, 608, + 608, 287, 343, 288, 608, 608, 608, 285, 289, 282, + 344, 345, 608, 346, 291, 284, 347, 340, 290, 283, + 608, 341, 348, 286, 349, 350, 351, 292, 293, 342, 294, 354, 295, 287, 343, 288, 296, 297, 298, 285, - 289, 355, 344, 345, 299, 346, 291, 606, 347, 606, - 290, 314, 314, 606, 348, 314, 349, 350, 351, 292, - 293, 606, 294, 354, 295, 606, 606, 606, 296, 297, + 289, 355, 344, 345, 299, 346, 291, 608, 347, 608, + 290, 314, 314, 608, 348, 314, 349, 350, 351, 292, + 293, 608, 294, 354, 295, 608, 608, 608, 296, 297, - 298, 606, 606, 355, 314, 606, 299, 207, 207, 207, + 298, 608, 608, 355, 314, 608, 299, 207, 207, 207, 207, 207, 207, 207, 207, 207, 209, 207, 207, 210, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 207, 212, 207, 207, 207, 207, 207, 356, 357, 358, 359, 132, 234, 234, 234, 234, - 234, 234, 234, 234, 234, 234, 440, 440, 606, 606, - 441, 606, 606, 606, 360, 361, 362, 207, 207, 207, + 234, 234, 234, 234, 234, 234, 440, 440, 608, 608, + 441, 608, 608, 608, 360, 361, 362, 207, 207, 207, - 207, 606, 207, 356, 357, 358, 359, 132, 606, 440, - 363, 364, 606, 365, 366, 606, 235, 235, 235, 235, + 207, 608, 207, 356, 357, 358, 359, 132, 608, 440, + 363, 364, 608, 365, 366, 608, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 360, 361, 362, 207, 207, 207, 207, 235, 235, 235, 235, 235, 235, 332, 352, 333, 363, 364, 334, 365, 366, 367, 353, 369, 370, 371, 372, 373, 335, 374, 375, 376, 336, 368, 377, 378, 379, 383, 384, 235, 235, 235, 235, 235, 235, 332, 352, 333, 380, 385, 334, 386, 387, 367, 353, 369, 370, 371, 372, 373, 335, 374, 375, 376, 336, 368, 377, 378, 379, 383, 384, 380, 388, 389, - 390, 391, 606, 392, 393, 394, 381, 385, 395, 386, + 390, 391, 608, 392, 393, 394, 381, 385, 395, 386, 387, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 415, 416, 388, 389, 390, 391, 382, 392, 393, 394, 413, 417, 395, 418, 414, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 415, 416, 419, 420, 421, 422, 382, 423, 424, 425, 413, 417, 426, 418, 414, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 442, 443, - 447, 448, 449, 606, 419, 420, 421, 422, 450, 423, + 447, 448, 449, 608, 419, 420, 421, 422, 450, 423, 424, 425, 444, 380, 426, 451, 453, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 442, 443, 447, 448, 449, 444, 380, 454, 451, 455, 450, 456, 457, 458, 445, 381, 459, 452, 453, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 454, 480, 455, 446, 456, 457, 458, 481, 482, 459, 483, - 485, 460, 461, 462, 463, 464, 465, 466, 467, 468, + 484, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 486, 480, 487, 446, 488, 489, 490, 481, 482, - 491, 483, 485, 492, 494, 495, 496, 444, 451, 497, - 498, 451, 499, 606, 502, 503, 504, 505, 506, 507, - 508, 509, 500, 486, 510, 487, 492, 488, 489, 490, - 444, 451, 491, 511, 451, 493, 494, 495, 496, 445, - 452, 497, 498, 452, 499, 500, 502, 503, 504, 505, - 506, 507, 508, 509, 501, 512, 510, 513, 514, 515, - 516, 517, 518, 519, 520, 511, 521, 522, 523, 524, - 527, 530, 531, 532, 492, 606, 535, 606, 536, 606, - 606, 606, 539, 540, 533, 541, 451, 512, 537, 513, - 514, 515, 516, 517, 518, 519, 520, 492, 521, 522, - - 523, 524, 527, 530, 531, 532, 493, 533, 535, 451, - 536, 537, 533, 500, 539, 540, 534, 541, 452, 542, - 538, 543, 544, 545, 546, 547, 548, 550, 551, 552, - 553, 554, 558, 559, 561, 533, 500, 562, 606, 606, - 606, 606, 606, 606, 534, 501, 606, 533, 444, 380, - 537, 542, 565, 543, 544, 545, 546, 547, 548, 550, - 551, 552, 553, 554, 558, 559, 561, 566, 567, 562, - 533, 444, 380, 537, 564, 564, 568, 569, 564, 534, - 445, 381, 538, 570, 565, 571, 572, 573, 574, 575, - 577, 578, 580, 606, 582, 606, 583, 564, 584, 566, - - 567, 585, 564, 564, 586, 587, 564, 588, 568, 569, - 589, 591, 592, 593, 595, 570, 596, 571, 572, 573, - 574, 575, 577, 578, 580, 564, 582, 143, 583, 597, - 584, 598, 600, 585, 602, 604, 586, 587, 605, 588, - 606, 606, 589, 591, 592, 593, 595, 606, 596, 606, - 606, 606, 606, 606, 606, 143, 606, 606, 606, 606, - 606, 597, 606, 598, 600, 606, 602, 604, 606, 606, - 605, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 491, 483, 484, 492, 495, 496, 497, 493, 444, 498, + 451, 499, 608, 500, 503, 608, 504, 505, 506, 507, + 508, 451, 509, 486, 501, 487, 510, 488, 489, 490, + 493, 444, 491, 451, 511, 492, 495, 496, 497, 494, + 445, 498, 452, 499, 451, 500, 503, 501, 504, 505, + 506, 507, 508, 452, 509, 512, 502, 513, 510, 514, + 515, 516, 517, 518, 519, 520, 511, 521, 522, 523, + 524, 525, 526, 529, 532, 533, 534, 608, 537, 608, + 538, 608, 608, 608, 541, 542, 493, 512, 535, 513, + 451, 514, 515, 516, 517, 518, 519, 520, 539, 521, + + 522, 523, 524, 525, 526, 529, 532, 533, 534, 493, + 537, 535, 538, 451, 535, 501, 541, 542, 494, 543, + 536, 539, 452, 544, 545, 546, 547, 548, 549, 550, + 540, 552, 553, 554, 555, 556, 560, 535, 501, 561, + 563, 564, 567, 608, 608, 608, 536, 502, 608, 568, + 569, 543, 535, 444, 380, 544, 545, 546, 547, 548, + 549, 550, 570, 552, 553, 554, 555, 556, 560, 539, + 608, 561, 563, 564, 567, 535, 444, 380, 571, 566, + 566, 568, 569, 566, 536, 445, 381, 572, 573, 574, + 575, 576, 539, 577, 570, 579, 580, 582, 584, 585, + + 608, 540, 566, 566, 566, 586, 587, 566, 588, 589, + 571, 590, 591, 593, 594, 595, 597, 598, 599, 572, + 573, 574, 575, 576, 608, 577, 566, 579, 580, 582, + 584, 585, 143, 600, 602, 604, 606, 586, 587, 607, + 588, 589, 608, 590, 591, 593, 594, 595, 597, 598, + 599, 608, 608, 608, 608, 608, 143, 608, 608, 608, + 608, 608, 608, 608, 608, 600, 602, 604, 606, 608, + 608, 607, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, - 24, 24, 24, 24, 24, 24, 74, 74, 74, 74, + 24, 24, 24, 24, 24, 24, 24, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, - 74, 78, 78, 78, 78, 78, 78, 78, 78, 78, + 74, 74, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, - 78, 78, 78, 78, 78, 78, 85, 85, 85, 85, + 78, 78, 78, 78, 78, 78, 78, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, - 85, 26, 26, 26, 26, 26, 26, 26, 26, 26, + 85, 85, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, - 26, 26, 26, 26, 26, 26, 91, 91, 91, 91, + 26, 26, 26, 26, 26, 26, 26, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, - 91, 55, 55, 55, 55, 55, 55, 55, 55, 55, + 91, 91, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, - 55, 55, 55, 55, 55, 55, 93, 93, 93, 93, + 55, 55, 55, 55, 55, 55, 55, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, - 93, 93, 93, 93, 93, 606, 93, 93, 93, 93, + 93, 93, 93, 93, 93, 93, 608, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, - 93, 98, 98, 98, 98, 98, 98, 98, 98, 98, + 93, 93, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, - 98, 98, 98, 98, 98, 98, 101, 101, 101, 101, + 98, 98, 98, 98, 98, 98, 98, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, - 101, 101, 606, 606, 606, 606, 101, 606, 101, 101, + 101, 101, 101, 608, 608, 608, 608, 101, 608, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, - 101, 101, 101, 101, 606, 606, 606, 606, 101, 101, + 101, 101, 101, 101, 101, 608, 608, 608, 608, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, - 101, 101, 101, 101, 101, 101, 101, 106, 106, 106, + 101, 101, 101, 101, 101, 101, 101, 101, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, - 106, 106, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 606, 606, 606, 606, 606, 606, 606, 144, + 106, 106, 106, 144, 144, 144, 144, 144, 144, 144, + 144, 144, 144, 608, 608, 608, 608, 608, 608, 608, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 144, 144, 144, 606, 606, 606, 606, 144, - 606, 144, 144, 144, 144, 144, 144, 144, 144, 144, + 144, 144, 144, 144, 144, 144, 608, 608, 608, 608, + 144, 608, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 144, 144, 144, 144, 144, 606, 606, 606, - 606, 144, 144, 144, 144, 144, 144, 144, 144, 144, + 144, 144, 144, 144, 144, 144, 144, 144, 608, 608, + 608, 608, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, + 144, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, - 192, 192, 192, 192, 192, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 606, 196, 196, 606, 196, 196, + 192, 192, 192, 192, 192, 192, 196, 196, 196, 196, + 196, 196, 196, 196, 196, 608, 196, 196, 608, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 196, 196, 606, 196, 196, 196, + 196, 196, 196, 196, 196, 196, 196, 608, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, - 199, 199, 199, 199, 199, 199, 199, 199, 199, 606, - 199, 199, 606, 199, 199, 199, 199, 199, 199, 199, + 196, 199, 199, 199, 199, 199, 199, 199, 199, 199, + 608, 199, 199, 608, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, - 199, 199, 606, 199, 199, 199, 199, 199, 199, 199, + 199, 199, 199, 608, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, - 199, 199, 199, 199, 199, 203, 203, 203, 203, 203, + 199, 199, 199, 199, 199, 199, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 203, 606, 606, 606, 606, 203, 606, 203, 203, 203, + 203, 203, 608, 608, 608, 608, 203, 608, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 203, 203, 203, 606, 606, 606, 606, 203, 203, 203, + 203, 203, 203, 203, 608, 608, 608, 608, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 203, 203, 203, 203, 203, 203, 204, 204, 204, 204, + 203, 203, 203, 203, 203, 203, 203, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 606, 606, 606, 606, 204, 606, 204, 204, + 204, 204, 204, 608, 608, 608, 608, 204, 608, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 606, 606, 606, 606, 204, 204, + 204, 204, 204, 204, 204, 608, 608, 608, 608, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 205, 205, 205, - 205, 205, 205, 205, 205, 205, 205, 606, 606, 606, - 606, 606, 606, 606, 205, 205, 205, 205, 205, 205, + 204, 204, 204, 204, 204, 204, 204, 204, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 608, 608, + 608, 608, 608, 608, 608, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, - 606, 606, 606, 606, 205, 606, 205, 205, 205, 205, + 205, 608, 608, 608, 608, 205, 608, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, - 205, 205, 606, 606, 606, 606, 205, 205, 205, 205, + 205, 205, 205, 608, 608, 608, 608, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, - 205, 205, 205, 205, 205, 207, 207, 207, 207, 207, - 207, 207, 207, 207, 606, 207, 207, 606, 207, 207, + 205, 205, 205, 205, 205, 205, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 608, 207, 207, 608, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, - 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, + 207, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, - 211, 211, 211, 211, 211, 144, 606, 606, 606, 606, - 144, 606, 606, 606, 606, 606, 606, 606, 606, 144, + 211, 211, 211, 211, 211, 211, 144, 608, 608, 608, + 608, 144, 608, 608, 608, 608, 608, 608, 608, 608, - 144, 144, 144, 144, 144, 144, 144, 144, 144, 606, - 606, 144, 606, 606, 606, 606, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, + 608, 608, 144, 608, 608, 608, 608, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 606, 606, 606, 606, 144, 606, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, + 144, 144, 144, 608, 608, 608, 608, 144, 608, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 144, 144, 606, 606, 606, 606, 144, 144, + 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, + 144, 144, 144, 144, 144, 608, 608, 608, 608, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 144, 144, 144, 144, 144, 93, 93, 93, + 144, 144, 144, 144, 144, 144, 144, 144, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, - 93, 93, 93, 93, 93, 93, 606, 93, 93, 93, + 93, 93, 93, 93, 93, 93, 93, 608, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, - 93, 93, 98, 98, 98, 98, 98, 98, 98, 98, + 93, 93, 93, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, - 98, 98, 98, 98, 98, 98, 98, 217, 217, 217, + 98, 98, 98, 98, 98, 98, 98, 98, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, - 217, 217, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 606, 606, 606, 606, 606, 606, 606, 218, + 217, 217, 217, 218, 218, 218, 218, 218, 218, 218, + 218, 218, 218, 608, 608, 608, 608, 608, 608, 608, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 606, 606, 606, 606, 218, - 606, 218, 218, 218, 218, 218, 218, 218, 218, 218, + 218, 218, 218, 218, 218, 218, 608, 608, 608, 608, + 218, 608, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 606, 606, 606, - 606, 218, 218, 218, 218, 218, 218, 218, 218, 218, + 218, 218, 218, 218, 218, 218, 218, 218, 608, 608, + 608, 608, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, + 218, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, - 106, 106, 106, 106, 106, 219, 219, 219, 219, 219, + 106, 106, 106, 106, 106, 106, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, + 219, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, - 192, 192, 192, 192, 192, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 606, 196, 196, 606, 196, 196, + 192, 192, 192, 192, 192, 192, 196, 196, 196, 196, + 196, 196, 196, 196, 196, 608, 196, 196, 608, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 196, 196, 606, 196, 196, 196, + 196, 196, 196, 196, 196, 196, 196, 608, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, - 199, 199, 199, 199, 199, 199, 199, 199, 199, 606, - 199, 199, 606, 199, 199, 199, 199, 199, 199, 199, + 196, 199, 199, 199, 199, 199, 199, 199, 199, 199, + 608, 199, 199, 608, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, - 199, 199, 606, 199, 199, 199, 199, 199, 199, 199, + 199, 199, 199, 608, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, - 199, 199, 199, 199, 199, 301, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 301, - 301, 301, 301, 301, 301, 301, 301, 301, 301, 606, - 606, 606, 606, 606, 606, 606, 301, 301, 301, 301, + 199, 199, 199, 199, 199, 199, 301, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, + 608, 608, 608, 608, 608, 608, 608, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 606, 606, 606, 606, 301, 606, 301, 301, + 301, 301, 301, 608, 608, 608, 608, 301, 608, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 606, 606, 606, 606, 301, 301, + 301, 301, 301, 301, 301, 608, 608, 608, 608, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 301, 301, 301, 302, 606, 606, - 606, 606, 606, 606, 606, 606, 302, 302, 302, 302, - 302, 302, 302, 302, 302, 302, 606, 606, 606, 606, + 301, 301, 301, 301, 301, 301, 301, 301, 302, 608, + 608, 608, 608, 608, 608, 608, 608, 302, 302, 302, + 302, 302, 302, 302, 302, 302, 302, 608, 608, 608, - 606, 606, 606, 302, 302, 302, 302, 302, 302, 302, + 608, 608, 608, 608, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, - 302, 302, 302, 302, 302, 302, 302, 302, 302, 606, - 606, 606, 606, 302, 606, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, + 608, 608, 608, 608, 302, 608, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, - 302, 606, 606, 606, 606, 302, 302, 302, 302, 302, + 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, + 302, 302, 608, 608, 608, 608, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, - 302, 302, 302, 302, 205, 205, 205, 205, 205, 205, + 302, 302, 302, 302, 302, 205, 205, 205, 205, 205, - 205, 205, 205, 205, 606, 606, 606, 606, 606, 606, - 606, 205, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 608, 608, 608, 608, 608, + 608, 608, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 608, 608, + 608, 608, 205, 608, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, - 205, 205, 205, 205, 205, 205, 205, 606, 606, 606, - 606, 205, 606, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, - 205, 205, 205, 205, 205, 205, 205, 205, 205, 606, - 606, 606, 606, 205, 205, 205, 205, 205, 205, 205, + 608, 608, 608, 608, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, - 205, 205, 207, 207, 207, 207, 207, 207, 207, 207, - 207, 606, 207, 207, 606, 207, 207, 207, 207, 207, + 205, 205, 205, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 608, 207, 207, 608, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, - 207, 207, 207, 207, 207, 207, 207, 211, 211, 211, + 207, 207, 207, 207, 207, 207, 207, 207, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, - 211, 211, 98, 98, 98, 98, 98, 98, 98, 98, + 211, 211, 211, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, - 98, 98, 98, 98, 98, 98, 98, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 606, 606, 606, - 606, 606, 606, 606, 218, 218, 218, 218, 218, 218, + 98, 98, 98, 98, 98, 98, 98, 98, 218, 218, + 218, 218, 218, 218, 218, 218, 218, 218, 608, 608, + 608, 608, 608, 608, 608, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 606, 606, 606, 606, 218, 606, 218, 218, 218, 218, + 218, 608, 608, 608, 608, 218, 608, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 606, 606, 606, 606, 218, 218, 218, 218, + 218, 218, 218, 608, 608, 608, 608, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 106, 106, 106, 106, 106, + 218, 218, 218, 218, 218, 218, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, + 106, 144, 144, 144, 144, 144, 144, 144, 144, 144, + 144, 608, 608, 608, 608, 608, 608, 608, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 606, 606, 606, 606, 606, 606, 606, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 144, 606, 606, 606, 606, 144, 606, 144, + 144, 144, 144, 144, 608, 608, 608, 608, 144, 608, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 144, 144, 144, 606, 606, 606, 606, 144, + 144, 144, 144, 144, 144, 144, 608, 608, 608, 608, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 144, 144, 144, 144, 144, 144, 301, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 606, 606, 606, 606, 606, 606, 606, 301, + 144, 144, 144, 144, 144, 144, 144, 144, 144, 301, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 301, 301, 301, 301, 301, 301, 301, + 301, 301, 301, 608, 608, 608, 608, 608, 608, 608, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 301, 606, 606, 606, 606, 301, + 301, 301, 301, 301, 301, 301, 608, 608, 608, 608, - 606, 301, 301, 301, 301, 301, 301, 301, 301, 301, + 301, 608, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 301, 301, 301, 606, 606, 606, - 606, 301, 301, 301, 301, 301, 301, 301, 301, 301, + 301, 301, 301, 301, 301, 301, 301, 301, 608, 608, + 608, 608, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 302, 606, 606, 606, 606, 606, 606, 606, 606, 302, - 302, 302, 302, 302, 302, 302, 302, 302, 302, 606, - 606, 606, 606, 606, 606, 606, 302, 302, 302, 302, + 301, 302, 608, 608, 608, 608, 608, 608, 608, 608, + 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, + 608, 608, 608, 608, 608, 608, 608, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, - 302, 302, 606, 606, 606, 606, 302, 606, 302, 302, + 302, 302, 302, 608, 608, 608, 608, 302, 608, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, - 302, 302, 302, 302, 606, 606, 606, 606, 302, 302, + 302, 302, 302, 302, 302, 608, 608, 608, 608, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, - 302, 302, 302, 302, 302, 302, 302, 23, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606 + 302, 302, 302, 302, 302, 302, 302, 302, 23, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608 } ; -static yyconst flex_int16_t yy_chk[12335] = +static yyconst flex_int16_t yy_chk[12336] = { 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 6, 7, 5, 6, 7, 8, 9, 10, 8, 9, 10, 13, 14, 33, - 13, 14, 25, 27, 27, 32, 32, 27, 601, 37, - 45, 45, 596, 38, 40, 46, 46, 5, 6, 40, + 13, 14, 25, 27, 27, 32, 32, 27, 603, 37, + 45, 45, 598, 38, 40, 46, 46, 5, 6, 40, 143, 44, 33, 143, 9, 10, 27, 37, 25, 38, 38, 131, 131, 40, 44, 44, 44, 136, 136, 212, - 7, 594, 212, 588, 8, 11, 11, 11, 11, 11, + 7, 596, 212, 590, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 34, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 50, 53, 51, 39, 57, 54, 59, 53, 54, 61, - 579, 50, 51, 53, 50, 11, 11, 11, 11, 563, - 11, 232, 232, 561, 556, 532, 529, 526, 524, 523, - 516, 488, 50, 53, 51, 487, 57, 54, 59, 53, + 581, 50, 51, 53, 50, 11, 11, 11, 11, 565, + 11, 232, 232, 563, 558, 534, 531, 528, 526, 525, + 518, 489, 50, 53, 51, 488, 57, 54, 59, 53, 54, 61, 34, 50, 51, 53, 50, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 42, 48, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 56, 48, 65, 66, 67, 48, 48, 56, 56, 60, 68, 42, 60, - 56, 12, 12, 12, 12, 485, 12, 484, 48, 233, + 56, 12, 12, 12, 12, 486, 12, 485, 48, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 56, 48, 65, 66, 67, 48, 48, 56, 56, 60, 68, 42, 60, 56, 12, 12, 12, 12, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 52, 58, 63, 62, 95, 58, 62, 109, 64, 52, 52, 52, 63, 64, 441, 111, 110, 112, 113, 52, 92, 52, 110, 95, 114, 92, 15, 15, 15, 15, 432, 15, 52, 58, 63, 62, 302, 58, 62, 109, 64, 52, 52, 52, 63, 64, 92, 111, 110, 112, 113, 52, 301, 52, 110, 95, 114, 246, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 96, 96, 106, 115, 96, 116, 117, 132, 135, 132, 215, 220, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 221, 96, 222, 144, 16, 16, 16, 16, 144, 16, 242, 210, 237, 115, 204, 116, 117, 203, 135, 192, 215, 220, 151, 142, 139, 126, 97, 94, 90, 144, 87, 82, 221, 106, 222, 237, 16, 16, 16, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 150, 17, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 148, 157, 169, 176, 223, 148, 157, 169, 176, 316, 224, 124, 225, 226, 17, 17, 17, 17, 81, 17, 80, 17, 77, 76, 72, 71, 148, 157, 169, 176, 70, 47, 316, 43, 36, 28, 223, 23, 2, 1, 0, 150, 224, 124, 225, 226, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 0, 18, 73, 219, 29, 0, 0, 35, 0, 0, 0, 98, 149, 0, 217, 227, 228, 229, 152, 49, 146, 0, 0, 152, 49, 146, 18, 18, 18, 18, 35, 18, 41, 18, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 152, 49, 146, 227, 228, 229, 0, 0, 41, 152, 146, 41, 219, 236, 18, 18, 18, 18, 29, 35, 35, 73, 35, 49, 35, 98, 149, 35, 217, 243, 41, 245, 247, 35, 230, 230, 35, 35, 230, 35, 41, 152, 146, 41, 0, 236, 0, 0, 0, 0, 0, 35, 35, 0, 35, 49, 35, 230, 0, 35, 0, 243, 41, 245, 247, 35, 0, 0, 35, 35, 0, 35, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 0, 248, 249, 0, 250, 0, 251, 0, 0, 108, 91, 91, 91, 91, 91, 91, 91, 0, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 0, 0, 0, 0, 108, 248, 249, 145, 250, 155, 251, 129, 145, 0, 155, 91, 91, 91, 91, 0, 91, 130, 0, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 145, 147, 155, 167, 108, 108, 147, 108, 167, 108, 129, 130, 108, 252, 91, 91, 91, 91, 108, 0, 155, 108, 108, 145, 108, 160, 0, 147, 0, 167, 160, 0, 0, 0, 0, 0, 108, 108, 0, 108, 0, 108, 153, 130, 108, 252, 0, 153, 167, 147, 108, 160, 155, 108, 108, 145, 108, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 154, 153, 253, 253, 160, 154, 254, 133, 133, 133, 133, 133, 133, 167, 147, 0, 0, 153, 255, 0, 0, 256, 156, 0, 153, 153, 154, 156, 158, 257, 0, 154, 0, 158, 253, 253, 160, 258, 254, 133, 133, 133, 133, 133, 133, 154, 159, 161, 156, 153, 255, 159, 161, 256, 158, 156, 153, 153, 156, 164, 162, 257, 163, 154, 164, 162, 158, 163, 0, 258, 165, 166, 159, 161, 168, 165, 166, 154, 0, 168, 0, 161, 0, 0, 170, 164, 162, 156, 163, 170, 156, 162, 0, 0, 0, 159, 165, 166, 158, 171, 168, 163, 172, 164, 171, 0, 260, 172, 0, 0, 170, 173, 163, 161, 174, 166, 173, 175, 165, 174, 0, 0, 175, 162, 168, 171, 177, 159, 172, 178, 170, 177, 171, 163, 178, 164, 0, 173, 260, 0, 174, 179, 0, 175, 163, 0, 179, 166, 171, 171, 165, 172, 177, 180, 261, 178, 168, 174, 180, 0, 173, 178, 170, 0, 171, 177, 0, 179, 181, 182, 175, 177, 184, 181, 182, 0, 0, 184, 262, 180, 171, 171, 183, 172, 180, 186, 261, 183, 179, 174, 186, 179, 173, 178, 181, 182, 185, 177, 184, 187, 188, 185, 175, 177, 187, 188, 0, 181, 183, 189, 262, 186, 0, 183, 189, 263, 180, 182, 0, 264, 179, 184, 185, 179, 191, 187, 188, 265, 0, 191, 0, 185, 266, 186, 0, 189, 0, 183, 187, 181, 267, 268, 0, 269, 189, 183, 270, 263, 188, 182, 191, 264, 271, 184, 272, 273, 274, 191, 191, 265, 191, 277, 191, 185, 266, 186, 191, 191, 191, 183, 187, 278, 267, 268, 191, 269, 189, 0, 270, 0, 188, 314, 314, 0, 271, 314, 272, 273, 274, 191, 191, 0, 191, 277, 191, 0, 0, 0, 191, 191, 191, 0, 0, 278, 314, 0, 191, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 211, 211, 211, 211, 211, 211, 211, 279, 280, 281, 282, 231, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 374, 374, 0, 0, 374, 0, 0, 0, 283, 284, 286, 211, 211, 211, 211, 0, 211, 279, 280, 281, 282, 231, 0, 374, 289, 291, 0, 292, 293, 0, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 283, 284, 286, 211, 211, 211, 211, 235, 235, 235, 235, 235, 235, 259, 276, 259, 289, 291, 259, 292, 293, 294, 276, 295, 296, 297, 298, 299, 259, 303, 304, 305, 259, 294, 306, 307, 308, 310, 311, 235, 235, 235, 235, 235, 235, 259, 276, 259, 309, 312, 259, 313, 315, 294, 276, 295, 296, 297, 298, 299, 259, 303, 304, 305, 259, 294, 306, 307, 308, 310, 311, 309, 317, 318, 319, 320, 0, 322, 323, 324, 309, 312, 325, 313, 315, 326, 327, 328, 330, 331, 332, 333, 334, 335, 336, 339, 340, 341, 342, 343, 345, 346, 348, 349, 317, 318, 319, 320, 309, 322, 323, 324, 347, 351, 325, 352, 347, 326, 327, 328, 330, 331, 332, 333, 334, 335, 336, 339, 340, 341, 342, 343, 345, 346, 348, 349, 353, 354, 355, 356, 309, 357, 358, 359, 347, 351, 360, 352, 347, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 375, 376, 378, 379, 382, 0, 353, 354, 355, 356, 383, 357, 358, 359, 377, 380, 360, 384, 385, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 375, 376, 378, 379, 382, 377, 380, 386, 384, 387, 383, 388, 391, 396, 377, 380, 397, 384, 385, 398, - 399, 401, 402, 404, 405, 406, 408, 409, 410, 411, - 412, 413, 414, 415, 417, 419, 420, 421, 422, 386, - 423, 387, 377, 388, 391, 396, 424, 425, 397, 431, - 433, 398, 399, 401, 402, 404, 405, 406, 408, 409, - 410, 411, 412, 413, 414, 415, 417, 419, 420, 421, - 422, 434, 423, 435, 377, 436, 437, 438, 424, 425, - - 439, 431, 433, 442, 443, 446, 447, 444, 448, 449, - 450, 451, 453, 0, 455, 456, 457, 458, 459, 460, - 462, 463, 454, 434, 464, 435, 442, 436, 437, 438, - 444, 448, 439, 465, 451, 442, 443, 446, 447, 444, - 448, 449, 450, 451, 453, 454, 455, 456, 457, 458, - 459, 460, 462, 463, 454, 466, 464, 467, 468, 470, - 471, 472, 473, 474, 475, 465, 476, 477, 479, 483, - 486, 489, 490, 491, 492, 0, 495, 0, 497, 0, - 0, 0, 502, 503, 494, 504, 496, 466, 498, 467, - 468, 470, 471, 472, 473, 474, 475, 492, 476, 477, - - 479, 483, 486, 489, 490, 491, 492, 494, 495, 496, - 497, 498, 499, 500, 502, 503, 494, 504, 496, 505, - 498, 508, 509, 510, 511, 514, 515, 517, 518, 519, - 520, 522, 527, 528, 530, 499, 500, 531, 0, 0, - 0, 0, 0, 0, 499, 500, 0, 533, 535, 536, - 537, 505, 543, 508, 509, 510, 511, 514, 515, 517, - 518, 519, 520, 522, 527, 528, 530, 544, 545, 531, - 533, 535, 536, 537, 539, 539, 548, 549, 539, 533, - 535, 536, 537, 550, 543, 551, 552, 553, 554, 555, - 558, 559, 562, 0, 565, 0, 566, 539, 568, 544, - - 545, 569, 564, 564, 570, 575, 564, 577, 548, 549, - 578, 580, 585, 587, 589, 550, 591, 551, 552, 553, - 554, 555, 558, 559, 562, 564, 565, 539, 566, 592, - 568, 593, 595, 569, 600, 602, 570, 575, 604, 577, - 0, 0, 578, 580, 585, 587, 589, 0, 591, 0, - 0, 0, 0, 0, 0, 564, 0, 0, 0, 0, - 0, 592, 0, 593, 595, 0, 600, 602, 0, 0, - 604, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 608, 609, 609, 609, 609, 609, 609, 609, 609, 609, + 399, 401, 402, 404, 405, 406, 407, 408, 409, 410, + 411, 412, 413, 414, 415, 417, 419, 420, 421, 386, + 422, 387, 377, 388, 391, 396, 423, 424, 397, 425, + 431, 398, 399, 401, 402, 404, 405, 406, 407, 408, + 409, 410, 411, 412, 413, 414, 415, 417, 419, 420, + 421, 433, 422, 434, 377, 435, 436, 437, 423, 424, + + 438, 425, 431, 439, 443, 446, 447, 442, 444, 449, + 448, 450, 0, 453, 455, 0, 456, 457, 458, 459, + 460, 451, 462, 433, 454, 434, 463, 435, 436, 437, + 442, 444, 438, 448, 464, 439, 443, 446, 447, 442, + 444, 449, 448, 450, 451, 453, 455, 454, 456, 457, + 458, 459, 460, 451, 462, 465, 454, 466, 463, 467, + 468, 469, 471, 472, 473, 474, 464, 475, 476, 477, + 478, 480, 484, 487, 490, 491, 492, 0, 496, 0, + 498, 0, 0, 0, 503, 504, 493, 465, 495, 466, + 497, 467, 468, 469, 471, 472, 473, 474, 499, 475, + + 476, 477, 478, 480, 484, 487, 490, 491, 492, 493, + 496, 495, 498, 497, 500, 501, 503, 504, 493, 505, + 495, 499, 497, 506, 509, 510, 511, 512, 516, 517, + 499, 519, 520, 521, 522, 524, 529, 500, 501, 530, + 532, 533, 545, 0, 0, 0, 500, 501, 0, 546, + 547, 505, 535, 537, 538, 506, 509, 510, 511, 512, + 516, 517, 550, 519, 520, 521, 522, 524, 529, 539, + 0, 530, 532, 533, 545, 535, 537, 538, 551, 541, + 541, 546, 547, 541, 535, 537, 538, 552, 553, 554, + 555, 556, 539, 557, 550, 560, 561, 564, 567, 568, + + 0, 539, 541, 566, 566, 570, 571, 566, 572, 577, + 551, 579, 580, 582, 587, 589, 591, 593, 594, 552, + 553, 554, 555, 556, 0, 557, 566, 560, 561, 564, + 567, 568, 541, 595, 597, 602, 604, 570, 571, 606, + 572, 577, 0, 579, 580, 582, 587, 589, 591, 593, + 594, 0, 0, 0, 0, 0, 566, 0, 0, 0, + 0, 0, 0, 0, 0, 595, 597, 602, 604, 0, + 0, 606, 609, 609, 609, 609, 609, 609, 609, 609, + 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, - 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, - 609, 609, 609, 609, 609, 609, 610, 610, 610, 610, + 609, 609, 609, 609, 609, 609, 609, 610, 610, 610, + 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, - 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, - 610, 611, 611, 611, 611, 611, 611, 611, 611, 611, + 610, 610, 611, 611, 611, 611, 611, 611, 611, 611, + 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, - 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, - 611, 611, 611, 611, 611, 611, 612, 612, 612, 612, + 611, 611, 611, 611, 611, 611, 611, 612, 612, 612, + 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, - 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, + 612, 612, 613, 613, 613, 613, 613, 613, 613, 613, - 612, 613, 613, 613, 613, 613, 613, 613, 613, 613, + 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, - 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, - 613, 613, 613, 613, 613, 613, 614, 614, 614, 614, + 613, 613, 613, 613, 613, 613, 613, 614, 614, 614, + 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, - 614, 614, 614, 614, 614, 0, 614, 614, 614, 614, + 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, - 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, - 614, 615, 615, 615, 615, 615, 615, 615, 615, 615, + 614, 614, 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, - 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, - 615, 615, 615, 615, 615, 615, 616, 616, 616, 616, + 615, 615, 615, 615, 615, 615, 615, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, - 616, 616, 0, 0, 0, 0, 616, 0, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 0, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, - 616, 616, 616, 616, 0, 0, 0, 0, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, - 616, 616, 616, 616, 616, 616, 616, 617, 617, 617, + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + 616, 616, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, - 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, + 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, - 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, + 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, + 617, 617, 617, 617, 617, 617, 617, 618, 618, 618, + 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, + 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, + 618, 618, 618, 0, 0, 0, 0, 618, 0, 618, - 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, - 617, 617, 618, 618, 618, 618, 618, 618, 618, 618, - 618, 618, 0, 0, 0, 0, 0, 0, 0, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 0, 0, 0, 0, 618, - 0, 618, 618, 618, 618, 618, 618, 618, 618, 618, - 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, - 618, 618, 618, 618, 618, 618, 618, 0, 0, 0, - 0, 618, 618, 618, 618, 618, 618, 618, 618, 618, - 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, + 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, - 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, + 618, 618, 618, 618, 618, 618, 618, 618, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, + 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, - 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, - 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, + 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, - 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, - 619, 619, 619, 619, 619, 620, 620, 620, 620, 620, - 620, 620, 620, 620, 0, 620, 620, 0, 620, 620, - 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, - 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, - 620, 620, 620, 620, 620, 620, 0, 620, 620, 620, - 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, - 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, - 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, - 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, - 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, + 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, + 619, 619, 619, 620, 620, 620, 620, 620, 620, 620, + 620, 620, 620, 0, 0, 0, 0, 0, 0, 0, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, + 620, 620, 620, 620, 620, 620, 0, 0, 0, 0, + 620, 0, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, + 620, 620, 620, 620, 620, 620, 620, 620, 0, 0, + 0, 0, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, - 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, - 621, 621, 621, 621, 621, 621, 621, 621, 621, 0, - 621, 621, 0, 621, 621, 621, 621, 621, 621, 621, + 620, 621, 621, 621, 621, 621, 621, 621, 621, 621, + 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, + 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, + 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, - 621, 621, 0, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, - 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, - 621, 621, 621, 621, 621, 622, 622, 622, 622, 622, + 621, 621, 621, 621, 621, 621, 622, 622, 622, 622, + 622, 622, 622, 622, 622, 0, 622, 622, 0, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, - 622, 0, 0, 0, 0, 622, 0, 622, 622, 622, + 622, 622, 622, 622, 622, 622, 622, 0, 622, 622, + 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, - 622, 622, 622, 0, 0, 0, 0, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, - 622, 622, 622, 622, 622, 622, 623, 623, 623, 623, + 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, + 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, + 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, + + 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, + 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, + 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, + 622, 623, 623, 623, 623, 623, 623, 623, 623, 623, + 0, 623, 623, 0, 623, 623, 623, 623, 623, 623, + 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, + 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, + 623, 623, 623, 0, 623, 623, 623, 623, 623, 623, - 623, 623, 0, 0, 0, 0, 623, 0, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, - 623, 623, 623, 623, 0, 0, 0, 0, 623, 623, + 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, + 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, - 623, 623, 623, 623, 623, 623, 623, 624, 624, 624, - 624, 624, 624, 624, 624, 624, 624, 0, 0, 0, - 0, 0, 0, 0, 624, 624, 624, 624, 624, 624, + 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, + 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, + 623, 623, 623, 623, 623, 623, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, - 0, 0, 0, 0, 624, 0, 624, 624, 624, 624, + 624, 624, 0, 0, 0, 0, 624, 0, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, - 624, 624, 0, 0, 0, 0, 624, 624, 624, 624, + 624, 624, 624, 624, 0, 0, 0, 0, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, - 624, 624, 624, 624, 624, 625, 625, 625, 625, 625, - 625, 625, 625, 625, 0, 625, 625, 0, 625, 625, - 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, - + 624, 624, 624, 624, 624, 624, 624, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, + + 625, 625, 625, 0, 0, 0, 0, 625, 0, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, + 625, 625, 625, 625, 625, 0, 0, 0, 0, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, - 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, - 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, - 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, - 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, - - 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, - 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, - 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, - 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, + 625, 625, 625, 625, 625, 625, 625, 625, 626, 626, + 626, 626, 626, 626, 626, 626, 626, 626, 0, 0, + 0, 0, 0, 0, 0, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, + 626, 0, 0, 0, 0, 626, 0, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, + 626, 626, 626, 0, 0, 0, 0, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 626, 626, 626, 627, 0, 0, 0, 0, - 627, 0, 0, 0, 0, 0, 0, 0, 0, 627, + 626, 626, 626, 626, 626, 626, 627, 627, 627, 627, + 627, 627, 627, 627, 627, 0, 627, 627, 0, 627, + 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, - 627, 627, 627, 627, 627, 627, 627, 627, 627, 0, - 0, 627, 0, 0, 0, 0, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, - 627, 627, 0, 0, 0, 0, 627, 0, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, - 627, 627, 627, 627, 0, 0, 0, 0, 627, 627, + 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, + 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, + 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, + 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, - 627, 627, 627, 627, 627, 627, 627, 628, 628, 628, - 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, - 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, + 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, + 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, + 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, + 627, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, - 628, 628, 628, 628, 628, 628, 0, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, - 628, 628, 629, 629, 629, 629, 629, 629, 629, 629, - 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, - 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, - 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, + 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, + 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, + 628, 628, 628, 628, 628, 628, 629, 0, 0, 0, + 0, 629, 0, 0, 0, 0, 0, 0, 0, 0, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, + 0, 0, 629, 0, 0, 0, 0, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, + 629, 629, 629, 0, 0, 0, 0, 629, 0, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, - 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, - 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, - 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, + 629, 629, 629, 629, 629, 0, 0, 0, 0, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, - 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, - 629, 629, 629, 629, 629, 629, 629, 630, 630, 630, + 629, 629, 629, 629, 629, 629, 629, 629, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, + 630, 630, 630, 630, 630, 630, 630, 0, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, - 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, - 630, 630, 631, 631, 631, 631, 631, 631, 631, 631, - 631, 631, 0, 0, 0, 0, 0, 0, 0, 631, + 630, 630, 630, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, - 631, 631, 631, 631, 631, 0, 0, 0, 0, 631, - 0, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, - 631, 631, 631, 631, 631, 631, 631, 0, 0, 0, - 0, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, - 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, + 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, - 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, + 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, - 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, - 632, 632, 632, 632, 632, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, + 632, 632, 632, 633, 633, 633, 633, 633, 633, 633, + 633, 633, 633, 0, 0, 0, 0, 0, 0, 0, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, + 633, 633, 633, 633, 633, 633, 0, 0, 0, 0, + 633, 0, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, + 633, 633, 633, 633, 633, 633, 633, 633, 0, 0, + 0, 0, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, - 633, 633, 633, 633, 633, 633, 633, 633, 633, 633, + 633, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, - 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, - 634, 634, 634, 634, 634, 635, 635, 635, 635, 635, - 635, 635, 635, 635, 0, 635, 635, 0, 635, 635, + 634, 634, 634, 634, 634, 634, 635, 635, 635, 635, + 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, + 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, + 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, - 635, 635, 635, 635, 635, 635, 0, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, - 635, 635, 635, 635, 635, 635, 635, 635, 635, 635, + 635, 636, 636, 636, 636, 636, 636, 636, 636, 636, - 636, 636, 636, 636, 636, 636, 636, 636, 636, 0, - 636, 636, 0, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, - 636, 636, 0, 636, 636, 636, 636, 636, 636, 636, + 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, + 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, + 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, - 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, - 636, 636, 636, 636, 636, 637, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 637, - 637, 637, 637, 637, 637, 637, 637, 637, 637, 0, - 0, 0, 0, 0, 0, 0, 637, 637, 637, 637, + 636, 636, 636, 636, 636, 636, 637, 637, 637, 637, + 637, 637, 637, 637, 637, 0, 637, 637, 0, 637, + 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, + 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, + 637, 637, 637, 637, 637, 637, 637, 0, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, - 637, 637, 0, 0, 0, 0, 637, 0, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, - 637, 637, 637, 637, 0, 0, 0, 0, 637, 637, + 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, + 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, - 637, 637, 637, 637, 637, 637, 637, 638, 0, 0, - 0, 0, 0, 0, 0, 0, 638, 638, 638, 638, - 638, 638, 638, 638, 638, 638, 0, 0, 0, 0, + 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, + 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, + 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, - 0, 0, 0, 638, 638, 638, 638, 638, 638, 638, + 637, 638, 638, 638, 638, 638, 638, 638, 638, 638, + 0, 638, 638, 0, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, - 638, 638, 638, 638, 638, 638, 638, 638, 638, 0, - 0, 0, 0, 638, 0, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, - 638, 0, 0, 0, 0, 638, 638, 638, 638, 638, + 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, + 638, 638, 638, 0, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, - 638, 638, 638, 638, 639, 639, 639, 639, 639, 639, + 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, - 639, 639, 639, 639, 0, 0, 0, 0, 0, 0, - 0, 639, 639, 639, 639, 639, 639, 639, 639, 639, + 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, + 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, + 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, + 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, + 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, + 638, 638, 638, 638, 638, 638, 639, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, - 639, 639, 639, 639, 639, 639, 639, 0, 0, 0, - 0, 639, 0, 639, 639, 639, 639, 639, 639, 639, + 0, 0, 0, 0, 0, 0, 0, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, - 639, 639, 639, 639, 639, 639, 639, 639, 639, 0, - 0, 0, 0, 639, 639, 639, 639, 639, 639, 639, + 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, + 639, 639, 639, 0, 0, 0, 0, 639, 0, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, - 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, + 639, 639, 639, 639, 639, 0, 0, 0, 0, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, + 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, + 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, + 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, + 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, + 639, 639, 639, 639, 639, 639, 639, 639, 640, 0, + 0, 0, 0, 0, 0, 0, 0, 640, 640, 640, + 640, 640, 640, 640, 640, 640, 640, 0, 0, 0, - 639, 639, 640, 640, 640, 640, 640, 640, 640, 640, - 640, 0, 640, 640, 0, 640, 640, 640, 640, 640, - 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, + 0, 0, 0, 0, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, + 0, 0, 0, 0, 640, 0, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, + 640, 640, 0, 0, 0, 0, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, - 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, - - 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, - 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, - 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, - 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, - 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, - 640, 640, 640, 640, 640, 640, 640, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, + 640, 640, 640, 640, 640, 641, 641, 641, 641, 641, + 641, 641, 641, 641, 641, 0, 0, 0, 0, 0, + 0, 0, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, + 641, 641, 641, 641, 641, 641, 641, 641, 0, 0, + 0, 0, 641, 0, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, + 0, 0, 0, 0, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, - 641, 641, 642, 642, 642, 642, 642, 642, 642, 642, + 641, 641, 641, 642, 642, 642, 642, 642, 642, 642, + 642, 642, 0, 642, 642, 0, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, - 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, - 642, 642, 642, 642, 642, 642, 642, 643, 643, 643, - 643, 643, 643, 643, 643, 643, 643, 0, 0, 0, - 0, 0, 0, 0, 643, 643, 643, 643, 643, 643, + 642, 642, 642, 642, 642, 642, 642, 642, 643, 643, + 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, + 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, + 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, - 0, 0, 0, 0, 643, 0, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, - 643, 643, 0, 0, 0, 0, 643, 643, 643, 643, + 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, + 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, - 643, 643, 643, 643, 643, 644, 644, 644, 644, 644, - 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, - 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, + 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, + 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, + 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, - 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, - 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, + 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, + 643, 643, 643, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, + 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, + 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, + 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, + 644, 644, 644, 644, 644, 644, 644, 644, 645, 645, + 645, 645, 645, 645, 645, 645, 645, 645, 0, 0, + 0, 0, 0, 0, 0, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 0, 0, 0, 0, 0, 0, 0, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, + 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 0, 0, 0, 0, 645, 0, 645, + 645, 0, 0, 0, 0, 645, 0, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - - 645, 645, 645, 645, 645, 0, 0, 0, 0, 645, + 645, 645, 645, 0, 0, 0, 0, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, + 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 645, 645, 645, 645, 645, 645, 645, 645, 646, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 646, 646, 646, 646, 646, 646, 646, 646, - 646, 646, 0, 0, 0, 0, 0, 0, 0, 646, + 645, 645, 645, 645, 645, 645, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, - 646, 646, 646, 646, 646, 0, 0, 0, 0, 646, - 0, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, - 646, 646, 646, 646, 646, 646, 646, 0, 0, 0, - 0, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, - 647, 0, 0, 0, 0, 0, 0, 0, 0, 647, - 647, 647, 647, 647, 647, 647, 647, 647, 647, 0, - 0, 0, 0, 0, 0, 0, 647, 647, 647, 647, - 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, + 646, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 0, 0, 0, 0, 0, 0, 0, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, - 647, 647, 0, 0, 0, 0, 647, 0, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 0, 0, 0, 0, 647, 0, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, - 647, 647, 647, 647, 0, 0, 0, 0, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + + 647, 647, 647, 647, 647, 647, 0, 0, 0, 0, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, - 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, - 647, 647, 647, 647, 647, 647, 647, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 606, 606, 606, 606, - 606, 606, 606, 606 + 647, 647, 647, 647, 647, 647, 647, 647, 647, 648, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 0, 0, 0, 0, 0, 0, 0, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 0, 0, 0, 0, + + 648, 0, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 0, 0, + 0, 0, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, + 648, 649, 0, 0, 0, 0, 0, 0, 0, 0, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 0, 0, 0, 0, 0, 0, 0, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 0, 0, 0, 0, 649, 0, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 0, 0, 0, 0, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, + 649, 649, 649, 649, 649, 649, 649, 649, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 608, 608 } ; -static yyconst yy_state_type yy_NUL_trans[606] = +static yyconst yy_state_type yy_NUL_trans[608] = { 0, 24, 24, 26, 26, 74, 74, 78, 78, 74, 74, 26, 26, 26, 26, 88, 88, 26, 26, 26, 26, 26, 26, 0, 93, 0, 0, 0, 0, 98, 0, 0, 0, 0, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 0, 196, 0, 0, 0, 199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 0, 0, 207, 0, 93, 0, 0, 0, 0, 98, 0, 217, 0, 0, 0, 0, 0, 106, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 0, 0, 0, 196, 0, 0, 199, 0, 0, 0, 0, 0, 0, 0, 207, 0, 0, 0, 207, 207, 0, 0, 0, 0, 98, 0, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0 } ; -static yyconst flex_int16_t yy_rule_linenum[142] = +static yyconst flex_int16_t yy_rule_linenum[143] = { 0, 79, 84, 91, 98, 105, 112, 118, 122, 134, 138, 143, 147, 157, 162, 163, 168, 171, 175, 177, 185, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, - 266, 267, 268, 273, 274, 275, 276, 277, 278, 279, + 266, 267, 268, 269, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, - 304, 305, 306, 307, 308, 309, 310, 315, 316, 317, - 318, 319, 323, 330, 336, 346, 353, 359, 372, 376, - 384 + 300, 305, 306, 307, 308, 309, 310, 311, 316, 317, + 318, 319, 320, 324, 331, 337, 347, 354, 360, 373, + 377, 385 } ; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() (yyg->yy_more_flag = 1) #define YY_MORE_ADJ yyg->yy_more_len #define YY_RESTORE_YY_MORE_OFFSET #line 1 "scanner.l" #line 2 "scanner.l" #include "ast.hpp" #define push_state(s) xhp_new_push_state(s, yyg) #define pop_state() xhp_new_pop_state(yyg) #define set_state(s) xhp_set_state(s, yyg) #define last_token() yyextra->last_token #define YY_USER_ACTION \ if (!yyg->yy_more_len) \ yyextra->first_lineno = yyextra->lineno; #define pttok(t, txt) \ yyextra->token_list.push_back(new xhpast::Token(t, txt, yyextra->list_size++)); \ *yylval = new xhpast::Node(0, yyextra->list_size - 1); #define ptok(t) \ pttok(t, yytext); #define tok(t) \ ptok(t); \ return yy_token(t, yyg) #define YY_USER_INIT \ if (yyextra->insert_token) { \ yyg->yy_init = 0; \ int ft = yyextra->insert_token; \ yyextra->insert_token = 0; \ return yy_token(ft, yyg); \ } using namespace std; const char* yytokname(int tok); static int yy_token(int tok, struct yyguts_t* yyg); static void yy_scan_newlines(const char* text, struct yyguts_t* yyg); /* PHP allows IF or if */ /* I think an interactive scanner is required because of the bison state * pushing we do. I'm putting an explicit interactive declaration here in case * someone tries adding -CF or whatever to the make flags. */ /* The different lexing states. Note that the transitions are done either * in the lex actions, or in a generic manner in yy_token(). */ #line 3538 "scanner.lex.cpp" #define INITIAL 0 #define PHP 1 #define PHP_COMMENT 2 #define PHP_EOL_COMMENT 3 #define PHP_DOC_COMMENT 4 #define PHP_HEREDOC_START 5 #define PHP_HEREDOC_NSTART 6 #define PHP_HEREDOC_NEWLINE 7 #define PHP_NO_RESERVED_WORDS 8 #define PHP_NO_RESERVED_WORDS_PERSIST 9 #define PHP_ 10 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ /* %if-c-only */ #include /* %endif */ /* %if-c++-only */ /* %endif */ #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif /* %if-c-only Reentrant structure and macros (non-C++). */ /* %if-reentrant */ /* Holds the entire state of the reentrant scanner. */ struct yyguts_t { /* User-defined. Not touched by flex. */ YY_EXTRA_TYPE yyextra_r; /* The rest are the same as the globals declared in the non-reentrant scanner. */ FILE *yyin_r, *yyout_r; size_t yy_buffer_stack_top; /**< index of top of stack. */ size_t yy_buffer_stack_max; /**< capacity of stack. */ YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */ char yy_hold_char; yy_size_t yy_n_chars; yy_size_t yyleng_r; char *yy_c_buf_p; int yy_init; int yy_start; int yy_did_buffer_switch_on_eof; int yy_start_stack_ptr; int yy_start_stack_depth; int *yy_start_stack; yy_state_type yy_last_accepting_state; char* yy_last_accepting_cpos; int yylineno_r; int yy_flex_debug_r; char *yytext_r; int yy_more_flag; int yy_more_len; YYSTYPE * yylval_r; }; /* end struct yyguts_t */ /* %if-c-only */ static int yy_init_globals (yyscan_t yyscanner ); /* %endif */ /* %if-reentrant */ /* This must go here because YYSTYPE and YYLTYPE are included * from bison output in section 1.*/ # define yylval yyg->yylval_r int xhpastlex_init (yyscan_t* scanner); int xhpastlex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner); /* %endif */ /* %endif End reentrant structures and macros. */ /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int xhpastlex_destroy (yyscan_t yyscanner ); int xhpastget_debug (yyscan_t yyscanner ); void xhpastset_debug (int debug_flag ,yyscan_t yyscanner ); YY_EXTRA_TYPE xhpastget_extra (yyscan_t yyscanner ); void xhpastset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner ); FILE *xhpastget_in (yyscan_t yyscanner ); void xhpastset_in (FILE * in_str ,yyscan_t yyscanner ); FILE *xhpastget_out (yyscan_t yyscanner ); void xhpastset_out (FILE * out_str ,yyscan_t yyscanner ); yy_size_t xhpastget_leng (yyscan_t yyscanner ); char *xhpastget_text (yyscan_t yyscanner ); int xhpastget_lineno (yyscan_t yyscanner ); void xhpastset_lineno (int line_number ,yyscan_t yyscanner ); /* %if-bison-bridge */ YYSTYPE * xhpastget_lval (yyscan_t yyscanner ); void xhpastset_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner ); /* %endif */ /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int xhpastwrap (yyscan_t yyscanner ); #else extern int xhpastwrap (yyscan_t yyscanner ); #endif #endif /* %not-for-header */ static void yyunput (int c,char *buf_ptr ,yyscan_t yyscanner); /* %ok-for-header */ /* %endif */ #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ #ifdef __cplusplus static int yyinput (yyscan_t yyscanner ); #else static int input (yyscan_t yyscanner ); #endif /* %ok-for-header */ /* %endif */ #endif /* %if-c-only */ static void yy_push_state (int new_state ,yyscan_t yyscanner); static void yy_pop_state (yyscan_t yyscanner ); static int yy_top_state (yyscan_t yyscanner ); /* %endif */ /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* %if-c-only Standard (non-C++) definition */ /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO fwrite( yytext, yyleng, 1, yyout ) /* %endif */ /* %if-c++-only C++ definition */ /* %endif */ #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ /* %% [5.0] fread()/read() definition of YY_INPUT goes here unless we're doing C++ \ */\ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ yy_size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ /* %if-c++-only C++ definition \ */\ /* %endif */ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR /* %if-c-only */ #define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ #endif /* %if-tables-serialization structures and prototypes */ /* %not-for-header */ /* %ok-for-header */ /* %not-for-header */ /* %tables-yydmap generated elements */ /* %endif */ /* end tables serialization structures and prototypes */ /* %ok-for-header */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 /* %if-c-only Standard (non-C++) definition */ extern int xhpastlex \ (YYSTYPE * yylval_param ,yyscan_t yyscanner); #define YY_DECL int xhpastlex \ (YYSTYPE * yylval_param , yyscan_t yyscanner) /* %endif */ /* %if-c++-only C++ definition */ /* %endif */ #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif /* %% [6.0] YY_RULE_SETUP definition goes here */ #define YY_RULE_SETUP \ YY_USER_ACTION /* %not-for-header */ /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* %% [7.0] user's declarations go here */ #line 75 "scanner.l" /* Open / close PHP + inline HTML */ #line 3856 "scanner.lex.cpp" yylval = yylval_param; if ( !yyg->yy_init ) { yyg->yy_init = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yyg->yy_start ) yyg->yy_start = 1; /* first start state */ if ( ! yyin ) /* %if-c-only */ yyin = stdin; /* %endif */ /* %if-c++-only */ /* %endif */ if ( ! yyout ) /* %if-c-only */ yyout = stdout; /* %endif */ /* %if-c++-only */ /* %endif */ if ( ! YY_CURRENT_BUFFER ) { xhpastensure_buffer_stack (yyscanner); YY_CURRENT_BUFFER_LVALUE = xhpast_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); } xhpast_load_buffer_state(yyscanner ); } while ( 1 ) /* loops until end-of-file is reached */ { /* %% [8.0] yymore()-related code goes here */ yyg->yy_more_len = 0; if ( yyg->yy_more_flag ) { yyg->yy_more_len = yyg->yy_c_buf_p - yyg->yytext_ptr; yyg->yy_more_flag = 0; } yy_cp = yyg->yy_c_buf_p; /* Support of yytext. */ *yy_cp = yyg->yy_hold_char; /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; /* %% [9.0] code to set up and find next match goes here */ yy_current_state = yyg->yy_start; yy_match: do { register YY_CHAR yy_c = YY_SC_TO_UI(*yy_cp); if ( yy_accept[yy_current_state] ) { yyg->yy_last_accepting_state = yy_current_state; yyg->yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } - while ( yy_base[yy_current_state] != 12078 ); + while ( yy_base[yy_current_state] != 12079 ); yy_find_action: /* %% [10.0] code to find the action number goes here */ yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = yyg->yy_last_accepting_cpos; yy_current_state = yyg->yy_last_accepting_state; yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; /* %% [11.0] code for yylineno update goes here */ do_action: /* This label is used only to access EOF actions. */ /* %% [12.0] debug code goes here */ if ( yy_flex_debug ) { if ( yy_act == 0 ) fprintf( stderr, "--scanner backing up\n" ); - else if ( yy_act < 142 ) + else if ( yy_act < 143 ) fprintf( stderr, "--accepting rule at line %ld (\"%s\")\n", (long)yy_rule_linenum[yy_act], yytext ); - else if ( yy_act == 142 ) + else if ( yy_act == 143 ) fprintf( stderr, "--accepting default rule (\"%s\")\n", yytext ); - else if ( yy_act == 143 ) + else if ( yy_act == 144 ) fprintf( stderr, "--(end of buffer or a NUL)\n" ); else fprintf( stderr, "--EOF (start condition %d)\n", YY_START ); } switch ( yy_act ) { /* beginning of action switch */ /* %% [13.0] actions go here */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = yyg->yy_hold_char; yy_cp = yyg->yy_last_accepting_cpos; yy_current_state = yyg->yy_last_accepting_state; goto yy_find_action; case 1: /* rule 1 can match eol */ YY_RULE_SETUP #line 79 "scanner.l" { yy_scan_newlines(yytext + 5, yyg); // the state transition will be done in yy_token() tok(T_OPEN_TAG); } YY_BREAK case 2: YY_RULE_SETUP #line 84 "scanner.l" { if (yyextra->short_tags) { tok(T_OPEN_TAG); } else { tok(T_INLINE_HTML); } } YY_BREAK case 3: YY_RULE_SETUP #line 91 "scanner.l" { if (yyextra->short_tags) { tok(T_OPEN_TAG_WITH_ECHO); } else { tok(T_INLINE_HTML); } } YY_BREAK case 4: YY_RULE_SETUP #line 98 "scanner.l" { if (yyextra->asp_tags) { tok(T_OPEN_TAG); } else { tok(T_INLINE_HTML); } } YY_BREAK case 5: YY_RULE_SETUP #line 105 "scanner.l" { if (yyextra->asp_tags) { tok(T_OPEN_TAG_WITH_ECHO); } else { tok(T_INLINE_HTML); } } YY_BREAK case 6: /* rule 6 can match eol */ YY_RULE_SETUP #line 112 "scanner.l" { yy_scan_newlines(yytext, yyg); tok(T_INLINE_HTML); } YY_BREAK case 7: /* rule 7 can match eol */ YY_RULE_SETUP #line 118 "scanner.l" { yy_scan_newlines(yytext + 2, yyg); tok(T_CLOSE_TAG); } YY_BREAK case 8: YY_RULE_SETUP #line 122 "scanner.l" { if (yyextra->asp_tags) { tok(T_CLOSE_TAG); } else { yyless(1); tok(yytext[0]); } } YY_BREAK /* Comments and whitespace */ case 9: YY_RULE_SETUP #line 134 "scanner.l" { push_state(PHP_EOL_COMMENT); yymore(); } YY_BREAK case 10: /* rule 10 can match eol */ YY_RULE_SETUP #line 138 "scanner.l" { yy_scan_newlines(yytext + 3, yyg); push_state(PHP_DOC_COMMENT); yymore(); } YY_BREAK case 11: YY_RULE_SETUP #line 143 "scanner.l" { push_state(PHP_COMMENT); yymore(); } YY_BREAK case 12: /* rule 12 can match eol */ YY_RULE_SETUP #line 147 "scanner.l" { yy_scan_newlines(yytext, yyg); ptok(T_WHITESPACE); } YY_BREAK case YY_STATE_EOF(PHP_EOL_COMMENT): #line 152 "scanner.l" { ptok(T_COMMENT); pop_state(); } YY_BREAK case 13: /* rule 13 can match eol */ YY_RULE_SETUP #line 157 "scanner.l" { ++yyextra->lineno; ptok(T_COMMENT); pop_state(); } YY_BREAK case 14: YY_RULE_SETUP #line 162 "scanner.l" yymore(); YY_BREAK case 15: YY_RULE_SETUP #line 163 "scanner.l" { yyless(yyleng - 2); ptok(T_COMMENT); pop_state(); } YY_BREAK case 16: YY_RULE_SETUP #line 168 "scanner.l" yymore(); YY_BREAK case 17: /* rule 17 can match eol */ YY_RULE_SETUP #line 171 "scanner.l" { ++yyextra->lineno; yymore(); } YY_BREAK case 18: YY_RULE_SETUP #line 175 "scanner.l" yymore(); YY_BREAK case 19: YY_RULE_SETUP #line 177 "scanner.l" { ptok(T_DOC_COMMENT); pop_state(); } YY_BREAK case YY_STATE_EOF(PHP_DOC_COMMENT): #line 181 "scanner.l" { ptok(T_DOC_COMMENT); pop_state(); } YY_BREAK case 20: YY_RULE_SETUP #line 185 "scanner.l" { ptok(T_COMMENT); pop_state(); } YY_BREAK case YY_STATE_EOF(PHP_COMMENT): #line 189 "scanner.l" { ptok(T_COMMENT); pop_state(); } YY_BREAK /* Reserved words */ case 21: YY_RULE_SETUP #line 196 "scanner.l" tok(T_INCLUDE); YY_BREAK case 22: YY_RULE_SETUP #line 197 "scanner.l" tok(T_INCLUDE_ONCE); YY_BREAK case 23: YY_RULE_SETUP #line 198 "scanner.l" tok(T_EVAL); YY_BREAK case 24: YY_RULE_SETUP #line 199 "scanner.l" tok(T_REQUIRE); YY_BREAK case 25: YY_RULE_SETUP #line 200 "scanner.l" tok(T_REQUIRE_ONCE); YY_BREAK case 26: YY_RULE_SETUP #line 201 "scanner.l" tok(T_LOGICAL_OR); YY_BREAK case 27: YY_RULE_SETUP #line 202 "scanner.l" tok(T_LOGICAL_XOR); YY_BREAK case 28: YY_RULE_SETUP #line 203 "scanner.l" tok(T_LOGICAL_AND); YY_BREAK case 29: YY_RULE_SETUP #line 204 "scanner.l" tok(T_PRINT); YY_BREAK case 30: YY_RULE_SETUP #line 205 "scanner.l" tok(T_INSTANCEOF); YY_BREAK case 31: YY_RULE_SETUP #line 206 "scanner.l" tok(T_NEW); YY_BREAK case 32: YY_RULE_SETUP #line 207 "scanner.l" tok(T_CLONE); YY_BREAK case 33: YY_RULE_SETUP #line 208 "scanner.l" tok(T_EXIT); YY_BREAK case 34: YY_RULE_SETUP #line 209 "scanner.l" tok(T_IF); YY_BREAK case 35: YY_RULE_SETUP #line 210 "scanner.l" tok(T_ELSEIF); YY_BREAK case 36: YY_RULE_SETUP #line 211 "scanner.l" tok(T_ELSE); YY_BREAK case 37: YY_RULE_SETUP #line 212 "scanner.l" tok(T_ENDIF); YY_BREAK case 38: YY_RULE_SETUP #line 213 "scanner.l" tok(T_ECHO); YY_BREAK case 39: YY_RULE_SETUP #line 214 "scanner.l" tok(T_DO); YY_BREAK case 40: YY_RULE_SETUP #line 215 "scanner.l" tok(T_WHILE); YY_BREAK case 41: YY_RULE_SETUP #line 216 "scanner.l" tok(T_ENDWHILE); YY_BREAK case 42: YY_RULE_SETUP #line 217 "scanner.l" tok(T_FOR); YY_BREAK case 43: YY_RULE_SETUP #line 218 "scanner.l" tok(T_ENDFOR); YY_BREAK case 44: YY_RULE_SETUP #line 219 "scanner.l" tok(T_FOREACH); YY_BREAK case 45: YY_RULE_SETUP #line 220 "scanner.l" tok(T_ENDFOREACH); YY_BREAK case 46: YY_RULE_SETUP #line 221 "scanner.l" tok(T_DECLARE); YY_BREAK case 47: YY_RULE_SETUP #line 222 "scanner.l" tok(T_ENDDECLARE); YY_BREAK case 48: YY_RULE_SETUP #line 223 "scanner.l" tok(T_AS); YY_BREAK case 49: YY_RULE_SETUP #line 224 "scanner.l" tok(T_SWITCH); YY_BREAK case 50: YY_RULE_SETUP #line 225 "scanner.l" tok(T_ENDSWITCH); YY_BREAK case 51: YY_RULE_SETUP #line 226 "scanner.l" tok(T_CASE); YY_BREAK case 52: YY_RULE_SETUP #line 227 "scanner.l" tok(T_DEFAULT); YY_BREAK case 53: YY_RULE_SETUP #line 228 "scanner.l" tok(T_BREAK); YY_BREAK case 54: YY_RULE_SETUP #line 229 "scanner.l" tok(T_CONTINUE); YY_BREAK case 55: YY_RULE_SETUP #line 230 "scanner.l" tok(T_GOTO); YY_BREAK case 56: YY_RULE_SETUP #line 231 "scanner.l" tok(T_FUNCTION); YY_BREAK case 57: YY_RULE_SETUP #line 232 "scanner.l" tok(T_CONST); YY_BREAK case 58: YY_RULE_SETUP #line 233 "scanner.l" tok(T_RETURN); YY_BREAK case 59: YY_RULE_SETUP #line 234 "scanner.l" tok(T_TRY); YY_BREAK case 60: YY_RULE_SETUP #line 235 "scanner.l" tok(T_CATCH); YY_BREAK case 61: YY_RULE_SETUP #line 236 "scanner.l" tok(T_THROW); YY_BREAK case 62: YY_RULE_SETUP #line 237 "scanner.l" tok(T_USE); YY_BREAK case 63: YY_RULE_SETUP #line 238 "scanner.l" tok(T_GLOBAL); YY_BREAK case 64: YY_RULE_SETUP #line 239 "scanner.l" tok(T_STATIC); YY_BREAK case 65: YY_RULE_SETUP #line 240 "scanner.l" tok(T_ABSTRACT); YY_BREAK case 66: YY_RULE_SETUP #line 241 "scanner.l" tok(T_FINAL); YY_BREAK case 67: YY_RULE_SETUP #line 242 "scanner.l" tok(T_PRIVATE); YY_BREAK case 68: YY_RULE_SETUP #line 243 "scanner.l" tok(T_PROTECTED); YY_BREAK case 69: YY_RULE_SETUP #line 244 "scanner.l" tok(T_PUBLIC); YY_BREAK case 70: YY_RULE_SETUP #line 245 "scanner.l" tok(T_VAR); YY_BREAK case 71: YY_RULE_SETUP #line 246 "scanner.l" tok(T_UNSET); YY_BREAK case 72: YY_RULE_SETUP #line 247 "scanner.l" tok(T_ISSET); YY_BREAK case 73: YY_RULE_SETUP #line 248 "scanner.l" tok(T_EMPTY); YY_BREAK case 74: YY_RULE_SETUP #line 249 "scanner.l" tok(T_HALT_COMPILER); YY_BREAK case 75: YY_RULE_SETUP #line 250 "scanner.l" tok(T_CLASS); YY_BREAK case 76: YY_RULE_SETUP #line 251 "scanner.l" tok(T_INTERFACE); YY_BREAK case 77: YY_RULE_SETUP #line 252 "scanner.l" tok(T_EXTENDS); YY_BREAK case 78: YY_RULE_SETUP #line 253 "scanner.l" tok(T_IMPLEMENTS); YY_BREAK case 79: YY_RULE_SETUP #line 254 "scanner.l" tok(T_LIST); YY_BREAK case 80: YY_RULE_SETUP #line 255 "scanner.l" tok(T_ARRAY); YY_BREAK case 81: YY_RULE_SETUP #line 256 "scanner.l" tok(T_CLASS_C); YY_BREAK case 82: YY_RULE_SETUP #line 257 "scanner.l" tok(T_METHOD_C); YY_BREAK case 83: YY_RULE_SETUP #line 258 "scanner.l" tok(T_FUNC_C); YY_BREAK case 84: YY_RULE_SETUP #line 259 "scanner.l" tok(T_LINE); YY_BREAK case 85: YY_RULE_SETUP #line 260 "scanner.l" tok(T_FILE); YY_BREAK case 86: YY_RULE_SETUP #line 261 "scanner.l" tok(T_NAMESPACE); YY_BREAK case 87: YY_RULE_SETUP #line 262 "scanner.l" tok(T_NS_C); YY_BREAK case 88: YY_RULE_SETUP #line 263 "scanner.l" tok(T_DIR); YY_BREAK case 89: YY_RULE_SETUP #line 264 "scanner.l" tok(T_INSTEADOF); YY_BREAK case 90: YY_RULE_SETUP #line 265 "scanner.l" tok(T_CALLABLE); YY_BREAK case 91: YY_RULE_SETUP #line 266 "scanner.l" tok(T_TRAIT); YY_BREAK case 92: YY_RULE_SETUP #line 267 "scanner.l" tok(T_TRAIT_C); YY_BREAK case 93: YY_RULE_SETUP #line 268 "scanner.l" tok(T_YIELD); YY_BREAK - -/* Operators */ - case 94: YY_RULE_SETUP -#line 273 "scanner.l" -tok(T_PLUS_EQUAL); +#line 269 "scanner.l" +tok(T_FINALLY); YY_BREAK + +/* Operators */ + case 95: YY_RULE_SETUP #line 274 "scanner.l" -tok(T_MINUS_EQUAL); +tok(T_PLUS_EQUAL); YY_BREAK case 96: YY_RULE_SETUP #line 275 "scanner.l" -tok(T_MUL_EQUAL); +tok(T_MINUS_EQUAL); YY_BREAK case 97: YY_RULE_SETUP #line 276 "scanner.l" -tok(T_DIV_EQUAL); +tok(T_MUL_EQUAL); YY_BREAK case 98: YY_RULE_SETUP #line 277 "scanner.l" -tok(T_CONCAT_EQUAL); +tok(T_DIV_EQUAL); YY_BREAK case 99: YY_RULE_SETUP #line 278 "scanner.l" -tok(T_MOD_EQUAL); +tok(T_CONCAT_EQUAL); YY_BREAK case 100: YY_RULE_SETUP #line 279 "scanner.l" -tok(T_AND_EQUAL); +tok(T_MOD_EQUAL); YY_BREAK case 101: YY_RULE_SETUP #line 280 "scanner.l" -tok(T_OR_EQUAL); +tok(T_AND_EQUAL); YY_BREAK case 102: YY_RULE_SETUP #line 281 "scanner.l" -tok(T_XOR_EQUAL); +tok(T_OR_EQUAL); YY_BREAK case 103: YY_RULE_SETUP #line 282 "scanner.l" -tok(T_SL_EQUAL); +tok(T_XOR_EQUAL); YY_BREAK case 104: YY_RULE_SETUP #line 283 "scanner.l" -tok(T_SR_EQUAL); +tok(T_SL_EQUAL); YY_BREAK case 105: YY_RULE_SETUP #line 284 "scanner.l" -tok(T_BOOLEAN_OR); +tok(T_SR_EQUAL); YY_BREAK case 106: YY_RULE_SETUP #line 285 "scanner.l" -tok(T_BOOLEAN_AND); +tok(T_BOOLEAN_OR); YY_BREAK case 107: YY_RULE_SETUP #line 286 "scanner.l" -tok(T_IS_EQUAL); +tok(T_BOOLEAN_AND); YY_BREAK case 108: YY_RULE_SETUP #line 287 "scanner.l" -tok(T_IS_NOT_EQUAL); +tok(T_IS_EQUAL); YY_BREAK case 109: YY_RULE_SETUP #line 288 "scanner.l" -tok(T_IS_IDENTICAL); +tok(T_IS_NOT_EQUAL); YY_BREAK case 110: YY_RULE_SETUP #line 289 "scanner.l" -tok(T_IS_NOT_IDENTICAL); +tok(T_IS_IDENTICAL); YY_BREAK case 111: YY_RULE_SETUP #line 290 "scanner.l" -tok(T_IS_SMALLER_OR_EQUAL); +tok(T_IS_NOT_IDENTICAL); YY_BREAK case 112: YY_RULE_SETUP #line 291 "scanner.l" -tok(T_IS_GREATER_OR_EQUAL); +tok(T_IS_SMALLER_OR_EQUAL); YY_BREAK case 113: YY_RULE_SETUP #line 292 "scanner.l" -tok(T_SL); +tok(T_IS_GREATER_OR_EQUAL); YY_BREAK case 114: YY_RULE_SETUP #line 293 "scanner.l" -tok(T_SR); +tok(T_SL); YY_BREAK case 115: YY_RULE_SETUP #line 294 "scanner.l" -tok(T_INC); +tok(T_SR); YY_BREAK case 116: YY_RULE_SETUP #line 295 "scanner.l" -tok(T_DEC); +tok(T_INC); YY_BREAK case 117: YY_RULE_SETUP #line 296 "scanner.l" -tok(T_OBJECT_OPERATOR); +tok(T_DEC); YY_BREAK case 118: YY_RULE_SETUP #line 297 "scanner.l" -tok(T_DOUBLE_ARROW); +tok(T_OBJECT_OPERATOR); YY_BREAK case 119: YY_RULE_SETUP #line 298 "scanner.l" -tok(T_PAAMAYIM_NEKUDOTAYIM); +tok(T_DOUBLE_ARROW); YY_BREAK case 120: YY_RULE_SETUP #line 299 "scanner.l" +tok(T_PAAMAYIM_NEKUDOTAYIM); + YY_BREAK +case 121: +YY_RULE_SETUP +#line 300 "scanner.l" tok(T_NS_SEPARATOR); YY_BREAK /* Casts */ -case 121: -YY_RULE_SETUP -#line 304 "scanner.l" -tok(T_INT_CAST); - YY_BREAK case 122: YY_RULE_SETUP #line 305 "scanner.l" -tok(T_DOUBLE_CAST); +tok(T_INT_CAST); YY_BREAK case 123: YY_RULE_SETUP #line 306 "scanner.l" -tok(T_STRING_CAST); +tok(T_DOUBLE_CAST); YY_BREAK case 124: YY_RULE_SETUP #line 307 "scanner.l" -tok(T_ARRAY_CAST); +tok(T_STRING_CAST); YY_BREAK case 125: YY_RULE_SETUP #line 308 "scanner.l" -tok(T_OBJECT_CAST); +tok(T_ARRAY_CAST); YY_BREAK case 126: YY_RULE_SETUP #line 309 "scanner.l" -tok(T_BOOL_CAST); +tok(T_OBJECT_CAST); YY_BREAK case 127: YY_RULE_SETUP #line 310 "scanner.l" +tok(T_BOOL_CAST); + YY_BREAK +case 128: +YY_RULE_SETUP +#line 311 "scanner.l" tok(T_UNSET_CAST); YY_BREAK /* Scalars (parsing these doesn't really matter since we just pass them through literally) */ -case 128: -YY_RULE_SETUP -#line 315 "scanner.l" -tok(T_LNUMBER); - YY_BREAK case 129: YY_RULE_SETUP #line 316 "scanner.l" -tok(T_DNUMBER); +tok(T_LNUMBER); YY_BREAK case 130: YY_RULE_SETUP #line 317 "scanner.l" -tok(T_STRING); +tok(T_DNUMBER); YY_BREAK case 131: YY_RULE_SETUP #line 318 "scanner.l" -tok(T_VARIABLE); +tok(T_STRING); YY_BREAK case 132: -/* rule 132 can match eol */ YY_RULE_SETUP #line 319 "scanner.l" +tok(T_VARIABLE); + YY_BREAK +case 133: +/* rule 133 can match eol */ +YY_RULE_SETUP +#line 320 "scanner.l" { yy_scan_newlines(yytext, yyg); tok(T_CONSTANT_ENCAPSED_STRING); } YY_BREAK -case 133: -/* rule 133 can match eol */ +case 134: +/* rule 134 can match eol */ YY_RULE_SETUP -#line 323 "scanner.l" +#line 324 "scanner.l" { yy_scan_newlines(yytext, yyg); tok(T_BACKTICKS_EXPR); } YY_BREAK /* (HERE|NOW)DOC's */ -case 134: +case 135: YY_RULE_SETUP -#line 330 "scanner.l" +#line 331 "scanner.l" { push_state(PHP_HEREDOC_START); yyextra->heredoc_yyleng = yyleng; yymore(); } YY_BREAK -case 135: +case 136: YY_RULE_SETUP -#line 336 "scanner.l" +#line 337 "scanner.l" { // Create a new string for the heredoc label. Since we're using yymore above // yytext will actually start at the "<<<" and not the label. Use of // heredoc_yyleng jumps past that. Then we add 1 to get past the " or '. The // match is similar to calculate length. yyextra->heredoc_label = string(yytext + yyextra->heredoc_yyleng + 1, yyleng - yyextra->heredoc_yyleng - 2); set_state(PHP_HEREDOC_NSTART); yyextra->heredoc_yyleng = yyleng; yymore(); } YY_BREAK -case 136: +case 137: YY_RULE_SETUP -#line 346 "scanner.l" +#line 347 "scanner.l" { yyextra->heredoc_label = string(yytext + yyextra->heredoc_yyleng); set_state(PHP_HEREDOC_NSTART); yyextra->heredoc_yyleng = yyleng; yymore(); } YY_BREAK -case 137: -/* rule 137 can match eol */ +case 138: +/* rule 138 can match eol */ YY_RULE_SETUP -#line 353 "scanner.l" +#line 354 "scanner.l" { yyextra->heredoc_yyleng = yyleng; set_state(PHP_HEREDOC_NEWLINE); yymore(); } YY_BREAK -case 138: -/* rule 138 can match eol */ +case 139: +/* rule 139 can match eol */ YY_RULE_SETUP -#line 359 "scanner.l" +#line 360 "scanner.l" { if (strncmp(yyextra->heredoc_label.c_str(), yytext + yyextra->heredoc_yyleng, yyextra->heredoc_label.size()) == 0) { switch (yytext[yyextra->heredoc_yyleng + yyextra->heredoc_label.size()]) { case ';': case '\n': case '\r': yyless(yyleng - (yyleng - yyextra->heredoc_yyleng - yyextra->heredoc_label.size())); pop_state(); tok(T_HEREDOC); } } ++yyextra->lineno; yyextra->heredoc_yyleng = yyleng; yymore(); } YY_BREAK -case 139: +case 140: YY_RULE_SETUP -#line 372 "scanner.l" +#line 373 "scanner.l" { yyextra->heredoc_yyleng = yyleng; yymore(); } YY_BREAK -case 140: -/* rule 140 can match eol */ +case 141: +/* rule 141 can match eol */ YY_RULE_SETUP -#line 376 "scanner.l" +#line 377 "scanner.l" { ++yyextra->lineno; yyextra->heredoc_yyleng = yyleng; yymore(); } YY_BREAK /* Other */ -case 141: -/* rule 141 can match eol */ +case 142: +/* rule 142 can match eol */ YY_RULE_SETUP -#line 384 "scanner.l" +#line 385 "scanner.l" { tok(yytext[0]); // fix unused function warnings yy_top_state(NULL); yyunput(0, 0, NULL); } YY_BREAK -case 142: +case 143: YY_RULE_SETUP -#line 391 "scanner.l" +#line 392 "scanner.l" YY_FATAL_ERROR( "flex scanner jammed" ); YY_BREAK -#line 4871 "scanner.lex.cpp" +#line 4876 "scanner.lex.cpp" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(PHP): case YY_STATE_EOF(PHP_HEREDOC_START): case YY_STATE_EOF(PHP_HEREDOC_NSTART): case YY_STATE_EOF(PHP_HEREDOC_NEWLINE): case YY_STATE_EOF(PHP_NO_RESERVED_WORDS): case YY_STATE_EOF(PHP_NO_RESERVED_WORDS_PERSIST): case YY_STATE_EOF(PHP_): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = yyg->yy_hold_char; YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * xhpastlex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) { /* This was really a NUL. */ yy_state_type yy_next_state; yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( yyscanner ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner); yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++yyg->yy_c_buf_p; yy_current_state = yy_next_state; goto yy_match; } else { /* %% [14.0] code to do back-up for compressed tables and set up yy_cp goes here */ yy_cp = yyg->yy_c_buf_p; goto yy_find_action; } } else switch ( yy_get_next_buffer( yyscanner ) ) { case EOB_ACT_END_OF_FILE: { yyg->yy_did_buffer_switch_on_eof = 0; if ( xhpastwrap(yyscanner ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! yyg->yy_did_buffer_switch_on_eof ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( yyscanner ); yy_cp = yyg->yy_c_buf_p; yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: yyg->yy_c_buf_p = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; yy_current_state = yy_get_previous_state( yyscanner ); yy_cp = yyg->yy_c_buf_p; yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of xhpastlex */ /* %ok-for-header */ /* %if-c++-only */ /* %not-for-header */ /* %ok-for-header */ /* %endif */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ /* %if-c-only */ static int yy_get_next_buffer (yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = yyg->yytext_ptr; register int number_to_move, i; int ret_val; if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0; else { yy_size_t num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int yy_c_buf_p_offset = (int) (yyg->yy_c_buf_p - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { yy_size_t new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ xhpastrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), yyg->yy_n_chars, num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; } if ( yyg->yy_n_chars == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; xhpastrestart(yyin ,yyscanner); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) (yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) xhpastrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ,yyscanner ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } yyg->yy_n_chars += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ /* %if-c-only */ /* %not-for-header */ static yy_state_type yy_get_previous_state (yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { register yy_state_type yy_current_state; register char *yy_cp; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* %% [15.0] code to get the start state into yy_current_state goes here */ yy_current_state = yyg->yy_start; for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp ) { /* %% [16.0] code to find the next state goes here */ if ( yy_accept[yy_current_state] ) { yyg->yy_last_accepting_state = yy_current_state; yyg->yy_last_accepting_cpos = yy_cp; } if ( *yy_cp ) { register YY_CHAR yy_c = YY_SC_TO_UI(*yy_cp); if ( yy_accept[yy_current_state] ) { yyg->yy_last_accepting_state = yy_current_state; yyg->yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; } else yy_current_state = yy_NUL_trans[yy_current_state]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ /* %if-c-only */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { register int yy_is_jam; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ /* %% [17.0] code to find the next state, and perhaps do backing up, goes here */ yy_current_state = yy_NUL_trans[yy_current_state]; yy_is_jam = (yy_current_state == 0); return yy_is_jam ? 0 : yy_current_state; } /* %if-c-only */ static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { register char *yy_cp; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yy_cp = yyg->yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yyg->yy_hold_char; if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register yy_size_t number_to_move = yyg->yy_n_chars + 2; register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; register char *source = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; /* %% [18.0] update yylineno here */ yyg->yytext_ptr = yy_bp; yyg->yy_hold_char = *yy_cp; yyg->yy_c_buf_p = yy_cp; } /* %if-c-only */ /* %endif */ /* %if-c-only */ #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (yyscan_t yyscanner) #else static int input (yyscan_t yyscanner) #endif /* %endif */ /* %if-c++-only */ /* %endif */ { int c; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; *yyg->yy_c_buf_p = yyg->yy_hold_char; if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) /* This was really a NUL. */ *yyg->yy_c_buf_p = '\0'; else { /* need more input */ yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr; ++yyg->yy_c_buf_p; switch ( yy_get_next_buffer( yyscanner ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ xhpastrestart(yyin ,yyscanner); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( xhpastwrap(yyscanner ) ) return 0; if ( ! yyg->yy_did_buffer_switch_on_eof ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(yyscanner); #else return input(yyscanner); #endif } case EOB_ACT_CONTINUE_SCAN: yyg->yy_c_buf_p = yyg->yytext_ptr + offset; break; } } } c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */ *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ yyg->yy_hold_char = *++yyg->yy_c_buf_p; /* %% [19.0] update BOL and yylineno */ return c; } /* %if-c-only */ #endif /* ifndef YY_NO_INPUT */ /* %endif */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * @param yyscanner The scanner object. * @note This function does not reset the start condition to @c INITIAL . */ /* %if-c-only */ void xhpastrestart (FILE * input_file , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( ! YY_CURRENT_BUFFER ){ xhpastensure_buffer_stack (yyscanner); YY_CURRENT_BUFFER_LVALUE = xhpast_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); } xhpast_init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner); xhpast_load_buffer_state(yyscanner ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * @param yyscanner The scanner object. */ /* %if-c-only */ void xhpast_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* TODO. We should be able to replace this entire function body * with * xhpastpop_buffer_state(); * xhpastpush_buffer_state(new_buffer); */ xhpastensure_buffer_stack (yyscanner); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *yyg->yy_c_buf_p = yyg->yy_hold_char; YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; } YY_CURRENT_BUFFER_LVALUE = new_buffer; xhpast_load_buffer_state(yyscanner ); /* We don't actually know whether we did this switch during * EOF (xhpastwrap()) processing, but the only time this flag * is looked at is after xhpastwrap() is called, so it's safe * to go ahead and always set it. */ yyg->yy_did_buffer_switch_on_eof = 1; } /* %if-c-only */ static void xhpast_load_buffer_state (yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; yyg->yy_hold_char = *yyg->yy_c_buf_p; } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * @param yyscanner The scanner object. * @return the allocated buffer state. */ /* %if-c-only */ YY_BUFFER_STATE xhpast_create_buffer (FILE * file, int size , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) xhpastalloc(sizeof( struct yy_buffer_state ) ,yyscanner ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in xhpast_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) xhpastalloc(b->yy_buf_size + 2 ,yyscanner ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in xhpast_create_buffer()" ); b->yy_is_our_buffer = 1; xhpast_init_buffer(b,file ,yyscanner); return b; } /** Destroy the buffer. * @param b a buffer created with xhpast_create_buffer() * @param yyscanner The scanner object. */ /* %if-c-only */ void xhpast_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) xhpastfree((void *) b->yy_ch_buf ,yyscanner ); xhpastfree((void *) b ,yyscanner ); } /* %if-c-only */ #ifndef __cplusplus extern int isatty (int ); #endif /* __cplusplus */ /* %endif */ /* %if-c++-only */ /* %endif */ /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a xhpastrestart() or at EOF. */ /* %if-c-only */ static void xhpast_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { int oerrno = errno; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; xhpast_flush_buffer(b ,yyscanner); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then xhpast_init_buffer was _probably_ * called from xhpastrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } /* %if-c-only */ b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; /* %endif */ /* %if-c++-only */ /* %endif */ errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * @param yyscanner The scanner object. */ /* %if-c-only */ void xhpast_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) xhpast_load_buffer_state(yyscanner ); } /* %if-c-or-c++ */ /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * @param yyscanner The scanner object. */ /* %if-c-only */ void xhpastpush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (new_buffer == NULL) return; xhpastensure_buffer_stack(yyscanner); /* This block is copied from xhpast_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *yyg->yy_c_buf_p = yyg->yy_hold_char; YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) yyg->yy_buffer_stack_top++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from xhpast_switch_to_buffer. */ xhpast_load_buffer_state(yyscanner ); yyg->yy_did_buffer_switch_on_eof = 1; } /* %endif */ /* %if-c-or-c++ */ /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * @param yyscanner The scanner object. */ /* %if-c-only */ void xhpastpop_buffer_state (yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (!YY_CURRENT_BUFFER) return; xhpast_delete_buffer(YY_CURRENT_BUFFER ,yyscanner); YY_CURRENT_BUFFER_LVALUE = NULL; if (yyg->yy_buffer_stack_top > 0) --yyg->yy_buffer_stack_top; if (YY_CURRENT_BUFFER) { xhpast_load_buffer_state(yyscanner ); yyg->yy_did_buffer_switch_on_eof = 1; } } /* %endif */ /* %if-c-or-c++ */ /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ /* %if-c-only */ static void xhpastensure_buffer_stack (yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { yy_size_t num_to_alloc; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (!yyg->yy_buffer_stack) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; yyg->yy_buffer_stack = (struct yy_buffer_state**)xhpastalloc (num_to_alloc * sizeof(struct yy_buffer_state*) , yyscanner); if ( ! yyg->yy_buffer_stack ) YY_FATAL_ERROR( "out of dynamic memory in xhpastensure_buffer_stack()" ); memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); yyg->yy_buffer_stack_max = num_to_alloc; yyg->yy_buffer_stack_top = 0; return; } if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = yyg->yy_buffer_stack_max + grow_size; yyg->yy_buffer_stack = (struct yy_buffer_state**)xhpastrealloc (yyg->yy_buffer_stack, num_to_alloc * sizeof(struct yy_buffer_state*) , yyscanner); if ( ! yyg->yy_buffer_stack ) YY_FATAL_ERROR( "out of dynamic memory in xhpastensure_buffer_stack()" ); /* zero only the new slots.*/ memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); yyg->yy_buffer_stack_max = num_to_alloc; } } /* %endif */ /* %if-c-only */ /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ YY_BUFFER_STATE xhpast_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) xhpastalloc(sizeof( struct yy_buffer_state ) ,yyscanner ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in xhpast_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; xhpast_switch_to_buffer(b ,yyscanner ); return b; } /* %endif */ /* %if-c-only */ /** Setup the input buffer state to scan a string. The next call to xhpastlex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * @param yyscanner The scanner object. * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * xhpast_scan_bytes() instead. */ YY_BUFFER_STATE xhpast_scan_string (yyconst char * yystr , yyscan_t yyscanner) { return xhpast_scan_bytes(yystr,strlen(yystr) ,yyscanner); } /* %endif */ /* %if-c-only */ /** Setup the input buffer state to scan the given bytes. The next call to xhpastlex() will * scan from a @e copy of @a bytes. * @param bytes the byte buffer to scan * @param len the number of bytes in the buffer pointed to by @a bytes. * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ YY_BUFFER_STATE xhpast_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner) { YY_BUFFER_STATE b; char *buf; yy_size_t n, i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) xhpastalloc(n ,yyscanner ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in xhpast_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = xhpast_scan_buffer(buf,n ,yyscanner); if ( ! b ) YY_FATAL_ERROR( "bad buffer in xhpast_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } /* %endif */ /* %if-c-only */ static void yy_push_state (int new_state , yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( yyg->yy_start_stack_ptr >= yyg->yy_start_stack_depth ) { yy_size_t new_size; yyg->yy_start_stack_depth += YY_START_STACK_INCR; new_size = yyg->yy_start_stack_depth * sizeof( int ); if ( ! yyg->yy_start_stack ) yyg->yy_start_stack = (int *) xhpastalloc(new_size ,yyscanner ); else yyg->yy_start_stack = (int *) xhpastrealloc((void *) yyg->yy_start_stack,new_size ,yyscanner ); if ( ! yyg->yy_start_stack ) YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); } yyg->yy_start_stack[yyg->yy_start_stack_ptr++] = YY_START; BEGIN(new_state); } /* %if-c-only */ static void yy_pop_state (yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( --yyg->yy_start_stack_ptr < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN(yyg->yy_start_stack[yyg->yy_start_stack_ptr]); } /* %if-c-only */ static int yy_top_state (yyscan_t yyscanner) /* %endif */ /* %if-c++-only */ /* %endif */ { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyg->yy_start_stack[yyg->yy_start_stack_ptr - 1]; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif /* %if-c-only */ static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* %endif */ /* %if-c++-only */ /* %endif */ /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = yyg->yy_hold_char; \ yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ yyg->yy_hold_char = *yyg->yy_c_buf_p; \ *yyg->yy_c_buf_p = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /* %if-c-only */ /* %if-reentrant */ /** Get the user-defined data for this scanner. * @param yyscanner The scanner object. */ YY_EXTRA_TYPE xhpastget_extra (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyextra; } /* %endif */ /** Get the current line number. * @param yyscanner The scanner object. */ int xhpastget_lineno (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (! YY_CURRENT_BUFFER) return 0; return yylineno; } /** Get the current column number. * @param yyscanner The scanner object. */ int xhpastget_column (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (! YY_CURRENT_BUFFER) return 0; return yycolumn; } /** Get the input stream. * @param yyscanner The scanner object. */ FILE *xhpastget_in (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyin; } /** Get the output stream. * @param yyscanner The scanner object. */ FILE *xhpastget_out (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyout; } /** Get the length of the current token. * @param yyscanner The scanner object. */ yy_size_t xhpastget_leng (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyleng; } /** Get the current token. * @param yyscanner The scanner object. */ char *xhpastget_text (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yytext; } /* %if-reentrant */ /** Set the user-defined data. This data is never touched by the scanner. * @param user_defined The data to be associated with this scanner. * @param yyscanner The scanner object. */ void xhpastset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyextra = user_defined ; } /* %endif */ /** Set the current line number. * @param line_number * @param yyscanner The scanner object. */ void xhpastset_lineno (int line_number , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* lineno is only valid if an input buffer exists. */ if (! YY_CURRENT_BUFFER ) yy_fatal_error( "xhpastset_lineno called with no buffer" , yyscanner); yylineno = line_number; } /** Set the current column. * @param line_number * @param yyscanner The scanner object. */ void xhpastset_column (int column_no , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* column is only valid if an input buffer exists. */ if (! YY_CURRENT_BUFFER ) yy_fatal_error( "xhpastset_column called with no buffer" , yyscanner); yycolumn = column_no; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * @param yyscanner The scanner object. * @see xhpast_switch_to_buffer */ void xhpastset_in (FILE * in_str , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyin = in_str ; } void xhpastset_out (FILE * out_str , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyout = out_str ; } int xhpastget_debug (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yy_flex_debug; } void xhpastset_debug (int bdebug , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yy_flex_debug = bdebug ; } /* %endif */ /* %if-reentrant */ /* Accessor methods for yylval and yylloc */ /* %if-bison-bridge */ YYSTYPE * xhpastget_lval (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yylval; } void xhpastset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yylval = yylval_param; } /* %endif */ /* User-visible API */ /* xhpastlex_init is special because it creates the scanner itself, so it is * the ONLY reentrant function that doesn't take the scanner as the last argument. * That's why we explicitly handle the declaration, instead of using our macros. */ int xhpastlex_init(yyscan_t* ptr_yy_globals) { if (ptr_yy_globals == NULL){ errno = EINVAL; return 1; } *ptr_yy_globals = (yyscan_t) xhpastalloc ( sizeof( struct yyguts_t ), NULL ); if (*ptr_yy_globals == NULL){ errno = ENOMEM; return 1; } /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); return yy_init_globals ( *ptr_yy_globals ); } /* xhpastlex_init_extra has the same functionality as xhpastlex_init, but follows the * convention of taking the scanner as the last argument. Note however, that * this is a *pointer* to a scanner, as it will be allocated by this call (and * is the reason, too, why this function also must handle its own declaration). * The user defined value in the first argument will be available to xhpastalloc in * the yyextra field. */ int xhpastlex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals ) { struct yyguts_t dummy_yyguts; xhpastset_extra (yy_user_defined, &dummy_yyguts); if (ptr_yy_globals == NULL){ errno = EINVAL; return 1; } *ptr_yy_globals = (yyscan_t) xhpastalloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); if (*ptr_yy_globals == NULL){ errno = ENOMEM; return 1; } /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); xhpastset_extra (yy_user_defined, *ptr_yy_globals); return yy_init_globals ( *ptr_yy_globals ); } /* %endif if-c-only */ /* %if-c-only */ static int yy_init_globals (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* Initialization is the same as for the non-reentrant scanner. * This function is called from xhpastlex_destroy(), so don't allocate here. */ yyg->yy_buffer_stack = 0; yyg->yy_buffer_stack_top = 0; yyg->yy_buffer_stack_max = 0; yyg->yy_c_buf_p = (char *) 0; yyg->yy_init = 0; yyg->yy_start = 0; yyg->yy_start_stack_ptr = 0; yyg->yy_start_stack_depth = 0; yyg->yy_start_stack = NULL; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * xhpastlex_init() */ return 0; } /* %endif */ /* %if-c-only SNIP! this currently causes conflicts with the c++ scanner */ /* xhpastlex_destroy is for both reentrant and non-reentrant scanners. */ int xhpastlex_destroy (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ xhpast_delete_buffer(YY_CURRENT_BUFFER ,yyscanner ); YY_CURRENT_BUFFER_LVALUE = NULL; xhpastpop_buffer_state(yyscanner); } /* Destroy the stack itself. */ xhpastfree(yyg->yy_buffer_stack ,yyscanner); yyg->yy_buffer_stack = NULL; /* Destroy the start condition stack. */ xhpastfree(yyg->yy_start_stack ,yyscanner ); yyg->yy_start_stack = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * xhpastlex() is called, initialization will occur. */ yy_init_globals( yyscanner); /* %if-reentrant */ /* Destroy the main struct (reentrant only). */ xhpastfree ( yyscanner , yyscanner ); yyscanner = NULL; /* %endif */ return 0; } /* %endif */ /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner) { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *xhpastalloc (yy_size_t size , yyscan_t yyscanner) { return (void *) malloc( size ); } void *xhpastrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } void xhpastfree (void * ptr , yyscan_t yyscanner) { free( (char *) ptr ); /* see xhpastrealloc() for (char *) cast */ } /* %if-tables-serialization definitions */ /* %define-yytables The name for this specific scanner's tables. */ #define YYTABLES_NAME "yytables" /* %endif */ /* %ok-for-header */ -#line 391 "scanner.l" +#line 392 "scanner.l" #ifdef DEBUG static const char* yy_state_name(int state) { switch (state) { case INITIAL: return "INITIAL"; case PHP: return "PHP"; case PHP_COMMENT: return "PHP_COMMENT"; case PHP_EOL_COMMENT: return "PHP_EOL_COMMENT"; case PHP_DOC_COMMENT: return "PHP_DOC_COMMENT"; case PHP_HEREDOC_START: return "PHP_HEREDOC_START"; case PHP_HEREDOC_NSTART: return "PHP_HEREDOC_NSTART"; case PHP_HEREDOC_NEWLINE: return "PHP_HEREDOC_NEWLINE"; case PHP_NO_RESERVED_WORDS: return "PHP_NO_RESERVED_WORDS"; case PHP_NO_RESERVED_WORDS_PERSIST: return "PHP_NO_RESERVED_WORDS_PERSIST"; default: return "???"; } } static void yy_log_token(int tok) { const char* tokname = yytokname(tok); if (tokname) { fprintf(stderr, "--> %s\n", tokname); } else { fprintf(stderr, "--> '%c'\n", tok); } } #endif static int yy_token(int tok, yyguts_t* yyg) { if (YY_START == PHP_NO_RESERVED_WORDS) { pop_state(); } switch (tok) { case T_OPEN_TAG: case T_OPEN_TAG_WITH_ECHO: case T_OPEN_TAG_FAKE: push_state(PHP); break; case T_CLOSE_TAG: pop_state(); // We need to return a ';', not a T_CLOSE_TAG, because a construct like // "" is valid and there are about a billion parser rules // which terminate with ';' so making a new rule like // "semicolon_or_close_tag" would be hard. The token in yylval has the // correct type and value, we just don't generate a node. return ';'; // In PHP it's ok to use keywords such as 'if' as field names // or function names. case T_OBJECT_OPERATOR: case T_FUNCTION: push_state(PHP_NO_RESERVED_WORDS); break; case T_PAAMAYIM_NEKUDOTAYIM: if (yyextra->colon_hack) { yyextra->colon_hack = false; } else { push_state(PHP_NO_RESERVED_WORDS); } break; case '{': // not used anymore yyextra->curly_stack.push(tok); break; } #ifdef DEBUG yy_log_token(tok); #endif return yyextra->last_token = tok; } static inline void yy_scan_newlines(const char* text, struct yyguts_t* yyg) { for (; *text; ++text) { if (*text == '\r') { if (text[1] == '\n') { ++text; } ++yyextra->lineno; } else if (*text == '\n') { ++yyextra->lineno; } } } void xhp_new_push_state(int s, struct yyguts_t* yyg) { #ifdef DEBUG fprintf(stderr, "--> PUSH(%s -> %s)\n", yy_state_name(YY_START), yy_state_name(s)); #endif yy_push_state(s, yyg); } void xhp_new_pop_state(struct yyguts_t* yyg) { #ifdef DEBUG int s = YY_START; #endif yy_pop_state(yyg); #ifdef DEBUG fprintf(stderr, "--> POP(%s -> %s)\n", yy_state_name(s), yy_state_name(YY_START)); #endif } void xhp_set_state(int s, struct yyguts_t* yyg) { #ifdef DEBUG fprintf(stderr, "--> SET(%s)\n", yy_state_name(s)); #endif BEGIN(s); } /* @generated */ diff --git a/support/xhpast/scanner.lex.hpp b/support/xhpast/scanner.lex.hpp index 0eb163d..b97cedc 100644 --- a/support/xhpast/scanner.lex.hpp +++ b/support/xhpast/scanner.lex.hpp @@ -1,471 +1,471 @@ #ifndef xhpastHEADER_H #define xhpastHEADER_H 1 #define xhpastIN_HEADER 1 #line 6 "scanner.lex.hpp" #line 8 "scanner.lex.hpp" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ /* %not-for-header */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 35 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* %if-c++-only */ /* %endif */ /* %if-c-only */ /* %endif */ /* %if-c-only */ /* %endif */ /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ /* %if-c-only */ #include #include #include #include /* %endif */ /* %if-tables-serialization */ /* %endif */ /* end standard C headers. */ /* %if-c-or-c++ */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; #endif /* ! C99 */ /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! FLEXINT_H */ /* %endif */ /* %if-c++-only */ /* %endif */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* %not-for-header */ /* %not-for-header */ /* %if-reentrant */ /* An opaque pointer. */ #ifndef YY_TYPEDEF_YY_SCANNER_T #define YY_TYPEDEF_YY_SCANNER_T typedef void* yyscan_t; #endif /* For convenience, these vars (plus the bison vars far below) are macros in the reentrant scanner. */ #define yyin yyg->yyin_r #define yyout yyg->yyout_r #define yyextra yyg->yyextra_r #define yyleng yyg->yyleng_r #define yytext yyg->yytext_r #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column) #define yy_flex_debug yyg->yy_flex_debug_r /* %endif */ /* %if-not-reentrant */ /* %endif */ /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #endif #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif /* %if-not-reentrant */ /* %endif */ /* %if-c-only */ /* %if-not-reentrant */ /* %endif */ /* %endif */ #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { /* %if-c-only */ FILE *yy_input_file; /* %endif */ /* %if-c++-only */ /* %endif */ char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ /* %endif */ /* %if-c-only Standard (non-C++) definition */ /* %if-not-reentrant */ /* %not-for-header */ /* %endif */ void xhpastrestart (FILE *input_file ,yyscan_t yyscanner ); void xhpast_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); YY_BUFFER_STATE xhpast_create_buffer (FILE *file,int size ,yyscan_t yyscanner ); void xhpast_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); void xhpast_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); void xhpastpush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); void xhpastpop_buffer_state (yyscan_t yyscanner ); YY_BUFFER_STATE xhpast_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner ); YY_BUFFER_STATE xhpast_scan_string (yyconst char *yy_str ,yyscan_t yyscanner ); YY_BUFFER_STATE xhpast_scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner ); /* %endif */ void *xhpastalloc (yy_size_t ,yyscan_t yyscanner ); void *xhpastrealloc (void *,yy_size_t ,yyscan_t yyscanner ); void xhpastfree (void * ,yyscan_t yyscanner ); /* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */ /* Begin user sect3 */ #define xhpastwrap(n) 1 #define YY_SKIP_YYWRAP #define FLEX_DEBUG #define yytext_ptr yytext_r /* %if-c-only Standard (non-C++) definition */ /* %endif */ #ifdef YY_HEADER_EXPORT_START_CONDITIONS #define INITIAL 0 #define PHP 1 #define PHP_COMMENT 2 #define PHP_EOL_COMMENT 3 #define PHP_DOC_COMMENT 4 #define PHP_HEREDOC_START 5 #define PHP_HEREDOC_NSTART 6 #define PHP_HEREDOC_NEWLINE 7 #define PHP_NO_RESERVED_WORDS 8 #define PHP_NO_RESERVED_WORDS_PERSIST 9 #define PHP_ 10 #endif #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ /* %if-c-only */ #include /* %endif */ /* %if-c++-only */ /* %endif */ #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif /* %if-c-only Reentrant structure and macros (non-C++). */ /* %if-reentrant */ /* %if-c-only */ /* %endif */ /* %if-reentrant */ int xhpastlex_init (yyscan_t* scanner); int xhpastlex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner); /* %endif */ /* %endif End reentrant structures and macros. */ /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int xhpastlex_destroy (yyscan_t yyscanner ); int xhpastget_debug (yyscan_t yyscanner ); void xhpastset_debug (int debug_flag ,yyscan_t yyscanner ); YY_EXTRA_TYPE xhpastget_extra (yyscan_t yyscanner ); void xhpastset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner ); FILE *xhpastget_in (yyscan_t yyscanner ); void xhpastset_in (FILE * in_str ,yyscan_t yyscanner ); FILE *xhpastget_out (yyscan_t yyscanner ); void xhpastset_out (FILE * out_str ,yyscan_t yyscanner ); yy_size_t xhpastget_leng (yyscan_t yyscanner ); char *xhpastget_text (yyscan_t yyscanner ); int xhpastget_lineno (yyscan_t yyscanner ); void xhpastset_lineno (int line_number ,yyscan_t yyscanner ); /* %if-bison-bridge */ YYSTYPE * xhpastget_lval (yyscan_t yyscanner ); void xhpastset_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner ); /* %endif */ /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int xhpastwrap (yyscan_t yyscanner ); #else extern int xhpastwrap (yyscan_t yyscanner ); #endif #endif /* %not-for-header */ /* %endif */ #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ /* %endif */ #endif /* %if-c-only */ /* %endif */ /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* %if-tables-serialization structures and prototypes */ /* %not-for-header */ /* %not-for-header */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 /* %if-c-only Standard (non-C++) definition */ extern int xhpastlex \ (YYSTYPE * yylval_param ,yyscan_t yyscanner); #define YY_DECL int xhpastlex \ (YYSTYPE * yylval_param , yyscan_t yyscanner) /* %endif */ /* %if-c++-only C++ definition */ /* %endif */ #endif /* !YY_DECL */ /* %not-for-header */ /* %if-c++-only */ /* %not-for-header */ /* %endif */ /* yy_get_previous_state - get the state just before the EOB char was reached */ /* %if-c-only */ /* %not-for-header */ #undef YY_NEW_FILE #undef YY_FLUSH_BUFFER #undef yy_set_bol #undef yy_new_buffer #undef yy_set_interactive #undef YY_DO_BEFORE_ACTION #ifdef YY_DECL_IS_OURS #undef YY_DECL_IS_OURS #undef YY_DECL #endif -#line 391 "scanner.l" +#line 392 "scanner.l" #line 469 "scanner.lex.hpp" #undef xhpastIN_HEADER #endif /* xhpastHEADER_H */ /* @generated */ diff --git a/support/xhpast/xhpast.cpp b/support/xhpast/xhpast.cpp index dda6c88..9a249b0 100644 --- a/support/xhpast/xhpast.cpp +++ b/support/xhpast/xhpast.cpp @@ -1,129 +1,129 @@ #include "ast.hpp" #include #include #include #include #include using namespace std; int xhpastparse(void*, xhpast::Node **); int xhpast_process(std::string &in); void print_node(xhpast::Node *node); int main(int argc, char* argv[]) { vector files; if (argc != 1) { //coupling: modify also libphutil/src/parser/xhpast/bin/xhpast_parse.php - cout << "xhpast version 5.5.8/1a\n"; + cout << "xhpast version 5.5.8/1b\n"; return 0; } ifstream inputFile; istream *inputStream; inputStream = &cin; std::stringbuf sb; *inputStream >> noskipws >> &sb; std::string buffer = sb.str(); inputFile.close(); return xhpast_process(buffer); } int xhpast_process(std::string &in) { char *buffer; in.reserve(in.size() + 1); buffer = const_cast(in.c_str()); buffer[in.size() + 1] = 0; // need double NULL for scan_buffer void* scanner; yy_extra_type extra; extra.idx_expr = true;//flags.idx_expr; extra.include_debug = true;//flags.include_debug; extra.insert_token = 0;//flags.eval ? T_OPEN_TAG_FAKE : 0; extra.short_tags = true;//flags.short_tags; extra.asp_tags = false;//flags.asp_tags; xhpast::Node *root = NULL; xhpastlex_init(&scanner); xhpastset_extra(&extra, scanner); xhpast_scan_buffer(buffer, in.size() + 2, scanner); xhpastparse(scanner, &root); xhpastlex_destroy(scanner); if (extra.terminated) { fprintf( stderr, "XHPAST Parse Error: %s on line %d\n", extra.error.c_str(), (int)extra.lineno); return 1; } printf("{"); printf("\"tree\":"); if (root) { // Extend the right token for the root node to the end of the concrete // token stream. This ensure all tokens appear in the tree. If we don't // do this and the file ends in tokens which don't go to the parser (like // comments and whitespace) they won't be represented in the tree. root->r_tok = (extra.token_list.size() - 1); print_node(root); } else { printf("null"); } printf(","); printf("\"stream\":"); printf("["); if (!extra.token_list.empty()) { for (xhpast::token_list_t::iterator ii = extra.token_list.begin();;) { printf("[%d, %d]", (*ii)->type, (int)(*ii)->value.length()); if (++ii != extra.token_list.end()) { printf(","); } else { break; } } } printf("]"); printf("}\n"); return 0; } void print_node(xhpast::Node *node) { int l = -1; int r = -1; if (node->l_tok != -1) { l = node->l_tok; } if (l == -1) { printf("[%d]", node->type); } else { if (node->r_tok != -1) { r = node->r_tok; } printf("[%d, %d, %d", node->type, l, r); if (!node->children.empty()) { printf(", ["); for (xhpast::node_list_t::iterator ii = node->children.begin();;) { print_node(*ii); if (++ii != node->children.end()) { printf(","); } else { break; } } printf("]"); } printf("]"); } }