Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Kucera2008-05-13 20:25:16 +0000
committerMike Kucera2008-05-13 20:25:16 +0000
commit8a429794475be20b5689a5a6855ad5067a546160 (patch)
treee6146c8cc321f431ad066c3a3ea542f1ca86f0f3 /lrparser
parent4e2a3b2bfc1daa9f36fd7aa0e40d738eac6f115f (diff)
downloadorg.eclipse.cdt-8a429794475be20b5689a5a6855ad5067a546160.tar.gz
org.eclipse.cdt-8a429794475be20b5689a5a6855ad5067a546160.tar.xz
org.eclipse.cdt-8a429794475be20b5689a5a6855ad5067a546160.zip
added support for namespaces nested inside classes
Diffstat (limited to 'lrparser')
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g39
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParser.java439
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParserprs.java3671
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParsersym.java74
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParser.java439
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParserprs.java3681
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java72
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParser.java435
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParserprs.java3653
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParsersym.java66
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParser.java435
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParserprs.java3661
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java28
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParser.java439
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParserprs.java3707
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParsersym.java72
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParser.java439
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParserprs.java3646
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParsersym.java72
19 files changed, 12428 insertions, 12640 deletions
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g b/lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g
index 84cd6551dc9..60b3c26c8e3 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g
+++ b/lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g
@@ -1190,36 +1190,15 @@ namespace_name
::= identifier_name
---namespace_name
--- ::= original_namespace_name
--- | namespace_alias
-
-
---original_namespace_name
--- ::= identifier_name
-
-
---namespace_alias
--- ::= identifier_token
-
-
namespace_definition
::= named_namespace_definition
| unnamed_namespace_definition
+-- In the spec grammar this is broken down into original_namespace_definition and extension_namespace_definition.
+-- But since we are not tracking identifiers it becomes the same thing, so its simplified here.
named_namespace_definition
- ::= original_namespace_definition
- | extension_namespace_definition
-
-
-original_namespace_definition
- ::= 'namespace' identifier_name '{' <openscope-ast> declaration_seq_opt '}'
- /. $Build consumeNamespaceDefinition(true); $EndBuild ./
-
-
-extension_namespace_definition
- ::= 'namespace' original_namespace_name '{' <openscope-ast> declaration_seq_opt '}'
+ ::= 'namespace' namespace_name '{' <openscope-ast> declaration_seq_opt '}'
/. $Build consumeNamespaceDefinition(true); $EndBuild ./
@@ -1228,18 +1207,11 @@ unnamed_namespace_definition
/. $Build consumeNamespaceDefinition(false); $EndBuild ./
-
-
-
namespace_alias_definition
::= 'namespace' identifier_token '=' dcolon_opt nested_name_specifier_opt namespace_name ';'
/. $Build consumeNamespaceAliasDefinition(); $EndBuild ./
---qualified_namespace_specifier
--- ::= dcolon_opt nested_name_specifier_opt namespace_name
-
-
-- make more lenient!
-- using_declaration
-- ::= 'using' typename_opt dcolon_opt nested_name_specifier unqualified_id_name ';'
@@ -1579,7 +1551,8 @@ member_declaration
/. $Build consumeMemberDeclarationQualifiedId(); $EndBuild ./
| using_declaration
| template_declaration
- | explicit_specialization -- is this spec?
+ | explicit_specialization -- not spec
+ | namespace_definition -- not spec
| visibility_label
| ERROR_TOKEN
/. $Build consumeDeclarationProblem(); $EndBuild ./
@@ -1840,7 +1813,7 @@ handler
exception_declaration
::= type_specifier_seq <openscope-ast> declarator
/. $Build consumeDeclarationSimple(true); $EndBuild ./
- | type_specifier_seq <openscope-ast> abstract_declarator -- TODO might need to be abstract_declarator_without_function, might be too lenient, what exactly can you catch?
+ | type_specifier_seq <openscope-ast> abstract_declarator
/. $Build consumeDeclarationSimple(true); $EndBuild ./
| type_specifier_seq
/. $Build consumeDeclarationSimple(false); $EndBuild ./
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParser.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParser.java
index e1aafbbe72a..375c5bb88da 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParser.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParser.java
@@ -1519,765 +1519,758 @@ public CPPExpressionStatementParser(String[] mapFrom) { // constructor
}
//
- // Rule 301: original_namespace_definition ::= namespace identifier_name { <openscope-ast> declaration_seq_opt }
+ // Rule 299: named_namespace_definition ::= namespace namespace_name { <openscope-ast> declaration_seq_opt }
//
- case 301: { action.builder.
- consumeNamespaceDefinition(true); break;
- }
-
- //
- // Rule 302: extension_namespace_definition ::= namespace original_namespace_name { <openscope-ast> declaration_seq_opt }
- //
- case 302: { action.builder.
+ case 299: { action.builder.
consumeNamespaceDefinition(true); break;
}
//
- // Rule 303: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
+ // Rule 300: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
//
- case 303: { action.builder.
+ case 300: { action.builder.
consumeNamespaceDefinition(false); break;
}
//
- // Rule 304: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 301: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 304: { action.builder.
+ case 301: { action.builder.
consumeNamespaceAliasDefinition(); break;
}
//
- // Rule 305: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
+ // Rule 302: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
//
- case 305: { action.builder.
+ case 302: { action.builder.
consumeUsingDeclaration(); break;
}
//
- // Rule 306: typename_opt ::= typename
+ // Rule 303: typename_opt ::= typename
//
- case 306: { action.builder.
+ case 303: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 307: typename_opt ::= $Empty
+ // Rule 304: typename_opt ::= $Empty
//
- case 307: { action.builder.
+ case 304: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 308: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 305: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 308: { action.builder.
+ case 305: { action.builder.
consumeUsingDirective(); break;
}
//
- // Rule 309: asm_definition ::= asm ( stringlit ) ;
+ // Rule 306: asm_definition ::= asm ( stringlit ) ;
//
- case 309: { action.builder.
+ case 306: { action.builder.
consumeDeclarationASM(); break;
}
//
- // Rule 310: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
+ // Rule 307: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
//
- case 310: { action.builder.
+ case 307: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 311: linkage_specification ::= extern stringlit <openscope-ast> declaration
+ // Rule 308: linkage_specification ::= extern stringlit <openscope-ast> declaration
//
- case 311: { action.builder.
+ case 308: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 316: init_declarator_complete ::= init_declarator
+ // Rule 313: init_declarator_complete ::= init_declarator
//
- case 316: { action.builder.
+ case 313: { action.builder.
consumeInitDeclaratorComplete(); break;
}
//
- // Rule 318: init_declarator ::= declarator initializer
+ // Rule 315: init_declarator ::= declarator initializer
//
- case 318: { action.builder.
+ case 315: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 320: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 317: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 320: { action.builder.
+ case 317: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 322: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 319: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 322: { action.builder.
+ case 319: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 326: basic_direct_declarator ::= declarator_id_name
+ // Rule 323: basic_direct_declarator ::= declarator_id_name
//
- case 326: { action.builder.
+ case 323: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 327: basic_direct_declarator ::= ( declarator )
+ // Rule 324: basic_direct_declarator ::= ( declarator )
//
- case 327: { action.builder.
+ case 324: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 328: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 325: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 328: { action.builder.
+ case 325: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 329: array_direct_declarator ::= array_direct_declarator array_modifier
+ // Rule 326: array_direct_declarator ::= array_direct_declarator array_modifier
//
- case 329: { action.builder.
+ case 326: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 330: array_direct_declarator ::= basic_direct_declarator array_modifier
+ // Rule 327: array_direct_declarator ::= basic_direct_declarator array_modifier
//
- case 330: { action.builder.
+ case 327: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 331: array_modifier ::= [ constant_expression ]
+ // Rule 328: array_modifier ::= [ constant_expression ]
//
- case 331: { action.builder.
+ case 328: { action.builder.
consumeDirectDeclaratorArrayModifier(true); break;
}
//
- // Rule 332: array_modifier ::= [ ]
+ // Rule 329: array_modifier ::= [ ]
//
- case 332: { action.builder.
+ case 329: { action.builder.
consumeDirectDeclaratorArrayModifier(false); break;
}
//
- // Rule 333: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 330: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
//
- case 333: { action.builder.
+ case 330: { action.builder.
consumePointer(); break;
}
//
- // Rule 334: ptr_operator ::= &
+ // Rule 331: ptr_operator ::= &
//
- case 334: { action.builder.
+ case 331: { action.builder.
consumeReferenceOperator(); break;
}
//
- // Rule 335: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 332: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
//
- case 335: { action.builder.
+ case 332: { action.builder.
consumePointerToMember(); break;
}
//
- // Rule 341: cv_qualifier ::= const
+ // Rule 338: cv_qualifier ::= const
//
- case 341: { action.builder.
+ case 338: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 342: cv_qualifier ::= volatile
+ // Rule 339: cv_qualifier ::= volatile
//
- case 342: { action.builder.
+ case 339: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 344: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
+ // Rule 341: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
//
- case 344: { action.builder.
+ case 341: { action.builder.
consumeQualifiedId(true); break;
}
//
- // Rule 345: type_id ::= type_specifier_seq
+ // Rule 342: type_id ::= type_specifier_seq
//
- case 345: { action.builder.
+ case 342: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 346: type_id ::= type_specifier_seq abstract_declarator
+ // Rule 343: type_id ::= type_specifier_seq abstract_declarator
//
- case 346: { action.builder.
+ case 343: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 349: abstract_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 346: abstract_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 349: { action.builder.
+ case 346: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 350: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
+ // Rule 347: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
//
- case 350: { action.builder.
+ case 347: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 354: basic_direct_abstract_declarator ::= ( abstract_declarator )
+ // Rule 351: basic_direct_abstract_declarator ::= ( abstract_declarator )
//
- case 354: { action.builder.
+ case 351: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 355: basic_direct_abstract_declarator ::= ( )
+ // Rule 352: basic_direct_abstract_declarator ::= ( )
//
- case 355: { action.builder.
+ case 352: { action.builder.
consumeAbstractDeclaratorEmpty(); break;
}
//
- // Rule 356: array_direct_abstract_declarator ::= array_modifier
+ // Rule 353: array_direct_abstract_declarator ::= array_modifier
//
- case 356: { action.builder.
+ case 353: { action.builder.
consumeDirectDeclaratorArrayDeclarator(false); break;
}
//
- // Rule 357: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
+ // Rule 354: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
//
- case 357: { action.builder.
+ case 354: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 358: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
+ // Rule 355: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
//
- case 358: { action.builder.
+ case 355: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 359: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 356: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 359: { action.builder.
+ case 356: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 360: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 357: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 360: { action.builder.
+ case 357: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(false); break;
}
//
- // Rule 361: parameter_declaration_clause ::= parameter_declaration_list_opt ...
+ // Rule 358: parameter_declaration_clause ::= parameter_declaration_list_opt ...
//
- case 361: { action.builder.
+ case 358: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 362: parameter_declaration_clause ::= parameter_declaration_list_opt
+ // Rule 359: parameter_declaration_clause ::= parameter_declaration_list_opt
//
- case 362: { action.builder.
+ case 359: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 363: parameter_declaration_clause ::= parameter_declaration_list , ...
+ // Rule 360: parameter_declaration_clause ::= parameter_declaration_list , ...
//
- case 363: { action.builder.
+ case 360: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 369: abstract_declarator_opt ::= $Empty
+ // Rule 366: abstract_declarator_opt ::= $Empty
//
- case 369: { action.builder.
+ case 366: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 370: parameter_declaration ::= declaration_specifiers parameter_init_declarator
+ // Rule 367: parameter_declaration ::= declaration_specifiers parameter_init_declarator
//
- case 370: { action.builder.
+ case 367: { action.builder.
consumeParameterDeclaration(); break;
}
//
- // Rule 371: parameter_declaration ::= declaration_specifiers
+ // Rule 368: parameter_declaration ::= declaration_specifiers
//
- case 371: { action.builder.
+ case 368: { action.builder.
consumeParameterDeclarationWithoutDeclarator(); break;
}
//
- // Rule 373: parameter_init_declarator ::= declarator = parameter_initializer
+ // Rule 370: parameter_init_declarator ::= declarator = parameter_initializer
//
- case 373: { action.builder.
+ case 370: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 375: parameter_init_declarator ::= abstract_declarator = parameter_initializer
+ // Rule 372: parameter_init_declarator ::= abstract_declarator = parameter_initializer
//
- case 375: { action.builder.
+ case 372: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 376: parameter_init_declarator ::= = parameter_initializer
+ // Rule 373: parameter_init_declarator ::= = parameter_initializer
//
- case 376: { action.builder.
+ case 373: { action.builder.
consumeDeclaratorWithInitializer(false); break;
}
//
- // Rule 377: parameter_initializer ::= assignment_expression
+ // Rule 374: parameter_initializer ::= assignment_expression
//
- case 377: { action.builder.
+ case 374: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 378: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
+ // Rule 375: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
//
- case 378: { action.builder.
+ case 375: { action.builder.
consumeFunctionDefinition(false); break;
}
//
- // Rule 379: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
+ // Rule 376: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
//
- case 379: { action.builder.
+ case 376: { action.builder.
consumeFunctionDefinition(true); break;
}
//
- // Rule 382: initializer ::= ( expression_list )
+ // Rule 379: initializer ::= ( expression_list )
//
- case 382: { action.builder.
+ case 379: { action.builder.
consumeInitializerConstructor(); break;
}
//
- // Rule 383: initializer_clause ::= assignment_expression
+ // Rule 380: initializer_clause ::= assignment_expression
//
- case 383: { action.builder.
+ case 380: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 384: initializer_clause ::= { <openscope-ast> initializer_list , }
+ // Rule 381: initializer_clause ::= { <openscope-ast> initializer_list , }
//
- case 384: { action.builder.
+ case 381: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 385: initializer_clause ::= { <openscope-ast> initializer_list }
+ // Rule 382: initializer_clause ::= { <openscope-ast> initializer_list }
//
- case 385: { action.builder.
+ case 382: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 386: initializer_clause ::= { <openscope-ast> }
+ // Rule 383: initializer_clause ::= { <openscope-ast> }
//
- case 386: { action.builder.
+ case 383: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 391: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
+ // Rule 388: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
//
- case 391: { action.builder.
+ case 388: { action.builder.
consumeClassSpecifier(); break;
}
//
- // Rule 392: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
+ // Rule 389: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
//
- case 392: { action.builder.
+ case 389: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 393: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
+ // Rule 390: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
//
- case 393: { action.builder.
+ case 390: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 394: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
+ // Rule 391: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
//
- case 394: { action.builder.
+ case 391: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 395: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
+ // Rule 392: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
//
- case 395: { action.builder.
+ case 392: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 397: identifier_name_opt ::= $Empty
+ // Rule 394: identifier_name_opt ::= $Empty
//
- case 397: { action.builder.
+ case 394: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 401: visibility_label ::= access_specifier_keyword :
+ // Rule 398: visibility_label ::= access_specifier_keyword :
//
- case 401: { action.builder.
+ case 398: { action.builder.
consumeVisibilityLabel(); break;
}
//
- // Rule 402: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
+ // Rule 399: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
//
- case 402: { action.builder.
+ case 399: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 403: member_declaration ::= declaration_specifiers_opt ;
+ // Rule 400: member_declaration ::= declaration_specifiers_opt ;
//
- case 403: { action.builder.
+ case 400: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 406: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
+ // Rule 403: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
//
- case 406: { action.builder.
+ case 403: { action.builder.
consumeMemberDeclarationQualifiedId(); break;
}
//
- // Rule 411: member_declaration ::= ERROR_TOKEN
+ // Rule 409: member_declaration ::= ERROR_TOKEN
//
- case 411: { action.builder.
+ case 409: { action.builder.
consumeDeclarationProblem(); break;
}
//
- // Rule 419: member_declarator ::= declarator constant_initializer
+ // Rule 417: member_declarator ::= declarator constant_initializer
//
- case 419: { action.builder.
+ case 417: { action.builder.
consumeMemberDeclaratorWithInitializer(); break;
}
//
- // Rule 420: member_declarator ::= bit_field_declarator : constant_expression
+ // Rule 418: member_declarator ::= bit_field_declarator : constant_expression
//
- case 420: { action.builder.
+ case 418: { action.builder.
consumeBitField(true); break;
}
//
- // Rule 421: member_declarator ::= : constant_expression
+ // Rule 419: member_declarator ::= : constant_expression
//
- case 421: { action.builder.
+ case 419: { action.builder.
consumeBitField(false); break;
}
//
- // Rule 422: bit_field_declarator ::= identifier_name
+ // Rule 420: bit_field_declarator ::= identifier_name
//
- case 422: { action.builder.
+ case 420: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 423: constant_initializer ::= = constant_expression
+ // Rule 421: constant_initializer ::= = constant_expression
//
- case 423: { action.builder.
+ case 421: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 429: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 427: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 429: { action.builder.
+ case 427: { action.builder.
consumeBaseSpecifier(false, false); break;
}
//
- // Rule 430: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
+ // Rule 428: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
//
- case 430: { action.builder.
+ case 428: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 431: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
+ // Rule 429: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
//
- case 431: { action.builder.
+ case 429: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 432: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
+ // Rule 430: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
//
- case 432: { action.builder.
+ case 430: { action.builder.
consumeBaseSpecifier(true, false); break;
}
//
- // Rule 433: access_specifier_keyword ::= private
+ // Rule 431: access_specifier_keyword ::= private
//
- case 433: { action.builder.
+ case 431: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 434: access_specifier_keyword ::= protected
+ // Rule 432: access_specifier_keyword ::= protected
//
- case 434: { action.builder.
+ case 432: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 435: access_specifier_keyword ::= public
+ // Rule 433: access_specifier_keyword ::= public
//
- case 435: { action.builder.
+ case 433: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 437: access_specifier_keyword_opt ::= $Empty
+ // Rule 435: access_specifier_keyword_opt ::= $Empty
//
- case 437: { action.builder.
+ case 435: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 439: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
+ // Rule 437: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
//
- case 439: { action.builder.
+ case 437: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 440: conversion_function_id ::= operator conversion_type_id
+ // Rule 438: conversion_function_id ::= operator conversion_type_id
//
- case 440: { action.builder.
+ case 438: { action.builder.
consumeConversionName(); break;
}
//
- // Rule 441: conversion_type_id ::= type_specifier_seq conversion_declarator
+ // Rule 439: conversion_type_id ::= type_specifier_seq conversion_declarator
//
- case 441: { action.builder.
+ case 439: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 442: conversion_type_id ::= type_specifier_seq
+ // Rule 440: conversion_type_id ::= type_specifier_seq
//
- case 442: { action.builder.
+ case 440: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 443: conversion_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 441: conversion_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 443: { action.builder.
+ case 441: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 449: mem_initializer ::= mem_initializer_name ( expression_list_opt )
+ // Rule 447: mem_initializer ::= mem_initializer_name ( expression_list_opt )
//
- case 449: { action.builder.
+ case 447: { action.builder.
consumeConstructorChainInitializer(); break;
}
//
- // Rule 450: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 448: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 450: { action.builder.
+ case 448: { action.builder.
consumeQualifiedId(false); break;
}
//
- // Rule 453: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
+ // Rule 451: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
//
- case 453: { action.builder.
+ case 451: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 454: operator_id_name ::= operator overloadable_operator
+ // Rule 452: operator_id_name ::= operator overloadable_operator
//
- case 454: { action.builder.
+ case 452: { action.builder.
consumeOperatorName(); break;
}
//
- // Rule 497: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
+ // Rule 495: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
//
- case 497: { action.builder.
+ case 495: { action.builder.
consumeTemplateDeclaration(); break;
}
//
- // Rule 498: export_opt ::= export
+ // Rule 496: export_opt ::= export
//
- case 498: { action.builder.
+ case 496: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 499: export_opt ::= $Empty
+ // Rule 497: export_opt ::= $Empty
//
- case 499: { action.builder.
+ case 497: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 503: template_parameter ::= parameter_declaration
+ // Rule 501: template_parameter ::= parameter_declaration
//
- case 503: { action.builder.
+ case 501: { action.builder.
consumeTemplateParamterDeclaration(); break;
}
//
- // Rule 504: type_parameter ::= class identifier_name_opt
+ // Rule 502: type_parameter ::= class identifier_name_opt
//
- case 504: { action.builder.
+ case 502: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 505: type_parameter ::= class identifier_name_opt = type_id
+ // Rule 503: type_parameter ::= class identifier_name_opt = type_id
//
- case 505: { action.builder.
+ case 503: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 506: type_parameter ::= typename identifier_name_opt
+ // Rule 504: type_parameter ::= typename identifier_name_opt
//
- case 506: { action.builder.
+ case 504: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 507: type_parameter ::= typename identifier_name_opt = type_id
+ // Rule 505: type_parameter ::= typename identifier_name_opt = type_id
//
- case 507: { action.builder.
+ case 505: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 508: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
+ // Rule 506: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
//
- case 508: { action.builder.
+ case 506: { action.builder.
consumeTemplatedTypeTemplateParameter(false); break;
}
//
- // Rule 509: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
+ // Rule 507: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
//
- case 509: { action.builder.
+ case 507: { action.builder.
consumeTemplatedTypeTemplateParameter(true); break;
}
//
- // Rule 510: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
+ // Rule 508: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
//
- case 510: { action.builder.
+ case 508: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 518: explicit_instantiation ::= template declaration
+ // Rule 516: explicit_instantiation ::= template declaration
//
- case 518: { action.builder.
+ case 516: { action.builder.
consumeTemplateExplicitInstantiation(); break;
}
//
- // Rule 519: explicit_specialization ::= template < > declaration
+ // Rule 517: explicit_specialization ::= template < > declaration
//
- case 519: { action.builder.
+ case 517: { action.builder.
consumeTemplateExplicitSpecialization(); break;
}
//
- // Rule 520: try_block ::= try compound_statement <openscope-ast> handler_seq
+ // Rule 518: try_block ::= try compound_statement <openscope-ast> handler_seq
//
- case 520: { action.builder.
+ case 518: { action.builder.
consumeStatementTryBlock(); break;
}
//
- // Rule 523: handler ::= catch ( exception_declaration ) compound_statement
+ // Rule 521: handler ::= catch ( exception_declaration ) compound_statement
//
- case 523: { action.builder.
+ case 521: { action.builder.
consumeStatementCatchHandler(false); break;
}
//
- // Rule 524: handler ::= catch ( ... ) compound_statement
+ // Rule 522: handler ::= catch ( ... ) compound_statement
//
- case 524: { action.builder.
+ case 522: { action.builder.
consumeStatementCatchHandler(true); break;
}
//
- // Rule 525: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
+ // Rule 523: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
//
- case 525: { action.builder.
+ case 523: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 526: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
+ // Rule 524: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
//
- case 526: { action.builder.
+ case 524: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 527: exception_declaration ::= type_specifier_seq
+ // Rule 525: exception_declaration ::= type_specifier_seq
//
- case 527: { action.builder.
+ case 525: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 535: expression_parser_start ::= ERROR_TOKEN
+ // Rule 533: expression_parser_start ::= ERROR_TOKEN
//
- case 535: { action.builder.
+ case 533: { action.builder.
consumeExpressionProblem(); break;
}
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParserprs.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParserprs.java
index 51dd6ac6e13..738e3a1eb55 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParserprs.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParserprs.java
@@ -29,7 +29,7 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0
+ 0,0,0
};
};
public final static byte isKeyword[] = IsKeyword.isKeyword;
@@ -66,450 +66,447 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,3,
4,4,5,2,4,5,4,5,6,1,
- 3,1,0,1,3,1,1,1,1,1,
- 6,6,5,7,6,1,0,6,5,6,
- 4,1,3,1,0,1,1,2,1,3,
- 1,3,1,1,1,1,3,9,2,2,
- 3,2,3,1,5,1,2,2,1,0,
- 1,1,1,4,1,2,1,1,2,3,
- 1,1,1,3,2,1,2,2,9,8,
- 2,1,3,1,3,1,0,1,0,2,
- 1,1,3,1,3,2,1,5,8,1,
- 2,3,1,5,4,3,1,3,1,1,
- 5,4,4,5,5,1,0,1,1,1,
- 2,4,2,2,1,5,1,1,1,1,
- 1,1,2,1,0,1,3,1,2,3,
- 2,1,2,2,1,0,1,3,3,5,
- 5,4,1,1,1,1,0,1,5,2,
- 2,1,2,2,1,0,1,3,4,3,
- 1,1,5,2,1,1,3,3,1,1,
+ 3,1,0,1,3,1,1,1,6,5,
+ 7,6,1,0,6,5,6,4,1,3,
+ 1,0,1,1,2,1,3,1,3,1,
+ 1,1,1,3,9,2,2,3,2,3,
+ 1,5,1,2,2,1,0,1,1,1,
+ 4,1,2,1,1,2,3,1,1,1,
+ 3,2,1,2,2,9,8,2,1,3,
+ 1,3,1,0,1,0,2,1,1,3,
+ 1,3,2,1,5,8,1,2,3,1,
+ 5,4,3,1,3,1,1,5,4,4,
+ 5,5,1,0,1,1,1,2,4,2,
+ 2,1,5,1,1,1,1,1,1,1,
+ 2,1,0,1,3,1,2,3,2,1,
+ 2,2,1,0,1,3,3,5,5,4,
+ 1,1,1,1,0,1,5,2,2,1,
+ 2,2,1,0,1,3,4,3,1,1,
+ 5,2,1,1,3,3,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,2,2,7,1,0,1,
- 3,1,1,2,4,2,4,7,9,5,
- 1,3,1,0,1,1,1,2,4,4,
- 1,2,5,5,3,3,1,4,3,1,
- 0,1,3,2,1,-64,0,0,0,-2,
+ 1,1,2,2,7,1,0,1,3,1,
+ 1,2,4,2,4,7,9,5,1,3,
+ 1,0,1,1,1,2,4,4,1,2,
+ 5,5,3,3,1,4,3,1,0,1,
+ 3,2,1,-64,0,0,0,-3,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-54,0,0,0,
+ 0,0,0,0,-138,-59,0,0,0,0,
+ 0,-126,0,0,0,0,0,-314,0,0,
+ 0,0,-121,0,0,0,0,0,-250,-94,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,-2,0,0,0,0,0,0,0,
+ 0,0,-49,-246,-276,0,0,0,-66,0,
+ 0,0,0,0,0,0,-129,0,0,0,
+ 0,0,0,-50,-131,0,0,0,0,0,
+ 0,0,0,-5,0,-73,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,-452,0,0,-266,0,0,0,0,0,
+ 0,-117,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-5,0,
- 0,0,0,0,0,0,-54,-6,0,0,
- 0,0,0,-264,-7,0,0,-327,0,0,
- 0,-67,0,0,0,0,0,0,-181,0,
- 0,-93,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-59,0,0,0,0,0,
- 0,0,-340,0,0,0,-371,0,0,-8,
0,0,0,0,0,0,0,0,0,0,
- 0,-17,0,0,0,0,0,0,0,-319,
- 0,0,0,0,0,0,-453,0,-151,0,
+ -67,0,0,0,0,0,0,0,0,0,
+ 0,-19,0,0,0,0,-118,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-234,0,-3,0,0,
- 0,0,0,0,-117,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-6,0,0,
+ 0,0,0,0,-453,0,0,0,0,0,
+ -17,0,0,0,0,0,0,0,-300,0,
+ 0,0,-74,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-11,0,0,0,-7,
+ 0,0,0,0,-133,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-9,0,0,0,
- 0,-129,0,0,0,0,0,0,-121,-250,
- -10,-247,0,0,-130,0,0,0,0,-118,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-8,0,0,0,0,
+ 0,-143,0,0,0,0,0,0,-322,0,
+ -247,0,0,0,-456,0,0,-9,0,-228,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-138,0,0,0,0,0,-330,
- 0,0,0,0,-131,0,0,0,-11,-73,
+ 0,-55,0,0,0,0,-264,-213,0,0,
+ 0,0,0,-10,-357,0,0,0,-152,0,
+ 0,0,-387,0,0,0,0,-139,-518,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-230,-186,0,0,0,0,0,
- -133,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-345,0,-12,-13,-483,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-12,-63,-119,
0,0,0,0,0,0,0,0,0,0,
- 0,-139,-299,0,0,-228,0,0,0,0,
+ 0,0,0,0,-181,0,0,0,0,-151,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-48,0,0,0,-14,-508,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-13,-132,0,0,
- 0,0,0,0,0,0,0,-66,0,-143,
- 0,0,-126,0,0,0,0,0,0,0,
- -235,0,0,0,0,-521,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-486,0,0,0,
+ -16,0,0,0,0,0,0,0,-29,0,
+ 0,0,0,0,0,0,0,0,0,-21,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-4,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-347,-14,0,0,0,-74,0,
- 0,0,-16,0,0,0,0,0,0,0,
- 0,-19,0,0,0,-29,-511,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-30,
- 0,0,0,0,0,0,0,-286,0,0,
- 0,0,0,0,-287,0,0,0,-21,0,
- 0,0,-145,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-186,0,0,0,0,
+ 0,-51,-119,0,0,0,-30,0,-132,-135,
+ -180,0,0,0,0,0,-31,-145,-284,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-31,0,-4,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-236,0,0,0,
- 0,0,0,0,-32,0,0,0,0,0,
- -135,-408,0,0,0,0,-152,0,0,0,
- -239,0,0,0,0,-369,0,-33,-283,0,
+ 0,-32,0,0,0,0,0,0,0,-296,
+ 0,0,0,0,0,-33,-34,0,0,0,
+ -324,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-34,0,0,0,0,0,0,0,-295,
- -35,0,0,0,0,0,-156,0,0,0,
- -321,0,0,0,-203,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-347,0,-35,
+ 0,0,-377,0,-325,0,0,0,-156,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-36,0,0,0,0,0,0,
- 0,0,-37,0,0,0,0,0,0,-213,
- 0,0,-38,0,0,-322,0,0,0,-442,
+ 0,0,0,0,0,0,0,-287,0,0,
+ 0,0,0,0,0,0,-311,0,0,0,
+ 0,0,0,-36,0,0,-433,0,0,0,
+ -37,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-318,
+ 0,0,0,0,0,0,0,-38,-39,0,
+ 0,0,0,0,0,0,0,0,0,-40,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-308,0,0,
- 0,0,0,0,-39,0,0,-430,0,0,
- 0,-497,0,0,0,0,0,0,0,0,
+ 0,0,-288,0,0,0,0,0,0,0,
+ -414,-317,0,0,0,0,0,-41,0,0,
+ 0,-410,-42,0,0,0,-337,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-266,0,0,0,0,0,
- -314,-40,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-203,0,0,0,0,-56,
+ 0,0,0,0,-96,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-41,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-56,-50,
- 0,0,0,0,-42,0,0,0,-273,0,
+ 0,0,0,0,0,0,0,-352,0,0,
+ 0,0,0,0,0,-57,-60,0,0,0,
+ 0,-239,0,0,0,0,-97,0,0,0,
+ -336,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-209,0,0,
+ 0,0,0,0,0,0,0,-68,0,0,
+ 0,0,0,0,0,-69,0,0,-98,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-57,0,0,0,-96,0,0,0,
- -274,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-220,
- 0,0,0,0,0,0,0,-60,0,0,
- 0,0,0,-365,0,0,0,0,-97,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,-209,0,0,0,0,0,0,0,-71,
+ -72,0,0,0,0,0,0,-111,0,0,
+ -99,0,0,0,-467,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-305,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-457,0,-270,0,0,
- -98,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-220,0,0,0,0,0,0,
+ 0,-112,-355,0,0,0,0,0,-113,-114,
+ 0,0,-100,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-324,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-68,-69,-366,
- 0,0,-99,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-306,0,0,0,0,
+ 0,0,0,-122,-364,0,0,0,0,0,
+ -507,-140,0,0,-101,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-71,0,0,0,0,
- 0,0,0,-72,-350,0,0,0,0,0,
- -111,-112,0,0,-100,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-327,0,0,
+ 0,0,0,0,0,0,-356,0,0,0,
+ 0,0,-141,-142,0,0,-102,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-113,0,0,
- 0,0,0,0,0,-114,-351,0,0,0,
- 0,0,-122,-140,0,0,-101,0,0,0,
- -141,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-142,-389,0,
- 0,0,0,0,-157,-158,0,0,-102,0,
- 0,0,-159,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-157,-394,0,
+ 0,0,0,0,-158,-159,0,0,-103,0,
+ 0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,-160,
- -414,0,0,0,0,0,-161,-162,0,0,
- -103,0,0,0,-163,0,0,0,0,0,
+ -417,0,0,0,0,0,-161,-162,0,0,
+ -104,0,0,0,-163,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,-164,0,0,0,0,0,0,
0,-165,-166,0,0,0,0,-167,-168,-169,
- 0,0,-104,0,0,0,-170,0,0,0,
+ 0,0,-105,0,0,0,-170,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,-171,0,0,0,0,
0,0,0,-172,-173,0,0,0,0,-174,
- -175,-176,0,0,-105,0,0,0,-177,0,
+ -175,-176,0,0,-106,0,0,0,-177,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,-178,0,0,
- 0,0,0,0,0,-379,-179,0,0,0,
- 0,-392,0,0,0,0,-106,0,0,0,
- -334,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-182,
- 0,0,0,0,0,0,0,-183,-184,0,
- 0,0,0,-185,-194,-195,0,0,-136,0,
- 0,0,-200,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-179,-182,0,0,0,
+ 0,-235,0,0,0,0,-136,0,0,0,
+ -279,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-183,
+ 0,0,0,0,0,0,0,-184,-185,0,
+ 0,0,0,-221,0,0,0,-194,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-201,0,0,0,0,0,0,0,-204,
- -315,0,0,0,0,-215,-218,-226,-221,0,
- 0,0,-227,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-320,0,0,0,0,
+ -195,0,-58,0,0,-61,0,-200,-187,0,
+ 0,0,-201,-513,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-51,0,0,0,
- 0,-229,-48,0,0,0,-243,-516,0,0,
+ 0,0,0,0,-204,0,0,0,0,0,
+ 0,-366,0,0,0,-321,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-271,0,
+ 0,0,0,0,0,0,-365,-215,0,0,
+ 0,0,-335,0,0,0,-218,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -245,0,0,0,0,0,0,0,-253,0,
- 0,0,0,0,0,-278,0,0,0,-318,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-226,0,0,0,0,0,-154,
+ 0,0,0,-227,0,0,0,0,0,0,
+ 0,0,-350,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-267,0,0,0,0,0,0,0,
- -342,-268,0,0,0,0,-332,0,0,0,
- -269,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-372,0,0,0,0,
+ 0,0,0,-400,-229,0,0,0,0,-382,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-279,0,0,
- 0,0,0,-154,0,0,0,-280,0,0,
- 0,0,0,0,0,0,0,-284,-345,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-457,0,0,0,0,0,0,0,
+ -243,0,0,0,0,0,-148,0,0,0,
+ -245,-62,0,0,0,0,0,-253,0,-383,
0,0,0,0,0,0,0,0,0,0,
- 0,-285,0,0,0,0,0,0,0,-360,
- -296,0,0,0,0,-374,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-300,0,
- 0,0,0,0,0,0,-301,0,0,0,
- 0,0,-148,0,0,0,-306,-307,0,0,
- 0,0,0,-180,0,0,0,-375,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -413,0,0,0,0,0,-444,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -312,0,0,0,0,0,0,0,-394,-313,
- 0,0,0,0,-445,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-267,
+ 0,0,0,0,0,0,0,-269,0,0,
+ 0,0,0,-338,0,0,0,-270,-109,0,
+ 0,0,0,0,-280,0,-108,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-329,0,0,
- 0,0,0,0,0,-344,0,0,0,0,
- 0,-335,0,0,0,-346,-361,0,0,0,
- 0,0,-190,0,0,0,-108,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-364,
- 0,0,0,0,0,0,0,-58,-188,0,
+ 0,0,0,0,0,0,0,-188,-52,0,
0,0,0,-95,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-317,0,0,0,
- 0,0,0,0,-384,-386,0,-94,0,0,
- 0,-458,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-281,0,0,0,
+ 0,0,0,0,-285,-286,0,-93,0,0,
+ 0,-110,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ -116,0,0,0,0,0,0,0,-90,0,
+ 0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -387,0,0,0,0,0,0,-90,0,0,
- 0,-388,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-91,0,0,
+ 0,-297,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-91,0,0,0,
+ -301,0,0,0,0,-92,0,0,0,-302,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-433,
- 0,0,0,0,-92,0,0,0,-390,0,
+ 0,0,0,0,0,0,0,0,-308,0,
+ 0,0,0,-84,0,0,0,-441,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-391,0,0,
- 0,0,-84,0,0,0,-397,0,0,0,
+ 0,0,0,0,0,0,-482,0,0,0,
+ -85,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-399,0,0,0,-85,
+ 0,0,0,-395,0,0,0,-86,0,0,
+ 0,-309,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -310,0,0,0,-87,0,0,0,-315,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-462,0,0,0,-86,0,0,0,
- -402,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-409,
- 0,0,0,-87,0,0,0,-419,0,0,
+ 0,0,0,0,0,0,0,-316,0,0,
+ 0,-53,0,0,0,-1,0,0,0,0,
+ -88,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-513,0,0,0,
- -53,0,0,0,-147,0,0,-55,0,-88,
+ 0,0,0,-333,0,0,-189,0,0,0,
+ 0,-149,-191,-332,0,-435,0,0,-124,0,
+ 0,0,0,0,-398,0,0,-89,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-263,0,0,-396,0,0,0,0,
- -244,0,0,0,0,-420,0,0,0,0,
- 0,-241,0,0,0,0,-89,0,0,0,
+ -75,0,0,0,0,0,-115,0,0,0,
+ 0,-419,0,-362,-349,0,-198,0,0,0,
+ 0,-244,0,0,0,0,0,0,0,0,
+ 0,0,0,-351,0,-234,0,0,0,0,
+ 0,-367,-290,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-150,-370,-206,0,-446,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-444,
- 0,0,-248,0,0,0,-404,-15,0,0,
- 0,0,0,0,-333,-446,0,0,0,0,
- -448,0,0,0,-352,0,0,0,0,-189,
- 0,0,-449,0,-238,0,0,0,0,0,
- 0,-450,-452,-124,0,0,0,0,0,-191,
- 0,0,0,0,0,0,0,0,-240,0,
- 0,0,0,0,0,0,0,0,0,-289,
- 0,0,0,0,-61,0,0,0,0,0,
- 0,-254,0,0,0,0,0,0,-383,0,
- 0,0,0,0,0,0,0,0,0,-469,
- 0,-20,0,0,0,0,0,0,0,0,
+ -76,0,-137,0,0,0,0,0,0,0,
+ 0,0,-392,0,0,-393,0,0,0,0,
+ 0,0,0,0,0,-454,0,0,0,0,
+ 0,0,0,0,0,0,-396,-193,0,0,
+ 0,0,0,0,0,0,0,-190,0,0,
+ 0,0,-391,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-44,0,0,0,0,-370,
- 0,0,0,-376,0,0,0,0,0,0,
- 0,0,-115,0,0,0,0,0,-471,-407,
- 0,0,-411,0,-193,0,0,-206,0,0,
- -359,0,0,0,0,0,0,0,-196,-52,
- 0,0,0,0,0,0,-432,-454,0,0,
- 0,0,-137,0,0,-477,0,0,0,0,
- -199,0,0,0,0,0,-472,0,0,0,
- 0,0,0,0,0,-473,-478,0,0,0,
+ 0,-402,0,0,0,0,0,0,-123,0,
+ -425,-329,0,-252,0,0,0,-241,0,0,
+ 0,0,0,0,0,0,0,0,-397,-403,
+ 0,-44,0,0,0,0,-155,0,0,0,
+ 0,-205,0,-63,0,0,-510,0,0,0,
+ 0,-399,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-455,0,0,0,0,0,
+ -405,0,0,-465,0,-442,-45,0,0,0,
+ 0,-384,0,0,0,0,0,0,0,0,
+ 0,0,0,-196,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-486,0,-147,0,
0,0,0,0,0,0,0,0,0,0,
- -62,0,-422,0,0,0,0,0,-485,-482,
- 0,-109,0,0,0,0,0,0,0,0,
- -488,0,-423,0,0,0,-495,0,0,0,
- 0,0,-146,-514,0,0,0,0,0,-428,
0,0,0,0,0,0,0,0,0,0,
+ 0,-408,-214,0,0,0,0,0,0,0,
+ 0,-415,0,0,-207,0,0,-125,0,0,
+ -422,0,0,0,0,0,0,0,0,-79,
0,0,0,0,0,0,0,0,0,0,
- -447,0,0,-504,0,0,-512,-216,0,0,
- 0,0,0,-149,-517,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-271,0,0,0,0,0,0,
+ 0,0,0,0,-80,0,0,0,-461,0,
0,0,0,0,0,0,0,0,0,0,
- -252,-435,0,-326,-202,0,-110,0,0,0,
- 0,0,0,0,0,0,0,-255,0,0,
- 0,0,0,0,0,-207,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-313,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-400,0,0,0,0,0,0,0,
- 0,0,0,0,-355,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-436,
- 0,-357,0,0,0,0,0,0,0,0,
- -304,-470,0,0,0,0,0,0,0,-455,
+ -360,0,0,0,-423,-443,0,0,0,0,
+ 0,-445,-511,0,0,0,-450,-447,-448,-242,
+ 0,-376,0,0,0,-120,-477,0,0,0,
+ 0,0,0,-219,0,0,0,0,0,0,
+ -130,0,0,0,0,0,0,0,0,-474,
+ 0,0,0,0,0,0,-212,0,-249,-449,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-276,0,0,0,0,0,0,-76,
+ 0,0,0,0,-127,0,-471,0,0,-451,
+ 0,0,0,0,0,0,-359,0,0,0,
+ 0,-466,0,0,0,0,0,0,0,0,
+ -468,0,-144,0,0,0,-260,-495,0,0,
+ 0,0,0,0,0,0,0,-248,0,0,
+ 0,0,0,0,-230,0,0,0,0,0,
+ -469,-236,0,-232,0,0,-500,0,0,0,
+ 0,-470,-256,0,0,0,0,0,0,-238,
+ 0,-475,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-153,0,0,0,0,0,
+ -479,0,-202,0,0,0,0,0,-268,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-368,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-443,
- 0,0,0,0,-401,0,0,0,0,0,
- 0,0,0,0,0,0,0,-187,0,0,
- 0,0,0,-144,0,0,0,-219,0,0,
- 0,0,-277,0,0,0,0,0,0,0,
+ 0,0,0,-485,-492,0,-502,-240,0,0,
+ 0,0,0,0,-501,-107,0,-46,0,0,
+ -509,0,0,0,0,0,0,0,0,0,
+ -478,0,0,0,0,0,-514,0,0,0,
+ 0,-379,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-348,0,0,0,0,0,0,0,
- 0,0,-212,0,0,0,0,0,0,0,
- 0,0,-116,0,0,0,0,0,0,0,
- -79,0,0,0,0,0,0,0,0,0,
+ 0,-378,-426,0,0,0,-506,0,0,0,
+ 0,0,0,0,0,0,0,0,-257,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-80,0,0,0,0,
+ 0,0,0,-512,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-292,0,0,0,
+ 0,0,0,0,-484,0,0,0,0,0,
+ 0,-208,0,0,0,0,-258,0,-222,0,
+ -519,-146,0,0,0,0,-216,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -310,0,0,0,0,0,0,0,0,0,
- 0,-150,0,-281,0,0,0,-424,0,0,
- 0,0,0,0,0,0,-416,-451,-107,-222,
- 0,0,0,0,-393,0,0,-311,0,0,
+ 0,0,0,0,0,0,-291,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-123,0,0,0,0,0,
+ -522,-18,-401,0,0,0,0,0,-254,0,
+ 0,0,-259,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-192,0,0,0,
+ 0,0,0,0,0,0,0,-261,0,0,
0,0,0,0,0,0,0,0,0,0,
- -293,0,0,0,0,-155,0,-465,-474,-510,
+ 0,0,0,0,-233,0,-278,0,0,0,
+ -237,0,-262,0,0,0,0,0,0,0,
+ 0,-255,0,0,0,0,0,0,0,0,
+ 0,0,0,-81,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-82,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -205,0,-128,0,0,0,0,0,0,-291,
- 0,-456,0,0,0,0,0,0,-499,0,
- 0,0,-468,0,0,0,0,0,0,0,
- 0,0,0,-275,0,0,-503,0,0,0,
- 0,0,0,0,0,0,0,-214,0,0,
+ 0,0,0,0,0,0,0,0,0,-83,
0,0,0,0,0,0,0,0,0,0,
- 0,-466,0,-153,0,0,0,-429,0,0,
- -125,0,0,-246,0,0,-232,0,0,-395,
- 0,0,0,0,0,0,0,0,0,-120,
- 0,0,0,0,-505,0,0,-127,0,0,
- 0,0,0,0,-367,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-242,0,0,0,0,0,0,
- 0,-233,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-237,0,0,
- -251,0,-509,0,0,0,0,0,0,0,
- 0,-438,0,0,0,0,0,0,0,0,
+ 0,0,-330,0,0,0,0,0,0,0,
+ 0,0,0,-272,0,0,0,0,-293,0,
+ 0,0,0,0,-472,0,0,-283,0,-339,
+ -15,0,0,0,0,-406,0,0,0,-353,
+ -199,0,0,0,0,0,0,0,-503,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-249,-262,
- 0,0,-256,0,-257,0,0,0,0,0,
- 0,0,0,0,0,0,-515,0,0,0,
- 0,0,0,0,0,0,0,-18,0,0,
- -49,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-198,0,0,0,
- 0,-282,-294,-480,-258,0,0,-522,0,0,
- -75,0,0,-354,0,-498,0,0,-259,0,
- 0,-45,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-274,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-309,0,0,0,0,0,0,
+ 0,0,0,-374,-295,-307,0,0,0,0,
+ -407,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-217,0,0,
+ 0,0,0,0,0,-346,0,0,0,-263,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-525,0,-292,0,0,
- -223,0,0,0,0,0,-46,0,0,0,
- 0,0,0,0,0,0,0,0,0,-192,
- 0,0,0,0,-302,0,-303,0,0,0,
+ 0,0,0,0,0,0,0,-431,-275,0,
+ 0,0,0,0,0,-277,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-47,-348,
+ 0,0,0,0,0,0,0,0,0,-303,
+ 0,0,0,0,0,0,-312,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-298,0,
- 0,0,0,0,0,0,0,0,-323,0,
- 0,0,0,0,0,0,-467,0,0,0,
- 0,0,0,0,0,0,-81,0,0,0,
+ 0,-282,0,0,0,0,0,0,0,0,
+ 0,0,-294,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-304,0,
+ 0,0,0,-22,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-82,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-23,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-83,0,0,0,0,0,0,0,
+ 0,0,0,0,-24,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-336,-328,0,0,0,
- 0,-363,0,0,0,0,-325,0,0,0,
- 0,0,-481,-320,-22,0,0,0,0,0,
+ 0,0,0,0,0,0,-25,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-26,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-362,-47,
- 0,-290,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-211,-356,0,0,0,
- -224,0,0,0,0,0,0,0,0,0,
- 0,0,0,-197,0,0,0,-337,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-405,0,0,0,0,0,-339,0,0,
- 0,0,0,0,0,0,-427,0,-440,0,
- 0,0,0,0,0,0,0,0,-358,0,
- 0,0,0,0,0,0,-316,0,0,0,
- 0,0,0,-487,0,0,0,0,0,0,
- 0,0,0,0,-417,0,-353,-343,0,0,
- 0,0,0,0,-380,0,0,0,0,0,
- 0,-441,0,0,0,0,0,0,0,-410,
- 0,0,0,0,0,0,0,0,0,-338,
- 0,0,0,-459,0,0,-506,0,-460,0,
- 0,0,0,0,0,0,0,-434,-519,-381,
- 0,0,0,0,0,0,0,0,-382,0,
- 0,0,0,0,0,0,0,0,-43,0,
+ -27,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-208,0,0,0,0,-463,0,0,
+ 0,0,-28,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-385,-403,0,-406,0,0,0,0,0,
- 0,0,0,0,0,0,0,-412,0,0,
- 0,0,0,-413,0,0,0,0,0,0,
- 0,0,0,0,0,-23,0,0,0,0,
+ 0,0,0,0,-65,0,0,0,-494,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-24,0,0,
+ 0,0,0,0,0,0,-77,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-25,
+ 0,0,0,0,0,0,0,0,-78,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-26,0,0,0,0,0,0,0,0,
+ -134,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-27,0,0,0,0,0,0,
+ 0,0,-210,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-28,0,0,0,0,
+ 0,0,0,0,-504,0,0,0,0,0,
+ 0,0,0,0,0,-20,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-65,0,0,
+ 0,0,0,0,0,0,-341,-328,-432,-223,
+ 0,-43,0,0,0,0,-371,0,0,-437,
+ 0,0,0,0,-197,0,0,0,0,0,
+ 0,0,0,0,0,-224,0,0,0,0,
+ 0,0,0,0,-265,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-77,
+ -368,0,0,0,0,0,0,0,0,-464,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-251,0,0,
+ 0,0,0,-211,-326,0,0,0,0,0,
+ -427,0,0,0,-373,0,0,0,0,0,
+ 0,0,0,0,-334,0,0,-331,0,0,
+ -340,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-273,0,0,-363,0,
+ 0,-516,0,0,0,0,0,0,-411,0,
+ 0,0,0,0,0,0,0,0,0,-342,
+ -439,-375,0,0,0,0,-496,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-78,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-299,0,0,0,0,
+ 0,0,-420,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-134,0,0,0,0,0,0,
+ 0,0,-344,0,0,0,0,0,0,0,
+ 0,0,0,-358,0,-389,-388,0,-416,0,
+ -390,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-380,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-210,0,0,0,0,
+ -521,0,0,0,0,0,0,-409,-225,0,
+ -412,0,0,0,0,0,0,0,-434,0,
+ 0,0,0,-305,0,0,0,0,0,0,
+ 0,0,0,-421,0,-440,-323,0,0,0,
+ 0,-481,0,0,0,0,-458,0,0,0,
+ -128,0,0,0,0,0,-231,0,0,0,
+ 0,0,0,0,0,-70,0,0,-459,0,
+ -319,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-462,0,0,0,0,
+ -424,0,-487,-489,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-298,
+ 0,-428,0,0,0,0,0,0,-460,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-507,0,0,
- 0,0,0,0,0,0,0,0,-372,0,
- 0,0,0,-524,0,0,0,0,0,-431,
0,0,0,0,0,0,0,0,0,0,
- -341,0,0,0,0,0,0,0,0,0,
- 0,-518,-418,-421,-461,0,0,0,0,0,
- 0,0,-464,0,0,0,0,0,-483,0,
- 0,0,0,-490,0,0,0,0,0,-492,
- 0,0,0,0,-494,0,0,0,0,0,
+ 0,0,-463,0,0,0,0,-480,0,0,
+ 0,0,-493,-381,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-1,0,0,0,0,-373,0,0,0,
- 0,0,0,0,0,0,0,-496,-491,0,
+ 0,-488,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-369,0,0,0,0,0,
+ 0,0,0,0,0,-491,0,0,-499,0,
+ -497,0,0,-361,0,-498,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-426,-500,-501,-502,0,-520,
+ -343,0,0,0,-517,-520,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-354,0,0,0,-385,0,0,
+ 0,-386,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-404,0,0,0,-418,
+ 0,0,0,-436,0,0,0,-430,0,0,
+ 0,0,-490,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-289,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-429,0,-438,-473,
+ 0,0,0,0,-515,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-505,0,-476,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -231,0,0,-523,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-272,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-349,0,
- 0,0,-225,0,0,0,0,0,-377,0,
- 0,0,0,0,-260,0,0,0,0,0,
- -378,0,0,0,0,0,0,0,0,0,
- -398,0,0,0,0,0,-415,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-439,0,-489,0,0,0,
- 0,-493,0,0,0,0,0,0,0,0,
- 0,-70,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-437,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-217,0,0,0,-265,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-288,0,0,0,-297,0,
- 0,0,0,0,-484,0,0,0,0,-475,
- -476,0,0,0,0,0,0,0,0,0,
- 0,0,-479,0,-261,0,0,0,0,0,
- 0,0,0,0,0,-331,0,0,0,0,
- 0,0,0,0,0,0,-425,0,0,0,
- 0,-508,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
@@ -528,527 +525,524 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface BaseAction {
public final static char baseAction[] = {
- 169,4,53,72,72,31,31,64,64,38,
- 38,192,192,193,193,194,194,1,1,15,
+ 167,4,48,75,75,31,31,64,64,38,
+ 38,190,190,191,191,192,192,1,1,15,
15,15,15,15,15,15,15,16,16,16,
14,11,11,8,8,8,8,8,8,2,
65,65,5,5,12,12,12,12,44,44,
- 133,133,134,61,61,42,17,17,17,17,
+ 132,132,133,61,61,42,17,17,17,17,
17,17,17,17,17,17,17,17,17,17,
- 17,17,17,17,17,17,135,135,135,115,
- 115,18,18,18,18,18,18,18,18,18,
- 18,18,18,18,19,19,170,170,171,171,
- 172,138,138,139,139,136,136,140,137,137,
+ 17,17,17,17,17,17,134,134,134,112,
+ 112,18,18,18,18,18,18,18,18,18,
+ 18,18,18,18,19,19,168,168,169,169,
+ 170,137,137,138,138,135,135,139,136,136,
20,20,21,21,22,22,22,24,24,24,
24,25,25,25,26,26,26,27,27,27,
27,27,28,28,28,29,29,30,30,33,
33,34,34,35,35,36,36,41,41,40,
40,40,40,40,40,40,40,40,40,40,
- 40,40,39,32,141,141,98,98,173,173,
- 93,195,195,74,74,74,74,74,74,74,
- 74,74,75,75,75,70,70,59,59,174,
- 174,76,76,76,104,104,175,175,77,77,
- 77,176,176,78,78,78,78,78,79,79,
- 73,73,73,73,73,73,73,48,48,48,
- 48,48,105,105,106,106,49,177,23,23,
- 23,23,23,47,47,88,88,88,88,88,
- 148,148,143,143,143,143,143,144,144,144,
- 145,145,145,146,146,146,147,147,147,89,
- 89,89,89,89,90,90,90,13,13,13,
- 13,13,13,13,13,13,13,13,101,119,
- 119,119,119,119,119,117,117,117,118,118,
- 150,150,149,149,121,121,151,83,83,84,
- 84,86,87,85,51,46,152,152,52,50,
- 82,82,153,153,142,142,122,123,123,71,
- 71,154,154,62,62,62,57,57,56,63,
- 63,68,68,55,55,55,91,91,100,99,
- 99,60,60,58,58,54,54,43,102,102,
- 102,94,94,94,95,95,96,96,96,97,
- 97,107,107,107,109,109,108,108,196,196,
- 92,92,179,179,179,179,179,125,45,45,
- 156,178,178,126,126,126,126,180,180,37,
- 37,116,127,127,127,127,110,110,120,120,
- 120,158,159,159,159,159,159,159,159,159,
- 159,159,183,183,181,181,182,182,160,160,
- 160,160,161,184,112,111,111,185,185,162,
- 162,162,162,103,103,103,186,186,9,9,
- 10,187,187,188,163,155,155,164,164,165,
- 166,166,6,6,7,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,66,69,69,
- 168,168,129,129,130,130,130,130,130,130,
- 3,131,131,128,128,113,113,113,81,67,
- 80,157,157,114,114,189,189,189,132,132,
- 124,124,190,190,169,169,881,39,1638,1611,
- 841,3124,34,1003,31,35,995,30,32,1604,
- 29,27,56,1016,112,82,83,114,1040,1041,
- 1115,1082,1162,1138,1204,1171,1223,1216,29,1213,
- 1265,1335,149,278,2017,866,164,150,1233,39,
- 907,36,1040,3118,34,1003,343,35,995,331,
- 39,1903,2272,39,907,36,237,1012,34,1003,
- 31,35,995,30,32,858,29,27,56,1016,
- 112,82,83,114,1040,2016,1115,1082,1162,1138,
- 1204,1171,1756,2577,240,235,236,1542,39,451,
- 1304,4665,4561,337,324,1055,326,279,391,496,
- 320,1048,243,39,1428,47,356,2153,46,1003,
- 331,2058,247,250,253,256,2674,331,3584,1013,
- 39,907,36,1603,4646,34,1003,31,35,995,
- 65,32,350,872,784,353,1946,559,1918,3430,
- 729,3295,3411,3438,3343,1414,39,907,36,2551,
- 1012,34,1003,31,35,995,1848,32,858,29,
- 27,56,1016,112,82,83,114,1040,347,1115,
- 1082,1162,1138,1204,1171,1223,534,1442,1213,1265,
- 1335,149,1542,39,284,515,150,3577,859,1106,
- 1939,1535,2368,39,282,419,39,1519,390,516,
- 1414,39,907,36,2551,1012,34,1003,31,35,
- 995,1848,32,858,29,27,56,1016,112,82,
- 83,114,1040,347,1115,1082,1162,1138,1204,1171,
- 1223,291,55,1213,1265,1335,149,1518,2760,1863,
- 515,150,454,859,1180,589,445,392,425,237,
- 1939,444,2447,2466,516,1216,2821,3311,511,997,
- 1258,39,907,36,1943,3404,34,1003,31,35,
- 995,63,32,1840,1026,1915,1849,249,235,236,
- 3118,1414,39,907,36,2551,1012,34,1003,31,
- 35,995,1848,32,858,29,27,56,1016,112,
- 82,83,114,1040,347,1115,1082,1162,1138,1204,
- 1171,1223,357,511,1213,1265,1335,149,117,1972,
- 1394,515,150,1121,859,3118,1170,458,1854,2111,
- 337,1849,1778,1845,2583,516,1684,39,907,36,
- 2551,1012,34,1003,31,35,995,1848,32,858,
- 29,27,56,1016,112,82,83,114,1040,347,
- 1115,1082,1162,1138,1204,1171,1223,1649,1216,1213,
- 1265,1335,149,333,339,336,515,150,205,859,
- 1542,39,284,1472,1856,4043,3032,356,3884,2111,
- 516,2224,39,285,511,67,1609,39,907,36,
- 358,4646,34,1003,31,35,995,30,32,1882,
- 509,815,1849,348,872,784,353,1480,39,907,
- 36,346,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 457,1115,1082,1162,1138,1204,1171,1223,76,512,
- 1213,1265,1335,149,2528,1823,3063,383,150,1732,
- 39,907,36,1883,3404,34,1003,31,35,995,
- 62,32,994,39,1519,390,1938,1549,39,907,
- 36,386,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 965,1115,1082,1162,1138,1204,1171,1223,2039,55,
- 1213,1265,1335,149,1518,1901,582,383,150,2272,
- 39,907,36,1216,1012,34,1003,31,35,995,
- 30,32,858,29,27,56,1016,112,82,83,
- 91,384,62,387,1855,39,907,36,2883,1012,
- 34,1003,31,35,995,30,32,858,29,27,
- 56,1016,112,82,83,114,1040,1946,1115,1082,
- 1162,1138,1204,1171,1223,2084,329,1213,1265,1335,
- 149,1394,2031,330,164,150,3118,331,1546,1897,
- 38,331,39,287,66,4316,2577,3596,2050,1855,
- 39,907,36,388,1012,34,1003,31,35,995,
- 30,32,858,29,27,56,1016,112,82,83,
- 114,1040,67,1115,1082,1162,1138,1204,1171,1223,
- 1109,68,1213,1265,1335,149,336,1216,419,377,
- 150,1855,39,907,36,1216,1012,34,1003,31,
- 35,995,30,32,858,29,27,56,1016,112,
- 82,83,114,1040,1428,1115,1082,1162,1138,1204,
- 1171,1223,2965,326,1213,1265,1335,149,393,425,
- 2047,377,150,1370,3491,559,1855,39,907,36,
- 2630,1012,34,1003,31,35,995,30,32,858,
- 29,27,56,1016,112,82,83,114,1040,57,
- 1115,1082,1162,1138,1204,1171,1223,331,997,1213,
- 1265,1335,149,3990,376,137,377,150,1795,39,
- 907,36,2630,1012,34,1003,31,35,995,30,
- 32,858,29,27,56,1016,112,82,83,114,
- 1040,3420,1115,1082,1162,1138,1204,1171,1223,445,
- 318,1213,1265,1335,149,2079,375,94,383,150,
- 108,1804,1618,39,907,36,4529,1012,34,1003,
- 31,35,995,30,32,858,29,27,56,1016,
- 112,82,83,114,1040,1165,1115,1082,1162,1138,
- 1204,1171,1223,404,521,1213,1265,1335,149,597,
- 49,373,148,150,685,1855,39,907,36,1946,
- 1012,34,1003,31,35,995,30,32,858,29,
- 27,56,1016,112,82,83,114,1040,2071,1115,
- 1082,1162,1138,1204,1171,1223,521,3042,1213,1265,
- 1335,149,99,685,381,165,150,1855,39,907,
- 36,1946,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 2035,1115,1082,1162,1138,1204,1171,1223,1926,3320,
- 1213,1265,1335,149,2485,2362,2351,161,150,1855,
- 39,907,36,2153,1012,34,1003,31,35,995,
- 30,32,858,29,27,56,1016,112,82,83,
- 114,1040,1040,1115,1082,1162,1138,1204,1171,1223,
- 395,425,1213,1265,1335,149,331,2860,929,160,
- 150,1855,39,907,36,2153,1012,34,1003,31,
- 35,995,30,32,858,29,27,56,1016,112,
- 82,83,114,1040,1040,1115,1082,1162,1138,1204,
- 1171,1223,394,425,1213,1265,1335,149,1333,2029,
- 1399,159,150,1855,39,907,36,2242,1012,34,
- 1003,31,35,995,30,32,858,29,27,56,
- 1016,112,82,83,114,1040,1102,1115,1082,1162,
- 1138,1204,1171,1223,1218,997,1213,1265,1335,149,
- 4539,164,252,158,150,1855,39,907,36,3015,
- 1012,34,1003,31,35,995,30,32,858,29,
- 27,56,1016,112,82,83,114,1040,340,1115,
- 1082,1162,1138,1204,1171,1223,428,997,1213,1265,
- 1335,149,4551,1352,293,157,150,1855,39,907,
- 36,2506,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 1258,1115,1082,1162,1138,1204,1171,1223,2449,997,
- 1213,1265,1335,149,4567,2388,2390,156,150,1855,
- 39,907,36,1305,1012,34,1003,31,35,995,
- 30,32,858,29,27,56,1016,112,82,83,
- 114,1040,1258,1115,1082,1162,1138,1204,1171,1223,
- 2427,997,1213,1265,1335,149,4617,2641,249,155,
- 150,1855,39,907,36,425,1012,34,1003,31,
- 35,995,30,32,858,29,27,56,1016,112,
- 82,83,114,1040,595,1115,1082,1162,1138,1204,
- 1171,1223,601,150,1213,1265,1335,149,766,1600,
- 2367,154,150,1855,39,907,36,2606,1012,34,
- 1003,31,35,995,30,32,858,29,27,56,
- 1016,112,82,83,114,1040,1547,1115,1082,1162,
- 1138,1204,1171,1223,596,502,1213,1265,1335,149,
- 1223,577,469,153,150,1855,39,907,36,557,
- 1012,34,1003,31,35,995,30,32,858,29,
- 27,56,1016,112,82,83,114,1040,821,1115,
- 1082,1162,1138,1204,1171,1223,2389,865,1213,1265,
- 1335,149,2068,39,396,152,150,1855,39,907,
- 36,1845,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 692,1115,1082,1162,1138,1204,1171,1223,1287,1427,
- 1213,1265,1335,149,1602,1066,1612,151,150,1750,
- 39,907,36,1257,1012,34,1003,31,35,995,
- 30,32,858,29,27,56,1016,112,82,83,
- 114,1040,1886,1115,1082,1162,1138,1204,1171,1223,
- 1166,1615,1213,1265,1890,170,1843,2258,909,1855,
- 39,907,36,946,1012,34,1003,31,35,995,
- 30,32,858,29,27,56,1016,112,82,83,
- 114,1040,2528,1115,1082,1162,1138,1204,1171,1223,
- 360,332,1213,1265,1335,149,77,49,530,146,
- 150,740,1970,331,39,1519,390,982,2179,39,
- 907,36,1185,1012,34,1003,31,35,995,30,
- 32,858,29,27,56,1016,112,82,83,114,
- 1040,1445,1115,1082,1162,1138,1204,1171,1223,2052,
- 55,1213,1265,1335,149,1518,2017,2773,195,150,
- 2272,39,907,36,436,1012,34,1003,31,35,
- 995,30,32,858,29,27,56,1016,112,82,
- 83,114,1040,2086,1115,1082,1162,1138,1204,1171,
- 1223,2393,2398,1213,1265,1890,170,2272,39,907,
- 36,1715,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 288,1115,1082,1162,1138,1204,1171,1223,1019,402,
- 1213,1265,1890,170,1013,39,907,36,2484,4646,
- 34,1003,31,35,995,64,32,1597,2281,2272,
- 39,907,36,295,1012,34,1003,31,35,995,
- 30,32,858,29,27,56,1016,112,82,83,
- 114,1040,2330,1115,1082,1162,1138,1204,1171,1223,
- 1918,2091,1213,1265,1890,170,2272,39,907,36,
- 2791,1012,34,1003,31,35,995,30,32,858,
- 29,27,56,1016,112,82,83,114,1040,2493,
- 1115,1082,1162,1138,1204,1171,1223,2188,406,1213,
- 1265,1890,170,1935,39,907,36,2488,2548,34,
- 1003,44,35,995,331,39,1897,1898,2272,39,
- 907,36,421,1012,34,1003,31,35,995,30,
- 32,858,29,27,56,1016,112,82,83,114,
- 1040,1577,1115,1082,1162,1138,1204,1171,1223,1918,
- 2524,1213,1265,1890,170,2317,39,907,36,420,
- 1012,34,1003,31,35,995,30,32,858,29,
- 27,56,1016,112,82,83,114,1040,2207,1115,
- 1082,1162,1138,1204,1171,1223,1604,305,1213,1265,
- 1890,170,1935,39,907,36,2578,2631,34,1003,
- 2110,35,995,331,39,3472,3417,2272,39,907,
- 36,423,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 2527,1115,1082,1162,1138,1204,1171,1223,49,49,
- 1213,1771,821,814,2272,39,907,36,2836,1012,
- 34,1003,31,35,995,30,32,858,29,27,
- 56,1016,112,82,83,114,1040,2017,1115,1082,
- 1162,1138,1204,1171,1223,2636,2623,1765,2272,39,
- 907,36,2241,1012,34,1003,31,35,995,30,
- 32,858,29,27,56,1016,112,82,83,114,
- 1040,2644,1115,1082,1162,1138,1204,1764,2272,39,
- 907,36,2647,1012,34,1003,31,35,995,30,
- 32,858,29,27,56,1016,112,82,83,114,
- 1040,289,1115,1082,1162,1138,1729,2272,39,907,
- 36,4399,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 2017,1115,1082,1162,1730,2272,39,907,36,1674,
- 1012,34,1003,31,35,995,30,32,858,29,
- 27,56,1016,112,82,83,114,1040,2648,1115,
- 1082,1162,1737,2272,39,907,36,2673,1012,34,
- 1003,31,35,995,30,32,858,29,27,56,
- 1016,112,82,83,114,1040,2675,1115,1082,1688,
- 2272,39,907,36,303,1012,34,1003,31,35,
- 995,30,32,858,29,27,56,1016,112,82,
- 83,114,1040,2017,1115,1082,1695,2272,39,907,
- 36,2681,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 2677,1115,1082,1714,2272,39,907,36,2663,1012,
- 34,1003,31,35,995,30,32,858,29,27,
- 56,1016,112,82,83,114,1040,2241,1115,1082,
- 1722,2362,39,1519,390,49,735,310,1925,1084,
- 2272,39,907,36,242,1012,34,1003,31,35,
- 995,30,32,858,29,27,56,1016,112,82,
- 83,114,1040,1026,1115,1723,2410,3388,278,495,
- 2853,1460,39,907,36,3852,2669,34,1003,343,
- 35,995,331,39,1897,281,524,2272,39,907,
- 36,237,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1040,
- 2683,1115,1728,1528,39,1897,281,2389,1902,240,
- 235,236,2551,2583,4665,1216,2686,324,1055,326,
- 188,2738,279,319,1048,331,39,1519,390,356,
- 49,347,2102,2742,4481,1147,2058,247,250,253,
- 256,2674,2744,2754,979,39,1855,2785,1603,3670,
- 49,2800,338,339,676,348,872,784,353,2224,
- 39,282,429,2078,3430,729,3295,3411,3438,3343,
- 1116,39,907,36,2964,1925,34,1003,343,35,
- 995,55,331,2139,1897,80,1518,103,2253,1248,
- 39,907,36,3958,3118,34,1003,343,35,995,
- 1922,355,2227,39,907,36,4294,1012,34,1003,
- 31,35,995,30,32,858,29,27,56,1016,
- 92,82,83,4665,3244,49,324,1055,326,2551,
- 2241,359,319,1048,331,39,1519,390,356,530,
- 370,3807,4665,859,336,324,1055,326,347,2767,
- 1918,319,1048,2596,2680,1388,290,2551,1532,1107,
- 1122,1216,2551,3118,348,872,784,353,859,49,
- 1840,432,3341,2665,860,454,234,1918,2392,1561,
- 4371,2591,1084,1900,1986,2068,2392,2788,226,380,
- 536,331,39,1519,390,440,589,89,211,220,
- 3802,210,217,218,219,221,2715,2326,2164,4415,
- 162,312,316,336,355,309,206,3813,162,212,
- 214,1925,2031,177,186,2911,222,536,278,2389,
- 2716,2780,1925,104,213,215,216,297,298,299,
- 300,1154,2520,1743,39,451,234,2768,4561,2965,
- 364,356,28,381,2241,162,201,2551,4008,2410,
- 2612,186,2911,75,2551,3464,1947,1971,209,220,
- 3802,208,217,218,219,221,347,348,872,784,
- 353,1918,175,234,2740,3341,378,2773,331,39,
- 1519,390,280,174,1943,2371,1220,189,173,176,
- 177,178,179,180,5210,211,220,3802,210,217,
- 218,219,221,523,1384,39,907,36,3231,185,
- 34,1003,343,35,995,55,212,214,5210,2031,
- 52,2373,2704,222,1532,1664,2551,1925,2551,3118,
- 3118,213,215,216,297,298,299,300,1528,39,
- 1897,2147,403,328,5210,234,49,2591,441,2918,
- 3414,530,4592,202,5210,4008,2493,4665,74,5210,
- 321,2191,326,331,39,1519,390,211,220,3802,
- 210,217,218,219,221,1935,39,907,36,336,
- 337,34,1003,344,35,995,2918,3100,212,214,
- 2720,2031,1109,356,2551,222,5210,448,2447,2466,
- 431,1026,2646,213,215,216,297,298,299,300,
- 1918,5210,5210,234,3163,578,364,48,1896,350,
- 872,784,353,331,39,1897,286,4008,3318,5210,
- 49,3464,1947,1971,1084,211,220,3802,210,217,
- 218,219,221,1935,39,907,36,5210,204,34,
- 1003,2199,35,995,50,1896,212,214,3624,2031,
- 1,2583,162,222,536,331,39,1519,390,1177,
- 5210,213,215,216,297,298,299,300,331,39,
- 1519,390,5210,234,1062,39,1519,390,1171,39,
- 1519,390,162,1147,2058,4008,3402,5210,186,2911,
- 335,339,430,5210,5210,209,220,3802,208,217,
- 218,219,221,1985,5210,55,522,5210,3937,175,
- 1518,55,1942,49,187,278,1518,730,1378,95,
- 174,5210,108,1925,190,173,176,177,178,179,
- 180,2272,39,907,36,2821,1012,34,1003,31,
- 35,995,30,32,858,29,27,56,1016,112,
- 82,83,114,1040,59,1645,2272,39,907,36,
- 5210,1012,34,1003,31,35,995,30,32,858,
- 29,27,56,1016,112,82,83,114,1040,1979,
- 1646,985,39,2236,36,3958,3118,34,1003,343,
- 35,995,1925,78,331,39,1897,283,331,39,
- 1519,390,5210,5210,290,5210,1311,2622,265,49,
- 49,2551,536,1084,1084,2068,39,396,1088,39,
- 907,36,3958,93,34,1003,343,35,995,5210,
- 2591,234,2317,2068,4665,450,336,324,1055,326,
- 162,162,162,319,1048,1132,186,2911,1770,3533,
- 5210,5210,994,209,220,3802,208,217,218,219,
- 221,331,39,1897,2228,428,1925,175,2017,353,
- 2662,4665,4371,536,324,1055,326,5210,174,5210,
- 319,1048,2837,173,176,177,178,179,180,3807,
- 5210,1925,234,2420,39,1519,390,58,735,503,
- 1598,162,1918,5210,2551,237,243,186,2911,2068,
- 39,396,5210,1918,209,220,3802,208,217,218,
- 219,221,354,2591,1985,2596,5210,441,175,3937,
- 278,536,302,252,235,236,501,502,1925,174,
- 203,416,2246,182,173,176,177,178,179,180,
- 234,308,2017,237,507,39,1519,390,49,162,
- 5210,1247,1084,2021,1669,186,2911,49,2551,96,
- 2241,1359,209,220,3802,208,217,218,219,221,
- 2518,241,235,236,522,529,175,2591,1906,536,
- 4048,55,365,244,279,2622,1518,174,1420,2551,
- 5210,193,173,176,177,178,179,180,234,248,
- 251,254,257,2674,1925,3128,301,162,2591,2917,
- 1603,237,2303,186,2911,5210,1401,1311,5210,380,
- 209,220,3802,208,217,218,219,221,49,5210,
- 237,1394,3133,617,175,3582,3118,536,237,255,
- 235,236,331,39,296,174,364,5210,5210,2925,
- 173,176,177,178,179,180,234,5210,245,235,
- 236,3648,1947,1971,5210,162,258,235,236,1925,
- 49,186,2911,1925,3041,1925,427,503,209,220,
- 3802,208,217,218,219,221,3699,1977,39,907,
- 36,3852,175,34,1003,343,35,995,49,2200,
- 3583,1924,536,174,73,1084,72,198,173,176,
- 177,178,179,180,500,502,4384,331,39,1519,
- 390,347,49,49,1918,1925,3814,790,705,5210,
- 162,1924,536,166,1669,1084,1056,2851,2551,1925,
- 4665,859,49,324,1055,326,2551,5210,5210,319,
- 1048,234,2705,2419,55,356,71,2591,525,1518,
- 162,2689,207,166,1167,347,186,2911,623,100,
- 70,5210,5210,209,220,3802,208,217,218,219,
- 221,348,872,784,353,859,793,175,1925,526,
- 536,49,5210,3363,5210,1084,1562,49,174,3173,
- 385,2551,192,173,176,177,178,179,180,234,
- 771,39,1519,390,5210,1925,5210,1925,162,3797,
- 347,5210,5210,162,186,2911,364,5210,5210,3316,
- 3535,209,220,3802,208,217,218,219,221,2059,
- 859,3965,1947,1971,3118,175,61,55,60,49,
- 5210,1588,1518,3594,53,5210,174,331,39,296,
- 200,173,176,177,178,179,180,2272,39,907,
- 36,931,1012,34,1003,31,35,995,30,32,
- 858,29,27,56,1016,112,82,83,114,1653,
- 2272,39,907,36,3699,1012,34,1003,31,35,
- 995,30,32,858,29,27,56,1016,112,82,
- 83,114,1680,2272,39,907,36,5210,1012,34,
- 1003,31,35,995,30,32,858,29,27,56,
- 1016,112,82,83,114,1687,2796,49,5210,5210,
- 2551,3867,1405,39,907,36,2719,1925,34,1003,
- 343,35,995,1918,1026,2272,1546,907,1554,234,
- 1012,34,1003,31,35,995,30,32,858,29,
- 27,56,1016,112,82,83,90,102,327,5210,
- 5210,211,220,3802,210,217,218,219,221,2580,
- 49,205,1394,2551,2551,4665,5210,3118,321,2191,
- 326,5210,212,214,5210,2031,49,1026,3944,519,
- 2551,49,234,347,2583,1084,5210,213,215,216,
- 297,298,299,300,419,39,1519,390,49,347,
- 5210,5210,3445,859,211,220,3802,210,217,218,
- 219,221,2812,162,1596,5210,2551,336,49,859,
- 3585,5210,1136,3957,339,212,214,1026,2031,49,
- 3529,55,518,2551,5210,234,1518,2583,53,1925,
- 213,215,216,297,298,299,300,1679,39,1519,
- 390,5210,347,578,1918,1131,5210,211,220,3802,
- 210,217,218,219,221,2828,3624,49,1394,2551,
- 107,1806,859,3118,5210,1925,4010,339,212,214,
- 5210,2031,49,507,55,311,2551,2583,234,1518,
- 1925,53,304,213,215,216,297,298,299,300,
- 507,39,1519,390,1925,347,4063,1918,2655,2023,
- 211,220,3802,210,217,218,219,221,2688,1918,
- 49,2807,2551,336,2637,859,4385,339,5210,2592,
- 5210,212,214,3902,2031,449,505,55,497,49,
- 528,234,1518,536,53,4382,213,215,216,297,
- 298,299,300,331,39,1519,390,227,1925,4437,
- 5210,3083,347,211,220,3802,210,217,218,219,
- 221,162,49,49,5210,49,2783,3917,2967,2890,
- 5210,5210,859,5210,212,214,5210,2031,49,382,
- 55,223,2962,2862,49,1518,5210,732,3030,213,
- 215,216,297,298,299,300,2272,39,907,36,
- 5210,1012,34,1003,31,35,995,30,32,858,
- 29,27,56,1016,112,82,83,89,2272,39,
- 907,36,5210,1012,34,1003,31,35,995,30,
- 32,858,29,27,56,1016,112,82,83,88,
- 2272,39,907,36,5210,1012,34,1003,31,35,
- 995,30,32,858,29,27,56,1016,112,82,
- 83,87,2272,39,907,36,5210,1012,34,1003,
- 31,35,995,30,32,858,29,27,56,1016,
- 112,82,83,86,2272,39,907,36,5210,1012,
- 34,1003,31,35,995,30,32,858,29,27,
- 56,1016,112,82,83,85,2272,39,907,36,
- 5210,1012,34,1003,31,35,995,30,32,858,
- 29,27,56,1016,112,82,83,84,2130,39,
- 907,36,5210,1012,34,1003,31,35,995,30,
- 32,858,29,27,56,1016,112,82,83,110,
- 2272,39,907,36,5210,1012,34,1003,31,35,
- 995,30,32,858,29,27,56,1016,112,82,
- 83,116,2272,39,907,36,5210,1012,34,1003,
- 31,35,995,30,32,858,29,27,56,1016,
- 112,82,83,115,2272,39,907,36,5210,1012,
- 34,1003,31,35,995,30,32,858,29,27,
- 56,1016,112,82,83,113,2272,39,907,36,
- 5210,1012,34,1003,31,35,995,30,32,858,
- 29,27,56,1016,112,82,83,111,1594,39,
- 907,36,3958,5210,34,1003,343,35,995,940,
- 39,2236,36,3958,1918,34,1003,343,35,995,
- 1088,39,907,36,3958,5210,34,1003,343,35,
- 995,1133,39,907,36,5210,3118,34,1003,343,
- 35,995,2659,49,49,49,1084,4585,1230,2859,
- 5210,4665,199,49,324,1055,326,957,5210,49,
- 319,1048,4665,1272,1925,324,1055,326,5210,1122,
- 1925,319,1048,4665,162,49,324,1055,326,4338,
- 994,168,319,1048,4665,5210,337,324,1055,326,
- 5210,1122,1339,322,1048,3377,1084,1133,39,907,
- 36,3435,3118,34,1003,343,35,995,1925,1088,
- 39,907,36,3958,5210,34,1003,343,35,995,
- 312,316,5210,5210,162,2391,1925,1925,2566,2551,
- 1925,678,3547,5210,5210,5210,5210,5210,5210,3493,
- 4009,953,313,316,1925,2551,4650,5210,347,5210,
- 4665,2520,337,324,1055,326,529,2547,2884,320,
- 1048,4354,4665,5210,234,324,1055,326,859,417,
- 2246,319,1048,1029,5210,3646,5210,2551,4650,532,
- 2914,5210,5210,5210,5210,5210,1305,407,2944,1679,
- 39,1519,390,49,5210,5210,234,1084,5210,1679,
- 39,1519,390,5210,5210,1924,5210,408,409,1084,
- 2031,1679,39,1519,390,4484,5210,5210,1305,407,
- 2944,1679,39,1519,390,162,55,2074,39,1519,
- 390,1518,3599,53,5210,5210,55,166,5210,408,
- 409,1518,2031,53,2013,2635,5210,2679,55,2551,
- 2764,2551,2516,1518,5210,53,536,5210,55,5210,
- 3003,540,49,1518,55,53,536,5210,2591,1518,
- 347,53,3105,5210,5210,347,2013,2093,39,1519,
- 390,5210,3248,5210,162,347,5210,5210,3502,5210,
- 4468,194,5210,5210,162,4449,5210,5210,5210,410,
- 412,2851,5210,3675,5210,859,331,39,1519,390,
- 331,39,1519,390,55,3999,3242,5210,5210,1518,
- 5210,53,574,5210,4513,331,39,1519,390,49,
- 5210,410,413,1084,5210,49,5210,503,3717,2551,
- 49,49,5210,55,536,536,5210,55,1518,5210,
- 582,5210,1518,49,1462,1924,196,536,347,1084,
- 5210,162,55,347,347,5210,1924,1518,2645,1504,
- 1084,5210,162,162,500,502,347,1924,859,194,
- 194,1084,49,4449,4449,162,1084,166,5210,533,
- 5210,5210,194,5210,5210,5210,4449,5210,166,5210,
- 5210,5210,5210,5210,5210,5210,5210,5210,5210,166,
- 5210,5210,5210,2730,162,5210,5210,5210,5210,5210,
- 5210,4470,5210,5210,5210,5210,5210,3997,5210,5210,
- 5210,5210,5210,5210,5210,5210,4467,5210,5210,5210,
- 5210,5210,5210,5210,4404,4410,5210,5210,5210,5210,
- 5210,5210,5210,3677,5210,5210,5210,4448,5210,5210,
- 5210,5210,5210,5210,3929,5210,5210,5210,5210,5210,
- 5210,5210,5210,5210,5210,3994,5210,0,43,5228,
- 0,43,5227,0,1350,33,0,438,1937,0,
- 452,2288,0,42,5228,0,42,5227,0,2497,
- 132,0,1,442,0,456,795,0,455,908,
- 0,1350,45,0,2555,97,0,1350,389,0,
- 39,37,0,36,38,0,43,1127,0,1,
- 799,0,1,5487,0,1,5486,0,1,5485,
- 0,1,5484,0,1,5483,0,1,5482,0,
- 1,5481,0,1,5480,0,1,5479,0,1,
- 5478,0,1,5477,0,43,1,5228,0,43,
- 1,5227,0,642,1,0,5449,246,0,5448,
- 246,0,5552,246,0,5551,246,0,5476,246,
- 0,5475,246,0,5474,246,0,5473,246,0,
- 5472,246,0,5471,246,0,5470,246,0,5469,
- 246,0,5487,246,0,5486,246,0,5485,246,
- 0,5484,246,0,5483,246,0,5482,246,0,
- 5481,246,0,5480,246,0,5479,246,0,5478,
- 246,0,5477,246,0,43,246,5228,0,43,
- 246,5227,0,5252,246,0,54,5228,0,54,
- 5227,0,5216,1,0,5215,1,0,242,3561,
- 0,390,36,0,36,390,0,389,33,0,
- 33,389,0,49,5250,0,49,41,0,5228,
- 54,0,5227,54,0,2497,134,0,2497,133,
- 0,30,517,0,5544,443,0,2289,443,0,
- 5252,1,0,43,1,0,53,41,0,1,
- 98,0,41,53,0,499,2022,0,5252,233,
- 1,0,43,233,1,0,233,415,0,41,
- 5228,0,41,5227,0,1,5228,2,0,1,
- 5227,2,0,41,5228,2,0,41,5227,2,
- 0,5228,40,0,5227,40,0,5250,51,0,
- 51,41,0,5220,405,0,5219,405,0,1,
- 3268,0,1,1127,0,1,2638,0,233,414,
- 0,3709,323,0,5544,101,0,2289,101,0,
- 39,79,0,1,5544,0,1,2289,0,43,
- 1,5228,2,0,43,1,5227,2,0,43,
- 5228,2,0,43,5227,2,0,283,4545,0,
- 499,3849,0,233,1,0,1,1812,0,1,
- 3265,0,5218,1,0,233,225,0,233,1,
- 2646,0,5220,233,0,5219,233,0,233,224,
- 0,2827,233,0,8,10,0,191,3588,0
+ 40,40,39,32,140,140,96,96,171,171,
+ 91,193,193,76,76,76,76,76,76,76,
+ 76,76,77,77,77,67,67,59,59,172,
+ 172,78,78,78,102,102,173,173,79,79,
+ 79,174,174,80,80,80,80,80,81,81,
+ 83,83,83,83,83,83,83,49,49,49,
+ 49,49,113,113,114,114,50,175,23,23,
+ 23,23,23,47,47,86,86,86,86,86,
+ 147,147,142,142,142,142,142,143,143,143,
+ 144,144,144,145,145,145,146,146,146,87,
+ 87,87,87,87,88,88,88,13,13,13,
+ 13,13,13,13,13,13,13,13,99,118,
+ 118,118,118,118,118,116,116,116,117,117,
+ 149,149,148,148,120,120,103,71,71,72,
+ 73,52,46,150,150,53,51,85,85,151,
+ 151,141,141,121,122,122,68,68,152,152,
+ 62,62,62,57,57,56,63,63,66,66,
+ 55,55,55,89,89,98,97,97,60,60,
+ 58,58,54,54,43,100,100,100,92,92,
+ 92,93,93,94,94,94,95,95,104,104,
+ 104,106,106,105,105,194,194,90,90,177,
+ 177,177,177,177,124,45,45,154,176,176,
+ 125,125,125,125,178,178,37,37,115,126,
+ 126,126,126,107,107,119,119,119,156,157,
+ 157,157,157,157,157,157,157,157,157,157,
+ 181,181,179,179,180,180,158,158,158,158,
+ 159,182,109,108,108,183,183,160,160,160,
+ 160,101,101,101,184,184,9,9,10,185,
+ 185,186,161,153,153,162,162,163,164,164,
+ 6,6,7,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,69,74,74,166,166,
+ 128,128,129,129,129,129,129,129,3,130,
+ 130,127,127,110,110,110,84,70,82,155,
+ 155,111,111,187,187,187,131,131,123,123,
+ 188,188,167,167,881,39,1634,1633,1542,3073,
+ 34,1031,31,35,1007,30,32,1592,29,27,
+ 56,1039,112,82,83,114,1117,929,1152,1127,
+ 1167,1166,1254,1210,1288,1977,2023,1261,1289,1338,
+ 149,278,1945,1921,164,150,532,4045,1854,39,
+ 947,36,3660,1076,34,1031,340,35,1007,2600,
+ 2276,39,947,36,237,732,34,1031,31,35,
+ 1007,30,32,946,29,27,56,1039,112,82,
+ 83,114,1117,49,1152,1127,1167,1166,1254,1794,
+ 240,235,236,1300,1074,1940,4577,1074,2532,1553,
+ 4351,354,494,279,321,1323,323,1029,39,284,
+ 316,1238,2627,237,117,929,4028,2632,682,247,
+ 250,253,256,2579,1101,166,941,39,947,36,
+ 1584,3135,34,1031,31,35,1007,63,32,249,
+ 235,236,336,2997,654,1916,2996,583,2759,2898,
+ 3045,4331,1419,39,947,36,2532,732,34,1031,
+ 31,35,1007,1870,32,946,29,27,56,1039,
+ 112,82,83,114,1117,344,1152,1127,1167,1166,
+ 1254,1210,1288,401,361,1261,1289,1338,149,2331,
+ 456,1706,513,150,1160,2794,1332,2372,3519,2131,
+ 2141,452,1620,39,1466,387,514,1419,39,947,
+ 36,2532,732,34,1031,31,35,1007,1870,32,
+ 946,29,27,56,1039,112,82,83,114,1117,
+ 344,1152,1127,1167,1166,1254,1210,1288,1230,55,
+ 1261,1289,1338,149,1458,2522,721,513,150,1074,
+ 2794,1941,39,1417,47,425,2137,46,1031,1471,
+ 67,514,509,1410,39,947,36,3292,3135,34,
+ 1031,31,35,1007,62,32,244,162,2528,1837,
+ 1400,1003,1878,206,3191,1419,39,947,36,2532,
+ 732,34,1031,31,35,1007,1870,32,946,29,
+ 27,56,1039,112,82,83,114,1117,344,1152,
+ 1127,1167,1166,1254,1210,1288,1502,509,1261,1289,
+ 1338,149,1029,39,284,513,150,3282,2794,336,
+ 2235,2393,39,282,1879,336,3141,1878,1576,514,
+ 1689,39,947,36,2532,732,34,1031,31,35,
+ 1007,1870,32,946,29,27,56,1039,112,82,
+ 83,114,1117,344,1152,1127,1167,1166,1254,1210,
+ 1288,76,1596,1261,1289,1338,149,1828,1744,985,
+ 513,150,4108,2794,1698,336,39,1466,387,336,
+ 1500,2017,38,420,514,509,3703,66,1931,1095,
+ 39,947,36,493,3608,34,1031,31,35,1007,
+ 30,32,1933,507,2651,1878,1285,1910,1485,39,
+ 947,36,427,732,34,1031,31,35,1007,30,
+ 32,946,29,27,56,1039,112,82,83,114,
+ 1117,388,1152,1127,1167,1166,1254,1210,1288,291,
+ 510,1261,1289,1338,149,336,39,2054,380,150,
+ 1012,39,947,36,355,3608,34,1031,31,35,
+ 1007,65,32,336,39,1466,387,2047,1559,39,
+ 947,36,383,732,34,1031,31,35,1007,30,
+ 32,946,29,27,56,1039,112,82,83,114,
+ 1117,2118,1152,1127,1167,1166,1254,1210,1288,1924,
+ 55,1261,1289,1338,149,1458,357,2617,380,150,
+ 2276,39,947,36,528,732,34,1031,31,35,
+ 1007,30,32,946,29,27,56,1039,112,82,
+ 83,91,381,384,1864,39,947,36,99,732,
+ 34,1031,31,35,1007,30,32,946,29,27,
+ 56,1039,112,82,83,114,1117,3222,1152,1127,
+ 1167,1166,1254,1210,1288,443,1734,1261,1289,1338,
+ 149,1929,117,1148,164,150,737,1177,1929,929,
+ 1148,336,39,2017,2044,1929,3078,238,929,1864,
+ 39,947,36,385,732,34,1031,31,35,1007,
+ 30,32,946,29,27,56,1039,112,82,83,
+ 114,1117,1990,1152,1127,1167,1166,1254,1210,1288,
+ 2624,334,1261,1289,1338,149,2004,67,333,374,
+ 150,1864,39,947,36,333,732,34,1031,31,
+ 35,1007,30,32,946,29,27,56,1039,112,
+ 82,83,114,1117,455,1152,1127,1167,1166,1254,
+ 1210,1288,1106,3973,1261,1289,1338,149,1469,3143,
+ 1741,374,150,2651,654,1864,39,947,36,929,
+ 732,34,1031,31,35,1007,30,32,946,29,
+ 27,56,1039,112,82,83,114,1117,2614,1152,
+ 1127,1167,1166,1254,1210,1288,399,244,1261,1289,
+ 1338,149,4501,373,866,374,150,1800,39,947,
+ 36,1381,732,34,1031,31,35,1007,30,32,
+ 946,29,27,56,1039,112,82,83,114,1117,
+ 947,1152,1127,1167,1166,1254,1210,1288,38,225,
+ 1261,1289,1338,149,57,372,94,380,150,108,
+ 1623,39,947,36,326,732,34,1031,31,35,
+ 1007,30,32,946,29,27,56,1039,112,82,
+ 83,114,1117,2401,1152,1127,1167,1166,1254,1210,
+ 1288,2083,1353,1261,1289,1338,149,4524,1170,370,
+ 148,150,420,1864,39,947,36,1471,732,34,
+ 1031,31,35,1007,30,32,946,29,27,56,
+ 1039,112,82,83,114,1117,3353,1152,1127,1167,
+ 1166,1254,1210,1288,443,929,1261,1289,1338,149,
+ 940,434,378,165,150,1864,39,947,36,327,
+ 732,34,1031,31,35,1007,30,32,946,29,
+ 27,56,1039,112,82,83,114,1117,2598,1152,
+ 1127,1167,1166,1254,1210,1288,1498,2240,1261,1289,
+ 1338,149,336,39,287,161,150,1864,39,947,
+ 36,929,732,34,1031,31,35,1007,30,32,
+ 946,29,27,56,1039,112,82,83,114,1117,
+ 328,1152,1127,1167,1166,1254,1210,1288,596,77,
+ 1261,1289,1338,149,1627,356,2285,160,150,1864,
+ 39,947,36,528,732,34,1031,31,35,1007,
+ 30,32,946,29,27,56,1039,112,82,83,
+ 114,1117,2373,1152,1127,1167,1166,1254,1210,1288,
+ 1107,1223,1261,1289,1338,149,103,315,1111,159,
+ 150,1864,39,947,36,2667,732,34,1031,31,
+ 35,1007,30,32,946,29,27,56,1039,112,
+ 82,83,114,1117,2057,1152,1127,1167,1166,1254,
+ 1210,1288,1850,244,1261,1289,1338,149,4528,1933,
+ 2104,158,150,1864,39,947,36,2137,732,34,
+ 1031,31,35,1007,30,32,946,29,27,56,
+ 1039,112,82,83,114,1117,1706,1152,1127,1167,
+ 1166,1254,1210,1288,1396,929,1261,1289,1338,149,
+ 417,2702,2061,157,150,1864,39,947,36,2137,
+ 732,34,1031,31,35,1007,30,32,946,29,
+ 27,56,1039,112,82,83,114,1117,1706,1152,
+ 1127,1167,1166,1254,1210,1288,520,244,1261,1289,
+ 1338,149,4532,2511,2454,156,150,1864,39,947,
+ 36,2224,732,34,1031,31,35,1007,30,32,
+ 946,29,27,56,1039,112,82,83,114,1117,
+ 104,1152,1127,1167,1166,1254,1210,1288,2396,244,
+ 1261,1289,1338,149,4550,2403,1587,155,150,1864,
+ 39,947,36,2971,732,34,1031,31,35,1007,
+ 30,32,946,29,27,56,1039,112,82,83,
+ 114,1117,520,1152,1127,1167,1166,1254,1210,1288,
+ 1980,244,1261,1289,1338,149,4554,2431,72,154,
+ 150,1864,39,947,36,243,732,34,1031,31,
+ 35,1007,30,32,946,29,27,56,1039,112,
+ 82,83,114,1117,419,1152,1127,1167,1166,1254,
+ 1210,1288,595,590,1261,1289,1338,149,678,1078,
+ 2371,153,150,1864,39,947,36,2635,732,34,
+ 1031,31,35,1007,30,32,946,29,27,56,
+ 1039,112,82,83,114,1117,214,1152,1127,1167,
+ 1166,1254,1210,1288,1809,1651,1261,1289,1338,149,
+ 1539,401,2369,152,150,1864,39,947,36,2397,
+ 732,34,1031,31,35,1007,30,32,946,29,
+ 27,56,1039,112,82,83,114,1117,2450,1152,
+ 1127,1167,1166,1254,1210,1288,2480,2534,1261,1289,
+ 1338,149,2377,39,285,151,150,1755,39,947,
+ 36,1828,732,34,1031,31,35,1007,30,32,
+ 946,29,27,56,1039,112,82,83,114,1117,
+ 1612,1152,1127,1167,1166,1254,1210,1288,1475,2551,
+ 1261,1289,1965,170,1864,39,947,36,890,732,
+ 34,1031,31,35,1007,30,32,946,29,27,
+ 56,1039,112,82,83,114,1117,3646,1152,1127,
+ 1167,1166,1254,1210,1288,288,1828,1261,1289,1338,
+ 149,1792,329,117,146,150,1596,815,1881,336,
+ 39,1466,387,2581,2186,39,947,36,1375,732,
+ 34,1031,31,35,1007,30,32,946,29,27,
+ 56,1039,112,82,83,114,1117,3951,1152,1127,
+ 1167,1166,1254,1210,1288,1961,55,1261,1289,1338,
+ 149,1458,1828,2095,195,150,2276,39,947,36,
+ 289,732,34,1031,31,35,1007,30,32,946,
+ 29,27,56,1039,112,82,83,114,1117,73,
+ 1152,1127,1167,1166,1254,1210,1288,1542,990,1261,
+ 1289,1965,170,2276,39,947,36,2330,732,34,
+ 1031,31,35,1007,30,32,946,29,27,56,
+ 1039,112,82,83,114,1117,300,1152,1127,1167,
+ 1166,1254,1210,1288,2549,403,1261,1289,1965,170,
+ 1012,39,947,36,2596,3608,34,1031,31,35,
+ 1007,64,32,2276,39,947,36,295,732,34,
+ 1031,31,35,1007,30,32,946,29,27,56,
+ 1039,112,82,83,114,1117,1114,1152,1127,1167,
+ 1166,1254,1210,1288,1542,62,1261,1289,1965,170,
+ 2276,39,947,36,1585,732,34,1031,31,35,
+ 1007,30,32,946,29,27,56,1039,112,82,
+ 83,114,1117,2289,1152,1127,1167,1166,1254,1210,
+ 1288,1768,302,1261,1289,1965,170,1986,39,947,
+ 36,2466,1596,34,1031,44,35,1007,1636,1247,
+ 2276,39,947,36,419,732,34,1031,31,35,
+ 1007,30,32,946,29,27,56,1039,112,82,
+ 83,114,1117,28,1152,1127,1167,1166,1254,1210,
+ 1288,1542,4428,1261,1289,1965,170,2321,39,947,
+ 36,418,732,34,1031,31,35,1007,30,32,
+ 946,29,27,56,1039,112,82,83,114,1117,
+ 2582,1152,1127,1167,1166,1254,1210,1288,2617,226,
+ 1261,1289,1965,170,1986,39,947,36,2594,1596,
+ 34,1031,2007,35,1007,347,1247,2276,39,947,
+ 36,421,732,34,1031,31,35,1007,30,32,
+ 946,29,27,56,1039,112,82,83,114,1117,
+ 75,1152,1127,1167,1166,1254,1210,1288,117,1069,
+ 1261,1801,3095,1113,2276,39,947,36,3112,732,
+ 34,1031,31,35,1007,30,32,946,29,27,
+ 56,1039,112,82,83,114,1117,2554,1152,1127,
+ 1167,1166,1254,1210,1288,699,787,1795,2276,39,
+ 947,36,1596,732,34,1031,31,35,1007,30,
+ 32,946,29,27,56,1039,112,82,83,114,
+ 1117,1596,1152,1127,1167,1166,1254,1210,1786,2276,
+ 39,947,36,74,732,34,1031,31,35,1007,
+ 30,32,946,29,27,56,1039,112,82,83,
+ 114,1117,59,1152,1127,1167,1166,1759,2276,39,
+ 947,36,2632,732,34,1031,31,35,1007,30,
+ 32,946,29,27,56,1039,112,82,83,114,
+ 1117,2628,1152,1127,1167,1760,2276,39,947,36,
+ 1682,732,34,1031,31,35,1007,30,32,946,
+ 29,27,56,1039,112,82,83,114,1117,2154,
+ 1152,1127,1167,1767,2276,39,947,36,2174,732,
+ 34,1031,31,35,1007,30,32,946,29,27,
+ 56,1039,112,82,83,114,1117,420,1152,1127,
+ 1718,2276,39,947,36,439,732,34,1031,31,
+ 35,1007,30,32,946,29,27,56,1039,112,
+ 82,83,114,1117,1828,1152,1127,1725,2276,39,
+ 947,36,2618,732,34,1031,31,35,1007,30,
+ 32,946,29,27,56,1039,112,82,83,114,
+ 1117,2650,1152,1127,1744,2276,39,947,36,2633,
+ 732,34,1031,31,35,1007,30,32,946,29,
+ 27,56,1039,112,82,83,114,1117,2616,1152,
+ 1127,1752,2366,39,1466,387,1344,3011,299,519,
+ 1074,2276,39,947,36,242,732,34,1031,31,
+ 35,1007,30,32,946,29,27,56,1039,112,
+ 82,83,114,1117,2600,1152,1753,117,162,278,
+ 325,4337,2072,117,2649,538,1542,2646,528,991,
+ 39,1888,2718,1515,3377,2106,39,393,2276,39,
+ 947,36,237,732,34,1031,31,35,1007,30,
+ 32,946,29,27,56,1039,112,82,83,114,
+ 1117,1300,1152,1758,306,1074,55,2066,240,235,
+ 236,1458,1184,2728,2624,1361,2532,336,39,1466,
+ 387,279,979,39,947,36,3327,3297,34,1031,
+ 340,35,1007,166,2655,2632,2048,247,250,253,
+ 256,2579,742,1465,39,947,36,2762,1584,34,
+ 1031,340,35,1007,55,985,1596,2731,1607,1458,
+ 1542,3168,2532,1929,2996,583,2759,2898,3045,4331,
+ 4577,117,1121,2481,352,1074,2573,2668,321,1323,
+ 323,2632,2901,830,316,1238,2654,93,353,2624,
+ 2306,4577,2372,613,48,2008,1542,2787,185,321,
+ 1323,323,501,162,352,316,1238,1614,860,353,
+ 1219,4028,3102,333,345,928,565,350,336,39,
+ 3405,3104,2305,1253,39,947,36,3660,1929,34,
+ 1031,340,35,1007,204,345,928,565,350,353,
+ 499,500,1919,2792,389,423,2761,3143,361,1136,
+ 95,177,1607,108,2496,534,2532,1929,336,39,
+ 2017,281,2990,2131,2141,345,928,565,350,2704,
+ 2640,4577,117,2792,234,2632,2532,1596,333,321,
+ 1323,323,1596,162,1923,316,1238,2289,1120,186,
+ 2670,1331,2106,39,393,344,209,220,4465,367,
+ 208,217,218,219,221,1542,188,333,58,237,
+ 175,2733,3616,351,1542,2794,1,117,174,3297,
+ 534,2532,336,39,1466,387,1508,189,173,176,
+ 177,178,179,180,117,252,235,236,3120,234,
+ 344,3503,361,203,309,313,522,2746,162,117,
+ 353,2532,305,1074,186,2670,2990,2131,2141,430,
+ 2794,209,220,4465,2181,208,217,218,219,221,
+ 344,1542,2735,1596,2892,175,345,928,565,350,
+ 187,2883,2683,174,343,117,50,2008,1252,624,
+ 4479,2698,190,173,176,177,178,179,180,2975,
+ 2276,39,947,36,96,732,34,1031,31,35,
+ 1007,30,32,946,29,27,56,1039,112,82,
+ 83,114,1117,2826,1668,2276,39,947,36,1828,
+ 732,34,1031,31,35,1007,30,32,946,29,
+ 27,56,1039,112,82,83,114,1117,237,1675,
+ 1157,39,2625,36,3660,1929,34,1031,340,35,
+ 1007,1986,39,947,36,2700,2717,34,1031,341,
+ 35,1007,2719,2289,255,235,236,265,2737,2739,
+ 1596,534,1986,39,947,36,2523,1542,34,1031,
+ 2094,35,1007,307,1337,39,1466,387,4577,244,
+ 234,424,39,1466,387,333,321,1323,323,162,
+ 2522,3528,316,1238,534,186,2670,117,1408,1596,
+ 2751,589,209,220,4465,207,208,217,218,219,
+ 221,278,521,4476,4486,1913,175,353,55,3616,
+ 2752,534,162,1458,174,1928,237,1074,186,2670,
+ 3585,2532,2489,3122,173,176,177,178,179,180,
+ 234,2753,3541,1981,39,1466,387,1300,2571,162,
+ 2632,1074,245,235,236,186,2670,201,2091,39,
+ 2017,281,209,220,4465,1018,208,217,218,219,
+ 221,89,2048,2148,117,237,175,441,3567,166,
+ 55,534,2760,1596,174,1458,78,1492,414,2644,
+ 1291,2235,1737,182,173,176,177,178,179,180,
+ 234,258,235,236,3541,512,39,1466,387,162,
+ 1208,2757,382,1262,73,186,2670,361,1929,1404,
+ 39,296,209,220,4465,3620,208,217,218,219,
+ 221,4247,2131,2141,1892,2758,175,529,2377,39,
+ 282,534,55,3670,174,2763,117,1458,117,1534,
+ 1074,2782,2532,193,173,176,177,178,179,180,
+ 234,1542,330,336,4563,202,3004,29,334,162,
+ 5180,344,1029,39,449,186,2670,4546,162,353,
+ 390,423,209,220,4465,1800,208,217,218,219,
+ 221,2794,2289,1952,39,449,175,617,4546,205,
+ 5180,534,1549,3692,174,347,928,565,350,1596,
+ 290,5180,5180,3197,173,176,177,178,179,180,
+ 234,5180,2419,5180,1669,39,947,36,3327,162,
+ 34,1031,340,35,1007,186,2670,2623,1851,2297,
+ 72,2532,209,220,4465,1542,208,217,218,219,
+ 221,377,336,39,1466,387,175,1596,5180,117,
+ 2632,705,2077,1074,174,534,2532,336,39,1466,
+ 387,5180,4577,198,173,176,177,178,179,180,
+ 321,1323,323,301,234,344,316,1238,71,55,
+ 353,162,523,162,1458,5180,861,1148,3113,186,
+ 2670,5180,1929,5180,55,908,209,220,4465,52,
+ 208,217,218,219,221,5180,345,928,565,350,
+ 175,793,117,2289,524,534,534,362,174,336,
+ 2391,2017,80,1596,442,2780,2821,192,173,176,
+ 177,178,179,180,234,344,375,776,39,1466,
+ 387,5180,333,162,162,446,2780,2821,1300,186,
+ 2670,2142,1074,5180,70,2794,209,220,4465,5180,
+ 208,217,218,219,221,2398,1926,1291,2235,3639,
+ 175,117,377,117,55,3407,3503,4304,174,1458,
+ 166,53,2091,39,2017,2400,5180,200,173,176,
+ 177,178,179,180,2276,39,947,36,1842,732,
+ 34,1031,31,35,1007,30,32,946,29,27,
+ 56,1039,112,82,83,114,1676,2276,39,947,
+ 36,3027,732,34,1031,31,35,1007,30,32,
+ 946,29,27,56,1039,112,82,83,114,1710,
+ 2276,39,947,36,3719,732,34,1031,31,35,
+ 1007,30,32,946,29,27,56,1039,112,82,
+ 83,114,1717,1238,39,947,36,4371,1929,34,
+ 1031,340,35,1007,1390,39,947,36,2960,1596,
+ 34,1031,340,35,1007,117,5180,290,117,534,
+ 2584,1909,4317,5180,2532,2532,336,39,1466,387,
+ 1940,336,39,1466,387,4351,5180,5180,344,1542,
+ 4138,4577,400,234,344,1916,2297,162,334,321,
+ 1323,323,4577,5180,194,317,1238,2048,4452,353,
+ 318,2509,323,429,2269,211,220,4465,278,210,
+ 217,218,219,221,2686,117,117,4605,2532,2564,
+ 3530,336,39,1466,387,347,928,565,350,212,
+ 214,216,297,298,2228,5180,5180,234,336,39,
+ 1466,387,5180,222,213,215,1137,39,947,36,
+ 1018,1929,34,1031,340,35,1007,4373,428,211,
+ 220,4465,5180,210,217,218,219,221,2707,2048,
+ 280,1332,2532,4125,1972,55,336,39,2017,286,
+ 1458,5180,721,212,214,216,297,298,2228,117,
+ 1148,234,5180,2532,4577,1929,3677,222,213,215,
+ 1596,334,321,1323,323,392,423,1147,319,1238,
+ 3620,944,344,211,220,4465,5180,210,217,218,
+ 219,221,336,39,2017,283,452,4125,2474,5180,
+ 426,61,2794,336,39,2017,2574,212,214,216,
+ 297,298,2228,1550,5180,333,438,335,336,1596,
+ 5180,222,213,215,2276,1500,947,1501,5180,732,
+ 34,1031,31,35,1007,30,32,946,29,27,
+ 56,1039,112,82,83,90,5180,391,423,4434,
+ 60,4125,2939,2276,39,947,36,5180,732,34,
+ 1031,31,35,1007,30,32,946,29,27,56,
+ 1039,112,82,83,89,2276,39,947,36,5180,
+ 732,34,1031,31,35,1007,30,32,946,29,
+ 27,56,1039,112,82,83,88,2276,39,947,
+ 36,5180,732,34,1031,31,35,1007,30,32,
+ 946,29,27,56,1039,112,82,83,87,2276,
+ 39,947,36,5180,732,34,1031,31,35,1007,
+ 30,32,946,29,27,56,1039,112,82,83,
+ 86,2276,39,947,36,5180,732,34,1031,31,
+ 35,1007,30,32,946,29,27,56,1039,112,
+ 82,83,85,2276,39,947,36,5180,732,34,
+ 1031,31,35,1007,30,32,946,29,27,56,
+ 1039,112,82,83,84,2137,39,947,36,2174,
+ 732,34,1031,31,35,1007,30,32,946,29,
+ 27,56,1039,112,82,83,110,2276,39,947,
+ 36,5180,732,34,1031,31,35,1007,30,32,
+ 946,29,27,56,1039,112,82,83,116,2276,
+ 39,947,36,5180,732,34,1031,31,35,1007,
+ 30,32,946,29,27,56,1039,112,82,83,
+ 115,2276,39,947,36,5180,732,34,1031,31,
+ 35,1007,30,32,946,29,27,56,1039,112,
+ 82,83,113,2276,39,947,36,5180,732,34,
+ 1031,31,35,1007,30,32,946,29,27,56,
+ 1039,112,82,83,111,1531,39,947,36,3660,
+ 519,34,1031,340,35,1007,2231,39,947,36,
+ 5180,732,34,1031,31,35,1007,30,32,946,
+ 29,27,56,1039,92,82,83,2770,1596,117,
+ 117,2532,117,1074,1074,5180,534,1404,2696,296,
+ 336,39,296,4577,1591,424,39,1466,387,5180,
+ 234,321,1323,323,5180,344,117,316,1238,324,
+ 1074,4366,162,1331,162,336,39,1466,387,3239,
+ 5180,2312,211,220,4465,2794,210,217,218,219,
+ 221,2602,55,5180,5180,2532,2229,1458,162,53,
+ 336,39,296,5180,5180,3287,212,214,216,297,
+ 298,2228,55,5180,234,5180,1422,1458,1148,1576,
+ 517,213,215,1929,117,117,309,313,2532,3057,
+ 5180,336,39,1466,387,2668,211,220,4465,2532,
+ 210,217,218,219,221,1300,4162,344,117,1074,
+ 2419,117,4484,2824,5180,3584,2892,5180,234,5180,
+ 212,214,216,297,298,2228,1035,2794,448,1596,
+ 2532,4065,1542,4206,516,213,215,166,3029,2791,
+ 211,220,4465,2532,210,217,218,219,221,234,
+ 117,117,1184,5180,4182,2532,2532,2106,39,393,
+ 107,5180,234,3275,212,214,216,297,298,2228,
+ 227,675,404,3514,344,2632,1845,5180,223,213,
+ 215,1929,5180,2809,211,220,4465,2532,210,217,
+ 218,219,221,5180,2794,405,406,407,297,298,
+ 2228,4159,5180,117,5180,505,234,1213,212,214,
+ 216,297,298,2228,117,100,117,1596,923,1596,
+ 1342,2392,308,213,215,4169,5180,2210,211,220,
+ 4465,4206,210,217,218,219,221,1547,39,2625,
+ 36,3660,501,34,1031,340,35,1007,4288,5180,
+ 2576,1542,212,214,216,297,298,2228,117,117,
+ 5180,117,4558,1074,3181,3638,495,213,215,1854,
+ 39,947,36,3660,1018,34,1031,340,35,1007,
+ 498,500,408,411,117,4577,117,1018,4599,199,
+ 2532,162,117,321,1323,323,2532,1596,3363,316,
+ 1238,2423,39,1466,387,1408,3011,952,5180,344,
+ 5180,2532,4065,102,243,344,117,4577,2717,1407,
+ 534,2099,39,1466,387,321,1323,323,447,2794,
+ 234,316,1238,5180,3620,2794,1596,1331,278,344,
+ 503,117,5180,1596,1596,2428,531,3620,162,5180,
+ 526,5180,675,404,3514,2142,5180,5180,55,2794,
+ 117,237,1300,1458,1074,53,1074,379,5180,117,
+ 2666,332,336,2447,3107,3167,405,406,407,297,
+ 298,2228,915,5180,4244,336,5180,241,235,236,
+ 310,313,162,117,166,415,2644,948,117,1431,
+ 279,5180,3889,1596,1137,39,947,36,2210,1929,
+ 34,1031,340,35,1007,5180,248,251,254,257,
+ 2579,5180,1854,39,947,36,3660,1584,34,1031,
+ 340,35,1007,5180,3227,2036,39,947,36,2733,
+ 5180,34,1031,340,35,1007,117,5180,5180,2625,
+ 3995,1596,4577,3254,1018,5180,1596,5180,4327,334,
+ 321,1323,323,408,410,5180,317,1238,5180,5180,
+ 4577,512,39,1466,387,1596,1596,5180,321,1323,
+ 323,5180,2797,4577,316,1238,907,2983,4156,5180,
+ 3175,318,2509,323,2099,39,1466,387,2099,39,
+ 1466,387,2099,39,1466,387,4281,3351,55,5180,
+ 5180,5180,5180,1458,3620,53,2099,39,1466,387,
+ 2182,39,1466,387,2405,39,1466,387,1018,5180,
+ 5180,55,2992,2613,5180,55,1458,534,53,55,
+ 1458,5180,53,5180,1458,5180,53,336,39,1466,
+ 387,4246,336,55,5180,2832,344,55,1458,3536,
+ 53,55,1458,3591,53,162,1458,2024,53,2042,
+ 117,2532,194,2532,534,2629,4452,4121,5180,1074,
+ 5180,4040,5180,5180,55,4090,5180,3677,3620,1458,
+ 344,1618,2632,344,5180,117,5180,117,527,1074,
+ 5180,534,162,5180,5180,5180,5180,162,5180,194,
+ 2794,5180,5180,4452,168,5180,5180,5180,5180,5180,
+ 344,530,5180,5180,5180,4399,336,162,5180,162,
+ 5180,5180,5180,5180,4505,196,194,5180,5180,5180,
+ 4452,5180,5180,5180,5180,5180,5180,5180,5180,5180,
+ 5180,5180,5180,5180,5180,5180,5180,5180,5180,501,
+ 5180,5180,5180,5180,5180,5180,5180,5180,5180,5180,
+ 5180,5180,4374,5180,5180,5180,5180,5180,5180,5180,
+ 5180,5180,5180,5180,5180,5180,5180,5180,5180,5180,
+ 5180,5180,5180,5180,5180,5180,5180,498,500,4433,
+ 5180,5180,5180,5180,5180,5180,3549,5180,5180,5180,
+ 5180,5180,5180,5180,5180,5180,5180,5180,5180,5180,
+ 5180,5180,5180,5180,5180,5180,5180,5180,5180,5180,
+ 5180,5180,5180,5180,5180,3062,5180,5180,5180,5180,
+ 5180,5180,5180,5180,5180,5180,4506,5180,5180,5180,
+ 5180,5180,5180,5180,5180,4349,5180,0,43,5198,
+ 0,43,5197,0,644,33,0,436,1112,0,
+ 450,1923,0,42,5198,0,42,5197,0,2478,
+ 132,0,1,440,0,454,645,0,453,1119,
+ 0,644,45,0,2859,97,0,644,386,0,
+ 39,37,0,36,38,0,43,919,0,1,
+ 806,0,1,5457,0,1,5456,0,1,5455,
+ 0,1,5454,0,1,5453,0,1,5452,0,
+ 1,5451,0,1,5450,0,1,5449,0,1,
+ 5448,0,1,5447,0,43,1,5198,0,43,
+ 1,5197,0,781,1,0,5419,246,0,5418,
+ 246,0,5519,246,0,5518,246,0,5446,246,
+ 0,5445,246,0,5444,246,0,5443,246,0,
+ 5442,246,0,5441,246,0,5440,246,0,5439,
+ 246,0,5457,246,0,5456,246,0,5455,246,
+ 0,5454,246,0,5453,246,0,5452,246,0,
+ 5451,246,0,5450,246,0,5449,246,0,5448,
+ 246,0,5447,246,0,43,246,5198,0,43,
+ 246,5197,0,5222,246,0,54,5198,0,54,
+ 5197,0,5186,1,0,5185,1,0,242,623,
+ 0,387,36,0,36,387,0,386,33,0,
+ 33,386,0,49,5220,0,49,41,0,5198,
+ 54,0,5197,54,0,2478,134,0,2478,133,
+ 0,30,515,0,5511,441,0,2268,441,0,
+ 5222,1,0,43,1,0,53,41,0,1,
+ 98,0,41,53,0,497,2218,0,5222,233,
+ 1,0,43,233,1,0,233,413,0,41,
+ 5198,0,41,5197,0,1,5198,2,0,1,
+ 5197,2,0,41,5198,2,0,41,5197,2,
+ 0,5198,40,0,5197,40,0,5220,51,0,
+ 51,41,0,5190,402,0,5189,402,0,1,
+ 578,0,1,919,0,1,3531,0,233,412,
+ 0,4115,320,0,5511,101,0,2268,101,0,
+ 39,79,0,1,5511,0,1,2268,0,43,
+ 1,5198,2,0,43,1,5197,2,0,43,
+ 5198,2,0,43,5197,2,0,283,3077,0,
+ 497,4081,0,233,1,0,233,225,0,233,
+ 224,0,1,2585,0,1,2802,0,5188,1,
+ 0,233,1,2982,0,5190,233,0,5189,233,
+ 0,3101,233,0,8,10,0,191,3291,0
};
};
public final static char baseAction[] = BaseAction.baseAction;
@@ -1061,295 +1055,293 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 30,3,32,33,34,35,36,37,38,39,
+ 30,31,32,33,34,35,36,0,38,39,
40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,0,62,63,64,65,0,0,68,69,
- 70,71,11,12,74,8,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,0,62,63,64,65,0,6,68,69,
+ 70,0,0,73,74,75,76,77,78,79,
+ 80,81,10,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,3,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,45,46,47,0,49,50,51,
- 52,53,54,55,56,57,58,59,60,0,
- 62,63,64,65,88,89,68,69,70,71,
- 11,12,74,0,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 22,23,24,25,26,27,0,29,30,31,
+ 32,33,34,35,36,0,38,39,40,41,
+ 42,43,44,45,46,47,99,49,50,51,
+ 52,53,54,55,56,57,58,59,60,121,
+ 62,63,64,65,88,89,68,69,70,88,
+ 89,73,74,75,76,77,78,79,80,81,
+ 122,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,29,30,3,32,33,
- 34,35,36,37,38,39,40,41,42,43,
- 44,45,46,47,61,49,50,51,52,53,
- 54,55,56,57,58,59,60,101,62,63,
- 64,65,0,1,2,69,70,71,0,7,
- 74,0,76,77,78,79,80,81,82,83,
+ 24,25,26,27,0,29,30,31,32,33,
+ 34,35,36,0,38,39,40,41,42,43,
+ 44,45,46,47,0,49,50,51,52,53,
+ 54,55,56,57,58,59,60,0,62,63,
+ 64,65,0,0,68,69,70,4,11,12,
+ 74,75,76,77,78,79,80,81,0,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,30,3,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,45,
- 46,47,61,49,50,51,52,53,54,55,
- 56,57,58,59,60,0,62,63,64,65,
- 0,1,2,69,70,71,88,89,74,0,
- 76,77,78,79,80,81,82,83,84,85,
+ 26,27,0,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,45,
+ 46,47,99,49,50,51,52,53,54,55,
+ 56,57,58,59,60,101,62,63,64,65,
+ 88,89,68,69,70,0,1,2,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 0,29,30,3,32,33,34,35,36,37,
+ 0,29,30,31,32,33,34,35,36,0,
38,39,40,41,42,43,44,45,46,47,
- 61,49,50,51,52,53,54,55,56,57,
- 58,59,60,0,62,63,64,65,0,1,
- 2,69,70,71,0,100,74,0,76,77,
- 78,79,80,81,82,83,84,85,86,87,
+ 0,49,50,51,52,53,54,55,56,57,
+ 58,59,60,67,62,63,64,65,0,0,
+ 68,69,70,0,1,2,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 30,3,32,33,34,35,36,37,38,39,
- 40,41,42,43,44,45,46,47,61,49,
+ 30,31,32,33,34,35,36,58,38,39,
+ 40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,0,62,63,64,65,0,1,2,69,
- 70,71,88,89,74,0,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,101,62,63,64,65,88,89,68,69,
+ 70,0,1,2,74,75,76,77,78,79,
+ 80,81,0,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,3,
- 32,33,34,35,36,37,38,39,40,41,
+ 22,23,24,25,26,27,0,29,30,31,
+ 32,33,34,35,36,0,38,39,40,41,
42,43,44,45,46,47,0,49,50,51,
52,53,54,55,56,57,58,59,60,0,
- 62,63,64,65,0,0,0,69,70,71,
- 0,100,74,8,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 62,63,64,65,0,0,68,69,70,4,
+ 11,12,74,75,76,77,78,79,80,81,
+ 0,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,48,29,30,0,32,33,
- 34,35,36,37,38,39,40,41,42,43,
+ 24,25,26,27,0,29,30,31,32,33,
+ 34,35,36,0,38,39,40,41,42,43,
44,45,46,47,0,49,50,51,52,53,
- 54,55,56,57,58,59,60,101,62,63,
- 64,65,88,89,0,69,70,71,88,89,
- 74,0,76,77,78,79,80,81,82,83,
+ 54,55,56,57,58,59,60,0,62,63,
+ 64,65,88,89,68,69,70,0,11,12,
+ 74,75,76,77,78,79,80,81,0,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,48,29,30,0,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,45,
- 46,47,61,49,50,51,52,53,54,55,
- 56,57,58,59,60,0,62,63,64,65,
- 0,1,2,69,70,71,11,12,74,0,
- 76,77,78,79,80,81,82,83,84,85,
+ 26,27,0,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,45,
+ 46,47,0,49,50,51,52,53,54,55,
+ 56,57,58,59,60,67,62,63,64,65,
+ 29,0,68,69,70,0,1,2,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 0,29,30,3,32,33,34,35,36,37,
+ 0,29,30,31,32,33,34,35,36,0,
38,39,40,41,42,43,44,45,46,47,
0,49,50,51,52,53,54,55,56,57,
- 58,59,60,0,62,63,64,65,0,1,
- 2,69,70,71,0,0,74,3,76,77,
- 78,79,80,81,82,83,84,85,86,87,
- 0,1,2,3,4,5,6,7,8,31,
- 10,11,12,28,14,15,16,17,18,19,
+ 58,59,60,67,62,63,64,65,29,0,
+ 68,69,70,4,0,0,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
+ 0,1,2,3,4,5,6,7,8,0,
+ 10,11,12,4,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 30,3,32,33,34,35,36,37,38,39,
+ 30,31,32,33,34,35,36,28,38,39,
40,41,42,43,44,45,46,47,0,49,
- 50,51,52,53,54,55,56,57,10,0,
- 1,2,3,63,5,0,7,0,3,69,
- 70,71,0,1,2,3,4,5,6,7,
- 8,9,10,123,0,13,14,15,16,17,
- 18,19,20,21,22,23,24,25,0,1,
- 2,0,4,31,0,1,2,3,4,5,
- 6,7,8,0,1,2,0,45,46,47,
- 4,49,50,51,52,53,54,55,56,31,
- 58,72,0,1,2,63,4,5,0,7,
- 68,69,70,71,72,0,74,75,0,1,
- 2,3,4,5,6,7,8,9,10,0,
- 0,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,90,0,72,64,65,31,
- 96,0,1,2,9,0,114,115,116,4,
- 31,46,47,45,46,47,95,49,50,51,
- 52,53,54,55,56,67,58,0,1,2,
- 3,63,5,28,7,0,68,69,70,71,
- 72,0,74,75,3,0,66,6,0,8,
- 9,3,11,12,13,0,1,2,3,14,
- 5,66,7,68,9,64,65,26,27,28,
- 0,0,0,1,2,3,4,5,6,7,
- 8,0,114,115,116,14,0,1,2,48,
+ 50,51,52,53,54,55,56,9,58,0,
+ 0,1,2,63,4,5,0,7,68,69,
+ 70,0,1,2,3,4,5,6,7,8,
+ 9,10,97,98,13,14,15,16,17,18,
+ 19,20,21,22,23,24,25,37,0,1,
+ 2,3,4,5,6,7,8,48,37,0,
+ 0,1,2,4,4,0,45,46,47,4,
+ 49,50,51,52,53,54,55,56,57,0,
+ 59,0,1,2,63,4,5,0,7,68,
+ 69,70,71,28,73,74,48,37,0,1,
+ 2,0,4,82,0,1,2,3,4,5,
+ 6,7,8,9,10,67,118,13,14,15,
+ 16,17,18,19,20,21,22,23,24,25,
+ 114,115,116,46,47,114,115,116,0,1,
+ 2,37,4,0,6,0,8,0,0,45,
+ 46,47,9,49,50,51,52,53,54,55,
+ 56,57,17,59,0,1,2,63,4,5,
+ 0,7,68,69,70,71,0,73,74,3,
+ 0,0,6,0,8,9,82,11,12,13,
+ 45,46,47,10,49,50,51,52,53,54,
+ 55,56,26,27,28,0,0,1,2,3,
+ 4,5,6,7,8,72,0,0,114,115,
+ 116,4,17,6,48,8,0,1,2,3,
+ 4,5,6,7,8,0,66,61,95,0,
+ 57,61,66,67,97,98,0,71,72,73,
45,46,47,0,49,50,51,52,53,54,
- 55,56,61,48,0,0,0,66,67,68,
- 0,1,2,72,73,5,45,46,47,0,
- 49,50,51,52,53,54,55,56,73,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,0,63,0,117,118,
- 3,120,0,6,9,8,9,48,11,12,
- 13,67,0,1,2,3,4,5,6,7,
- 8,0,76,26,27,28,0,0,1,2,
- 3,4,5,6,7,8,0,0,1,2,
- 14,4,5,0,7,48,102,102,104,105,
- 106,107,108,109,110,111,112,113,61,0,
- 48,117,117,66,67,68,0,31,31,72,
- 73,45,46,47,72,49,50,51,52,53,
- 54,55,56,0,0,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,28,0,118,117,118,4,120,0,1,
- 2,3,4,5,6,7,8,61,10,11,
- 12,0,66,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,0,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,0,1,2,3,0,5,0,
- 7,4,9,0,90,57,13,4,0,6,
- 96,8,64,65,0,1,2,3,10,5,
- 59,7,74,0,1,2,3,4,5,6,
- 7,8,0,10,11,12,0,0,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,0,29,30,0,32,33,34,35,36,
- 37,38,39,40,41,42,43,44,60,0,
- 1,2,3,4,5,6,7,8,99,28,
- 57,0,1,2,61,4,0,64,65,0,
- 1,2,3,4,5,6,7,8,9,10,
- 11,12,66,0,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,48,29,30,
- 66,32,33,34,35,36,37,38,39,40,
- 41,42,43,44,97,98,67,0,1,2,
- 59,0,1,2,0,4,57,6,59,8,
- 9,0,1,2,0,4,0,68,0,1,
+ 55,56,0,10,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,
+ 37,75,0,117,118,3,120,71,6,0,
+ 8,9,3,11,12,13,67,0,1,2,
+ 3,4,5,6,7,8,63,0,26,27,
+ 28,0,0,1,2,3,4,5,6,7,
+ 8,0,1,2,3,4,90,6,17,8,
+ 48,102,96,104,105,106,107,108,109,110,
+ 111,112,113,61,0,48,117,3,66,67,
+ 0,1,2,71,72,73,45,46,47,0,
+ 49,50,51,52,53,54,55,56,9,48,
+ 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,0,1,2,117,
+ 118,5,120,0,1,2,3,4,5,6,
+ 7,8,0,10,11,12,4,14,15,16,
+ 0,18,19,20,21,22,23,24,25,26,
+ 27,72,29,30,31,32,33,34,35,36,
+ 0,38,39,40,41,42,43,44,28,0,
+ 1,2,3,0,5,0,7,45,9,0,
+ 0,58,13,0,1,2,0,64,65,0,
+ 1,2,0,4,5,9,7,74,0,1,
+ 2,3,4,5,6,7,8,28,10,11,
+ 12,71,14,15,16,0,18,19,20,21,
+ 22,23,24,25,26,27,37,29,30,31,
+ 32,33,34,35,36,60,38,39,40,41,
+ 42,43,44,60,0,1,2,3,0,5,
+ 0,7,66,9,0,5,58,9,72,61,
+ 100,13,64,65,0,1,2,3,4,5,
+ 6,7,8,9,10,11,12,0,14,15,
+ 16,0,18,19,20,21,22,23,24,25,
+ 26,27,48,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,28,
+ 0,1,2,3,66,5,72,7,0,9,
+ 66,0,58,13,60,48,0,1,2,3,
+ 9,5,0,7,13,3,0,73,0,1,
2,3,4,5,6,7,8,9,10,11,
- 12,0,28,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,3,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,0,1,2,3,0,5,0,
- 7,0,9,0,73,57,13,59,0,1,
- 2,0,4,5,0,7,68,0,1,2,
- 3,4,5,6,7,8,95,10,11,12,
- 0,28,15,16,17,18,19,20,21,22,
- 23,24,25,26,27,99,29,30,0,32,
- 33,34,35,36,37,38,39,40,41,42,
- 43,44,61,0,1,2,3,4,0,6,
- 59,8,0,0,57,72,28,9,0,1,
- 2,64,65,0,1,2,3,4,5,6,
- 7,8,95,10,11,12,97,98,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,48,29,30,0,32,33,34,35,36,
- 37,38,39,40,41,42,43,44,114,115,
- 116,0,1,2,61,4,5,0,7,66,
- 57,73,0,1,2,31,4,64,65,0,
- 1,2,3,4,5,6,7,8,9,10,
- 11,12,31,95,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,0,29,30,
- 3,32,33,34,35,36,37,38,39,40,
- 41,42,43,44,0,1,2,3,4,5,
- 6,7,8,0,10,11,12,4,0,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,30,48,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,0,
- 1,2,0,4,0,6,4,8,45,5,
- 28,57,0,59,0,1,2,3,4,5,
- 6,7,8,0,10,11,12,118,0,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,30,0,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,0,
- 0,0,3,3,3,0,5,6,9,8,
- 28,57,11,12,0,1,2,0,4,14,
- 6,0,8,0,0,0,9,26,27,28,
- 13,30,9,9,0,1,2,0,0,5,
- 3,7,0,1,2,0,61,48,48,48,
- 45,46,47,28,49,50,51,52,53,54,
- 55,56,61,26,27,64,65,66,67,0,
- 0,0,73,31,3,6,0,1,2,3,
- 9,5,61,7,0,48,48,66,4,88,
- 89,90,91,92,93,94,73,73,97,98,
- 99,100,101,102,103,104,105,106,107,108,
- 109,110,111,112,113,0,0,72,3,48,
- 5,6,0,8,48,9,11,12,0,45,
- 0,9,61,3,0,1,2,66,0,5,
- 103,26,27,28,73,30,0,1,2,0,
- 4,0,6,0,8,4,28,120,0,1,
- 2,0,4,48,6,31,8,0,1,2,
- 0,1,2,0,1,2,61,28,0,64,
- 65,66,67,0,68,0,48,9,66,6,
- 0,13,0,1,2,73,0,67,114,115,
- 116,31,0,88,89,90,91,92,93,94,
- 61,0,97,98,99,100,101,102,103,104,
- 105,106,107,108,109,110,111,112,113,0,
- 1,2,3,4,5,6,7,8,48,10,
- 11,12,93,94,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,72,29,30,
- 0,32,33,34,35,36,37,38,39,40,
- 41,42,43,44,91,92,0,48,0,1,
+ 12,0,14,15,16,0,18,19,20,21,
+ 22,23,24,25,26,27,0,29,30,31,
+ 32,33,34,35,36,0,38,39,40,41,
+ 42,43,44,28,9,0,0,1,2,71,
+ 4,0,6,0,8,9,58,71,60,0,
+ 1,2,0,1,2,3,4,5,6,7,
+ 8,73,10,11,12,0,14,15,16,4,
+ 18,19,20,21,22,23,24,25,26,27,
+ 0,29,30,31,32,33,34,35,36,0,
+ 38,39,40,41,42,43,44,72,0,1,
+ 2,3,61,5,61,7,90,66,72,66,
+ 58,0,96,64,65,4,64,65,0,1,
2,3,4,5,6,7,8,0,10,11,
- 12,4,0,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,3,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,0,1,2,0,1,2,3,
- 4,5,6,7,8,57,10,11,12,0,
- 0,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,31,29,30,0,32,33,
- 34,35,36,37,38,39,40,41,42,43,
- 44,0,1,2,3,4,5,6,7,8,
- 0,10,11,12,0,28,15,16,17,18,
- 19,20,21,22,23,24,25,26,27,59,
- 29,30,0,32,33,34,35,36,37,38,
- 39,40,41,42,43,44,0,1,2,3,
- 4,5,6,7,8,0,10,11,12,0,
- 28,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,29,30,67,32,33,
- 34,35,36,37,38,39,40,41,42,43,
- 44,0,1,2,0,4,0,0,1,2,
- 0,10,0,1,2,14,15,16,17,18,
- 19,20,21,22,23,24,25,0,0,0,
- 0,0,0,6,28,6,67,0,31,9,
- 9,9,77,31,13,13,45,46,47,0,
- 49,50,51,52,53,54,55,56,9,0,
- 1,2,0,4,63,28,0,61,0,10,
- 69,70,71,14,15,16,17,18,19,20,
- 21,22,23,24,25,57,0,0,0,1,
- 2,3,4,5,6,7,8,9,66,93,
- 94,13,14,73,45,46,47,0,49,50,
- 51,52,53,54,55,56,28,68,91,92,
- 91,92,63,0,0,1,2,0,69,70,
- 71,121,0,45,46,47,48,49,50,51,
- 52,53,54,55,56,0,1,2,3,4,
- 5,6,7,8,9,0,90,0,13,14,
- 28,73,96,0,9,0,0,0,13,3,
- 0,14,15,16,17,18,19,20,21,22,
- 23,24,25,59,0,0,0,0,61,66,
- 45,46,47,48,49,50,51,52,53,54,
- 55,56,45,46,47,0,49,50,51,52,
- 53,54,55,56,9,28,0,0,73,0,
- 1,2,3,4,5,6,7,8,9,66,
- 0,0,13,14,67,0,1,2,3,4,
- 5,6,7,8,9,0,122,28,13,14,
- 31,0,1,2,3,4,5,6,7,8,
- 9,0,0,0,13,14,31,4,0,0,
- 0,10,4,28,0,0,0,58,73,60,
- 0,62,31,0,10,0,0,0,72,72,
- 59,28,31,58,75,60,28,62,0,29,
- 0,0,0,68,29,31,61,9,0,58,
- 75,60,0,62,0,28,0,3,0,68,
- 0,59,0,3,63,0,75,0,1,2,
- 3,4,5,6,7,8,9,63,93,94,
- 13,14,59,0,1,2,3,4,5,6,
- 7,8,9,67,0,0,13,14,31,0,
- 1,2,3,4,5,6,7,8,9,67,
- 90,73,13,14,31,67,96,0,66,0,
- 3,0,66,0,3,58,3,60,119,62,
- 31,0,0,0,72,68,3,72,0,0,
- 0,58,75,60,119,62,0,0,0,3,
- 3,68,0,95,0,0,0,58,75,60,
- 119,62,67,0,0,0,72,68,28,0,
- 0,0,0,0,75,0,1,2,3,4,
- 5,6,7,8,9,29,67,0,13,14,
- 0,0,1,2,3,4,5,6,7,8,
- 9,0,0,0,13,14,31,0,1,2,
- 3,4,5,6,7,8,9,0,0,67,
- 13,14,31,0,0,0,0,0,0,0,
- 0,0,0,58,0,60,0,62,31,0,
- 0,0,0,0,0,0,0,0,0,58,
- 75,60,0,62,0,0,0,0,0,0,
- 0,0,0,0,0,58,75,60,0,62,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,75,0,0,0,0,0,0,0,
+ 12,95,14,15,16,0,18,19,20,21,
+ 22,23,24,25,26,27,48,29,30,31,
+ 32,33,34,35,36,28,38,39,40,41,
+ 42,43,44,0,1,2,0,4,0,6,
+ 0,8,37,0,1,2,58,4,8,6,
+ 100,8,64,65,0,1,2,3,4,5,
+ 6,7,8,9,10,11,12,0,14,15,
+ 16,0,18,19,20,21,22,23,24,25,
+ 26,27,0,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,0,
+ 1,2,3,4,5,6,7,8,0,10,
+ 11,12,76,14,15,16,8,18,19,20,
+ 21,22,23,24,25,26,27,0,29,30,
+ 31,32,33,34,35,36,9,38,39,40,
+ 41,42,43,44,0,1,2,0,4,0,
+ 6,60,8,0,1,2,3,58,5,60,
+ 7,0,95,0,1,2,3,4,5,6,
+ 7,8,118,10,11,12,29,14,15,16,
+ 0,18,19,20,21,22,23,24,25,26,
+ 27,0,29,30,31,32,33,34,35,36,
+ 73,38,39,40,41,42,43,44,0,0,
+ 61,3,0,5,6,0,8,37,0,11,
+ 12,58,0,0,9,3,3,9,13,17,
+ 0,9,0,3,26,27,28,28,30,0,
+ 0,1,2,4,0,1,2,7,4,26,
+ 27,0,1,2,63,4,48,45,46,47,
+ 0,49,50,51,52,53,54,55,56,61,
+ 48,48,64,65,66,67,0,0,48,0,
+ 0,1,2,61,45,0,1,2,66,0,
+ 5,73,7,61,72,6,88,89,90,91,
+ 92,93,94,0,60,97,98,99,100,101,
+ 102,103,104,105,106,107,108,109,110,111,
+ 112,113,0,0,48,3,103,5,6,0,
+ 8,28,9,11,12,0,1,2,3,0,
+ 5,0,7,120,64,65,0,0,26,27,
+ 28,10,30,114,115,116,0,1,2,0,
+ 0,5,102,3,61,0,1,2,0,90,
+ 48,0,1,2,28,96,0,117,37,3,
+ 91,92,0,61,0,3,64,65,66,67,
+ 0,1,2,37,0,72,93,94,0,1,
+ 2,0,37,0,63,0,1,2,37,0,
+ 88,89,90,91,92,93,94,0,71,97,
+ 98,99,100,101,102,103,104,105,106,107,
+ 108,109,110,111,112,113,0,1,2,3,
+ 4,5,6,7,8,28,10,11,12,67,
+ 14,15,16,0,18,19,20,21,22,23,
+ 24,25,26,27,61,29,30,31,32,33,
+ 34,35,36,0,38,39,40,41,42,43,
+ 44,0,1,2,48,0,1,2,3,4,
+ 5,6,7,8,0,10,11,12,4,14,
+ 15,16,0,18,19,20,21,22,23,24,
+ 25,26,27,60,29,30,31,32,33,34,
+ 35,36,28,38,39,40,41,42,43,44,
+ 0,1,2,3,4,5,6,7,8,0,
+ 10,11,12,58,14,15,16,0,18,19,
+ 20,21,22,23,24,25,26,27,0,29,
+ 30,31,32,33,34,35,36,28,38,39,
+ 40,41,42,43,44,0,1,2,3,4,
+ 5,6,7,8,0,10,11,12,0,14,
+ 15,16,119,18,19,20,21,22,23,24,
+ 25,26,27,0,29,30,31,32,33,34,
+ 35,36,28,38,39,40,41,42,43,44,
+ 0,1,2,3,4,5,6,7,8,0,
+ 10,11,12,0,14,15,16,0,18,19,
+ 20,21,22,23,24,25,26,27,60,29,
+ 30,31,32,33,34,35,36,28,38,39,
+ 40,41,42,43,44,0,1,2,0,4,
+ 0,3,0,1,2,10,0,1,2,14,
+ 15,16,17,18,19,20,21,22,23,24,
+ 25,0,0,1,2,0,0,0,28,3,
+ 0,6,0,3,0,1,2,0,6,37,
+ 45,46,47,37,49,50,51,52,53,54,
+ 55,56,0,1,2,28,4,0,63,37,
+ 0,61,10,68,69,70,14,15,16,17,
+ 18,19,20,21,22,23,24,25,48,0,
+ 0,60,3,0,1,2,3,4,5,6,
+ 7,8,9,93,94,0,13,45,46,47,
+ 17,49,50,51,52,53,54,55,56,0,
+ 0,28,3,3,0,63,91,92,0,9,
+ 68,69,70,91,92,0,1,2,45,46,
+ 47,48,49,50,51,52,53,54,55,56,
+ 0,1,2,3,4,5,6,7,8,9,
+ 90,0,0,13,0,72,96,17,48,0,
+ 9,66,37,0,13,0,14,15,16,17,
+ 18,19,20,21,22,23,24,25,0,61,
+ 0,3,72,0,66,45,46,47,48,49,
+ 50,51,52,53,54,55,56,45,46,47,
+ 0,49,50,51,52,53,54,55,56,9,
+ 0,0,72,0,1,2,3,4,5,6,
+ 7,8,9,0,61,0,13,0,3,0,
+ 17,0,1,2,3,4,5,6,7,8,
+ 9,61,0,0,13,0,0,0,17,66,
+ 37,9,0,0,0,13,3,0,0,28,
+ 37,0,0,9,0,3,66,9,37,0,
+ 57,61,59,73,28,62,0,48,0,0,
+ 0,3,71,0,0,28,73,0,57,0,
+ 59,48,28,62,67,82,0,0,1,2,
+ 3,4,5,6,7,8,9,28,61,48,
+ 13,66,0,82,17,0,1,2,3,4,
+ 5,6,7,8,9,61,72,0,13,0,
+ 72,0,17,0,37,66,0,1,2,3,
+ 4,5,6,7,8,9,0,95,0,13,
+ 67,71,37,17,57,71,59,93,94,62,
+ 0,28,0,3,0,3,0,3,0,3,
+ 73,3,57,37,59,0,0,62,66,82,
+ 0,0,0,3,3,3,0,0,73,0,
+ 3,0,0,57,67,59,67,82,62,0,
+ 1,2,3,4,5,6,7,8,9,73,
+ 0,0,13,0,0,119,17,71,82,71,
+ 0,1,2,3,4,5,6,7,8,9,
+ 0,0,0,13,0,0,37,17,0,1,
+ 2,3,4,5,6,7,8,9,0,0,
+ 119,13,0,67,0,17,57,37,59,67,
+ 71,62,28,0,0,0,0,0,0,0,
+ 95,0,0,0,0,37,0,57,67,59,
+ 0,82,62,0,0,0,0,0,0,0,
+ 0,0,0,0,0,57,0,59,0,0,
+ 62,0,82,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 82,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
@@ -1361,297 +1353,296 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface TermAction {
public final static char termAction[] = {0,
- 5210,5188,5173,5173,5173,5173,5173,5173,5173,5201,
- 1,1,1,5195,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,5210,1,
- 1,4029,1,1,1,1,1,1,1,1,
+ 5180,5161,5143,5143,5143,5143,5143,5143,5143,5171,
+ 1,1,1,5168,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,191,1,
+ 1,1,1,1,1,1,1,139,1,1,
+ 1,1,1,1,1,1,1,1,5180,1,
+ 1,1,1,1,1,1,1,865,1,2086,
+ 2752,5180,2667,1,1,1,127,3413,1,1,
+ 1,131,304,5187,5361,2123,3050,2815,2187,2706,
+ 2976,2987,5483,3030,672,2989,775,2988,8,5174,
+ 5174,5174,5174,5174,5174,5174,5174,5174,5174,5174,
+ 5174,5174,5174,5174,5174,5174,5174,5174,5174,5174,
+ 5174,5174,5174,5174,5174,5174,1,5174,5174,5174,
+ 5174,5174,5174,5174,5174,5180,5174,5174,5174,5174,
+ 5174,5174,5174,5174,5174,5174,590,5174,5174,5174,
+ 5174,5174,5174,5174,5174,5174,5174,5174,5174,5177,
+ 5174,5174,5174,5174,2541,2588,5174,5174,5174,2541,
+ 2588,5174,5174,5174,5174,5174,5174,5174,5174,5174,
+ 4787,5174,5174,5174,5174,5174,5180,5161,5143,5143,
+ 5143,5143,5143,5143,5143,5165,1,1,1,5168,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1520,2586,
- 1476,124,2280,1,1,1,127,137,5217,1,
- 1,1,3206,3181,5391,2358,2332,2673,3352,2205,
- 3050,2630,3258,2672,657,2663,2808,2651,8,5204,
- 5204,5204,5204,5204,5204,5204,5204,5204,5204,5204,
- 5204,5204,5204,5204,5204,5204,5204,5204,5204,5204,
- 5204,5204,5204,5204,5204,5204,5210,5204,5204,3561,
- 5204,5204,5204,5204,5204,5204,5204,5204,5204,5204,
- 5204,5204,5204,5204,5204,5204,143,5204,5204,5204,
- 5204,5204,5204,5204,5204,5204,5204,5204,5204,126,
- 5204,5204,5204,5204,2560,2607,5204,5204,5204,5204,
- 3206,3181,5204,5210,5204,5204,5204,5204,5204,5204,
- 5204,5204,5204,5204,5204,5204,5210,5188,5173,5173,
- 5173,5173,5173,5173,5173,5192,1,1,1,5195,
+ 1,1,1,1,5180,1,1,1,1,1,
+ 1,1,1,140,1,1,1,1,1,1,
+ 1,1,1,1,143,1,1,1,1,1,
+ 1,1,1,865,1,2086,2752,124,2667,1,
+ 1,1,130,43,1,1,1,5222,2935,2910,
+ 5361,2123,3050,2815,2187,2706,2976,2987,5180,3030,
+ 672,2989,775,2988,5180,5161,5143,5143,5143,5143,
+ 5143,5143,5143,5165,1,1,1,5168,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,97,1,1,4854,1,1,
+ 1,1,5180,1,1,1,1,1,1,1,
+ 1,5180,1,1,1,1,1,1,1,1,
+ 1,1,590,1,1,1,1,1,1,1,
+ 1,865,1,2086,2752,2274,2667,1,1,1,
+ 2541,2588,1,1,1,5180,5197,5198,5361,2123,
+ 3050,2815,2187,2706,2976,2987,294,3030,672,2989,
+ 775,2988,5180,5161,5143,5143,5143,5143,5143,5143,
+ 5143,5165,1,1,1,5168,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1772,1,1,1,1,1,
- 1,1,1,1,1520,2586,1476,2294,2280,1,
- 1,1,42,4836,4833,1,1,1,131,615,
- 5391,5210,2332,2673,3352,2205,3050,2630,3258,2672,
- 657,2663,2808,2651,5210,5188,5173,5173,5173,5173,
- 5173,5173,5173,5192,1,1,1,5195,1,1,
+ 5180,1,1,1,1,1,1,1,1,5180,
1,1,1,1,1,1,1,1,1,1,
- 1,1,242,1,1,5008,1,1,1,1,
+ 144,1,1,1,1,1,1,1,1,865,
+ 1,2086,2752,1976,2667,1,1,1,129,529,
+ 1,1,1,5180,4969,4966,5361,2123,3050,2815,
+ 2187,2706,2976,2987,5180,3030,672,2989,775,2988,
+ 5180,5161,5143,5143,5143,5143,5143,5143,5143,5165,
+ 1,1,1,5168,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5180,1,
+ 1,1,1,1,1,1,1,2882,1,1,
+ 1,1,1,1,1,1,1,1,5180,1,
+ 1,1,1,1,1,1,1,865,1,2086,
+ 2752,2274,2667,1,1,1,2541,2588,1,1,
+ 1,54,5002,4999,5361,2123,3050,2815,2187,2706,
+ 2976,2987,5180,3030,672,2989,775,2988,5180,5161,
+ 5143,5143,5143,5143,5143,5143,5143,5165,1,1,
+ 1,5168,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,5180,1,1,1,
+ 1,1,1,1,1,5180,1,1,1,1,
+ 1,1,1,1,1,1,5180,1,1,1,
+ 1,1,1,1,1,865,1,2086,2752,126,
+ 2667,1,1,1,128,5180,1,1,1,2572,
+ 2935,2910,5361,2123,3050,2815,2187,2706,2976,2987,
+ 5180,3030,672,2989,775,2988,5180,5161,5143,5143,
+ 5143,5143,5143,5143,5143,5165,1,1,1,5168,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1779,1,1,1,1,1,1,1,
- 1,1,1520,2586,1476,141,2280,1,1,1,
- 5210,5227,5228,1,1,1,2560,2607,5391,5210,
- 2332,2673,3352,2205,3050,2630,3258,2672,657,2663,
- 2808,2651,5210,5188,5173,5173,5173,5173,5173,5173,
- 5173,5192,1,1,1,5195,1,1,1,1,
+ 1,1,1,1,5180,1,1,1,1,1,
+ 1,1,1,5180,1,1,1,1,1,1,
+ 1,1,1,1,5180,1,1,1,1,1,
+ 1,1,1,865,1,2086,2752,125,2667,1,
+ 1,1,2541,2588,1,1,1,5180,2935,2910,
+ 5361,2123,3050,2815,2187,2706,2976,2987,371,3030,
+ 672,2989,775,2988,5180,5161,5143,5143,5143,5143,
+ 5143,5143,5143,5165,1,1,1,5168,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,3866,1,1,1,1,1,1,
+ 1,1,5180,1,1,1,1,1,1,1,
+ 1,5180,1,1,1,1,1,1,1,1,
+ 1,1,5180,1,1,1,1,1,1,1,
+ 1,865,1,2086,2752,1171,2667,1,1,1,
+ 4251,5180,1,1,1,54,4969,4966,5361,2123,
+ 3050,2815,2187,2706,2976,2987,369,3030,672,2989,
+ 775,2988,5180,2982,1,1,1,1,1,1,
+ 1,5190,1,1,1,5189,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1798,1,1,1,1,1,1,1,1,1,
- 1520,2586,1476,5210,2280,1,1,1,5210,4999,
- 4996,1,1,1,130,592,5391,5210,2332,2673,
- 3352,2205,3050,2630,3258,2672,657,2663,2808,2651,
- 5210,5188,5173,5173,5173,5173,5173,5173,5173,5192,
- 1,1,1,5195,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,5210,1,
- 1,3260,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1807,1,
- 1,1,1,1,1,1,1,1,1520,2586,
- 1476,142,2280,1,1,1,54,5032,5029,1,
- 1,1,2560,2607,5391,5210,2332,2673,3352,2205,
- 3050,2630,3258,2672,657,2663,2808,2651,5210,5188,
- 5173,5173,5173,5173,5173,5173,5173,5192,1,1,
- 1,5195,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,5210,1,1,3651,
+ 5180,1,1,1,1,1,1,1,1,5180,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,144,1,1,1,
- 1,1,1,1,1,1,1520,2586,1476,5210,
- 2280,1,1,1,129,138,456,1,1,1,
- 128,592,5391,2358,2332,2673,3352,2205,3050,2630,
- 3258,2672,657,2663,2808,2651,5210,5188,5173,5173,
- 5173,5173,5173,5173,5173,5192,1,1,1,5195,
+ 5180,1,1,1,1,1,1,1,1,865,
+ 1,2086,2752,1215,2667,1,1,1,4249,1,
+ 1,1,1,387,5180,135,5361,2123,3050,2815,
+ 2187,2706,2976,2987,5180,3030,672,2989,775,2988,
+ 43,4791,4788,3352,781,3724,3797,3531,3819,393,
+ 852,3775,3753,386,5449,5447,5456,5442,5455,5451,
+ 5452,5450,5453,5454,5457,5448,3863,3841,5180,5203,
+ 1050,810,914,5205,846,4006,868,644,5206,5204,
+ 768,5199,5201,5202,5200,5445,5518,5519,5180,5439,
+ 5446,5418,5444,5443,5440,5441,5419,5184,1300,454,
+ 5180,4791,4788,5575,781,4836,435,3531,572,5576,
+ 5577,5180,5042,5042,233,5038,233,233,233,233,
+ 5046,1,2396,2368,233,1,1,1,1,1,
+ 1,1,1,1,1,1,1,990,368,5059,
+ 5055,2653,1,919,1,3531,1,4815,5035,5180,
+ 394,4791,4788,2764,5222,54,1,1,1,5198,
+ 1,1,1,1,1,1,1,1,3149,5180,
+ 1999,5180,4791,4788,1,781,919,337,3531,1,
+ 1,1,233,5198,413,5589,1847,43,5180,4791,
+ 4788,5180,5222,5676,5180,5042,5042,233,5038,233,
+ 233,233,233,5098,1,1129,5183,233,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,4845,1,1,5210,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5210,1,1,1,1,1,
- 1,1,1,1,1520,2586,1476,2294,2280,1,
- 1,1,2560,2607,455,1,1,1,2560,2607,
- 5391,5210,2332,2673,3352,2205,3050,2630,3258,2672,
- 657,2663,2808,2651,5210,5188,5173,5173,5173,5173,
- 5173,5173,5173,5192,1,1,1,5195,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,4848,1,1,5210,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,5720,1,1,1,1,1,1,1,
- 1,1,1520,2586,1476,125,2280,1,1,1,
- 54,4999,4996,1,1,1,3206,3181,5391,5210,
- 2332,2673,3352,2205,3050,2630,3258,2672,657,2663,
- 2808,2651,5210,2646,1,1,1,1,1,1,
- 1,5220,1,1,1,5219,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 5210,1,1,3871,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 5210,1,1,1,1,1,1,1,1,1,
- 1520,2586,1476,5210,2280,1,1,1,5210,8506,
- 8506,1,1,1,5210,5210,5391,4533,2332,2673,
- 3352,2205,3050,2630,3258,2672,657,2663,2808,2651,
- 43,4821,4818,3558,642,3815,4140,2638,4162,5250,
- 920,4118,4096,2755,5472,5479,5477,5486,5485,5481,
- 5482,5480,5483,5484,5487,5478,4206,4184,5210,5233,
- 1059,4545,575,731,5235,630,2732,717,5236,5234,
- 568,5229,5231,5232,5230,5475,5551,5552,307,5469,
- 5476,5448,5474,5473,5470,5471,5449,1312,5516,1,
- 5089,5085,3268,5608,1127,5210,2638,5210,4695,923,
- 5609,5610,5210,5072,5072,233,5068,233,233,233,
- 233,5076,1,4817,117,233,1,1,1,1,
- 1,1,1,1,1,1,1,1,397,4821,
- 4818,362,5252,5065,5210,5154,5149,3268,5050,1127,
- 5146,2638,5143,5210,5227,5228,43,1,1,1,
- 5252,1,1,1,1,1,1,1,1,43,
- 1478,2079,5210,4821,4818,1,642,1127,294,2638,
- 415,1,1,1,233,340,5621,5708,5210,5072,
- 5072,233,5068,233,233,233,233,5128,1,41,
- 163,233,1,1,1,1,1,1,1,1,
- 1,1,1,1,4250,5210,2079,4228,918,5065,
- 4272,5210,4999,4996,5218,396,5643,5644,5645,389,
- 5250,5551,5552,1,1,1,5571,1,1,1,
- 1,1,1,1,1,1990,1478,1,5089,5085,
- 3268,1,1127,1350,2638,5210,414,1,1,1,
- 233,37,5621,5708,4860,229,1355,4860,109,4860,
- 4860,4706,4860,4860,4860,1,5089,5085,2700,5472,
- 1127,1017,2638,5217,5002,4228,918,4860,4860,4860,
- 5210,230,5210,5163,5159,3268,5252,1127,2289,2638,
- 5544,5210,5643,5644,5645,5472,293,5227,5228,4860,
- 5475,5551,5552,5210,5469,5476,5448,5474,5473,5470,
- 5471,5449,4860,1859,145,145,1,4860,4860,4860,
- 5210,5227,5228,4860,4860,2712,5475,5551,5552,352,
- 5469,5476,5448,5474,5473,5470,5471,5449,5005,4860,
- 4860,4860,4860,4860,4860,4860,4860,4860,4860,4860,
- 4860,4860,4860,4860,4860,4860,4860,4860,4860,4860,
- 4860,4860,4860,4860,4860,5210,3359,5210,4860,4860,
- 4863,4860,5210,4863,5214,4863,4863,1859,4863,4863,
- 4863,1817,349,5163,5159,2700,5252,1127,2289,2638,
- 5544,5210,3908,4863,4863,4863,231,315,5154,5149,
- 3268,5050,1127,5146,2638,5143,53,5210,4821,4818,
- 5472,642,4866,5210,2638,4863,2257,2257,1775,1733,
- 1691,1649,1607,1565,1523,1481,1439,1397,4863,5210,
- 1859,3259,3259,4863,4863,4863,30,2602,659,4863,
- 4863,5475,5551,5552,1899,5469,5476,5448,5474,5473,
- 5470,5471,5449,5210,120,4863,4863,4863,4863,4863,
- 4863,4863,4863,4863,4863,4863,4863,4863,4863,4863,
- 4863,4863,4863,4863,4863,4863,4863,4863,4863,4863,
- 4863,3602,5210,5213,4863,4863,2924,4863,5210,1,
- 1,1,1,1,1,1,1,5041,1,1,
- 1,5210,5041,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,5210,1,1,139,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5089,5085,5119,1,5122,5210,
- 5125,390,5220,43,4250,1,5219,5252,307,2289,
- 4272,5544,1,1,1,5089,5085,5119,5516,5122,
- 2660,5125,5745,1,4909,4905,3558,4913,3815,4140,
- 2638,4162,5210,4869,4118,4096,513,135,4896,4902,
- 4875,4878,4890,4887,4893,4884,4881,4872,4899,4206,
- 4184,5210,5233,1059,366,575,731,5235,630,2732,
- 717,5236,5234,568,5229,5231,5232,5230,1639,371,
- 5089,5085,2700,1,1127,1,2638,1,2328,3657,
- 1312,5210,4821,4818,514,5252,5210,43,43,43,
- 4821,4818,3558,642,3815,4140,2638,4162,5218,799,
- 4118,4096,876,5210,5479,5477,5486,5485,5481,5482,
- 5480,5483,5484,5487,5478,4206,4184,1859,5233,1059,
- 3350,575,731,5235,630,2732,717,5236,5234,568,
- 5229,5231,5232,5230,2415,2387,1139,40,5104,5101,
- 2799,1,5053,5053,5210,5050,1312,2289,4393,5544,
- 367,5210,4821,4818,5210,5252,140,5217,43,4821,
- 4818,3558,642,3815,4140,2638,4162,5218,799,4118,
- 4096,5210,3850,5479,5477,5486,5485,5481,5482,5480,
- 5483,5484,5487,5478,4206,4184,5210,5233,1059,3709,
- 575,731,5235,630,2732,717,5236,5234,568,5229,
- 5231,5232,5230,1,5089,5085,3268,1,1127,136,
- 2638,5210,315,33,367,1312,315,4393,5210,4821,
- 4818,5210,642,1127,437,2638,5217,147,4821,4818,
- 3558,642,3815,4140,2638,4162,367,799,4118,4096,
- 5210,1350,5479,5477,5486,5485,5481,5482,5480,5483,
- 5484,5487,5478,4206,4184,2328,5233,1059,33,575,
- 731,5235,630,2732,717,5236,5234,568,5229,5231,
- 5232,5230,5649,349,43,43,2813,5252,1,2289,
- 3488,5544,5210,5210,1312,422,4824,367,5210,5032,
- 5029,43,43,1,4909,4905,3558,4913,3815,4140,
- 2638,4162,5573,4869,4118,4096,2415,2387,4896,4902,
- 4875,4878,4890,4887,4893,4884,4881,4872,4899,4206,
- 4184,1859,5233,1059,5210,575,731,5235,630,2732,
- 717,5236,5234,568,5229,5231,5232,5230,5643,5644,
- 5645,5210,4821,4818,3955,642,4866,5210,2638,3257,
- 1312,367,5210,4821,4818,2158,5252,43,43,43,
- 4821,4818,3558,642,3815,4140,2638,4162,5214,799,
- 4118,4096,2064,367,5479,5477,5486,5485,5481,5482,
- 5480,5483,5484,5487,5478,4206,4184,351,5233,1059,
- 2986,575,731,5235,630,2732,717,5236,5234,568,
- 5229,5231,5232,5230,43,4821,4818,3558,642,3815,
- 4140,2638,4162,43,799,4118,4096,5252,5210,5479,
- 5477,5486,5485,5481,5482,5480,5483,5484,5487,5478,
- 4206,4184,438,5233,1059,1859,575,731,5235,630,
- 2732,717,5236,5234,568,5229,5231,5232,5230,442,
- 1,1,5210,1,5210,4842,2961,4842,1555,2712,
- 4827,1312,5210,4393,43,4821,4818,3558,642,3815,
- 4140,2638,4162,5210,799,4118,4096,5213,5210,5479,
- 5477,5486,5485,5481,5482,5480,5483,5484,5487,5478,
- 4206,4184,452,5233,1059,5210,575,731,5235,630,
- 2732,717,5236,5234,568,5229,5231,5232,5230,1,
- 323,1,2813,5131,2558,232,5677,5671,5002,5675,
- 4830,1312,5669,5670,443,43,43,5210,5252,5472,
- 5047,5210,5044,1,5210,45,5220,5700,5701,5680,
- 5219,5678,167,5216,5210,5227,5228,81,106,1127,
- 3591,2638,49,5026,5026,426,5663,1859,1859,567,
- 5475,5551,5552,4851,5469,5476,5448,5474,5473,5470,
- 5471,5449,5681,5278,5279,1349,1393,5702,5679,5210,
- 5210,1,5005,5023,2813,3530,1,5089,5085,2700,
- 345,1127,2871,2638,43,3070,4669,3257,5252,5691,
- 5690,5703,5672,5673,5696,5697,167,5215,5694,5695,
- 5674,5676,5698,5699,5704,5684,5685,5686,5682,5683,
- 5692,5693,5688,5687,5689,5210,5210,3374,2558,1859,
- 5677,5671,5210,5675,1859,5218,5669,5670,389,1891,
- 317,5216,345,3408,41,5062,5062,345,325,5062,
- 800,5700,5701,5680,345,5678,98,1,1,132,
- 1,5210,5059,5210,5059,873,4857,999,101,43,
- 43,5210,5252,567,5137,2978,5134,397,5227,5228,
- 41,5056,5056,5210,8374,8369,5681,2524,405,1349,
- 1393,5702,5679,121,5217,5210,1859,5113,4675,3773,
- 105,5116,5210,8374,8369,5215,5210,1268,5643,5644,
- 5645,2633,5210,5691,5690,5703,5672,5673,5696,5697,
- 4839,5210,5694,5695,5674,5676,5698,5699,5704,5684,
- 5685,5686,5682,5683,5692,5693,5688,5687,5689,43,
- 4821,4818,3558,642,3815,4140,2638,4162,2027,799,
- 4118,4096,2470,2443,5479,5477,5486,5485,5481,5482,
- 5480,5483,5484,5487,5478,4206,4184,5611,5233,1059,
- 5210,575,731,5235,630,2732,717,5236,5234,568,
- 5229,5231,5232,5230,3750,3727,5210,1063,43,4821,
- 4818,3558,642,3815,4140,2638,4162,5210,799,4118,
- 4096,1821,5210,5479,5477,5486,5485,5481,5482,5480,
- 5483,5484,5487,5478,4206,4184,283,5233,1059,5167,
- 575,731,5235,630,2732,717,5236,5234,568,5229,
- 5231,5232,5230,5210,5082,5079,43,4821,4818,4602,
- 642,3815,4140,2638,4162,1312,799,4118,4096,5210,
- 5210,5479,5477,5486,5485,5481,5482,5480,5483,5484,
- 5487,5478,4206,4184,5250,5233,1059,5210,575,731,
- 5235,630,2732,717,5236,5234,568,5229,5231,5232,
- 5230,43,4821,4818,3558,642,3815,4140,2638,4162,
- 374,799,4118,4096,5210,1350,5479,5477,5486,5485,
- 5481,5482,5480,5483,5484,5487,5478,4206,4184,2586,
- 5233,1059,1,575,731,5235,630,2732,717,5236,
- 5234,568,5229,5231,5232,5230,43,4821,4818,3558,
- 642,3815,4140,2638,4162,5210,799,4118,4096,372,
- 1350,5479,5477,5486,5485,5481,5482,5480,5483,5484,
- 5487,5478,4206,4184,5210,5233,1059,1181,575,731,
- 5235,630,2732,717,5236,5234,568,5229,5231,5232,
- 5230,5210,4821,4818,5210,5252,134,5210,5097,5093,
- 191,722,51,5110,5110,5472,5479,5477,5486,5485,
- 5481,5482,5480,5483,5484,5487,5478,123,531,122,
- 1,1,5210,3773,2524,3773,1226,5210,5250,5216,
- 5220,5220,2877,5107,5219,5219,5475,5551,5552,1,
- 5469,5476,5448,5474,5473,5470,5471,5449,5182,246,
- 4989,4985,5210,4993,5608,2157,119,5035,5210,722,
- 923,5609,5610,4940,4976,4982,4955,4958,4970,4967,
- 4973,4964,4961,4952,4979,2501,5210,5210,33,389,
- 389,5017,389,389,5017,389,5017,5020,4349,2470,
- 2443,5017,389,5215,4931,4925,4922,5210,4949,4928,
- 4919,4934,4937,4946,4943,4916,4824,5217,3750,3727,
- 3750,3727,5608,292,5210,5227,5228,5210,923,5609,
- 5610,5207,79,389,389,389,5020,389,389,389,
- 389,389,389,389,389,36,390,390,5011,390,
- 390,5011,390,5011,5014,1,4250,228,5011,390,
- 5140,5020,4272,424,197,5210,5210,418,197,2325,
- 5210,5472,5479,5477,5486,5485,5481,5482,5480,5483,
- 5484,5487,5478,4062,5210,5210,5210,5210,3796,650,
- 390,390,390,5014,390,390,390,390,390,390,
- 390,390,5475,5551,5552,1,5469,5476,5448,5474,
- 5473,5470,5471,5449,527,3888,446,5210,5014,1,
- 5173,5173,233,5173,233,233,233,233,233,3153,
- 5210,1,233,8522,2168,1,5173,5173,233,5173,
- 233,233,233,233,5185,133,2326,2157,233,8522,
- 5170,1,5173,5173,233,5173,233,233,233,233,
- 5185,1,5210,54,233,8522,5170,5228,54,5210,
- 5210,5176,5227,2524,1,5210,5210,1520,527,1434,
- 118,2280,5170,5210,5176,379,39,5210,627,2116,
- 4065,5228,2438,1520,5708,1434,5227,2280,1,4019,
- 5210,520,506,225,3980,2438,5038,169,504,1520,
- 5708,1434,447,2280,5210,4383,314,4717,1,225,
- 5210,4078,5210,4465,5179,5210,5708,1,5173,5173,
- 233,5173,233,233,233,233,5198,5179,2470,2443,
- 233,8522,4084,1,5173,5173,233,5173,233,233,
- 233,233,5185,1681,5210,5210,233,8522,5170,1,
- 5173,5173,233,5173,233,233,233,233,5185,3919,
- 4250,169,233,8522,5170,3972,4272,5210,2873,5210,
- 4680,5210,4360,5210,4681,1520,2816,1434,2779,2280,
- 5170,5210,5210,5210,5394,224,4693,3319,5210,5210,
- 2,1520,5708,1434,2779,2280,5210,5210,5210,4587,
- 4722,225,508,4466,5210,5210,1,1520,5708,1434,
- 2779,2280,1681,5210,5210,5210,5393,225,41,5210,
- 5210,5210,5210,5210,5708,1,5173,5173,233,5173,
- 233,233,233,233,233,2247,1948,5210,233,8522,
- 5210,1,5173,5173,233,5173,233,233,233,233,
- 233,5210,5210,5210,233,8522,5170,1,5173,5173,
- 233,5173,233,233,233,233,233,5210,5210,936,
- 233,8522,5170,5210,5210,5210,5210,5210,5210,5210,
- 5210,5210,5210,1520,5210,1434,5210,2280,5170,5210,
- 5210,5210,5210,5210,5210,5210,5210,5210,5210,1520,
- 5708,1434,5210,2280,5210,5210,5210,5210,5210,5210,
- 5210,5210,5210,5210,5210,1520,5708,1434,5210,2280,
- 5210,5210,5210,5210,5210,5210,5210,5210,5210,5210,
- 5210,5210,5708
+ 5611,5612,5613,5518,5519,5611,5612,5613,440,1,
+ 1,5035,1,1,4812,229,4812,136,5180,1,
+ 1,1,364,1,1,1,1,1,1,1,
+ 1,3149,5442,1999,5180,4791,4788,1,781,919,
+ 163,3531,1,1,1,233,37,412,5589,4830,
+ 5180,5180,4830,304,4830,4830,5676,4830,4830,4830,
+ 5445,5518,5519,5483,5439,5446,5418,5444,5443,5440,
+ 5441,5419,4830,4830,4830,230,5180,5133,5129,578,
+ 5222,919,2268,3531,5511,364,1,43,5611,5612,
+ 5613,5222,5442,2268,4830,5511,5180,5124,5119,578,
+ 5020,919,5116,3531,5113,5180,1343,4830,364,145,
+ 1669,1802,4830,4830,2396,2368,117,4830,4830,4830,
+ 5445,5518,5519,1,5439,5446,5418,5444,5443,5440,
+ 5441,5419,5180,5152,4830,4830,4830,4830,4830,4830,
+ 4830,4830,4830,4830,4830,4830,4830,4830,4830,4830,
+ 4830,4830,4830,4830,4830,4830,4830,4830,4830,4830,
+ 2779,4233,5180,4830,4830,4833,4830,2063,4833,5180,
+ 4833,4833,4032,4833,4833,4833,1805,346,5133,5129,
+ 2653,5222,919,2268,3531,5511,5155,5180,4833,4833,
+ 4833,231,312,5124,5119,578,5020,919,5116,3531,
+ 5113,346,43,43,2683,5222,3907,2268,5442,5511,
+ 4833,2237,3929,1763,1721,1679,1637,1595,1553,1511,
+ 1469,1427,1385,4833,5180,1847,3176,623,4833,4833,
+ 293,5197,5198,4833,4833,4833,5445,5518,5519,1,
+ 5439,5446,5418,5444,5443,5440,5441,5419,167,1847,
+ 4833,4833,4833,4833,4833,4833,4833,4833,4833,4833,
+ 4833,4833,4833,4833,4833,4833,4833,4833,4833,4833,
+ 4833,4833,4833,4833,4833,4833,5180,5197,5198,4833,
+ 4833,3359,4833,5180,1,1,1,1,1,1,
+ 1,1,43,1,1,1,5222,1,1,1,
+ 33,1,1,1,1,1,1,1,1,1,
+ 1,167,1,1,1,1,1,1,1,1,
+ 141,1,1,1,1,1,1,1,644,1,
+ 5059,5055,5089,5180,5092,5180,5095,1543,5190,5180,
+ 5180,1,5189,5180,5197,5198,5180,1,1,5180,
+ 4791,4788,5180,781,4836,5186,3531,5713,1,4879,
+ 4875,3352,4883,3724,3797,3531,3819,2782,4839,3775,
+ 3753,420,4866,4872,4845,5180,4848,4860,4857,4863,
+ 4854,4851,4842,4869,3863,3841,2050,5203,1050,810,
+ 914,5205,846,4006,868,2567,5206,5204,768,5199,
+ 5201,5202,5200,3586,1,5059,5055,2653,5180,919,
+ 5180,3531,4322,4972,511,3359,1300,5190,5185,512,
+ 2308,5189,43,43,43,4791,4788,3352,781,3724,
+ 3797,3531,3819,5188,806,3775,3753,453,5449,5447,
+ 5456,5180,5455,5451,5452,5450,5453,5454,5457,5448,
+ 3863,3841,1847,5203,1050,810,914,5205,846,4006,
+ 868,5180,5206,5204,768,5199,5201,5202,5200,2827,
+ 1,5059,5055,578,4267,919,4975,3531,5180,312,
+ 870,5180,1300,312,4423,4818,1,5059,5055,578,
+ 5190,919,97,3531,5189,4824,5180,5187,43,4791,
+ 4788,3352,781,3724,3797,3531,3819,5188,806,3775,
+ 3753,5180,5449,5447,5456,5180,5455,5451,5452,5450,
+ 5453,5454,5457,5448,3863,3841,120,5203,1050,810,
+ 914,5205,846,4006,868,5180,5206,5204,768,5199,
+ 5201,5202,5200,3178,5186,5180,1,5023,5023,1884,
+ 5020,30,2268,5180,5511,364,1300,2063,4423,5180,
+ 5197,5198,147,4791,4788,3352,781,3724,3797,3531,
+ 3819,5187,806,3775,3753,5180,5449,5447,5456,789,
+ 5455,5451,5452,5450,5453,5454,5457,5448,3863,3841,
+ 142,5203,1050,810,914,5205,846,4006,868,5180,
+ 5206,5204,768,5199,5201,5202,5200,5185,1,5059,
+ 5055,2653,5011,919,4213,3531,3907,5011,364,2622,
+ 1300,5180,3929,3885,629,1347,43,43,1,4879,
+ 4875,3352,4883,3724,3797,3531,3819,5180,4839,3775,
+ 3753,364,4866,4872,4845,41,4848,4860,4857,4863,
+ 4854,4851,4842,4869,3863,3841,1847,5203,1050,810,
+ 914,5205,846,4006,868,3659,5206,5204,768,5199,
+ 5201,5202,5200,441,43,43,5180,5222,5180,5017,
+ 137,5014,5220,98,1,1,1300,1,2339,5029,
+ 2308,5029,43,43,43,4791,4788,3352,781,3724,
+ 3797,3531,3819,5184,806,3775,3753,359,5449,5447,
+ 5456,5180,5455,5451,5452,5450,5453,5454,5457,5448,
+ 3863,3841,5180,5203,1050,810,914,5205,846,4006,
+ 868,5180,5206,5204,768,5199,5201,5202,5200,43,
+ 4791,4788,3352,781,3724,3797,3531,3819,138,806,
+ 3775,3753,3165,5449,5447,5456,2339,5455,5451,5452,
+ 5450,5453,5454,5457,5448,3863,3841,5180,5203,1050,
+ 810,914,5205,846,4006,868,5188,5206,5204,768,
+ 5199,5201,5202,5200,101,43,43,1,5222,5180,
+ 5107,3411,5104,1,5059,5055,578,1300,919,4423,
+ 3531,5180,5538,43,4791,4788,3352,781,3724,3797,
+ 3531,3819,5183,806,3775,3753,2652,5449,5447,5456,
+ 53,5455,5451,5452,5450,5453,5454,5457,5448,3863,
+ 3841,5180,5203,1050,810,914,5205,846,4006,868,
+ 5187,5206,5204,768,5199,5201,5202,5200,1,33,
+ 1809,902,232,5645,5639,402,5643,2768,1,5637,
+ 5638,1300,1,81,5083,2683,2611,5158,5086,5442,
+ 348,342,5180,2895,5668,5669,5648,4794,5646,43,
+ 42,4806,4803,5222,5180,4791,4788,566,5222,5248,
+ 5249,5180,4791,4788,4187,5222,557,5445,5518,5519,
+ 145,5439,5446,5418,5444,5443,5440,5441,5419,5649,
+ 1847,2681,1380,1416,5670,5647,349,5180,1847,119,
+ 5180,4969,4966,342,1280,5180,5197,5198,342,121,
+ 919,5187,3531,1828,342,3480,5659,5658,5671,5640,
+ 5641,5664,5665,132,2844,5662,5663,5642,5644,5666,
+ 5667,5672,5652,5653,5654,5650,5651,5660,5661,5656,
+ 5655,5657,5180,1,1847,902,656,5645,5639,5180,
+ 5643,2505,5186,5637,5638,1,5059,5055,5089,5180,
+ 5092,1,5095,793,3885,629,436,424,5668,5669,
+ 5648,5152,5646,5611,5612,5613,41,5032,5032,5180,
+ 242,5032,2237,4978,4809,5180,8518,8518,5180,3907,
+ 557,49,4996,4996,4797,3929,1,3176,2779,4114,
+ 3457,3434,314,5649,5180,4029,1380,1416,5670,5647,
+ 40,5074,5071,3422,5180,5185,2451,2424,5180,5002,
+ 4999,5180,5220,5180,5155,394,5197,5198,4993,5180,
+ 5659,5658,5671,5640,5641,5664,5665,450,625,5662,
+ 5663,5642,5644,5666,5667,5672,5652,5653,5654,5650,
+ 5651,5660,5661,5656,5655,5657,43,4791,4788,3352,
+ 781,3724,3797,3531,3819,4800,806,3775,3753,1257,
+ 5449,5447,5456,5180,5455,5451,5452,5450,5453,5454,
+ 5457,5448,3863,3841,1836,5203,1050,810,914,5205,
+ 846,4006,868,5180,5206,5204,768,5199,5201,5202,
+ 5200,5180,7908,6709,1128,43,4791,4788,3352,781,
+ 3724,3797,3531,3819,54,806,3775,3753,5197,5449,
+ 5447,5456,5180,5455,5451,5452,5450,5453,5454,5457,
+ 5448,3863,3841,4141,5203,1050,810,914,5205,846,
+ 4006,868,5197,5206,5204,768,5199,5201,5202,5200,
+ 43,4791,4788,4346,781,3724,3797,3531,3819,45,
+ 806,3775,3753,1300,5449,5447,5456,5180,5455,5451,
+ 5452,5450,5453,5454,5457,5448,3863,3841,5180,5203,
+ 1050,810,914,5205,846,4006,868,4821,5206,5204,
+ 768,5199,5201,5202,5200,43,4791,4788,3352,781,
+ 3724,3797,3531,3819,386,806,3775,3753,5180,5449,
+ 5447,5456,3071,5455,5451,5452,5450,5453,5454,5457,
+ 5448,3863,3841,5180,5203,1050,810,914,5205,846,
+ 4006,868,4827,5206,5204,768,5199,5201,5202,5200,
+ 43,4791,4788,3352,781,3724,3797,3531,3819,5180,
+ 806,3775,3753,5180,5449,5447,5456,5180,5455,5451,
+ 5452,5450,5453,5454,5457,5448,3863,3841,2752,5203,
+ 1050,810,914,5205,846,4006,868,644,5206,5204,
+ 768,5199,5201,5202,5200,5180,4791,4788,5180,5222,
+ 134,3289,41,5026,5026,637,5180,5052,5049,5449,
+ 5447,5456,5442,5455,5451,5452,5450,5453,5454,5457,
+ 5448,1,5180,5067,5063,123,5180,1,2505,4030,
+ 320,3480,122,5101,5180,7908,6709,5180,3480,3088,
+ 5445,5518,5519,5220,5439,5446,5418,5444,5443,5440,
+ 5441,5419,246,4959,4955,644,4963,5180,5575,5220,
+ 118,5005,637,572,5576,5577,4946,4952,4925,4910,
+ 4928,4940,4937,4943,4934,4931,4922,4949,1847,5180,
+ 5180,4291,4056,33,386,386,4987,386,386,4987,
+ 386,4987,4990,2451,2424,363,4987,4901,4895,4892,
+ 386,4919,4898,4889,4904,4907,4916,4913,4886,5180,
+ 1,4794,4289,2683,5180,5575,3457,3434,5180,4972,
+ 572,5576,5577,3457,3434,51,5080,5080,386,386,
+ 386,4990,386,386,386,386,386,386,386,386,
+ 36,387,387,4981,387,387,4981,387,4981,4984,
+ 3907,1,228,4981,5180,4990,3929,387,1847,5180,
+ 5190,3267,5077,5180,5189,5180,5449,5447,5456,5442,
+ 5455,5451,5452,5450,5453,5454,5457,5448,5180,3164,
+ 5180,3077,4975,292,2622,387,387,387,4984,387,
+ 387,387,387,387,387,387,387,5445,5518,5519,
+ 5180,5439,5446,5418,5444,5443,5440,5441,5419,5188,
+ 5180,5180,4984,1,5143,5143,233,5143,233,233,
+ 233,233,5146,5180,5688,5180,233,416,3388,106,
+ 7561,1,5143,5143,233,5143,233,233,233,233,
+ 233,5617,1,322,233,422,5180,5180,7561,859,
+ 5140,197,1,109,1,197,4135,79,1,2482,
+ 2501,105,5180,525,133,4115,1008,169,5140,445,
+ 4037,5631,2086,5187,2482,2667,5180,4390,283,5180,
+ 444,5137,5578,39,5180,5110,225,5180,4037,5180,
+ 2086,1847,2505,2667,2150,5676,376,1,5143,5143,
+ 233,5143,233,233,233,233,5149,4180,4027,2013,
+ 233,3540,311,5676,7561,1,5143,5143,233,5143,
+ 233,233,233,233,5146,5008,525,504,233,502,
+ 169,518,7561,5180,5140,3223,1,5143,5143,233,
+ 5143,233,233,233,233,5146,5180,5540,5180,233,
+ 1711,3202,5140,7561,4037,2100,2086,2451,2424,2667,
+ 5180,4314,5180,2693,5180,4392,5180,4597,5180,3525,
+ 224,4600,4037,5140,2086,1,5180,2667,4299,5676,
+ 5180,5180,5180,3020,4627,2857,5180,5180,225,5180,
+ 4625,5180,5180,4037,4181,2086,4316,5676,2667,1,
+ 5143,5143,233,5143,233,233,233,233,233,225,
+ 5180,506,233,5180,5180,3071,7561,5364,5676,3047,
+ 1,5143,5143,233,5143,233,233,233,233,233,
+ 5180,5180,5180,233,2,5180,5140,7561,1,5143,
+ 5143,233,5143,233,233,233,233,233,5180,5180,
+ 3071,233,5180,1711,5180,7561,4037,5140,2086,1934,
+ 5363,2667,41,5180,5180,5180,5180,5180,5180,5180,
+ 4481,5180,5180,5180,5180,5140,5180,4037,929,2086,
+ 5180,5676,2667,5180,5180,5180,5180,5180,5180,5180,
+ 5180,5180,5180,5180,5180,4037,5180,2086,5180,5180,
+ 2667,5180,5676,5180,5180,5180,5180,5180,5180,5180,
+ 5180,5180,5180,5180,5180,5180,5180,5180,5180,5180,
+ 5676
};
};
public final static char termAction[] = TermAction.termAction;
@@ -1659,59 +1650,59 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface Asb {
public final static char asb[] = {0,
- 1071,1,351,605,3,1021,292,292,292,292,
- 177,1021,305,305,370,305,809,589,811,606,
- 606,606,606,606,606,606,606,606,307,313,
- 318,315,322,320,327,325,329,328,330,69,
- 331,605,589,149,149,149,149,645,771,121,
- 121,302,149,274,66,305,305,121,401,307,
- 66,66,57,589,980,148,914,179,664,589,
- 305,307,868,868,771,605,606,606,606,606,
- 606,606,606,606,606,606,606,606,606,606,
- 606,606,606,606,606,605,605,605,605,605,
- 605,605,605,605,605,605,605,606,66,66,
- 728,728,728,728,486,66,121,121,115,653,
- 664,495,664,490,664,492,664,648,177,645,
- 274,274,121,606,115,233,499,362,361,186,
- 670,670,177,811,274,148,605,643,913,66,
- 642,645,644,642,66,274,315,315,313,313,
- 313,320,320,320,320,318,318,325,322,322,
- 328,327,329,559,330,1021,1021,1021,1021,645,
- 645,728,690,727,728,302,645,298,442,645,
- 230,486,538,228,495,542,645,645,645,486,
- 728,57,274,345,66,501,503,645,914,606,
- 149,311,23,66,179,645,645,292,644,914,
- 605,605,605,605,605,1021,1021,589,119,298,
- 442,230,229,230,486,230,542,542,645,486,
- 645,66,366,354,365,503,486,643,66,311,
- 115,913,179,645,643,66,66,66,66,771,
- 771,298,297,279,645,442,559,292,488,1064,
- 549,442,230,230,763,645,542,279,277,278,
- 645,816,605,363,363,10,10,645,497,115,
- 730,66,645,311,312,311,605,23,1069,307,
- 179,66,66,298,914,728,292,642,826,551,
- 639,1021,282,176,764,645,279,606,645,816,
- 605,605,503,914,66,501,354,816,197,311,
- 771,606,274,1069,643,921,457,643,230,230,
- 639,350,115,285,606,559,18,763,645,177,
- 177,645,972,503,643,816,312,66,274,351,
- 1113,830,110,1021,181,957,457,643,230,495,
- 177,551,639,606,606,645,645,645,972,66,
- 972,875,110,1113,920,495,495,294,177,727,
- 292,222,222,351,495,569,282,645,1021,645,
- 645,1021,965,972,921,920,351,17,350,66,
- 920,920,920,177,645,457,921,457,726,726,
- 1023,570,177,645,771,504,965,920,605,1027,
- 639,351,279,920,920,920,645,645,457,149,
- 149,1023,569,559,606,559,351,1021,1021,1021,
- 570,1021,645,76,351,351,645,495,66,65,
- 967,279,66,1025,279,279,645,351,727,561,
- 1021,561,559,570,589,589,587,547,589,351,
- 351,440,1023,149,967,1025,351,536,730,66,
- 639,66,587,110,1021,66,1023,278,222,66,
- 66,210,570,440,570,351,110,605,570,567,
- 1025,726,495,495,1013,605,568,771,351,66,
- 642,570,66,351,570
+ 414,1,826,278,116,874,527,527,527,527,
+ 112,874,780,780,655,780,41,262,43,279,
+ 279,279,279,279,279,279,279,279,782,788,
+ 793,790,797,795,802,800,804,803,805,182,
+ 806,278,262,84,84,84,84,318,3,56,
+ 56,777,84,398,166,780,780,56,686,782,
+ 166,166,157,262,833,83,915,114,997,262,
+ 780,782,765,765,3,278,279,279,279,279,
+ 279,279,279,279,279,279,279,279,279,279,
+ 279,279,279,279,279,278,278,278,278,278,
+ 278,278,278,278,278,278,278,279,166,166,
+ 1061,1061,1061,1061,503,166,56,56,228,986,
+ 997,512,997,507,997,509,997,981,112,318,
+ 398,398,56,279,228,357,547,537,536,321,
+ 1003,1003,112,43,398,83,278,316,914,166,
+ 315,318,317,315,166,398,790,790,788,788,
+ 788,795,795,795,795,793,793,800,797,797,
+ 803,802,804,643,805,874,874,874,874,318,
+ 318,1061,1023,1060,1061,777,318,773,458,318,
+ 403,503,589,401,512,593,318,318,318,503,
+ 1061,157,398,820,166,549,551,318,915,279,
+ 84,786,123,166,114,318,318,527,317,915,
+ 278,278,278,278,278,874,874,262,232,773,
+ 458,403,402,403,503,403,593,593,318,503,
+ 318,166,541,529,540,551,503,316,166,786,
+ 228,914,114,318,316,166,166,166,166,3,
+ 3,773,772,408,318,458,643,510,527,505,
+ 1104,633,458,403,403,48,318,593,408,406,
+ 407,318,645,278,538,538,169,169,318,545,
+ 228,600,166,318,786,787,786,278,123,1109,
+ 782,114,166,166,773,915,727,512,1061,527,
+ 315,829,635,312,874,411,111,49,318,408,
+ 279,318,645,278,278,551,915,166,549,529,
+ 645,332,786,3,279,398,1109,316,727,727,
+ 922,474,316,403,403,312,825,228,520,279,
+ 643,177,48,318,112,112,318,973,551,316,
+ 645,787,166,398,826,408,456,876,223,874,
+ 510,958,727,727,474,316,403,512,112,635,
+ 312,279,279,318,318,318,973,166,973,921,
+ 223,456,586,112,408,1060,527,514,514,826,
+ 512,242,411,318,874,318,318,874,966,973,
+ 922,727,826,176,825,166,112,318,474,922,
+ 474,1059,1059,1063,243,112,318,3,552,966,
+ 727,278,1067,312,826,318,318,474,84,84,
+ 1063,242,643,279,643,826,874,874,874,243,
+ 874,318,189,826,826,318,512,166,165,968,
+ 408,166,1065,318,826,1060,234,874,234,643,
+ 243,262,262,260,598,262,826,826,725,1063,
+ 84,968,1065,826,584,600,166,312,166,260,
+ 223,874,166,1063,407,514,166,166,345,243,
+ 725,243,826,223,278,243,240,1065,1059,512,
+ 512,866,278,241,3,826,166,315,243,166,
+ 826,243
};
};
public final static char asb[] = Asb.asb;
@@ -1719,118 +1710,117 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface Asr {
public final static byte asr[] = {0,
- 123,0,9,72,118,73,13,66,0,76,
- 59,61,72,95,73,48,3,9,66,13,
- 67,0,96,90,11,12,91,92,88,89,
+ 122,0,9,72,14,15,31,16,32,33,
+ 18,19,20,34,21,22,35,36,38,58,
+ 39,40,10,23,24,25,41,42,43,29,
+ 3,26,27,8,6,11,12,30,4,44,
+ 5,7,1,2,65,64,0,45,1,2,
+ 4,114,115,116,0,31,64,32,33,65,
+ 7,34,35,36,38,58,39,40,41,42,
+ 43,29,26,27,8,6,11,12,5,30,
+ 61,44,3,49,14,15,63,46,16,68,
+ 50,17,18,51,52,19,20,53,54,21,
+ 22,55,69,56,10,70,23,24,47,25,
+ 45,1,2,4,0,9,71,118,72,13,
+ 66,0,96,90,11,12,91,92,88,89,
28,93,94,97,98,99,100,101,102,117,
- 72,95,67,104,105,106,107,108,109,110,
- 111,112,113,118,68,13,61,1,2,8,
- 6,4,3,48,66,73,9,0,61,72,
- 95,66,118,73,68,15,16,32,64,17,
- 33,34,18,19,20,65,35,21,22,36,
- 37,38,57,39,40,10,23,24,25,41,
- 42,43,29,26,27,11,12,30,44,9,
- 13,7,5,3,1,2,8,4,6,0,
- 32,64,33,34,65,7,35,36,37,38,
- 57,39,40,41,42,43,29,26,27,8,
- 6,11,12,5,30,61,44,3,49,15,
- 16,63,46,17,69,50,14,18,51,52,
- 19,20,53,54,21,22,55,70,56,10,
- 71,23,24,47,25,45,1,2,4,0,
- 1,2,122,59,0,15,16,17,18,19,
- 20,21,22,23,24,25,49,46,50,14,
- 51,52,53,54,55,56,45,47,13,9,
- 73,7,1,2,48,3,8,6,5,4,
- 0,61,67,66,1,2,0,4,28,59,
- 72,0,64,65,3,10,33,37,35,32,
- 40,16,25,15,21,19,20,22,23,18,
- 17,24,41,44,42,43,29,39,34,38,
- 5,7,4,26,27,8,6,11,12,30,
- 36,1,2,118,9,0,67,66,68,9,
- 0,59,66,0,72,9,48,3,67,66,
- 13,28,0,59,67,0,57,46,7,47,
- 5,1,2,4,76,59,120,103,26,27,
- 48,3,96,90,6,91,92,11,12,89,
- 88,28,93,94,97,98,8,99,100,101,
- 61,95,73,67,104,105,106,107,108,109,
- 110,111,112,113,72,118,68,102,117,66,
- 13,9,0,8,6,4,5,7,1,2,
- 3,48,61,67,66,9,73,95,0,49,
- 15,16,63,46,17,69,50,14,18,51,
- 52,19,20,53,54,21,22,55,70,56,
- 10,71,23,45,24,47,25,1,2,4,
- 65,64,11,12,6,91,92,99,8,100,
- 5,30,28,61,107,108,104,105,106,112,
- 111,113,89,88,109,110,97,98,93,94,
- 101,102,26,27,66,90,103,3,48,67,
- 0,75,7,114,115,116,58,9,3,8,
- 6,5,72,68,13,74,49,15,16,63,
- 46,17,69,50,14,18,51,52,19,20,
- 53,54,21,22,55,70,56,10,71,23,
- 45,24,47,25,4,1,2,31,0,31,
- 72,4,1,2,59,0,7,5,3,48,
- 6,8,95,49,15,16,46,17,69,50,
- 14,18,51,52,19,20,53,54,21,22,
- 55,70,56,10,71,23,45,24,47,25,
- 1,2,4,73,9,63,0,4,59,72,
- 0,1,2,9,68,0,77,0,13,9,
- 7,5,3,1,2,6,8,4,72,0,
- 75,114,115,116,31,72,119,121,68,74,
- 76,58,60,62,78,80,86,84,77,82,
- 83,85,87,59,79,81,13,9,49,63,
- 46,69,50,14,51,52,53,54,55,70,
- 56,71,45,47,57,64,65,10,33,37,
- 35,32,40,16,25,15,21,19,20,22,
- 23,18,17,24,41,44,42,43,29,39,
- 34,38,26,27,11,12,30,36,8,6,
- 3,4,7,5,1,2,0,10,69,63,
- 70,71,16,25,15,21,19,20,22,23,
- 18,17,24,76,59,72,95,118,68,7,
- 54,55,56,45,47,1,2,53,52,51,
- 14,50,5,4,46,49,9,73,13,48,
- 3,120,96,103,90,26,27,8,6,11,
- 12,91,92,88,89,28,93,94,97,98,
- 99,100,101,102,117,104,105,106,107,108,
- 109,110,111,112,113,67,66,61,0,49,
- 15,16,63,46,17,69,50,14,18,51,
- 52,19,20,53,54,21,22,55,70,56,
- 10,71,23,45,24,47,25,1,2,4,
- 95,0,45,1,2,4,114,115,116,0,
- 9,73,15,16,32,17,33,34,18,19,
- 20,35,21,22,36,37,38,57,39,40,
- 10,23,24,25,41,42,43,29,3,26,
- 27,8,6,11,12,30,4,44,5,7,
- 1,2,65,64,0,46,57,47,9,61,
- 95,67,66,73,0,59,72,76,0,63,
- 46,17,69,50,18,51,52,19,20,53,
- 54,21,22,55,70,56,10,71,23,45,
- 24,47,25,16,15,49,9,3,8,6,
- 13,58,60,62,75,14,28,7,4,31,
- 5,1,2,0,62,49,15,16,63,46,
- 17,69,50,75,14,18,51,52,19,20,
- 53,60,54,21,22,55,70,56,10,71,
- 23,58,45,24,47,25,9,3,8,4,
- 13,59,6,7,1,2,5,31,0,68,
- 63,46,17,69,50,18,51,52,19,20,
- 53,54,21,22,55,70,56,71,23,45,
- 24,47,25,16,15,49,9,3,8,6,
- 13,58,62,75,14,31,7,1,2,5,
- 4,10,60,0,46,47,76,3,59,72,
- 13,57,9,61,95,67,66,73,0,64,
- 65,26,27,11,12,30,36,41,44,42,
- 43,29,39,34,38,16,25,15,21,19,
- 20,22,23,18,17,24,10,33,37,35,
- 32,40,8,6,4,48,7,5,1,2,
- 3,0,119,0,9,68,64,65,57,26,
- 27,8,6,11,12,30,36,3,41,44,
- 42,43,29,39,34,38,16,25,15,21,
- 19,20,22,23,18,17,24,33,37,35,
- 32,40,59,7,1,2,4,10,5,0,
- 15,16,32,64,17,33,34,18,19,20,
- 65,7,35,21,22,36,37,38,57,39,
- 40,10,23,24,25,41,42,43,1,2,
- 3,26,27,8,6,11,12,5,30,4,
- 44,74,29,0
+ 71,95,67,104,105,106,107,108,109,110,
+ 111,112,113,118,73,13,61,1,2,8,
+ 6,4,3,48,66,72,9,0,75,60,
+ 61,71,95,72,48,3,9,66,13,67,
+ 0,61,71,95,66,118,72,73,14,15,
+ 31,64,16,32,33,18,19,20,65,34,
+ 21,22,35,36,38,58,39,40,10,23,
+ 24,25,41,42,43,29,26,27,11,12,
+ 30,44,9,13,7,5,3,1,2,8,
+ 4,6,0,82,114,115,116,37,71,119,
+ 121,73,74,75,59,57,62,77,79,86,
+ 84,76,81,83,85,87,60,78,80,13,
+ 9,49,63,46,68,50,17,51,52,53,
+ 54,55,69,56,70,45,47,58,64,65,
+ 10,32,36,34,31,40,15,25,14,21,
+ 19,20,22,23,18,16,24,41,44,42,
+ 43,29,39,33,38,26,27,11,12,30,
+ 35,8,6,3,4,7,5,1,2,0,
+ 14,15,16,18,19,20,21,22,23,24,
+ 25,49,46,50,17,51,52,53,54,55,
+ 56,45,47,13,9,72,7,1,2,48,
+ 3,8,6,5,4,0,64,65,3,10,
+ 32,36,34,31,40,15,25,14,21,19,
+ 20,22,23,18,16,24,41,44,42,43,
+ 29,39,33,38,5,7,4,26,27,8,
+ 6,11,12,30,35,1,2,118,9,0,
+ 4,28,60,71,0,67,66,73,9,0,
+ 60,66,0,14,15,31,64,16,32,33,
+ 18,19,20,65,7,34,21,22,35,36,
+ 38,58,39,40,10,23,24,25,41,42,
+ 43,1,2,3,26,27,8,6,11,12,
+ 5,30,4,44,74,29,0,82,57,7,
+ 114,115,116,59,9,3,8,6,5,71,
+ 73,13,74,49,14,15,63,46,16,68,
+ 50,17,18,51,52,19,20,53,54,21,
+ 22,55,69,56,10,70,23,45,24,47,
+ 25,4,1,2,37,0,37,71,4,1,
+ 2,60,0,61,67,66,1,2,0,71,
+ 9,48,3,67,66,13,28,0,8,6,
+ 4,5,7,1,2,3,48,61,67,66,
+ 9,72,95,0,7,5,3,48,6,8,
+ 95,49,14,15,46,16,68,50,17,18,
+ 51,52,19,20,53,54,21,22,55,69,
+ 56,10,70,23,45,24,47,25,1,2,
+ 4,72,9,63,0,60,67,0,4,60,
+ 71,0,1,2,9,73,0,76,0,49,
+ 14,15,63,46,16,68,50,17,18,51,
+ 52,19,20,53,54,21,22,55,69,56,
+ 10,70,23,45,24,47,25,1,2,4,
+ 95,0,13,9,7,5,3,1,2,6,
+ 8,4,71,0,46,58,47,9,61,95,
+ 67,66,72,0,49,14,15,63,46,16,
+ 68,50,17,18,51,52,19,20,53,54,
+ 21,22,55,69,56,10,70,23,45,24,
+ 47,25,1,2,4,65,64,11,12,6,
+ 91,92,99,8,100,5,30,28,61,107,
+ 108,104,105,106,112,111,113,89,88,109,
+ 110,97,98,93,94,101,102,26,27,66,
+ 90,103,3,48,67,0,62,49,14,15,
+ 63,46,16,68,50,82,17,18,51,52,
+ 19,20,53,57,54,21,22,55,69,56,
+ 10,70,23,59,45,24,47,25,9,3,
+ 8,6,73,13,7,4,37,5,1,2,
+ 0,58,46,7,47,5,1,2,4,75,
+ 60,120,103,26,27,48,3,96,90,6,
+ 91,92,11,12,89,88,28,93,94,97,
+ 98,8,99,100,101,61,95,72,67,104,
+ 105,106,107,108,109,110,111,112,113,71,
+ 118,73,102,117,66,13,9,0,60,71,
+ 75,0,64,65,26,27,11,12,30,35,
+ 41,44,42,43,29,39,33,38,15,25,
+ 14,21,19,20,22,23,18,16,24,10,
+ 32,36,34,31,40,8,6,4,48,7,
+ 5,1,2,3,0,63,46,16,68,50,
+ 18,51,52,19,20,53,54,21,22,55,
+ 69,56,10,70,23,45,24,47,25,15,
+ 14,49,9,3,8,13,59,57,62,82,
+ 17,28,4,6,7,1,2,5,37,0,
+ 60,63,46,16,68,50,18,51,52,19,
+ 20,53,54,21,22,55,69,56,70,23,
+ 45,24,47,25,15,14,49,9,3,8,
+ 6,13,59,62,82,17,37,7,1,2,
+ 5,4,10,57,0,46,47,75,3,60,
+ 71,13,58,9,61,95,67,66,72,0,
+ 10,68,63,69,70,15,25,14,21,19,
+ 20,22,23,18,16,24,75,60,71,95,
+ 118,73,7,54,55,56,45,47,1,2,
+ 53,52,51,17,50,5,4,46,49,9,
+ 72,13,48,3,120,96,103,90,26,27,
+ 8,6,11,12,91,92,88,89,28,93,
+ 94,97,98,99,100,101,102,117,104,105,
+ 106,107,108,109,110,111,112,113,67,66,
+ 61,0,119,0,9,73,64,65,58,26,
+ 27,8,6,11,12,30,35,3,41,44,
+ 42,43,29,39,33,38,15,25,14,21,
+ 19,20,22,23,18,16,24,32,36,34,
+ 31,40,60,7,1,2,4,10,5,0
};
};
public final static byte asr[] = Asr.asr;
@@ -1838,59 +1828,59 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface Nasb {
public final static char nasb[] = {0,
- 245,12,147,37,12,12,12,12,12,12,
- 203,12,12,12,108,12,29,220,73,37,
- 37,235,37,37,37,37,37,37,12,12,
+ 98,12,48,37,12,12,12,12,12,12,
+ 162,12,12,12,221,12,50,187,43,37,
+ 37,229,37,37,37,37,37,37,12,12,
12,12,12,12,12,12,12,12,12,37,
- 12,37,220,261,261,261,261,73,224,125,
- 125,142,5,96,251,12,12,125,110,12,
- 251,251,150,1,37,59,47,12,12,220,
- 12,12,51,51,224,186,37,37,37,37,
+ 12,37,187,258,258,258,258,43,20,126,
+ 126,93,5,87,263,12,12,126,223,12,
+ 263,263,134,1,37,27,56,12,12,187,
+ 12,12,29,29,20,149,37,37,37,37,
37,37,37,37,37,37,37,37,37,37,
37,37,37,37,37,37,37,37,37,37,
- 37,37,37,37,37,37,186,37,251,251,
- 12,12,12,12,129,251,35,35,202,211,
- 212,12,212,112,212,61,212,205,10,73,
- 96,96,35,37,202,91,149,49,49,12,
- 12,12,10,73,96,261,102,19,164,251,
- 18,239,73,18,251,96,12,12,12,12,
+ 37,37,37,37,37,37,149,37,263,263,
+ 12,12,12,12,113,263,35,35,161,247,
+ 248,12,248,106,248,15,248,241,10,43,
+ 87,87,35,37,161,82,133,13,13,12,
+ 12,12,10,43,87,258,152,200,102,263,
+ 199,233,43,199,263,87,12,12,12,12,
12,12,12,12,12,12,12,12,12,12,
- 12,12,12,12,12,12,12,12,12,114,
- 11,12,12,12,12,178,73,125,125,114,
- 125,227,125,12,12,125,227,73,11,12,
- 12,176,96,12,251,137,125,73,47,37,
- 261,125,80,251,12,11,73,12,189,47,
- 37,186,186,186,186,12,12,35,12,57,
- 253,125,125,33,46,33,125,240,11,46,
- 114,251,12,118,12,156,45,114,251,43,
- 178,164,12,239,114,251,251,251,251,224,
- 224,125,57,69,73,147,12,12,12,85,
- 168,253,33,33,214,114,240,69,12,12,
- 114,125,37,12,12,49,49,73,117,202,
- 156,251,114,125,78,12,186,178,190,12,
- 12,251,251,57,47,12,12,203,125,196,
- 120,12,12,203,98,227,69,37,240,57,
- 37,37,125,47,251,137,13,125,12,43,
- 224,37,96,190,19,230,125,227,125,23,
- 15,147,202,12,37,12,71,192,227,203,
- 203,11,125,156,19,57,78,251,96,147,
- 12,230,169,12,240,85,156,19,23,127,
- 25,120,15,37,37,11,227,227,87,251,
- 125,125,196,12,125,12,12,12,203,12,
- 12,89,89,147,127,105,12,227,12,11,
- 11,12,125,87,230,125,147,76,12,251,
- 132,125,125,203,227,156,230,125,12,12,
- 125,159,25,11,224,249,57,132,102,37,
- 120,147,69,230,132,132,227,218,156,261,
- 261,83,183,12,37,12,147,12,12,12,
- 184,12,240,145,147,147,240,100,251,251,
- 125,69,251,125,69,69,218,147,12,181,
- 12,12,12,184,264,264,154,12,264,147,
- 147,12,125,261,87,64,147,12,261,251,
- 120,251,260,125,12,251,83,69,89,251,
- 251,125,184,12,184,147,120,186,184,181,
- 64,12,100,100,118,37,12,242,147,251,
- 18,184,251,147,184
+ 12,12,12,12,12,12,12,12,12,108,
+ 11,12,12,12,12,176,43,126,126,108,
+ 126,191,126,12,12,126,191,43,11,12,
+ 12,174,87,12,263,128,126,43,56,37,
+ 258,126,58,263,12,11,43,12,164,56,
+ 37,149,149,149,149,12,12,35,12,172,
+ 250,126,126,116,55,116,126,234,11,55,
+ 108,263,12,119,12,169,54,108,263,18,
+ 176,102,12,233,108,263,263,263,263,20,
+ 20,126,172,70,43,48,12,179,12,12,
+ 89,204,250,116,116,23,108,234,70,12,
+ 12,108,126,37,12,12,13,13,43,118,
+ 161,169,263,108,126,72,12,149,176,165,
+ 12,12,263,263,172,56,126,12,12,12,
+ 162,126,155,121,12,12,162,74,191,70,
+ 37,234,172,37,37,126,56,263,128,194,
+ 126,12,18,20,37,87,165,200,216,126,
+ 236,126,191,126,63,196,48,161,12,37,
+ 12,78,225,191,162,162,11,126,169,200,
+ 172,72,263,87,48,70,12,236,205,12,
+ 234,89,236,216,169,200,63,185,181,121,
+ 196,37,37,11,191,191,61,263,126,126,
+ 155,12,12,162,70,12,12,111,111,48,
+ 185,138,12,191,12,11,11,12,126,61,
+ 236,126,48,76,12,263,162,191,169,236,
+ 126,12,12,126,141,181,11,20,261,172,
+ 216,152,37,121,48,191,179,169,258,258,
+ 96,146,12,37,12,48,12,12,12,147,
+ 12,234,46,48,48,234,91,263,263,126,
+ 70,263,126,179,48,12,80,12,12,12,
+ 147,212,212,167,12,212,48,48,12,126,
+ 258,61,65,48,12,258,263,121,263,257,
+ 126,12,263,96,70,111,263,263,126,147,
+ 12,147,48,121,149,147,80,65,12,91,
+ 91,119,37,12,265,48,263,199,147,263,
+ 48,147
};
};
public final static char nasb[] = Nasb.nasb;
@@ -1898,33 +1888,33 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface Nasr {
public final static char nasr[] = {0,
- 3,13,7,10,148,146,120,145,144,5,
- 2,0,96,95,53,63,55,5,7,10,
- 2,0,155,0,166,5,165,0,2,7,
- 3,0,111,0,43,4,5,7,10,2,
- 13,0,139,0,53,2,65,0,68,0,
- 5,2,10,7,135,0,60,0,170,0,
- 5,1,0,13,2,10,7,5,64,0,
- 184,0,2,44,0,178,0,137,0,4,
- 172,0,157,0,152,0,124,0,110,0,
- 13,2,10,7,5,72,0,186,0,59,
- 0,4,32,0,4,64,0,4,43,167,
- 0,5,44,2,3,0,31,96,95,63,
- 53,7,10,2,4,0,156,0,53,65,
- 0,105,4,47,69,0,23,4,5,91,
- 0,4,188,0,4,39,38,0,31,95,
- 96,4,0,39,176,23,4,0,4,47,
- 39,174,0,65,134,133,0,38,53,7,
- 10,2,4,154,0,96,95,5,55,0,
- 114,0,64,47,74,4,39,0,2,115,
- 0,5,103,162,0,2,63,53,7,10,
- 4,91,5,0,2,5,120,116,117,118,
- 13,88,0,5,103,185,0,151,0,4,
- 43,39,0,4,98,0,2,61,0,4,
- 47,69,73,0,5,7,10,13,3,1,
- 0,4,173,0,4,39,169,0,43,4,
- 31,0,4,47,69,103,45,5,0,175,
- 4,43,0,4,43,104,0
+ 3,13,7,10,147,145,119,144,143,5,
+ 2,0,66,0,5,1,0,138,0,4,
+ 96,0,5,101,183,0,168,0,5,2,
+ 10,7,134,0,43,4,5,7,10,2,
+ 13,0,2,44,0,4,39,38,0,2,
+ 7,3,0,48,2,65,0,4,170,0,
+ 123,0,153,0,13,2,10,7,5,64,
+ 0,136,0,184,0,176,0,182,0,111,
+ 0,13,2,10,7,5,75,0,150,0,
+ 59,0,4,186,0,155,0,4,39,167,
+ 0,65,133,132,0,5,44,2,3,0,
+ 107,0,48,65,0,108,0,31,94,93,
+ 63,48,7,10,2,4,0,23,4,5,
+ 89,0,31,93,94,4,0,4,64,0,
+ 4,47,39,172,0,64,47,76,4,39,
+ 0,4,32,0,2,63,48,7,10,4,
+ 89,5,0,2,112,0,39,174,23,4,
+ 0,60,0,94,93,5,55,0,103,0,
+ 164,5,163,0,154,0,4,43,39,0,
+ 2,61,0,94,93,48,63,55,5,7,
+ 10,2,0,38,48,7,10,2,4,152,
+ 0,4,43,102,0,113,4,47,74,0,
+ 4,43,165,0,5,101,160,0,5,7,
+ 10,13,3,1,0,4,47,74,83,0,
+ 2,5,119,115,116,117,13,86,0,4,
+ 47,74,101,45,5,0,173,4,43,0,
+ 43,4,31,0,4,171,0
};
};
public final static char nasr[] = Nasr.nasr;
@@ -1933,18 +1923,18 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface TerminalIndex {
public final static char terminalIndex[] = {0,
115,116,2,32,14,11,81,10,117,102,
- 12,13,122,68,50,54,62,70,76,77,
+ 12,13,122,50,54,62,68,70,76,77,
88,89,104,107,109,8,9,20,114,15,
- 95,57,63,69,86,90,92,96,99,101,
+ 57,63,69,86,90,92,95,96,99,101,
111,112,113,46,106,56,108,1,49,66,
- 72,75,78,85,91,100,97,105,3,79,
- 21,48,55,60,80,45,34,121,65,93,
- 103,31,120,123,67,98,110,51,52,58,
- 59,61,71,73,74,87,94,18,19,7,
+ 72,75,78,85,91,100,79,97,105,3,
+ 21,48,55,60,80,45,34,65,93,103,
+ 31,120,121,123,98,110,51,52,58,59,
+ 61,67,71,73,74,87,94,18,19,7,
16,17,22,23,33,5,24,25,26,27,
28,29,6,35,36,37,38,39,40,41,
42,43,44,82,83,84,30,119,53,4,
- 64,124,125,118
+ 64,124,118
};
};
public final static char terminalIndex[] = TerminalIndex.terminalIndex;
@@ -1952,26 +1942,26 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface NonterminalIndex {
public final static char nonterminalIndex[] = {0,
- 132,137,139,0,0,138,236,136,0,230,
- 135,0,146,134,0,0,145,151,0,0,
- 152,161,182,162,163,164,165,166,167,168,
- 128,154,169,170,171,0,144,130,133,172,
- 0,141,155,140,180,0,0,0,0,0,
- 0,0,0,148,158,0,205,0,175,189,
- 0,202,206,129,0,0,0,207,0,0,
- 178,127,131,174,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,188,0,0,
- 203,213,160,209,210,211,0,0,0,0,
- 149,208,221,177,181,0,0,0,212,0,
- 0,0,241,242,150,191,192,193,194,195,
- 197,200,0,0,215,218,220,0,239,0,
- 240,0,142,143,147,0,0,157,159,0,
- 173,0,183,184,185,186,187,190,0,196,
- 198,0,199,204,0,216,217,0,222,225,
- 227,229,0,233,234,235,237,238,126,0,
- 153,156,0,176,0,179,0,201,214,219,
- 0,223,224,226,228,0,231,232,243,244,
- 0,0,0,0,0,0
+ 131,136,138,0,0,137,235,135,0,229,
+ 134,0,145,133,0,0,144,150,0,0,
+ 151,160,181,161,162,163,164,165,166,167,
+ 127,153,168,169,170,0,143,129,132,171,
+ 0,140,154,139,179,0,0,0,0,0,
+ 0,0,0,147,157,0,204,0,174,188,
+ 0,201,205,128,0,206,0,177,0,0,
+ 0,0,0,0,126,173,0,0,0,0,
+ 0,0,130,0,0,187,0,0,202,212,
+ 159,208,209,210,0,0,0,0,148,207,
+ 220,176,197,0,0,211,0,0,0,240,
+ 241,149,180,0,190,191,192,193,194,196,
+ 199,0,0,214,217,219,0,238,0,239,
+ 0,141,142,146,0,0,156,158,0,172,
+ 0,182,183,184,185,186,189,0,195,0,
+ 198,203,0,215,216,0,221,224,226,228,
+ 0,232,233,234,236,237,125,0,152,155,
+ 0,175,0,178,0,200,213,218,0,222,
+ 223,225,227,0,230,231,242,243,0,0,
+ 0,0,0,0
};
};
public final static char nonterminalIndex[] = NonterminalIndex.nonterminalIndex;
@@ -1979,18 +1969,18 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface ScopePrefix {
public final static char scopePrefix[] = {
- 151,578,597,529,545,556,567,362,261,275,
- 297,303,309,42,286,382,420,159,586,472,
- 20,51,71,80,85,90,127,187,292,315,
- 326,337,267,281,500,27,372,337,605,27,
- 209,240,1,14,61,76,106,141,222,320,
- 333,342,351,355,438,465,494,521,525,615,
- 619,623,97,7,97,141,400,416,429,449,
- 513,429,536,552,563,574,199,483,56,56,
- 148,214,217,235,256,217,217,56,359,444,
- 462,469,148,56,636,110,228,404,456,116,
- 116,228,56,228,391,169,104,442,627,634,
- 627,634,65,410,134,104,104,245
+ 151,572,591,523,539,550,561,356,261,275,
+ 297,303,42,286,376,414,159,580,466,20,
+ 51,71,80,85,90,127,187,292,309,320,
+ 331,267,281,494,27,366,331,599,27,209,
+ 240,1,14,61,76,106,141,222,314,327,
+ 336,345,349,432,459,488,515,519,609,613,
+ 617,97,7,97,141,394,410,423,443,507,
+ 423,530,546,557,568,199,477,56,56,148,
+ 214,217,235,256,217,217,56,353,438,456,
+ 463,148,56,630,110,228,398,450,116,116,
+ 228,56,228,385,169,104,436,621,628,621,
+ 628,65,404,134,104,104,245
};
};
public final static char scopePrefix[] = ScopePrefix.scopePrefix;
@@ -1998,18 +1988,18 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface ScopeSuffix {
public final static char scopeSuffix[] = {
- 18,5,5,5,5,5,5,369,132,95,
- 132,132,132,48,272,388,426,165,67,478,
- 25,25,25,59,59,95,132,192,132,132,
- 331,331,272,101,505,38,377,592,610,32,
- 203,203,5,18,5,59,95,132,226,324,
- 324,324,95,95,132,238,5,5,5,5,
- 5,238,226,11,101,145,369,369,369,453,
- 505,433,540,540,540,540,203,487,59,59,
- 5,5,220,238,5,259,259,349,95,447,
- 5,238,5,498,5,113,346,407,459,119,
- 123,231,517,508,394,172,95,95,629,629,
- 631,631,67,412,136,194,179,247
+ 18,5,5,5,5,5,5,363,132,95,
+ 132,132,48,272,382,420,165,67,472,25,
+ 25,25,59,59,95,132,192,132,132,325,
+ 325,272,101,499,38,371,586,604,32,203,
+ 203,5,18,5,59,95,132,226,318,318,
+ 318,95,95,132,238,5,5,5,5,5,
+ 238,226,11,101,145,363,363,363,447,499,
+ 427,534,534,534,534,203,481,59,59,5,
+ 5,220,238,5,259,259,343,95,441,5,
+ 238,5,492,5,113,340,401,453,119,123,
+ 231,511,502,388,172,95,95,623,623,625,
+ 625,67,406,136,194,179,247
};
};
public final static char scopeSuffix[] = ScopeSuffix.scopeSuffix;
@@ -2017,18 +2007,18 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface ScopeLhs {
public final static char scopeLhs[] = {
- 45,17,17,17,17,17,17,77,82,46,
- 87,86,118,66,51,77,76,45,17,19,
- 3,6,9,162,162,159,116,45,85,118,
- 117,119,52,46,135,130,77,17,17,130,
- 97,56,132,80,165,162,159,126,58,117,
- 117,119,177,49,59,139,18,17,17,17,
- 17,17,12,114,159,126,77,76,76,36,
- 135,76,17,17,17,17,97,19,166,162,
- 178,95,102,68,57,154,71,119,78,75,
- 140,139,170,135,16,159,119,104,21,127,
- 127,55,135,135,77,45,159,70,133,44,
- 133,44,165,104,116,45,45,56
+ 45,17,17,17,17,17,17,79,85,46,
+ 72,117,69,52,79,78,45,17,19,3,
+ 6,9,160,160,157,115,45,73,117,116,
+ 118,53,46,134,129,79,17,17,129,95,
+ 56,131,82,163,160,157,125,58,116,116,
+ 118,175,50,59,138,18,17,17,17,17,
+ 17,12,111,157,125,79,78,78,36,134,
+ 78,17,17,17,17,95,19,164,160,176,
+ 93,100,66,57,152,68,118,80,77,139,
+ 138,168,134,16,157,118,102,21,126,126,
+ 55,134,134,79,45,157,67,132,44,132,
+ 44,163,102,115,45,45,56
};
};
public final static char scopeLhs[] = ScopeLhs.scopeLhs;
@@ -2036,18 +2026,18 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface ScopeLa {
public final static byte scopeLa[] = {
- 119,73,73,73,73,73,73,73,68,13,
- 68,68,68,61,1,73,121,59,3,73,
- 61,61,61,1,1,13,68,59,68,68,
- 1,1,1,1,4,61,13,1,1,61,
- 73,73,73,119,73,1,13,68,1,1,
- 1,1,13,13,68,118,73,73,73,73,
- 73,118,1,73,1,66,73,73,73,72,
- 4,73,61,61,61,61,73,3,1,1,
- 73,73,3,118,73,1,1,1,13,72,
- 73,118,73,5,73,1,31,67,73,1,
- 1,6,1,31,77,76,13,13,4,4,
- 4,4,3,1,59,1,1,3
+ 119,72,72,72,72,72,72,72,73,13,
+ 73,73,61,1,72,121,60,3,72,61,
+ 61,61,1,1,13,73,60,73,73,1,
+ 1,1,1,4,61,13,1,1,61,72,
+ 72,72,119,72,1,13,73,1,1,1,
+ 1,13,13,73,118,72,72,72,72,72,
+ 118,1,72,1,66,72,72,72,71,4,
+ 72,61,61,61,61,72,3,1,1,72,
+ 72,3,118,72,1,1,1,13,71,72,
+ 118,72,5,72,1,37,67,72,1,1,
+ 6,1,37,76,75,13,13,4,4,4,
+ 4,3,1,60,1,1,3
};
};
public final static byte scopeLa[] = ScopeLa.scopeLa;
@@ -2055,18 +2045,18 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface ScopeStateSet {
public final static char scopeStateSet[] = {
- 78,241,241,241,241,241,241,36,89,78,
- 89,89,147,99,80,36,36,78,241,241,
- 174,216,217,53,53,108,147,78,89,147,
- 147,147,80,78,130,46,36,241,241,46,
- 139,62,24,36,28,53,108,304,62,147,
- 147,147,20,80,31,59,241,241,241,241,
- 241,241,236,6,108,304,36,36,36,273,
- 130,36,241,241,241,241,139,241,28,53,
- 22,139,141,135,62,56,67,147,36,36,
- 50,59,133,130,241,108,147,1,242,147,
- 147,114,130,130,36,78,108,11,111,151,
- 111,151,28,1,147,78,78,62
+ 92,242,242,242,242,242,242,102,83,92,
+ 81,148,81,94,102,102,92,242,242,175,
+ 217,218,53,53,78,148,92,81,148,148,
+ 148,94,92,131,46,102,242,242,46,140,
+ 62,24,102,28,53,78,305,62,148,148,
+ 148,20,94,31,59,242,242,242,242,242,
+ 242,237,6,78,305,102,102,102,274,131,
+ 102,242,242,242,242,140,242,28,53,22,
+ 140,142,136,62,56,67,148,102,102,50,
+ 59,134,131,242,78,148,1,243,148,148,
+ 115,131,131,102,92,78,11,112,152,112,
+ 152,28,1,148,92,92,62
};
};
public final static char scopeStateSet[] = ScopeStateSet.scopeStateSet;
@@ -2074,70 +2064,70 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface ScopeRhs {
public final static char scopeRhs[] = {0,
- 314,3,57,0,128,0,313,3,119,0,
- 128,175,0,128,183,76,0,217,0,252,
- 128,28,126,0,21,0,292,128,28,31,
- 0,21,55,0,34,134,0,21,55,0,
- 0,292,128,28,31,193,0,21,131,0,
- 252,128,28,131,0,185,129,0,144,0,
- 222,3,290,0,290,0,2,0,128,0,
- 252,128,28,134,0,185,129,227,0,185,
- 129,45,227,0,185,129,310,45,0,132,
- 189,168,129,0,130,0,189,168,129,0,
- 136,130,0,171,0,306,128,171,0,128,
- 171,0,223,130,0,168,244,0,139,0,
- 0,0,137,0,0,0,305,128,59,251,
- 0,129,0,251,0,3,0,0,129,0,
- 304,128,59,0,45,129,0,156,3,0,
- 128,280,279,128,76,278,171,0,279,128,
- 76,278,171,0,216,0,217,0,278,171,
- 0,98,0,0,216,0,217,0,204,98,
- 0,0,216,0,217,0,279,128,278,171,
- 0,216,0,204,0,0,216,0,231,128,
- 3,0,128,0,0,0,0,0,231,128,
- 3,219,0,226,3,0,215,128,0,209,
- 0,189,168,177,0,136,0,168,129,0,
- 11,0,0,0,217,48,0,127,0,231,
- 128,3,181,0,181,0,2,0,0,128,
- 0,0,0,0,0,195,3,0,202,0,
- 230,128,59,29,14,0,185,129,60,58,
- 0,198,130,0,132,185,129,276,58,0,
- 185,129,276,58,0,185,129,67,125,60,
- 0,230,128,59,60,0,230,128,59,122,
- 60,0,230,128,59,126,60,0,273,128,
- 59,125,69,0,273,128,59,69,0,185,
- 129,69,0,137,0,189,185,129,244,0,
- 139,0,185,129,244,0,189,168,129,10,
- 0,168,129,10,0,95,139,0,149,0,
- 266,128,147,0,266,128,171,0,163,86,
- 0,297,162,299,300,3,83,0,128,174,
- 0,299,300,3,83,0,130,0,128,174,
- 0,163,3,77,198,82,0,128,130,0,
- 198,82,0,110,2,133,128,130,0,228,
- 3,77,0,195,167,0,34,172,0,167,
- 0,178,34,172,0,228,3,87,0,198,
- 155,228,3,85,0,64,174,0,228,3,
- 85,0,128,174,64,174,0,298,128,59,
- 0,163,0,217,79,0,31,0,163,117,
- 159,0,31,172,0,178,3,0,128,152,
- 0,222,3,0,217,48,263,0,163,48,
- 0,178,3,294,65,129,0,128,0,0,
- 0,0,294,65,129,0,2,148,128,0,
- 0,0,0,178,3,36,0,150,0,127,
- 31,168,129,0,32,150,0,95,139,32,
- 150,0,225,185,129,0,149,32,150,0,
- 178,3,40,0,163,3,40,0,163,3,
- 61,178,28,32,0,178,28,32,0,21,
- 2,133,128,0,163,3,61,178,28,35,
- 0,178,28,35,0,163,3,61,178,28,
- 37,0,178,28,37,0,163,3,61,178,
- 28,33,0,178,28,33,0,222,3,127,
- 189,168,129,10,0,127,189,168,129,10,
- 0,139,2,0,128,0,222,3,126,177,
- 168,129,10,0,177,168,129,10,0,137,
- 2,0,128,0,222,3,137,0,222,3,
- 141,0,163,48,141,0,258,0,32,0,
- 32,142,0,166,0,163,3,0
+ 311,3,58,0,127,0,310,3,119,0,
+ 127,174,0,127,182,75,0,216,0,250,
+ 127,28,125,0,21,0,289,127,28,37,
+ 0,21,55,0,34,133,0,21,55,0,
+ 0,289,127,28,37,197,0,21,130,0,
+ 250,127,28,130,0,184,128,0,143,0,
+ 219,3,287,0,287,0,2,0,127,0,
+ 250,127,28,133,0,184,128,224,0,184,
+ 128,45,224,0,184,128,307,45,0,131,
+ 188,167,128,0,129,0,188,167,128,0,
+ 135,129,0,170,0,303,127,170,0,127,
+ 170,0,222,129,0,167,242,0,138,0,
+ 0,0,136,0,0,0,302,127,60,249,
+ 0,128,0,249,0,3,0,0,128,0,
+ 301,127,60,0,45,128,0,155,3,0,
+ 127,277,276,127,75,275,170,0,276,127,
+ 75,275,170,0,215,0,216,0,275,170,
+ 0,98,0,0,215,0,216,0,203,98,
+ 0,0,215,0,216,0,276,127,275,170,
+ 0,215,0,203,0,0,215,0,227,127,
+ 3,0,127,0,0,0,0,0,227,127,
+ 3,216,0,223,3,0,212,127,0,208,
+ 0,188,167,171,0,135,0,167,128,0,
+ 11,0,0,0,214,48,0,126,0,227,
+ 127,3,180,0,180,0,2,0,0,127,
+ 0,0,0,0,0,191,3,0,201,0,
+ 237,127,60,29,17,0,184,128,57,59,
+ 0,197,129,0,131,184,128,273,59,0,
+ 184,128,273,59,0,184,128,67,124,57,
+ 0,237,127,60,57,0,237,127,60,226,
+ 57,0,271,127,60,124,68,0,271,127,
+ 60,68,0,184,128,68,0,136,0,188,
+ 184,128,242,0,138,0,184,128,242,0,
+ 188,167,128,10,0,167,128,10,0,95,
+ 138,0,148,0,264,127,146,0,264,127,
+ 170,0,162,86,0,294,161,296,297,3,
+ 83,0,127,173,0,296,297,3,83,0,
+ 129,0,127,173,0,162,3,76,199,81,
+ 0,127,129,0,199,81,0,110,2,132,
+ 127,129,0,225,3,76,0,191,166,0,
+ 34,171,0,166,0,177,34,171,0,225,
+ 3,87,0,199,154,225,3,85,0,64,
+ 173,0,225,3,85,0,127,173,64,173,
+ 0,295,127,60,0,162,0,214,78,0,
+ 31,0,162,117,158,0,31,171,0,177,
+ 3,0,127,151,0,219,3,0,214,48,
+ 261,0,162,48,0,177,3,291,65,128,
+ 0,127,0,0,0,0,291,65,128,0,
+ 2,147,127,0,0,0,0,177,3,35,
+ 0,149,0,126,37,167,128,0,32,149,
+ 0,95,138,32,149,0,222,184,128,0,
+ 148,32,149,0,177,3,40,0,162,3,
+ 40,0,162,3,61,177,28,31,0,177,
+ 28,31,0,21,2,132,127,0,162,3,
+ 61,177,28,34,0,177,28,34,0,162,
+ 3,61,177,28,36,0,177,28,36,0,
+ 162,3,61,177,28,32,0,177,28,32,
+ 0,219,3,126,188,167,128,10,0,126,
+ 188,167,128,10,0,138,2,0,127,0,
+ 219,3,125,171,167,128,10,0,171,167,
+ 128,10,0,136,2,0,127,0,219,3,
+ 136,0,219,3,140,0,162,48,140,0,
+ 256,0,32,0,32,141,0,165,0,162,
+ 3,0
};
};
public final static char scopeRhs[] = ScopeRhs.scopeRhs;
@@ -2145,37 +2135,37 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface ScopeState {
public final static char scopeState[] = {0,
- 4592,4693,4681,4680,0,3320,1272,3042,1230,0,
- 3646,3588,3493,3435,3377,3319,3258,3100,2853,2816,
- 0,1122,0,2859,2637,1806,0,2873,627,0,
- 2884,2547,2332,3420,2760,3646,3588,3493,3435,3377,
- 3319,3258,3100,2853,0,4585,3257,3445,0,3032,
- 1170,0,3153,3374,0,3802,2944,0,790,730,
- 0,4437,3802,4371,578,2944,3547,4338,4449,4360,
- 2719,4349,3268,3231,2700,2591,0,4513,4481,3646,
- 3588,3493,3435,3377,3319,3258,3100,2853,3030,2962,
- 4008,2890,3955,2783,3902,3849,3796,0,3030,2962,
- 4008,2890,3955,2783,3902,3849,3796,4513,4481,0,
- 2961,2924,0,2719,4437,3958,4371,578,2964,3231,
- 3699,3852,3491,2788,2965,815,1121,860,0,999,
- 800,0,918,0,1055,1048,872,784,578,2965,
- 3547,2700,2591,2813,859,0,3343,536,2551,0,
- 4617,4567,4561,4551,4539,4529,3990,3937,4665,4650,
- 4646,4043,3577,3884,3670,3118,3404,3124,735,2674,
- 1943,1012,0,4617,3248,4567,3105,3003,4561,4551,
- 4539,2764,2655,4529,3990,3937,3311,4665,3244,3063,
- 4650,2978,2712,2633,2602,3128,4646,2918,4043,2821,
- 3577,3884,3670,2253,3118,2164,3404,1127,3124,735,
- 3343,2674,2551,1943,1012,642,3547,4338,4449,4360,
- 2719,4437,4349,3083,3802,3015,4371,2242,578,3268,
- 3231,2700,2944,2591,2153,936,2064,659,999,800,
- 2732,4316,4294,2257,2294,2328,592,2415,2387,2358,
- 2607,2560,2524,2497,2470,2443,3773,3750,3727,3206,
- 3181,4272,4250,4228,4206,4184,4162,4140,4118,4096,
- 3815,1059,1948,2205,2168,2116,2079,2027,1226,1181,
- 1990,1139,876,1899,1859,821,740,685,1817,1775,
- 1733,1691,1649,1607,1565,1523,1481,1439,1397,536,
- 1355,1312,1084,1017,957,1268,0
+ 4563,4627,4600,3525,0,1591,3889,1515,2428,0,
+ 3351,3291,3227,3167,3107,3047,2987,2826,2761,3020,
+ 0,1331,0,2447,1342,923,0,3223,3202,0,
+ 3351,3291,2983,2797,3227,3167,3107,3047,2123,2987,
+ 2826,2761,3353,3222,0,4599,2622,4182,0,2624,
+ 1160,0,3540,625,0,4465,3514,0,2564,589,
+ 0,4434,4465,3616,3503,3514,3254,3995,4452,4299,
+ 2733,4267,578,2960,2653,2632,0,4156,4337,0,
+ 4156,4337,3638,4213,4169,3584,4125,4081,4027,3530,
+ 0,4156,4337,3638,4213,4169,3584,4125,4081,4027,
+ 3530,3351,3291,3227,3167,3107,3047,2987,2826,2761,
+ 0,2764,2572,0,2733,4434,3660,3616,3503,2762,
+ 2960,4206,3327,4108,2668,3143,1106,1120,1113,0,
+ 793,656,0,629,0,1323,1238,928,565,3503,
+ 3143,3254,2653,2632,2683,2794,0,4331,534,2532,
+ 0,4554,4550,4546,4532,4528,4524,4501,4351,4577,
+ 4065,3608,3282,2627,4045,3377,1929,3135,3073,3011,
+ 2579,1003,732,0,4554,4121,4550,3591,3536,4546,
+ 4532,4528,2832,915,4524,4501,4351,3703,4577,3692,
+ 3646,4065,3422,3359,3088,2768,3004,3608,3297,3282,
+ 3541,2627,4045,3377,2728,1929,1121,3135,919,3073,
+ 3011,4331,2579,2532,1003,732,781,3254,3995,4452,
+ 4299,2733,4434,4267,2992,4465,2971,3616,2224,3503,
+ 578,2960,2653,3514,2632,2137,929,2050,990,793,
+ 656,4006,3973,3951,2237,2274,590,2308,2396,2368,
+ 2339,2588,2541,2505,2478,2451,2424,3480,3457,3434,
+ 2935,2910,3929,3907,3885,3863,3841,3819,3797,3775,
+ 3753,3724,1050,1934,2187,2150,2100,2063,2013,1215,
+ 1171,1976,1129,870,1884,1847,815,737,682,1805,
+ 1763,1721,1679,1637,1595,1553,1511,1469,1427,1385,
+ 534,1343,1300,1074,1008,948,1257,0
};
};
public final static char scopeState[] = ScopeState.scopeState;
@@ -2183,59 +2173,59 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public interface InSymb {
public final static char inSymb[] = {0,
- 0,293,163,128,265,40,32,35,37,33,
- 10,137,126,134,7,131,4,3,129,36,
- 30,5,12,11,6,8,27,26,141,146,
- 149,148,151,150,153,152,157,154,158,57,
- 159,66,3,28,28,28,28,129,3,28,
- 28,167,128,48,3,64,65,28,7,126,
- 178,163,167,128,64,65,168,166,126,3,
- 125,127,103,120,3,48,90,96,12,11,
+ 0,290,162,127,263,40,31,34,36,32,
+ 10,136,125,133,7,130,4,3,128,35,
+ 30,5,12,11,6,8,27,26,140,145,
+ 148,147,150,149,152,151,156,153,157,58,
+ 158,66,3,28,28,28,28,128,3,28,
+ 28,166,127,48,3,64,65,28,7,125,
+ 177,162,166,127,64,65,167,165,125,3,
+ 124,126,103,120,3,48,90,96,12,11,
92,91,6,94,93,61,28,88,89,8,
98,97,100,99,101,113,112,111,110,109,
- 108,107,106,105,104,67,117,102,178,163,
- 178,178,178,178,168,222,128,128,128,267,
- 268,251,269,244,270,69,271,272,10,129,
- 48,48,128,155,128,48,3,220,219,137,
- 127,126,10,129,48,294,3,189,4,178,
- 31,5,129,31,222,163,148,148,146,146,
- 146,150,150,150,150,149,149,152,151,151,
- 154,153,157,163,158,61,61,61,61,189,
- 177,252,135,255,252,215,129,6,59,168,
- 234,129,127,126,125,59,129,129,185,168,
- 252,215,217,159,226,128,3,129,168,196,
- 3,295,167,156,258,189,129,126,185,168,
- 72,3,3,3,3,127,126,66,168,128,
- 128,127,126,128,185,128,59,128,185,168,
- 31,231,232,147,233,128,168,31,178,128,
- 128,4,225,5,31,163,163,163,163,3,
- 3,6,184,305,129,169,227,31,193,58,
- 171,307,128,128,72,189,128,273,125,274,
- 189,155,67,226,195,187,181,177,3,128,
- 66,231,189,155,260,263,48,179,4,125,
- 127,222,222,128,168,28,31,276,278,128,
- 3,181,309,227,45,129,273,67,66,128,
- 67,67,3,168,195,128,215,155,127,128,
- 3,48,163,4,189,61,28,129,76,128,
- 215,306,128,126,72,285,195,66,129,45,
- 310,185,223,128,189,128,260,222,217,132,
- 14,31,171,62,60,58,128,185,128,279,
- 72,66,215,72,67,185,129,129,128,231,
- 223,29,128,3,59,122,126,125,60,292,
- 31,10,63,132,279,59,289,129,290,185,
- 185,57,155,128,128,59,266,195,277,29,
- 128,59,59,67,129,66,61,28,234,234,
- 280,128,66,185,3,3,128,128,3,67,
- 66,155,230,229,128,128,129,185,128,67,
- 67,128,298,81,79,1,163,87,85,83,
- 82,77,84,86,80,78,60,76,222,314,
- 223,230,156,59,230,230,185,275,292,281,
- 119,9,217,72,3,3,3,198,3,125,
- 163,125,183,66,128,128,275,61,3,228,
- 167,228,300,147,77,228,128,304,63,95,
- 313,167,155,195,155,299,128,3,155,281,
- 66,234,155,155,128,67,198,162,266,163,
- 67,121,297,155,155
+ 108,107,106,105,104,67,117,102,177,162,
+ 177,177,177,177,167,219,127,127,127,265,
+ 266,249,267,242,268,68,269,270,10,128,
+ 48,48,127,154,127,48,3,217,216,136,
+ 126,125,10,128,48,291,3,188,4,177,
+ 37,5,128,37,219,162,147,147,145,145,
+ 145,149,149,149,149,148,148,151,150,150,
+ 153,152,156,162,157,61,61,61,61,188,
+ 171,250,134,253,250,212,128,6,60,167,
+ 230,128,126,125,124,60,128,128,184,167,
+ 250,212,214,158,223,127,3,128,167,198,
+ 3,292,166,155,256,188,128,125,184,167,
+ 71,3,3,3,3,126,125,66,167,127,
+ 127,126,125,127,184,127,60,127,184,167,
+ 37,227,228,146,229,127,167,37,177,127,
+ 127,4,222,5,37,162,162,162,162,3,
+ 3,6,183,302,128,168,224,57,37,197,
+ 59,170,304,127,127,71,188,127,271,124,
+ 272,188,154,67,223,191,186,180,171,3,
+ 127,66,227,188,154,258,261,48,178,4,
+ 124,126,219,219,127,167,60,226,28,37,
+ 273,275,127,3,180,306,224,45,128,271,
+ 67,66,127,67,67,3,167,191,127,212,
+ 154,126,127,3,48,162,4,188,127,60,
+ 61,28,128,75,127,212,303,127,125,71,
+ 282,191,66,128,45,307,184,220,127,188,
+ 127,258,219,214,131,237,17,37,170,62,
+ 57,59,236,127,127,184,127,276,71,66,
+ 212,71,67,184,128,128,127,227,220,29,
+ 127,3,124,57,237,289,37,10,63,131,
+ 276,60,286,128,287,184,184,58,154,127,
+ 127,60,264,191,274,29,67,128,66,61,
+ 28,230,230,277,127,66,184,3,3,127,
+ 127,3,67,66,154,128,184,127,67,67,
+ 127,295,80,78,1,162,87,85,83,81,
+ 76,84,86,79,77,57,75,219,311,220,
+ 237,155,60,184,226,289,278,119,9,214,
+ 71,3,3,3,199,3,124,162,124,182,
+ 66,127,127,226,61,3,225,166,225,297,
+ 146,76,225,127,301,63,95,310,166,154,
+ 191,154,296,127,3,154,278,66,230,154,
+ 154,127,67,199,161,264,162,67,121,294,
+ 154,154
};
};
public final static char inSymb[] = InSymb.inSymb;
@@ -2367,7 +2357,6 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
"RightBrace",
"SemiColon",
"ERROR_TOKEN",
- "original_namespace_name",
"EOF_TOKEN",
"expression_parser_start",
"]",
@@ -2501,8 +2490,8 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public final static int
ERROR_SYMBOL = 74,
- SCOPE_UBOUND = 117,
- SCOPE_SIZE = 118,
+ SCOPE_UBOUND = 116,
+ SCOPE_SIZE = 117,
MAX_NAME_LENGTH = 37;
public final int getErrorSymbol() { return ERROR_SYMBOL; }
@@ -2511,20 +2500,20 @@ public class CPPExpressionStatementParserprs implements lpg.lpgjavaruntime.Parse
public final int getMaxNameLength() { return MAX_NAME_LENGTH; }
public final static int
- NUM_STATES = 525,
- NT_OFFSET = 124,
- LA_STATE_OFFSET = 5745,
+ NUM_STATES = 522,
+ NT_OFFSET = 123,
+ LA_STATE_OFFSET = 5713,
MAX_LA = 2147483647,
- NUM_RULES = 535,
- NUM_NONTERMINALS = 196,
- NUM_SYMBOLS = 320,
+ NUM_RULES = 533,
+ NUM_NONTERMINALS = 194,
+ NUM_SYMBOLS = 317,
SEGMENT_SIZE = 8192,
- START_STATE = 4432,
+ START_STATE = 2536,
IDENTIFIER_SYMBOL = 0,
- EOFT_SYMBOL = 123,
- EOLT_SYMBOL = 123,
- ACCEPT_ACTION = 4817,
- ERROR_ACTION = 5210;
+ EOFT_SYMBOL = 122,
+ EOLT_SYMBOL = 122,
+ ACCEPT_ACTION = 4787,
+ ERROR_ACTION = 5180;
public final static boolean BACKTRACK = true;
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParsersym.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParsersym.java
index 0bfb278de5d..fc7e7efc22f 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParsersym.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPExpressionStatementParsersym.java
@@ -17,26 +17,26 @@ public interface CPPExpressionStatementParsersym {
public final static int
TK_asm = 62,
TK_auto = 49,
- TK_bool = 15,
- TK_break = 78,
- TK_case = 79,
+ TK_bool = 14,
+ TK_break = 77,
+ TK_case = 78,
TK_catch = 119,
- TK_char = 16,
+ TK_char = 15,
TK_class = 63,
TK_const = 46,
- TK_const_cast = 32,
- TK_continue = 80,
- TK_default = 81,
+ TK_const_cast = 31,
+ TK_continue = 79,
+ TK_default = 80,
TK_delete = 64,
- TK_do = 82,
- TK_double = 17,
- TK_dynamic_cast = 33,
+ TK_do = 81,
+ TK_double = 16,
+ TK_dynamic_cast = 32,
TK_else = 121,
- TK_enum = 69,
+ TK_enum = 68,
TK_explicit = 50,
- TK_export = 75,
- TK_extern = 14,
- TK_false = 34,
+ TK_export = 82,
+ TK_extern = 17,
+ TK_false = 33,
TK_float = 18,
TK_for = 83,
TK_friend = 51,
@@ -46,38 +46,38 @@ public interface CPPExpressionStatementParsersym {
TK_int = 19,
TK_long = 20,
TK_mutable = 53,
- TK_namespace = 60,
+ TK_namespace = 57,
TK_new = 65,
TK_operator = 7,
TK_private = 114,
TK_protected = 115,
TK_public = 116,
TK_register = 54,
- TK_reinterpret_cast = 35,
+ TK_reinterpret_cast = 34,
TK_return = 86,
TK_short = 21,
TK_signed = 22,
- TK_sizeof = 36,
+ TK_sizeof = 35,
TK_static = 55,
- TK_static_cast = 37,
- TK_struct = 70,
+ TK_static_cast = 36,
+ TK_struct = 69,
TK_switch = 87,
- TK_template = 31,
+ TK_template = 37,
TK_this = 38,
- TK_throw = 57,
- TK_try = 76,
+ TK_throw = 58,
+ TK_try = 75,
TK_true = 39,
TK_typedef = 56,
TK_typeid = 40,
TK_typename = 10,
- TK_union = 71,
+ TK_union = 70,
TK_unsigned = 23,
- TK_using = 58,
+ TK_using = 59,
TK_virtual = 45,
TK_void = 24,
TK_volatile = 47,
TK_wchar_t = 25,
- TK_while = 77,
+ TK_while = 76,
TK_integer = 41,
TK_floating = 42,
TK_charconst = 43,
@@ -85,10 +85,10 @@ public interface CPPExpressionStatementParsersym {
TK_identifier = 1,
TK_Completion = 2,
TK_EndOfCompletion = 9,
- TK_Invalid = 124,
+ TK_Invalid = 123,
TK_LeftBracket = 48,
TK_LeftParen = 3,
- TK_LeftBrace = 59,
+ TK_LeftBrace = 60,
TK_Dot = 120,
TK_DotStar = 96,
TK_Arrow = 103,
@@ -116,7 +116,7 @@ public interface CPPExpressionStatementParsersym {
TK_AndAnd = 101,
TK_OrOr = 102,
TK_Question = 117,
- TK_Colon = 72,
+ TK_Colon = 71,
TK_ColonColon = 4,
TK_DotDotDot = 95,
TK_Assign = 67,
@@ -133,12 +133,11 @@ public interface CPPExpressionStatementParsersym {
TK_Comma = 66,
TK_zero = 44,
TK_RightBracket = 118,
- TK_RightParen = 73,
- TK_RightBrace = 68,
+ TK_RightParen = 72,
+ TK_RightBrace = 73,
TK_SemiColon = 13,
TK_ERROR_TOKEN = 74,
- TK_original_namespace_name = 122,
- TK_EOF_TOKEN = 123;
+ TK_EOF_TOKEN = 122;
public final static String orderedTerminalSymbols[] = {
"",
@@ -155,10 +154,10 @@ public interface CPPExpressionStatementParsersym {
"Plus",
"Minus",
"SemiColon",
- "extern",
"bool",
"char",
"double",
+ "extern",
"float",
"int",
"long",
@@ -172,13 +171,13 @@ public interface CPPExpressionStatementParsersym {
"LT",
"stringlit",
"Bang",
- "template",
"const_cast",
"dynamic_cast",
"false",
"reinterpret_cast",
"sizeof",
"static_cast",
+ "template",
"this",
"true",
"typeid",
@@ -198,10 +197,10 @@ public interface CPPExpressionStatementParsersym {
"register",
"static",
"typedef",
+ "namespace",
"throw",
"using",
"LeftBrace",
- "namespace",
"GT",
"asm",
"class",
@@ -209,14 +208,13 @@ public interface CPPExpressionStatementParsersym {
"new",
"Comma",
"Assign",
- "RightBrace",
"enum",
"struct",
"union",
"Colon",
"RightParen",
+ "RightBrace",
"ERROR_TOKEN",
- "export",
"try",
"while",
"break",
@@ -224,6 +222,7 @@ public interface CPPExpressionStatementParsersym {
"continue",
"default",
"do",
+ "export",
"for",
"goto",
"if",
@@ -263,7 +262,6 @@ public interface CPPExpressionStatementParsersym {
"catch",
"Dot",
"else",
- "original_namespace_name",
"EOF_TOKEN",
"Invalid"
};
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParser.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParser.java
index e4e61725a6b..d89354d59a7 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParser.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParser.java
@@ -1512,765 +1512,758 @@ public CPPNoCastExpressionParser(String[] mapFrom) { // constructor
}
//
- // Rule 300: original_namespace_definition ::= namespace identifier_name { <openscope-ast> declaration_seq_opt }
+ // Rule 298: named_namespace_definition ::= namespace namespace_name { <openscope-ast> declaration_seq_opt }
//
- case 300: { action.builder.
- consumeNamespaceDefinition(true); break;
- }
-
- //
- // Rule 301: extension_namespace_definition ::= namespace original_namespace_name { <openscope-ast> declaration_seq_opt }
- //
- case 301: { action.builder.
+ case 298: { action.builder.
consumeNamespaceDefinition(true); break;
}
//
- // Rule 302: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
+ // Rule 299: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
//
- case 302: { action.builder.
+ case 299: { action.builder.
consumeNamespaceDefinition(false); break;
}
//
- // Rule 303: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 300: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 303: { action.builder.
+ case 300: { action.builder.
consumeNamespaceAliasDefinition(); break;
}
//
- // Rule 304: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
+ // Rule 301: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
//
- case 304: { action.builder.
+ case 301: { action.builder.
consumeUsingDeclaration(); break;
}
//
- // Rule 305: typename_opt ::= typename
+ // Rule 302: typename_opt ::= typename
//
- case 305: { action.builder.
+ case 302: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 306: typename_opt ::= $Empty
+ // Rule 303: typename_opt ::= $Empty
//
- case 306: { action.builder.
+ case 303: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 307: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 304: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 307: { action.builder.
+ case 304: { action.builder.
consumeUsingDirective(); break;
}
//
- // Rule 308: asm_definition ::= asm ( stringlit ) ;
+ // Rule 305: asm_definition ::= asm ( stringlit ) ;
//
- case 308: { action.builder.
+ case 305: { action.builder.
consumeDeclarationASM(); break;
}
//
- // Rule 309: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
+ // Rule 306: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
//
- case 309: { action.builder.
+ case 306: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 310: linkage_specification ::= extern stringlit <openscope-ast> declaration
+ // Rule 307: linkage_specification ::= extern stringlit <openscope-ast> declaration
//
- case 310: { action.builder.
+ case 307: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 315: init_declarator_complete ::= init_declarator
+ // Rule 312: init_declarator_complete ::= init_declarator
//
- case 315: { action.builder.
+ case 312: { action.builder.
consumeInitDeclaratorComplete(); break;
}
//
- // Rule 317: init_declarator ::= declarator initializer
+ // Rule 314: init_declarator ::= declarator initializer
//
- case 317: { action.builder.
+ case 314: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 319: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 316: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 319: { action.builder.
+ case 316: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 321: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 318: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 321: { action.builder.
+ case 318: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 325: basic_direct_declarator ::= declarator_id_name
+ // Rule 322: basic_direct_declarator ::= declarator_id_name
//
- case 325: { action.builder.
+ case 322: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 326: basic_direct_declarator ::= ( declarator )
+ // Rule 323: basic_direct_declarator ::= ( declarator )
//
- case 326: { action.builder.
+ case 323: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 327: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 324: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 327: { action.builder.
+ case 324: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 328: array_direct_declarator ::= array_direct_declarator array_modifier
+ // Rule 325: array_direct_declarator ::= array_direct_declarator array_modifier
//
- case 328: { action.builder.
+ case 325: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 329: array_direct_declarator ::= basic_direct_declarator array_modifier
+ // Rule 326: array_direct_declarator ::= basic_direct_declarator array_modifier
//
- case 329: { action.builder.
+ case 326: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 330: array_modifier ::= [ constant_expression ]
+ // Rule 327: array_modifier ::= [ constant_expression ]
//
- case 330: { action.builder.
+ case 327: { action.builder.
consumeDirectDeclaratorArrayModifier(true); break;
}
//
- // Rule 331: array_modifier ::= [ ]
+ // Rule 328: array_modifier ::= [ ]
//
- case 331: { action.builder.
+ case 328: { action.builder.
consumeDirectDeclaratorArrayModifier(false); break;
}
//
- // Rule 332: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 329: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
//
- case 332: { action.builder.
+ case 329: { action.builder.
consumePointer(); break;
}
//
- // Rule 333: ptr_operator ::= &
+ // Rule 330: ptr_operator ::= &
//
- case 333: { action.builder.
+ case 330: { action.builder.
consumeReferenceOperator(); break;
}
//
- // Rule 334: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 331: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
//
- case 334: { action.builder.
+ case 331: { action.builder.
consumePointerToMember(); break;
}
//
- // Rule 340: cv_qualifier ::= const
+ // Rule 337: cv_qualifier ::= const
//
- case 340: { action.builder.
+ case 337: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 341: cv_qualifier ::= volatile
+ // Rule 338: cv_qualifier ::= volatile
//
- case 341: { action.builder.
+ case 338: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 343: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
+ // Rule 340: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
//
- case 343: { action.builder.
+ case 340: { action.builder.
consumeQualifiedId(true); break;
}
//
- // Rule 344: type_id ::= type_specifier_seq
+ // Rule 341: type_id ::= type_specifier_seq
//
- case 344: { action.builder.
+ case 341: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 345: type_id ::= type_specifier_seq abstract_declarator
+ // Rule 342: type_id ::= type_specifier_seq abstract_declarator
//
- case 345: { action.builder.
+ case 342: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 348: abstract_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 345: abstract_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 348: { action.builder.
+ case 345: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 349: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
+ // Rule 346: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
//
- case 349: { action.builder.
+ case 346: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 353: basic_direct_abstract_declarator ::= ( abstract_declarator )
+ // Rule 350: basic_direct_abstract_declarator ::= ( abstract_declarator )
//
- case 353: { action.builder.
+ case 350: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 354: basic_direct_abstract_declarator ::= ( )
+ // Rule 351: basic_direct_abstract_declarator ::= ( )
//
- case 354: { action.builder.
+ case 351: { action.builder.
consumeAbstractDeclaratorEmpty(); break;
}
//
- // Rule 355: array_direct_abstract_declarator ::= array_modifier
+ // Rule 352: array_direct_abstract_declarator ::= array_modifier
//
- case 355: { action.builder.
+ case 352: { action.builder.
consumeDirectDeclaratorArrayDeclarator(false); break;
}
//
- // Rule 356: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
+ // Rule 353: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
//
- case 356: { action.builder.
+ case 353: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 357: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
+ // Rule 354: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
//
- case 357: { action.builder.
+ case 354: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 358: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 355: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 358: { action.builder.
+ case 355: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 359: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 356: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 359: { action.builder.
+ case 356: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(false); break;
}
//
- // Rule 360: parameter_declaration_clause ::= parameter_declaration_list_opt ...
+ // Rule 357: parameter_declaration_clause ::= parameter_declaration_list_opt ...
//
- case 360: { action.builder.
+ case 357: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 361: parameter_declaration_clause ::= parameter_declaration_list_opt
+ // Rule 358: parameter_declaration_clause ::= parameter_declaration_list_opt
//
- case 361: { action.builder.
+ case 358: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 362: parameter_declaration_clause ::= parameter_declaration_list , ...
+ // Rule 359: parameter_declaration_clause ::= parameter_declaration_list , ...
//
- case 362: { action.builder.
+ case 359: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 368: abstract_declarator_opt ::= $Empty
+ // Rule 365: abstract_declarator_opt ::= $Empty
//
- case 368: { action.builder.
+ case 365: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 369: parameter_declaration ::= declaration_specifiers parameter_init_declarator
+ // Rule 366: parameter_declaration ::= declaration_specifiers parameter_init_declarator
//
- case 369: { action.builder.
+ case 366: { action.builder.
consumeParameterDeclaration(); break;
}
//
- // Rule 370: parameter_declaration ::= declaration_specifiers
+ // Rule 367: parameter_declaration ::= declaration_specifiers
//
- case 370: { action.builder.
+ case 367: { action.builder.
consumeParameterDeclarationWithoutDeclarator(); break;
}
//
- // Rule 372: parameter_init_declarator ::= declarator = parameter_initializer
+ // Rule 369: parameter_init_declarator ::= declarator = parameter_initializer
//
- case 372: { action.builder.
+ case 369: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 374: parameter_init_declarator ::= abstract_declarator = parameter_initializer
+ // Rule 371: parameter_init_declarator ::= abstract_declarator = parameter_initializer
//
- case 374: { action.builder.
+ case 371: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 375: parameter_init_declarator ::= = parameter_initializer
+ // Rule 372: parameter_init_declarator ::= = parameter_initializer
//
- case 375: { action.builder.
+ case 372: { action.builder.
consumeDeclaratorWithInitializer(false); break;
}
//
- // Rule 376: parameter_initializer ::= assignment_expression
+ // Rule 373: parameter_initializer ::= assignment_expression
//
- case 376: { action.builder.
+ case 373: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 377: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
+ // Rule 374: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
//
- case 377: { action.builder.
+ case 374: { action.builder.
consumeFunctionDefinition(false); break;
}
//
- // Rule 378: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
+ // Rule 375: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
//
- case 378: { action.builder.
+ case 375: { action.builder.
consumeFunctionDefinition(true); break;
}
//
- // Rule 381: initializer ::= ( expression_list )
+ // Rule 378: initializer ::= ( expression_list )
//
- case 381: { action.builder.
+ case 378: { action.builder.
consumeInitializerConstructor(); break;
}
//
- // Rule 382: initializer_clause ::= assignment_expression
+ // Rule 379: initializer_clause ::= assignment_expression
//
- case 382: { action.builder.
+ case 379: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 383: initializer_clause ::= { <openscope-ast> initializer_list , }
+ // Rule 380: initializer_clause ::= { <openscope-ast> initializer_list , }
//
- case 383: { action.builder.
+ case 380: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 384: initializer_clause ::= { <openscope-ast> initializer_list }
+ // Rule 381: initializer_clause ::= { <openscope-ast> initializer_list }
//
- case 384: { action.builder.
+ case 381: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 385: initializer_clause ::= { <openscope-ast> }
+ // Rule 382: initializer_clause ::= { <openscope-ast> }
//
- case 385: { action.builder.
+ case 382: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 390: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
+ // Rule 387: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
//
- case 390: { action.builder.
+ case 387: { action.builder.
consumeClassSpecifier(); break;
}
//
- // Rule 391: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
+ // Rule 388: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
//
- case 391: { action.builder.
+ case 388: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 392: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
+ // Rule 389: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
//
- case 392: { action.builder.
+ case 389: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 393: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
+ // Rule 390: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
//
- case 393: { action.builder.
+ case 390: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 394: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
+ // Rule 391: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
//
- case 394: { action.builder.
+ case 391: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 396: identifier_name_opt ::= $Empty
+ // Rule 393: identifier_name_opt ::= $Empty
//
- case 396: { action.builder.
+ case 393: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 400: visibility_label ::= access_specifier_keyword :
+ // Rule 397: visibility_label ::= access_specifier_keyword :
//
- case 400: { action.builder.
+ case 397: { action.builder.
consumeVisibilityLabel(); break;
}
//
- // Rule 401: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
+ // Rule 398: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
//
- case 401: { action.builder.
+ case 398: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 402: member_declaration ::= declaration_specifiers_opt ;
+ // Rule 399: member_declaration ::= declaration_specifiers_opt ;
//
- case 402: { action.builder.
+ case 399: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 405: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
+ // Rule 402: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
//
- case 405: { action.builder.
+ case 402: { action.builder.
consumeMemberDeclarationQualifiedId(); break;
}
//
- // Rule 410: member_declaration ::= ERROR_TOKEN
+ // Rule 408: member_declaration ::= ERROR_TOKEN
//
- case 410: { action.builder.
+ case 408: { action.builder.
consumeDeclarationProblem(); break;
}
//
- // Rule 418: member_declarator ::= declarator constant_initializer
+ // Rule 416: member_declarator ::= declarator constant_initializer
//
- case 418: { action.builder.
+ case 416: { action.builder.
consumeMemberDeclaratorWithInitializer(); break;
}
//
- // Rule 419: member_declarator ::= bit_field_declarator : constant_expression
+ // Rule 417: member_declarator ::= bit_field_declarator : constant_expression
//
- case 419: { action.builder.
+ case 417: { action.builder.
consumeBitField(true); break;
}
//
- // Rule 420: member_declarator ::= : constant_expression
+ // Rule 418: member_declarator ::= : constant_expression
//
- case 420: { action.builder.
+ case 418: { action.builder.
consumeBitField(false); break;
}
//
- // Rule 421: bit_field_declarator ::= identifier_name
+ // Rule 419: bit_field_declarator ::= identifier_name
//
- case 421: { action.builder.
+ case 419: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 422: constant_initializer ::= = constant_expression
+ // Rule 420: constant_initializer ::= = constant_expression
//
- case 422: { action.builder.
+ case 420: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 428: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 426: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 428: { action.builder.
+ case 426: { action.builder.
consumeBaseSpecifier(false, false); break;
}
//
- // Rule 429: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
+ // Rule 427: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
//
- case 429: { action.builder.
+ case 427: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 430: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
+ // Rule 428: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
//
- case 430: { action.builder.
+ case 428: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 431: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
+ // Rule 429: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
//
- case 431: { action.builder.
+ case 429: { action.builder.
consumeBaseSpecifier(true, false); break;
}
//
- // Rule 432: access_specifier_keyword ::= private
+ // Rule 430: access_specifier_keyword ::= private
//
- case 432: { action.builder.
+ case 430: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 433: access_specifier_keyword ::= protected
+ // Rule 431: access_specifier_keyword ::= protected
//
- case 433: { action.builder.
+ case 431: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 434: access_specifier_keyword ::= public
+ // Rule 432: access_specifier_keyword ::= public
//
- case 434: { action.builder.
+ case 432: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 436: access_specifier_keyword_opt ::= $Empty
+ // Rule 434: access_specifier_keyword_opt ::= $Empty
//
- case 436: { action.builder.
+ case 434: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 438: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
+ // Rule 436: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
//
- case 438: { action.builder.
+ case 436: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 439: conversion_function_id ::= operator conversion_type_id
+ // Rule 437: conversion_function_id ::= operator conversion_type_id
//
- case 439: { action.builder.
+ case 437: { action.builder.
consumeConversionName(); break;
}
//
- // Rule 440: conversion_type_id ::= type_specifier_seq conversion_declarator
+ // Rule 438: conversion_type_id ::= type_specifier_seq conversion_declarator
//
- case 440: { action.builder.
+ case 438: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 441: conversion_type_id ::= type_specifier_seq
+ // Rule 439: conversion_type_id ::= type_specifier_seq
//
- case 441: { action.builder.
+ case 439: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 442: conversion_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 440: conversion_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 442: { action.builder.
+ case 440: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 448: mem_initializer ::= mem_initializer_name ( expression_list_opt )
+ // Rule 446: mem_initializer ::= mem_initializer_name ( expression_list_opt )
//
- case 448: { action.builder.
+ case 446: { action.builder.
consumeConstructorChainInitializer(); break;
}
//
- // Rule 449: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 447: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 449: { action.builder.
+ case 447: { action.builder.
consumeQualifiedId(false); break;
}
//
- // Rule 452: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
+ // Rule 450: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
//
- case 452: { action.builder.
+ case 450: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 453: operator_id_name ::= operator overloadable_operator
+ // Rule 451: operator_id_name ::= operator overloadable_operator
//
- case 453: { action.builder.
+ case 451: { action.builder.
consumeOperatorName(); break;
}
//
- // Rule 496: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
+ // Rule 494: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
//
- case 496: { action.builder.
+ case 494: { action.builder.
consumeTemplateDeclaration(); break;
}
//
- // Rule 497: export_opt ::= export
+ // Rule 495: export_opt ::= export
//
- case 497: { action.builder.
+ case 495: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 498: export_opt ::= $Empty
+ // Rule 496: export_opt ::= $Empty
//
- case 498: { action.builder.
+ case 496: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 502: template_parameter ::= parameter_declaration
+ // Rule 500: template_parameter ::= parameter_declaration
//
- case 502: { action.builder.
+ case 500: { action.builder.
consumeTemplateParamterDeclaration(); break;
}
//
- // Rule 503: type_parameter ::= class identifier_name_opt
+ // Rule 501: type_parameter ::= class identifier_name_opt
//
- case 503: { action.builder.
+ case 501: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 504: type_parameter ::= class identifier_name_opt = type_id
+ // Rule 502: type_parameter ::= class identifier_name_opt = type_id
//
- case 504: { action.builder.
+ case 502: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 505: type_parameter ::= typename identifier_name_opt
+ // Rule 503: type_parameter ::= typename identifier_name_opt
//
- case 505: { action.builder.
+ case 503: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 506: type_parameter ::= typename identifier_name_opt = type_id
+ // Rule 504: type_parameter ::= typename identifier_name_opt = type_id
//
- case 506: { action.builder.
+ case 504: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 507: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
+ // Rule 505: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
//
- case 507: { action.builder.
+ case 505: { action.builder.
consumeTemplatedTypeTemplateParameter(false); break;
}
//
- // Rule 508: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
+ // Rule 506: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
//
- case 508: { action.builder.
+ case 506: { action.builder.
consumeTemplatedTypeTemplateParameter(true); break;
}
//
- // Rule 509: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
+ // Rule 507: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
//
- case 509: { action.builder.
+ case 507: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 517: explicit_instantiation ::= template declaration
+ // Rule 515: explicit_instantiation ::= template declaration
//
- case 517: { action.builder.
+ case 515: { action.builder.
consumeTemplateExplicitInstantiation(); break;
}
//
- // Rule 518: explicit_specialization ::= template < > declaration
+ // Rule 516: explicit_specialization ::= template < > declaration
//
- case 518: { action.builder.
+ case 516: { action.builder.
consumeTemplateExplicitSpecialization(); break;
}
//
- // Rule 519: try_block ::= try compound_statement <openscope-ast> handler_seq
+ // Rule 517: try_block ::= try compound_statement <openscope-ast> handler_seq
//
- case 519: { action.builder.
+ case 517: { action.builder.
consumeStatementTryBlock(); break;
}
//
- // Rule 522: handler ::= catch ( exception_declaration ) compound_statement
+ // Rule 520: handler ::= catch ( exception_declaration ) compound_statement
//
- case 522: { action.builder.
+ case 520: { action.builder.
consumeStatementCatchHandler(false); break;
}
//
- // Rule 523: handler ::= catch ( ... ) compound_statement
+ // Rule 521: handler ::= catch ( ... ) compound_statement
//
- case 523: { action.builder.
+ case 521: { action.builder.
consumeStatementCatchHandler(true); break;
}
//
- // Rule 524: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
+ // Rule 522: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
//
- case 524: { action.builder.
+ case 522: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 525: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
+ // Rule 523: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
//
- case 525: { action.builder.
+ case 523: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 526: exception_declaration ::= type_specifier_seq
+ // Rule 524: exception_declaration ::= type_specifier_seq
//
- case 526: { action.builder.
+ case 524: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 534: no_cast_start ::= ERROR_TOKEN
+ // Rule 532: no_cast_start ::= ERROR_TOKEN
//
- case 534: { action.builder.
+ case 532: { action.builder.
consumeExpressionProblem(); break;
}
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParserprs.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParserprs.java
index 18ee4280303..b5f37272674 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParserprs.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParserprs.java
@@ -29,7 +29,7 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0
+ 0,0,0
};
};
public final static byte isKeyword[] = IsKeyword.isKeyword;
@@ -66,458 +66,452 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,3,4,
4,5,2,4,5,4,5,6,1,3,
- 1,0,1,3,1,1,1,1,1,6,
- 6,5,7,6,1,0,6,5,6,4,
- 1,3,1,0,1,1,2,1,3,1,
- 3,1,1,1,1,3,9,2,2,3,
- 2,3,1,5,1,2,2,1,0,1,
- 1,1,4,1,2,1,1,2,3,1,
- 1,1,3,2,1,2,2,9,8,2,
- 1,3,1,3,1,0,1,0,2,1,
- 1,3,1,3,2,1,5,8,1,2,
- 3,1,5,4,3,1,3,1,1,5,
- 4,4,5,5,1,0,1,1,1,2,
- 4,2,2,1,5,1,1,1,1,1,
- 1,2,1,0,1,3,1,2,3,2,
- 1,2,2,1,0,1,3,3,5,5,
- 4,1,1,1,1,0,1,5,2,2,
- 1,2,2,1,0,1,3,4,3,1,
- 1,5,2,1,1,3,3,1,1,1,
+ 1,0,1,3,1,1,1,6,5,7,
+ 6,1,0,6,5,6,4,1,3,1,
+ 0,1,1,2,1,3,1,3,1,1,
+ 1,1,3,9,2,2,3,2,3,1,
+ 5,1,2,2,1,0,1,1,1,4,
+ 1,2,1,1,2,3,1,1,1,3,
+ 2,1,2,2,9,8,2,1,3,1,
+ 3,1,0,1,0,2,1,1,3,1,
+ 3,2,1,5,8,1,2,3,1,5,
+ 4,3,1,3,1,1,5,4,4,5,
+ 5,1,0,1,1,1,2,4,2,2,
+ 1,5,1,1,1,1,1,1,1,2,
+ 1,0,1,3,1,2,3,2,1,2,
+ 2,1,0,1,3,3,5,5,4,1,
+ 1,1,1,0,1,5,2,2,1,2,
+ 2,1,0,1,3,4,3,1,1,5,
+ 2,1,1,3,3,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,2,2,7,1,0,1,3,
- 1,1,2,4,2,4,7,9,5,1,
- 3,1,0,1,1,1,2,4,4,1,
- 2,5,5,3,3,1,4,3,1,0,
- 1,3,1,1,-108,0,0,0,-2,0,
+ 1,2,2,7,1,0,1,3,1,1,
+ 2,4,2,4,7,9,5,1,3,1,
+ 0,1,1,1,2,4,4,1,2,5,
+ 5,3,3,1,4,3,1,0,1,3,
+ 1,1,-108,0,0,0,-263,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-2,0,0,0,0,
+ 0,0,0,-113,0,-261,0,0,0,0,
+ -350,-4,0,0,0,0,-311,0,0,0,
+ 0,-119,0,0,0,0,0,-240,-90,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-261,0,0,
- 0,0,0,0,0,-53,0,-10,0,0,
- 0,0,0,-4,0,0,-329,0,0,0,
- -54,0,0,0,0,0,0,-178,0,0,
- -89,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-368,0,0,-58,0,
- 0,0,0,0,0,0,-5,0,0,0,
- -16,0,0,0,0,-134,0,0,-6,0,
- 0,0,0,0,0,-450,0,-138,0,0,
+ 0,-124,0,-250,0,-273,0,0,0,0,
+ 0,0,0,0,0,-127,0,0,0,0,
+ 0,0,-53,-62,0,-166,0,0,0,0,
+ 0,0,-449,0,-69,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-240,0,0,0,0,0,
- 0,0,0,-115,0,0,0,0,0,0,
+ -5,0,0,-6,0,0,0,0,0,0,
+ -115,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-7,0,-51,0,0,0,
- 0,-117,-136,0,0,-376,0,0,-251,0,
- 0,-183,-349,0,0,0,0,0,-116,0,
+ 0,0,0,0,0,0,0,0,-118,-51,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-384,-54,0,-116,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-296,0,0,0,0,0,-8,0,0,
- -62,0,0,-127,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-69,0,0,
- 0,-9,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-236,0,0,-131,0,
+ 0,0,0,0,0,0,0,0,-129,0,
+ 0,0,-171,0,0,0,0,0,0,0,
+ -16,0,0,0,-136,0,0,0,0,0,
+ 0,-70,0,0,0,-7,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-8,
+ 0,0,-131,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -49,-9,0,0,0,0,0,-202,-251,0,
+ 0,0,0,0,-167,0,0,-225,0,0,
0,0,0,0,0,0,0,0,0,0,
- -163,-11,0,0,-202,0,0,-12,0,0,
- -316,0,0,-225,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-11,0,
+ -130,0,0,0,-10,0,0,0,0,0,
+ -60,0,-139,0,0,0,0,0,-232,0,
+ 0,0,0,0,-132,0,-515,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-426,0,0,0,
- 0,-124,0,0,0,0,0,0,-129,-63,
- -373,0,0,0,-171,0,0,0,-13,0,
- -15,0,0,-518,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-49,0,
- 0,0,0,-483,0,0,0,0,0,0,
+ 0,-349,0,0,-480,0,0,0,-58,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-166,0,0,0,
+ 0,0,0,0,0,0,0,-12,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-280,0,0,-70,0,0,0,-28,
- 0,0,0,0,0,0,0,0,-29,-18,
- 0,0,0,-508,0,0,0,0,0,0,
+ 0,-319,0,0,0,0,-138,0,0,0,
+ -13,0,0,0,0,0,0,0,0,0,
+ -18,0,0,0,-505,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-15,0,0,0,0,
+ 0,-105,0,0,0,0,-20,0,0,0,
+ -63,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -30,0,0,0,0,-20,0,0,0,-31,
+ -3,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-60,0,
- -3,0,0,0,-401,0,0,0,0,0,
+ 0,0,0,-28,0,0,0,0,0,0,
+ 0,0,0,-183,0,0,0,-241,0,-117,
+ 0,0,0,0,0,0,-29,-1,-178,0,
+ 0,0,0,0,-292,-289,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-231,0,0,0,0,0,0,
- 0,0,0,-167,0,0,0,-435,0,0,
- 0,0,-139,0,0,0,-32,-17,-130,0,
- 0,0,0,0,-33,-288,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-34,0,
- 0,0,-362,0,0,0,0,-323,0,0,
+ 0,0,0,-30,0,0,0,-326,0,0,
+ 0,-31,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -32,0,0,0,-236,0,0,0,0,-342,
+ 0,-327,0,0,0,-106,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -35,0,0,0,0,0,0,0,0,-337,
- -105,0,-324,0,0,0,-36,0,0,0,
+ 0,0,0,0,-293,0,0,0,0,0,
+ 0,0,-33,0,0,0,0,0,0,0,
+ -34,0,0,-430,0,0,0,-344,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-37,0,0,0,0,
- 0,0,0,0,0,-50,0,0,0,0,
- 0,-366,0,0,-427,0,0,0,0,0,
+ 0,0,0,0,0,0,-35,0,0,0,
+ 0,0,0,0,0,0,-50,0,0,0,
+ 0,0,-285,0,0,0,-39,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-38,0,0,
- 0,0,0,0,0,-405,0,-57,0,0,
- 0,0,0,-263,0,0,-106,-482,-39,0,
- 0,0,-114,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-36,
+ 0,0,0,0,0,0,0,-37,0,-57,
+ 0,0,0,0,-185,0,0,0,0,-41,
+ 0,0,0,-374,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-344,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-185,0,0,0,
- 0,-41,0,0,0,-137,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-163,0,0,0,-324,0,0,0,
+ 0,-92,0,0,0,-114,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-305,0,0,0,0,0,
- 0,0,0,-92,0,0,0,-142,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-411,0,-296,0,0,0,0,0,
+ -38,0,0,-93,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,-40,0,0,0,
- 0,0,-267,0,0,-93,0,0,0,0,
+ 0,0,0,0,-55,0,-186,0,0,0,
+ 0,0,-56,0,0,-94,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-209,0,
- 0,0,0,0,0,0,-55,0,-186,0,
- 0,0,0,0,-291,0,0,-94,0,0,
- 0,-56,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -218,0,0,0,0,0,0,0,-59,0,
- -188,0,0,0,0,0,-64,0,0,-95,
+ 0,0,0,0,0,0,0,0,-188,0,
+ 0,0,0,0,0,0,0,-95,0,0,
+ 0,-438,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -59,0,0,0,0,0,0,0,-64,0,
+ -345,0,0,0,-65,0,-67,0,0,-96,
+ 0,0,0,-491,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-68,0,0,0,0,0,0,0,
+ -109,0,-190,0,0,0,0,-110,0,0,
+ 0,-97,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -65,0,-190,0,0,0,0,-67,-292,0,
- 0,-96,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-111,0,0,0,0,0,
+ 0,0,0,0,-193,0,0,0,0,0,
+ -112,0,0,-98,0,0,0,-137,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-120,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-68,0,-193,0,0,0,0,-109,
- -363,0,0,-97,0,0,0,-110,0,0,
+ 0,-453,0,0,0,-99,0,0,0,-142,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-209,0,
+ 0,0,0,0,0,0,-144,0,0,0,
+ 0,0,0,-464,-145,0,0,-100,0,0,
+ 0,-143,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-111,0,-201,0,0,0,
- 0,-454,0,0,0,-98,0,0,0,-203,
+ -218,0,0,0,0,0,0,0,-146,0,
+ -201,0,0,0,0,-147,-148,0,0,-101,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-302,0,
- 0,0,0,0,0,0,-112,0,-311,0,
- 0,0,0,0,-120,0,0,-99,0,0,
- 0,-214,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -326,0,0,0,0,0,0,0,-144,0,
- -347,0,0,0,0,0,-145,0,0,-100,
+ 0,0,-149,0,0,0,0,0,0,0,
+ -150,0,-308,0,0,0,0,0,-151,0,
+ 0,-102,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-152,0,-153,0,0,0,-237,0,
+ 0,0,0,-164,0,0,0,-276,0,0,
0,0,0,0,0,0,0,0,0,0,
- -146,0,-147,0,0,0,-464,0,0,0,
- 0,-101,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-315,0,0,0,
+ 0,0,0,0,-154,0,-155,0,0,0,
+ -210,0,0,0,-203,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-148,0,0,0,0,0,
- 0,0,-149,0,-216,0,0,0,0,-150,
- -284,0,0,-102,0,0,0,-321,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-151,0,0,0,
- 0,0,0,0,-152,0,-229,0,0,0,
- 0,-153,-154,0,0,-164,0,0,0,-132,
+ 0,0,0,-156,0,0,0,0,0,-157,
+ 0,0,-177,0,0,0,-47,0,0,0,
+ -510,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-312,0,
- 0,0,0,0,0,0,-155,0,-230,0,
- 0,0,0,-348,-210,0,0,0,0,0,
+ 0,0,0,-158,0,0,0,0,0,0,
+ 0,-159,0,0,0,0,0,0,0,0,
+ 0,0,-318,0,0,0,-317,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-268,0,0,0,0,
+ 0,0,0,-160,0,-161,0,0,0,-322,
+ 0,0,0,-162,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-168,0,0,0,0,0,0,0,
+ 0,0,-169,0,0,0,-141,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-347,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-156,0,0,-177,0,0,0,
- -47,0,0,0,-513,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-157,0,0,
- 0,0,0,0,0,-158,0,0,0,0,
- 0,0,0,0,0,0,-315,0,0,0,
- -275,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-159,
- 0,0,0,0,0,0,0,-160,0,-161,
- 0,0,0,-319,0,0,0,-162,0,0,
+ 0,0,-170,0,0,0,0,0,0,0,
+ -173,0,-174,0,0,0,-379,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-168,0,0,0,
- 0,0,0,0,0,0,-169,0,0,0,
- -141,0,0,0,0,0,0,0,0,0,
- 0,0,0,-143,-170,-342,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-175,
+ 0,0,0,0,0,0,0,-176,0,-179,
+ 0,0,0,-135,0,0,0,-180,-181,0,
+ 0,0,0,0,-214,0,-380,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-173,0,
- 0,0,0,0,0,0,-174,0,-175,0,
- 0,0,-371,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-182,
+ 0,0,0,0,0,0,0,0,0,-191,
+ 0,0,0,-441,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-176,0,0,0,0,
- 0,0,0,-179,0,0,0,0,0,-135,
- 0,0,0,-180,-239,0,0,0,0,0,
- -397,0,0,0,-372,0,0,0,0,0,
+ 0,0,0,0,0,0,-192,0,0,0,
+ 0,0,0,0,-197,0,-198,0,0,0,
+ -335,0,0,0,-204,-207,0,0,0,0,
+ 0,-362,-212,-104,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-213,0,0,0,
+ 0,0,0,0,-216,0,-223,0,0,0,
+ -91,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-181,0,0,0,0,
- 0,-442,0,0,0,0,0,0,0,0,
+ 0,0,0,-239,0,0,0,0,0,0,
+ 0,-224,0,-89,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-182,0,0,0,0,0,
- 0,0,-191,0,-192,0,0,0,-332,0,
- 0,0,-197,-246,0,0,0,0,0,-398,
- 0,0,0,-104,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-86,0,0,0,-226,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-234,0,0,0,0,-339,
- -91,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-397,0,0,
+ 0,0,0,-87,0,0,0,-323,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-363,0,0,0,
+ 0,-88,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-253,0,0,0,0,0,0,
- 0,-198,0,-90,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-86,0,0,0,-204,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-357,0,0,0,
- 0,0,-87,0,0,0,-207,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-314,0,0,0,0,
- -88,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-213,0,0,0,0,-80,0,
- 0,0,-233,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,-223,0,0,0,-81,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-350,0,
- 0,0,-82,0,0,0,-224,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-226,0,0,0,-83,
- 0,0,0,-467,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,-455,0,0,0,-52,0,0,0,
- -243,0,-247,0,0,-84,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-259,0,
- 0,-249,0,0,-264,-227,-248,0,0,0,
- 0,-391,0,0,0,0,0,-187,0,0,
- 0,0,-85,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -205,0,0,0,0,0,0,0,-270,0,
- -507,-212,0,0,0,0,-439,0,0,0,
- -421,0,0,0,0,-320,-43,0,-235,0,
- 0,-265,0,0,0,0,0,0,-355,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-266,0,0,0,
- 0,0,0,0,0,-294,0,0,0,0,
- 0,0,0,0,0,0,-276,-215,-254,-271,
- 0,0,0,0,-380,0,0,0,0,0,
- 0,0,0,0,0,-72,-277,0,0,0,
- 0,-122,0,0,0,-242,0,-365,0,0,
- 0,0,-255,0,0,0,0,0,0,0,
- 0,0,0,0,0,-451,0,0,0,0,
- 0,-281,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-408,0,
- -317,-285,0,-328,-286,0,0,0,0,0,
- 0,0,0,0,0,-510,-289,0,0,0,
- 0,0,-290,0,-404,0,0,0,0,-196,
- 0,0,0,-113,0,0,0,-420,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,-238,0,0,0,-228,0,0,0,0,
- 0,0,0,-256,0,0,0,0,-419,-279,
- -241,0,0,0,0,0,0,-303,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -304,0,-272,-297,0,0,0,0,0,0,
- 0,0,0,0,0,-425,0,0,-309,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-494,0,0,0,0,0,-283,
- 0,-232,0,0,0,-310,0,-165,0,0,
- -299,0,0,0,0,0,0,0,0,-300,
- 0,0,0,0,0,0,0,0,0,-268,
- 0,0,0,0,-331,0,0,0,0,0,
- 0,0,0,0,0,-341,-44,-432,0,-107,
- 0,0,0,0,0,-327,0,0,0,0,
- 0,0,0,-352,-287,0,0,0,0,0,
- 0,0,0,0,-386,0,-343,-351,0,0,
- 0,0,0,0,0,0,0,0,0,-358,
- 0,-361,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-381,0,0,0,0,
- 0,-383,0,0,0,-433,0,0,-103,0,
- 0,-377,0,-407,0,-237,0,0,0,0,
- 0,0,0,0,0,0,-384,0,0,-208,
- 0,0,0,0,0,0,0,0,-430,0,
- 0,0,0,0,0,-474,0,0,-260,0,
- 0,0,0,0,0,0,0,0,-128,0,
- 0,0,-184,0,0,0,0,-459,0,-367,
- -385,0,0,0,0,-440,0,-392,0,0,
- 0,-306,-387,0,0,0,0,0,0,0,
- 0,0,0,-325,-429,0,-388,0,0,0,
- 0,0,0,-330,0,0,0,0,0,-394,
- 0,0,-413,0,0,0,0,-396,-399,0,
- 0,0,0,0,0,0,0,0,0,-334,
- 0,0,0,0,0,0,0,-250,-336,0,
- -406,0,0,-416,0,0,-456,0,0,0,
- 0,0,0,0,0,0,-75,0,0,0,
+ 0,0,0,0,-243,0,0,0,0,-80,
+ 0,0,0,-247,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-81,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-303,
+ 0,0,0,-82,0,0,0,-249,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-264,0,0,0,
+ -83,0,0,0,-266,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-76,0,0,0,-417,0,0,0,0,
+ 0,0,0,-281,0,0,0,-52,0,0,
+ 0,-134,0,-267,0,0,-84,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-307,0,0,0,
- 0,0,0,0,0,0,0,-244,0,0,
- 0,0,0,-345,-441,0,-14,-1,0,0,
- 0,0,-411,0,-448,-393,-515,0,0,0,
- 0,0,0,-457,0,0,0,-118,-45,0,
- -353,-46,0,-443,0,0,-511,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-242,
+ 0,0,0,-227,0,-187,0,0,0,-122,
+ 0,0,0,-229,0,-277,-246,0,-121,-128,
+ 0,0,0,-85,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ -278,0,0,0,0,0,0,-238,0,0,
+ 0,0,0,0,0,-369,0,-248,0,0,
+ 0,0,-282,0,0,0,0,0,0,-320,
+ 0,-286,0,0,0,0,0,-287,-295,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-215,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-355,-107,-235,
+ 0,0,0,0,0,0,0,-407,-290,0,
+ 0,0,0,0,-392,0,0,-244,0,0,
+ 0,-291,-305,-230,0,0,0,0,-450,-234,
+ 0,0,0,0,0,-306,0,-458,0,0,
+ 0,0,0,-245,0,0,0,0,-388,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-231,0,0,0,-395,
+ 0,0,0,0,-123,-399,-422,-331,0,0,
+ 0,0,0,-354,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,-233,0,0,0,0,0,-359,-165,
+ 0,0,0,0,0,0,0,-307,-260,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-444,0,
- 0,0,0,0,0,0,0,-140,0,0,
- 0,-119,0,0,-471,0,-378,0,0,0,
- 0,-445,0,-446,0,0,-447,0,0,0,
- 0,0,0,0,0,0,0,0,-126,0,
- 0,0,-452,0,0,0,0,-449,-462,0,
- 0,0,0,0,-379,0,0,0,0,0,
- 0,0,0,0,0,0,0,-466,0,-468,
- -382,0,-500,0,0,0,0,-211,-469,-400,
- 0,-423,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-470,-475,0,0,
- 0,0,-403,0,0,0,0,-121,0,-479,
- 0,0,0,0,0,-485,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -502,0,0,0,0,0,-492,-460,-501,0,
- -364,-123,0,-509,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-514,
- -219,0,-48,0,0,0,0,0,0,0,
+ -14,-439,0,0,0,0,-17,0,0,-312,
+ 0,-313,0,0,0,0,0,0,0,-334,
+ 0,0,0,0,0,-346,0,0,-410,0,
+ 0,-348,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-71,-389,0,0,0,-506,0,
- 0,0,0,0,-354,0,0,0,0,0,
- 0,0,-274,0,0,0,0,0,0,0,
- 0,0,-409,0,0,-453,0,0,0,0,
- -245,0,0,0,-410,0,0,0,0,0,
+ 0,0,0,0,0,-265,0,0,0,0,
+ 0,0,0,0,0,0,0,-364,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-512,0,0,0,0,0,0,0,
- 0,0,0,0,-172,0,0,0,0,-125,
+ 0,0,0,0,-314,-75,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-195,0,0,0,-257,-463,
- -415,0,0,-519,0,-418,0,0,-458,0,
0,0,0,0,0,0,0,0,0,0,
+ -76,0,0,0,-357,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-465,0,
- 0,0,0,0,-252,0,0,0,0,0,
+ 0,0,0,-253,0,-310,0,0,0,0,
+ 0,0,0,0,0,0,-360,0,0,0,
+ -367,-389,0,0,0,0,0,-271,0,-208,
+ 0,0,0,-447,-390,0,0,0,-373,0,
+ 0,0,-329,-432,0,0,0,0,0,-252,
+ 0,0,0,0,-426,0,0,-272,0,0,
+ 0,0,0,0,0,-48,0,0,0,0,
+ -393,0,0,0,-368,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-196,0,
+ 0,0,0,-468,0,-471,0,0,0,0,
+ 0,-211,-274,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-429,0,-275,
+ 0,0,-254,-71,0,0,0,0,0,-302,
+ -443,0,0,0,0,0,0,-125,0,0,
+ 0,0,0,0,0,0,0,-72,0,-375,
+ -255,0,0,-497,0,0,0,0,-394,-400,
0,0,0,0,0,0,0,0,0,0,
- -477,-522,0,0,0,0,0,0,0,0,
- -200,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-189,0,0,0,0,
- -220,-461,0,0,0,0,0,-487,0,0,
- 0,-273,0,0,0,-495,0,0,0,0,
- 0,0,0,0,0,-278,0,0,0,-480,
+ 0,0,0,0,0,0,0,0,0,-140,
+ 0,0,0,0,0,0,0,0,-402,0,
+ -451,0,0,0,0,0,0,0,0,0,
+ 0,-325,0,0,0,0,0,-492,0,-376,
+ 0,0,0,-499,0,-405,0,0,-361,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-259,-398,0,
+ 0,0,0,-452,0,-172,0,0,0,-412,
+ -419,0,0,-279,0,0,0,-420,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-77,0,0,0,0,0,0,0,
+ 0,0,0,-503,-423,0,0,0,0,0,
+ 0,0,0,-299,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-78,0,0,0,0,
+ -396,0,0,0,0,-280,0,-440,-352,0,
+ -257,0,0,0,0,0,0,-103,0,0,
+ 0,0,0,0,0,0,0,-509,0,0,
+ 0,0,0,0,0,0,0,0,-416,-288,
+ 0,0,0,0,-189,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-381,0,0,
+ 0,0,-442,-444,-479,-516,-434,0,0,0,
+ -219,0,0,0,0,0,-403,0,0,0,
+ -504,0,-445,0,0,0,0,0,0,0,
+ 0,-446,0,0,0,0,0,-194,0,0,
+ 0,0,-256,0,0,0,0,0,-448,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-79,0,
+ 0,0,0,-463,0,-519,-220,0,0,0,
+ 0,-465,0,-466,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-298,
+ -300,-316,0,0,0,-467,0,0,0,-404,
+ 0,0,0,0,0,0,0,0,-353,0,
+ 0,0,0,0,0,0,0,0,0,-472,
+ -284,-476,0,0,0,0,-304,0,0,-482,
+ 0,0,0,0,0,0,0,-489,-493,0,
+ 0,0,0,0,0,0,0,0,-77,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-333,-390,0,0,0,0,-360,0,0,
- 0,0,0,0,0,0,0,0,-301,0,
- -21,0,0,0,0,0,0,0,0,0,
+ 0,-78,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-298,0,0,0,0,0,0,0,
- 0,0,0,0,-359,-478,0,-436,0,-484,
- 0,0,-489,0,0,0,0,0,0,-491,
- 0,-437,-499,0,0,0,0,0,0,0,
- 0,-493,0,0,0,0,0,0,0,-194,
- 0,0,0,0,0,0,-497,0,0,0,
- 0,0,0,0,0,0,0,-402,-496,0,
- 0,0,0,-498,0,0,0,0,0,0,
- 0,0,0,0,-503,0,0,0,-516,0,
- 0,0,0,-521,-517,0,0,0,0,0,
- 0,0,-313,0,0,0,0,0,0,0,
+ 0,0,0,0,-79,0,0,0,-498,0,
0,0,0,0,0,0,0,0,0,0,
- -414,0,0,0,0,0,0,0,-258,-520,
- 0,0,0,0,0,0,0,-438,-133,0,
+ 0,0,0,0,0,0,0,-332,0,0,
+ 0,-506,0,0,0,0,0,0,-269,0,
+ 0,0,0,-454,0,0,0,0,0,-511,
+ -205,0,0,0,-336,0,-309,-507,0,0,
+ 0,-424,0,0,0,-483,0,0,-391,0,
+ -461,0,0,0,-133,0,0,0,0,0,
+ 0,-301,0,0,0,0,0,0,0,0,
+ 0,-462,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-371,0,
+ 0,-328,0,-221,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-335,0,0,0,0,
+ -330,0,0,-340,0,0,0,0,0,0,
+ -343,0,0,0,0,0,0,0,0,0,
+ 0,-356,0,0,0,0,-385,0,0,0,
+ 0,0,-428,0,0,-333,0,0,0,0,
+ 0,0,-474,0,0,0,0,0,0,0,
+ 0,0,0,-43,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-431,-295,0,0,0,0,0,
+ -337,-339,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-341,0,0,-358,
+ 0,0,0,0,-386,-387,-406,0,0,0,
+ 0,0,0,0,0,0,0,0,-409,-413,
+ -418,0,0,0,0,0,0,0,-21,0,
0,0,0,0,0,0,0,0,0,0,
- -481,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-206,0,
0,0,0,0,0,0,0,0,0,0,
+ -421,0,0,0,0,0,0,-22,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-23,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,-24,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-22,0,0,0,0,0,0,0,0,
+ 0,0,0,-25,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-23,0,0,0,0,0,0,
+ 0,0,0,0,0,-26,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-24,0,0,0,0,
+ 0,0,0,0,0,0,0,-27,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-25,0,0,
+ 0,0,0,0,0,0,0,0,0,-61,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-26,
0,0,0,0,0,0,0,0,0,0,
+ 0,-73,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-74,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-199,0,0,0,-455,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-501,0,0,
+ 0,0,0,0,0,0,0,0,-19,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-27,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-338,
+ -258,-456,-222,0,0,-414,0,-457,-460,-459,
+ 0,0,0,0,-484,0,-508,-351,0,0,
+ 0,0,0,0,0,0,-475,-481,-477,0,
+ 0,0,0,0,0,0,0,-184,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-61,0,0,0,0,0,0,
+ 0,0,0,-365,0,0,0,0,-486,0,
+ 0,-427,-297,-44,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-488,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-73,0,0,0,0,
+ 0,0,-382,0,0,0,0,-370,0,0,
+ 0,0,0,0,0,0,0,0,0,-321,
+ -496,0,0,0,0,0,-500,0,0,-513,
+ 0,0,0,0,0,0,0,0,-270,0,
+ -490,0,0,0,0,0,0,0,0,-494,
+ 0,-408,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-74,0,0,
+ 0,0,-495,0,0,-518,0,0,0,0,
+ 0,0,0,0,0,0,-514,0,0,0,
+ 0,0,0,-517,0,-417,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-199,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-425,
0,0,0,0,0,0,0,0,0,0,
- 0,-504,0,0,0,0,0,0,0,0,
- 0,0,-19,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-377,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-369,0,0,0,0,0,0,
- 0,0,0,0,-486,0,0,0,0,0,
- -217,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-318,0,0,0,
- 0,0,0,-428,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-221,0,0,0,0,-308,
+ 0,-283,0,0,0,0,0,0,0,0,
+ 0,-431,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-383,0,
+ 0,0,0,0,-45,0,0,0,0,0,
+ 0,0,0,-126,0,0,0,0,0,-228,
0,0,0,0,0,0,0,0,0,0,
- -338,0,0,0,0,0,0,0,0,0,
+ -42,0,-66,0,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,0,0,0,0,0,
- 0,0,-340,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-346,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-370,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-488,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-269,0,-222,0,0,0,0,0,-322,
+ 0,0,0,0,0,0,-378,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-356,0,0,0,-374,
- 0,0,0,0,0,0,-375,0,0,0,
+ 0,0,0,0,-485,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-366,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-395,0,0,0,-424,0,0,0,-412,
+ 0,0,-502,0,0,-372,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-434,0,0,0,0,0,
- 0,0,-490,-42,0,0,0,0,0,0,
+ 0,0,0,-401,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-422,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-66,
- 0,0,0,0,0,0,0,0,-262,0,
- 0,0,0,0,0,0,0,0,-293,0,
- 0,0,0,-472,0,-473,0,0,0,0,
- 0,0,0,0,0,0,0,-282,0,0,
+ 0,0,0,0,0,0,-415,0,0,0,
+ -433,0,0,0,-435,-487,0,0,0,0,
+ 0,-195,0,0,0,0,0,0,0,0,
+ 0,-206,0,0,0,0,0,0,0,-217,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-476,
+ 0,0,0,0,0,0,0,-512,0,0,
+ 0,0,0,0,0,0,-469,0,0,0,
+ 0,0,0,0,0,0,0,-262,0,0,
+ 0,0,0,0,-294,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -505,0,0,0,0,0,0,0,0,0,
+ 0,0,-470,0,0,0,0,-200,0,-473,
+ 0,0,-436,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-437,-478,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0
};
};
public final static short baseCheck[] = BaseCheck.baseCheck;
@@ -527,526 +521,521 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface BaseAction {
public final static char baseAction[] = {
- 169,4,53,72,72,33,33,64,64,38,
- 38,192,192,193,193,194,194,1,1,15,
+ 167,4,48,75,75,33,33,64,64,38,
+ 38,190,190,191,191,192,192,1,1,15,
15,15,15,15,15,15,15,16,16,16,
14,11,11,8,8,8,8,8,8,2,
65,65,5,5,12,12,12,12,43,43,
- 133,133,134,61,61,42,17,17,17,17,
+ 132,132,133,61,61,42,17,17,17,17,
17,17,17,17,17,17,17,17,17,17,
- 17,17,17,17,17,17,135,135,135,115,
- 115,18,18,18,18,18,18,18,18,18,
- 18,18,18,18,19,19,170,170,171,171,
- 172,138,138,139,139,136,136,140,137,137,
+ 17,17,17,17,17,17,134,134,134,112,
+ 112,18,18,18,18,18,18,18,18,18,
+ 18,18,18,18,19,19,168,168,169,169,
+ 170,137,137,138,138,135,135,139,136,136,
20,20,21,22,22,22,24,24,24,24,
25,25,25,26,26,26,27,27,27,27,
27,28,28,28,29,29,30,30,32,32,
34,34,35,35,36,36,41,41,40,40,
40,40,40,40,40,40,40,40,40,40,
- 40,39,31,141,141,98,98,173,173,93,
- 195,195,74,74,74,74,74,74,74,74,
- 74,75,75,75,70,70,59,59,174,174,
- 76,76,76,104,104,175,175,77,77,77,
- 176,176,78,78,78,78,78,79,79,73,
- 73,73,73,73,73,73,48,48,48,48,
- 48,105,105,106,106,49,177,23,23,23,
- 23,23,47,47,88,88,88,88,88,148,
- 148,143,143,143,143,143,144,144,144,145,
- 145,145,146,146,146,147,147,147,89,89,
- 89,89,89,90,90,90,13,13,13,13,
- 13,13,13,13,13,13,13,101,119,119,
- 119,119,119,119,117,117,117,118,118,150,
- 150,149,149,121,121,151,83,83,84,84,
- 86,87,85,51,46,152,152,52,50,82,
- 82,153,153,142,142,122,123,123,71,71,
- 154,154,62,62,62,57,57,56,63,63,
- 68,68,55,55,55,91,91,100,99,99,
- 60,60,58,58,54,54,44,102,102,102,
- 94,94,94,95,95,96,96,96,97,97,
- 107,107,107,109,109,108,108,196,196,92,
- 92,179,179,179,179,179,125,45,45,156,
- 178,178,126,126,126,126,180,180,37,37,
- 116,127,127,127,127,110,110,120,120,120,
- 158,159,159,159,159,159,159,159,159,159,
- 159,183,183,181,181,182,182,160,160,160,
- 160,161,184,112,111,111,185,185,162,162,
- 162,162,103,103,103,186,186,9,9,10,
- 187,187,188,163,155,155,164,164,165,166,
- 166,6,6,7,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,66,69,69,168,
- 168,129,129,130,130,130,130,130,130,3,
- 131,131,128,128,113,113,113,81,67,80,
- 157,157,114,114,189,189,189,132,132,124,
- 124,190,190,169,169,881,39,2075,2057,117,
- 3555,34,931,31,35,929,30,32,2047,29,
- 27,56,1000,112,82,83,113,1009,1512,1060,
- 1051,1135,1127,1211,1169,1246,975,1227,1115,1288,
- 1427,148,277,1941,1068,163,149,1367,39,868,
- 36,1715,3083,34,931,342,35,929,331,39,
- 2497,2317,39,868,36,236,1010,34,931,31,
- 35,929,30,32,862,29,27,56,1000,112,
- 82,83,113,1009,494,1060,1051,1135,1127,1211,
- 1169,1976,390,239,234,235,1376,39,450,2061,
- 4659,4572,336,323,1559,325,278,29,495,319,
- 1475,243,39,1509,47,355,49,46,931,1155,
- 1081,246,249,252,255,2732,331,3641,1251,39,
- 868,36,1685,4039,34,931,31,35,929,65,
- 32,349,1114,977,352,1972,574,1650,3268,3312,
- 3408,3442,3560,3339,1459,39,868,36,2547,1010,
- 34,931,31,35,929,2154,32,862,29,27,
- 56,1000,112,82,83,113,1009,346,1060,1051,
- 1135,1127,1211,1169,1246,1487,1227,941,1288,1427,
- 148,722,1355,1233,514,149,1379,3083,2960,2116,
- 39,281,1708,331,39,1551,389,3083,515,1459,
- 39,868,36,2547,1010,34,931,31,35,929,
- 2154,32,862,29,27,56,1000,112,82,83,
- 113,1009,346,1060,1051,1135,1127,1211,1169,1246,
- 428,1227,1303,1288,1427,148,2547,335,1649,514,
- 149,293,588,2960,1376,39,283,336,2631,3575,
- 443,3130,3138,515,3833,2587,453,510,1109,39,
- 868,36,1694,3308,34,931,31,35,929,63,
- 32,993,2144,732,2762,2196,331,39,286,1459,
- 39,868,36,2547,1010,34,931,31,35,929,
- 2154,32,862,29,27,56,1000,112,82,83,
- 113,1009,346,1060,1051,1135,1127,1211,1169,1246,
- 359,1227,510,1288,1427,148,48,2358,529,514,
- 149,1355,205,2960,364,1717,3083,2225,1757,2851,
- 2196,331,2707,515,1729,39,868,36,2547,1010,
- 34,931,31,35,929,2154,32,862,29,27,
- 56,1000,112,82,83,113,1009,346,1060,1051,
- 1135,1127,1211,1169,1246,440,1227,49,1288,1427,
- 148,1081,1654,2235,514,149,335,3880,2960,975,
- 1000,331,39,1551,389,1376,39,283,515,1868,
- 4361,1928,510,67,1327,39,868,36,3438,4039,
- 34,931,31,35,929,30,32,2322,508,49,
- 2196,3969,3378,684,1525,39,868,36,431,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,113,1009,1442,1060,1051,
- 1135,1127,1211,1169,1246,2150,1227,511,1288,1427,
- 148,457,290,2018,382,149,1295,39,868,36,
- 1962,3308,34,931,31,35,929,62,32,909,
- 1453,39,1551,389,1594,39,868,36,385,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,113,1009,99,1060,1051,
- 1135,1127,1211,1169,1246,356,1227,55,1288,1427,
- 148,62,1517,920,382,149,2317,39,868,36,
- 1984,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,91,383,1715,
- 386,1900,39,868,36,1379,1010,34,931,31,
- 35,929,30,32,862,29,27,56,1000,112,
- 82,83,113,1009,1131,1060,1051,1135,1127,1211,
- 1169,1246,28,1227,2140,1288,1427,148,331,39,
- 295,163,149,331,1558,2387,38,1250,49,975,
- 94,66,1081,108,3686,67,1900,39,868,36,
- 387,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,113,1009,161,
- 1060,1051,1135,1127,1211,1169,1246,1079,1227,68,
- 1288,1427,148,2015,3091,3047,376,149,1900,39,
- 868,36,357,1010,34,931,31,35,929,30,
- 32,862,29,27,56,1000,112,82,83,113,
- 1009,456,1060,1051,1135,1127,1211,1169,1246,358,
- 1227,1711,1288,1427,148,391,424,529,376,149,
- 1931,1715,574,1900,39,868,36,326,1010,34,
- 931,31,35,929,30,32,862,29,27,56,
- 1000,112,82,83,113,1009,1202,1060,1051,1135,
- 1127,1211,1169,1246,75,1227,49,1288,1427,148,
- 739,375,1931,376,149,1840,39,868,36,3619,
- 1010,34,931,31,35,929,30,32,862,29,
- 27,56,1000,112,82,83,113,1009,313,1060,
- 1051,1135,1127,1211,1169,1246,2203,1227,49,1288,
- 1427,148,819,374,2433,382,149,1715,1379,1663,
- 39,868,36,1715,1010,34,931,31,35,929,
- 30,32,862,29,27,56,1000,112,82,83,
- 113,1009,2345,1060,1051,1135,1127,1211,1169,1246,
- 74,1227,403,1288,1427,148,59,49,372,147,
- 149,2586,1900,39,868,36,1715,1010,34,931,
- 31,35,929,30,32,862,29,27,56,1000,
- 112,82,83,113,1009,3090,1060,1051,1135,1127,
- 1211,1169,1246,444,1227,1115,1288,1427,148,93,
- 3986,380,164,149,1900,39,868,36,1715,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,113,1009,3098,1060,1051,
- 1135,1127,1211,1169,1246,444,1227,1016,1288,1427,
- 148,58,327,948,160,149,1900,39,868,36,
- 529,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,113,1009,2000,
- 1060,1051,1135,1127,1211,1169,1246,597,1227,49,
- 1288,1427,148,2836,317,2237,159,149,1900,39,
- 868,36,685,1010,34,931,31,35,929,30,
- 32,862,29,27,56,1000,112,82,83,113,
- 1009,2077,1060,1051,1135,1127,1211,1169,1246,2004,
- 1227,49,1288,1427,148,1104,418,1434,158,149,
- 1900,39,868,36,2150,1010,34,931,31,35,
- 929,30,32,862,29,27,56,1000,112,82,
- 83,113,1009,328,1060,1051,1135,1127,1211,1169,
- 1246,2156,1227,1672,1288,1427,148,2443,953,2141,
- 157,149,1900,39,868,36,2150,1010,34,931,
- 31,35,929,30,32,862,29,27,56,1000,
- 112,82,83,113,1009,1385,1060,1051,1135,1127,
- 1211,1169,1246,1069,1227,49,1288,1427,148,2659,
- 164,1294,156,149,1900,39,868,36,340,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,113,1009,329,1060,1051,
- 1135,1127,1211,1169,1246,428,1227,49,1288,1427,
- 148,675,331,3410,155,149,1900,39,868,36,
- 1715,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,113,1009,1000,
- 1060,1051,1135,1127,1211,1169,1246,516,1227,2097,
- 1288,1427,148,96,4459,929,154,149,1900,39,
- 868,36,1715,1010,34,931,31,35,929,30,
- 32,862,29,27,56,1000,112,82,83,113,
- 1009,1000,1060,1051,1135,1127,1211,1169,1246,2019,
- 1227,1115,1288,1427,148,353,4550,2023,153,149,
- 1900,39,868,36,2239,1010,34,931,31,35,
- 929,30,32,862,29,27,56,1000,112,82,
- 83,113,1009,1385,1060,1051,1135,1127,1211,1169,
- 1246,1886,1227,2006,1288,1427,148,331,39,295,
- 152,149,1900,39,868,36,2669,1010,34,931,
- 31,35,929,30,32,862,29,27,56,1000,
- 112,82,83,113,1009,2043,1060,1051,1135,1127,
- 1211,1169,1246,249,1227,49,1288,1427,148,3158,
- 425,2107,151,149,1900,39,868,36,2107,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,113,1009,595,1060,1051,
- 1135,1127,1211,1169,1246,601,1227,49,1288,1427,
- 148,2639,150,766,150,149,1795,39,868,36,
- 975,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,113,1009,1774,
- 1060,1051,1135,1127,1211,1169,1246,2007,1227,2348,
- 1288,2434,169,2710,1115,1900,39,868,36,4557,
- 1010,34,931,31,35,929,30,32,862,29,
- 27,56,1000,112,82,83,113,1009,3850,1060,
- 1051,1135,1127,1211,1169,1246,76,1227,331,1288,
- 1427,148,4290,77,1969,145,149,331,39,2387,
- 2462,331,39,1551,389,2224,39,868,36,2642,
- 1010,34,931,31,35,929,30,32,862,29,
- 27,56,1000,112,82,83,113,1009,2042,1060,
- 1051,1135,1127,1211,1169,1246,1457,1227,55,1288,
- 1427,148,435,1517,2814,194,149,2317,39,868,
- 36,1512,1010,34,931,31,35,929,30,32,
- 862,29,27,56,1000,112,82,83,113,1009,
- 596,1060,1051,1135,1127,1211,1169,1246,502,1227,
- 946,1288,2434,169,2317,39,868,36,753,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,113,1009,469,1060,1051,
- 1135,1127,1211,1169,1246,287,1227,2551,1288,2434,
- 169,1251,39,868,36,1894,4039,34,931,31,
- 35,929,64,32,975,2494,2317,39,868,36,
- 294,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,113,1009,557,
- 1060,1051,1135,1127,1211,1169,1246,821,1227,865,
- 1288,2434,169,2317,39,868,36,2974,1010,34,
- 931,31,35,929,30,32,862,29,27,56,
- 1000,112,82,83,113,1009,1622,1060,1051,1135,
- 1127,1211,1169,1246,780,1227,57,1288,2434,169,
- 1445,39,868,36,894,1715,34,931,44,35,
- 929,331,39,1551,389,2317,39,868,36,420,
- 1010,34,931,31,35,929,30,32,862,29,
- 27,56,1000,112,82,83,113,1009,2850,1060,
- 1051,1135,1127,1211,1169,1246,1456,1227,430,1288,
- 2434,169,2362,39,868,36,419,1010,34,931,
- 31,35,929,30,32,862,29,27,56,1000,
- 112,82,83,113,1009,1232,1060,1051,1135,1127,
- 1211,1169,1246,1440,1227,939,1288,2434,169,1445,
- 39,868,36,1108,1715,34,931,2377,35,929,
- 331,39,1551,389,2317,39,868,36,422,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,113,1009,2975,1060,1051,
- 1135,1127,1211,1169,1246,49,1227,429,2028,3503,
- 2071,2317,39,868,36,3397,1010,34,931,31,
- 35,929,30,32,862,29,27,56,1000,112,
- 82,83,113,1009,1715,1060,1051,1135,1127,1211,
- 1169,1246,1279,2018,2317,39,868,36,401,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,113,1009,73,1060,1051,
- 1135,1127,1211,2010,2317,39,868,36,1738,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,113,1009,2434,1060,1051,
- 1135,1127,1887,2317,39,868,36,2303,1010,34,
- 931,31,35,929,30,32,862,29,27,56,
- 1000,112,82,83,113,1009,1512,1060,1051,1135,
- 1934,2317,39,868,36,405,1010,34,931,31,
- 35,929,30,32,862,29,27,56,1000,112,
- 82,83,113,1009,977,1060,1051,1135,1968,2317,
- 39,868,36,1131,1010,34,931,31,35,929,
- 30,32,862,29,27,56,1000,112,82,83,
- 113,1009,1784,1060,1051,1803,2317,39,868,36,
- 288,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,113,1009,2018,
- 1060,1051,1810,2317,39,868,36,1895,1010,34,
- 931,31,35,929,30,32,862,29,27,56,
- 1000,112,82,83,113,1009,1885,1060,1051,1837,
- 2317,39,868,36,2575,1010,34,931,31,35,
- 929,30,32,862,29,27,56,1000,112,82,
- 83,113,1009,1017,1060,1051,1845,2407,39,1551,
- 389,1945,3079,1220,392,424,2317,39,868,36,
- 241,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,113,1009,49,
- 1060,1852,1472,3809,277,1914,1138,1345,39,868,
- 36,4005,2434,34,931,342,35,929,331,39,
- 1889,1847,3700,2317,39,868,36,236,1010,34,
- 931,31,35,929,30,32,862,29,27,56,
- 1000,112,82,83,113,1009,95,1060,1853,108,
- 304,331,39,1551,389,239,234,235,521,1131,
- 4659,2668,975,323,1559,325,3069,1987,278,318,
- 1475,331,39,1551,389,355,975,49,2803,1308,
- 2707,2547,2390,246,249,252,255,2732,55,1445,
- 39,868,36,52,1685,34,931,343,35,929,
- 346,347,1114,977,352,332,338,1473,449,2797,
- 3268,3312,3408,3442,3560,3339,967,39,868,36,
- 2784,2960,34,931,342,35,929,2028,1356,1715,
- 1131,1600,2547,3083,330,1223,39,868,36,4443,
- 3083,34,931,342,35,929,49,1726,103,354,
- 1081,2587,1217,39,2233,1553,2098,3666,1445,39,
- 868,36,72,1715,34,931,2592,35,929,4659,
- 394,424,323,1559,325,521,2435,161,318,1475,
- 1081,520,2033,335,355,2074,369,2966,4659,55,
- 335,323,1559,325,1517,2598,71,318,1475,2641,
- 289,1972,2504,2547,1356,2086,1296,161,2547,3083,
- 347,1114,977,352,205,3846,1017,2233,1692,3378,
- 363,2631,233,2326,2524,2434,4421,2587,1991,2727,
- 331,39,1551,389,859,2244,2553,2582,2130,39,
- 450,393,424,4572,210,219,3798,209,216,217,
- 218,220,331,39,2387,280,1191,311,315,335,
- 2547,4649,1511,225,1715,211,213,277,2687,177,
- 49,1355,221,535,2781,523,3083,2805,1591,233,
- 212,214,215,296,297,298,299,588,3161,50,
- 2358,2561,233,1778,1715,577,363,70,3933,1937,
- 161,1304,406,2940,4004,3059,2657,185,3299,2145,
- 2547,2244,2553,2582,208,219,3798,207,216,217,
- 218,220,407,408,1987,2687,2910,3124,174,233,
- 1775,279,2092,39,284,3083,1760,2489,1951,173,
- 2762,1715,2708,188,172,175,176,177,178,179,
- 1715,210,219,3798,209,216,217,218,220,2585,
- 1430,39,868,36,3227,2252,34,931,342,35,
- 929,354,211,213,61,2687,2085,49,2749,221,
- 1961,2547,2547,60,861,2910,1715,212,214,215,
- 296,297,298,299,975,49,1679,3682,402,4530,
- 346,233,447,3130,3138,1115,355,2419,1715,100,
- 4580,4004,3088,4659,409,411,320,2889,325,326,
- 2439,2960,2413,210,219,3798,209,216,217,218,
- 220,1608,347,1114,977,352,2592,558,520,4522,
- 1692,107,2415,3096,211,213,2765,2687,355,49,
- 2547,221,1715,1081,1715,426,2092,39,281,212,
- 214,215,296,297,298,299,104,2471,102,233,
- 1022,39,1551,389,347,1114,977,352,2916,1512,
- 161,2641,345,4004,3349,3380,2435,3115,2020,1138,
- 535,210,219,3798,209,216,217,218,220,419,
- 39,1551,389,331,39,1551,389,277,1512,3860,
- 1017,2371,211,213,3102,2687,1,161,1017,221,
- 535,3696,1887,912,185,3299,1220,212,214,215,
- 296,297,298,299,49,2434,55,2595,3495,233,
- 55,1517,2243,302,49,1517,2516,161,4546,3069,
- 2472,4004,3580,2410,185,3299,200,2547,2526,2569,
- 2810,208,219,3798,207,216,217,218,220,379,
- 49,2551,309,308,3441,174,2587,379,2436,49,
- 186,2525,2547,1262,2573,78,173,1715,337,338,
- 189,172,175,176,177,178,179,2317,39,868,
- 36,2587,1010,34,931,31,35,929,30,32,
- 862,29,27,56,1000,112,82,83,113,1009,
- 448,1719,2317,39,868,36,2622,1010,34,931,
- 31,35,929,30,32,862,29,27,56,1000,
- 112,82,83,113,1009,502,1727,1084,39,2956,
- 36,4443,3083,34,931,342,35,929,331,2782,
- 2387,80,4603,201,1778,2636,377,1947,1384,3933,
- 363,2547,1081,1115,3586,265,2455,2686,4595,535,
- 2849,1081,500,501,2440,2874,2553,2582,2563,49,
- 346,49,49,2547,2651,726,2547,1017,233,161,
- 4659,243,335,323,1559,325,161,533,161,318,
- 1475,717,346,185,3299,346,167,527,1332,2434,
- 208,219,3798,207,216,217,218,220,507,39,
- 1551,389,940,2960,174,353,2960,49,4421,535,
- 187,1085,2590,1635,2675,173,1677,2676,236,3398,
- 172,175,176,177,178,179,522,184,233,2465,
- 39,1551,389,2434,3079,55,161,1679,2690,1512,
- 1517,1459,242,185,3299,2271,244,234,235,3898,
- 208,219,3798,207,216,217,218,220,1581,3050,
- 2702,49,236,441,174,2779,277,535,1505,89,
- 49,203,2562,3083,4576,173,2547,415,2987,181,
- 172,175,176,177,178,179,233,2652,1871,236,
- 248,234,235,49,161,346,427,2886,957,2290,
- 2637,185,3299,301,453,528,2083,539,208,219,
- 3798,207,216,217,218,220,2960,240,234,235,
- 3960,529,174,336,439,535,531,2707,1715,2681,
- 278,2410,983,173,2714,2547,355,192,172,175,
- 176,177,178,179,233,247,250,253,256,2732,
- 1849,49,161,1324,2587,1081,1685,1081,236,185,
- 3299,381,349,1114,977,352,208,219,3798,207,
- 216,217,218,220,1324,1966,39,395,1081,617,
- 174,5199,161,535,165,2436,251,234,235,2547,
- 2314,173,236,1308,2707,3460,172,175,176,177,
- 178,179,233,49,5199,165,2434,2958,2587,5199,
- 161,1639,39,2387,2785,49,5199,185,3299,3026,
- 254,234,235,502,208,219,3798,207,216,217,
- 218,220,5199,1643,39,868,36,4005,174,34,
- 931,342,35,929,202,1789,39,1551,389,173,
- 1098,1313,5199,197,172,175,176,177,178,179,
- 499,501,3264,5199,5199,331,39,1551,389,1324,
- 1512,49,1398,1081,705,3848,49,363,535,49,
- 2647,5199,55,1308,5199,3164,4659,1517,1501,323,
- 1559,325,3032,2553,2582,318,1475,233,5199,3103,
- 165,355,55,5199,524,161,2810,1517,3036,2434,
- 236,5199,185,3299,289,1639,39,2387,280,208,
- 219,3798,207,216,217,218,220,347,1114,977,
- 352,2434,793,174,300,525,535,5199,257,234,
- 235,49,2406,2727,173,2547,5199,307,191,172,
- 175,176,177,178,179,233,771,39,1551,389,
- 5199,49,49,161,346,1081,954,2921,1715,206,
- 185,3299,331,39,2387,285,1510,208,219,3798,
- 207,216,217,218,220,2960,331,39,2387,282,
- 49,174,161,55,2904,2155,5199,5199,1517,53,
- 2709,3373,173,5199,5199,5199,199,172,175,176,
- 177,178,179,2317,39,868,36,2912,1010,34,
- 931,31,35,929,30,32,862,29,27,56,
- 1000,112,82,83,113,1761,2317,39,868,36,
- 384,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,113,1763,2317,
- 39,868,36,5199,1010,34,931,31,35,929,
- 30,32,862,29,27,56,1000,112,82,83,
- 113,1795,2841,1966,39,395,2547,5199,1991,39,
- 868,36,2715,5199,34,931,342,35,929,1138,
- 5199,2317,1558,868,1593,233,1010,34,931,31,
- 35,929,30,32,862,29,27,56,1000,112,
- 82,83,90,331,39,2387,2945,210,219,3798,
- 209,216,217,218,220,2625,2434,5199,2667,2547,
- 2434,4659,2547,1715,320,2889,325,5199,211,213,
- 49,2687,49,2611,4312,518,2547,3543,233,3069,
- 5199,2587,1715,212,214,215,296,297,298,299,
- 419,39,1551,389,204,346,3431,1715,303,5199,
- 210,219,3798,209,216,217,218,220,2857,1966,
- 39,395,2547,3206,1715,3489,2960,5199,334,338,
- 5199,211,213,5199,2687,2434,506,55,517,2434,
- 2796,233,1517,53,2434,1715,212,214,215,296,
- 297,298,299,1659,39,1551,389,3277,5199,5199,
- 502,816,5199,210,219,3798,209,216,217,218,
- 220,2873,3102,3257,5199,2547,5199,226,3924,1324,
- 1715,5199,198,1081,211,213,5199,2687,49,381,
- 55,310,2547,2547,233,1517,53,499,501,212,
- 214,215,296,297,298,299,507,39,1551,389,
- 165,346,346,3642,733,5199,210,219,3798,209,
- 216,217,218,220,2733,1355,5199,5199,2547,3444,
- 3083,5199,2960,865,5199,5199,3368,211,213,5199,
- 2687,49,504,55,496,2547,5199,233,1517,53,
- 5199,5199,212,214,215,296,297,298,299,331,
- 39,1551,389,5199,346,5199,5199,2738,5199,210,
- 219,3798,209,216,217,218,220,2930,5199,5199,
- 335,5199,5199,5199,5199,2960,5199,5199,5199,5199,
- 211,213,5199,2687,5199,532,55,222,5199,5199,
- 5199,1517,920,5199,5199,212,214,215,296,297,
- 298,299,2317,39,868,36,577,1010,34,931,
- 31,35,929,30,32,862,29,27,56,1000,
- 112,82,83,89,2317,39,868,36,5199,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,88,2317,39,868,36,
- 1637,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,87,2317,39,
- 868,36,5199,1010,34,931,31,35,929,30,
- 32,862,29,27,56,1000,112,82,83,86,
- 2317,39,868,36,5199,1010,34,931,31,35,
- 929,30,32,862,29,27,56,1000,112,82,
- 83,85,2317,39,868,36,5199,1010,34,931,
- 31,35,929,30,32,862,29,27,56,1000,
- 112,82,83,84,2175,39,868,36,5199,1010,
- 34,931,31,35,929,30,32,862,29,27,
- 56,1000,112,82,83,110,2317,39,868,36,
- 5199,1010,34,931,31,35,929,30,32,862,
- 29,27,56,1000,112,82,83,115,2317,39,
- 868,36,5199,1010,34,931,31,35,929,30,
- 32,862,29,27,56,1000,112,82,83,114,
- 2317,39,868,36,5199,1010,34,931,31,35,
- 929,30,32,862,29,27,56,1000,112,82,
- 83,111,1570,39,868,36,4443,5199,34,931,
- 342,35,929,2272,39,868,36,5199,1010,34,
- 931,31,35,929,30,32,862,29,27,56,
- 1000,92,82,83,1585,39,2956,36,4443,5199,
- 34,931,342,35,929,2680,5199,5199,5199,2547,
- 5199,331,39,1551,389,4659,5199,5199,323,1559,
- 325,5199,5199,5199,318,1475,5199,1324,346,5199,
- 5199,1081,5199,1296,1978,39,868,36,4443,5199,
- 34,931,342,35,929,5199,5199,4659,55,3863,
- 323,1559,325,1517,729,49,318,1475,165,1081,
- 1978,39,868,36,4443,1332,34,931,342,35,
- 929,1099,39,868,36,5199,3083,34,931,342,
- 35,929,5199,5199,311,315,161,4659,5199,5199,
- 323,1559,325,1355,2743,5199,318,1475,3083,5199,
- 5199,5199,5199,5199,3919,1296,5199,5199,5199,1659,
- 39,1551,389,4659,5199,3161,323,1559,325,5199,
- 5199,5199,318,1475,4659,2988,336,323,1559,325,
- 5199,2966,5199,321,1475,1099,39,868,36,5199,
- 3083,34,931,342,35,929,55,5199,335,5199,
- 5199,1517,53,5199,416,2987,312,315,1978,39,
- 868,36,4443,5199,34,931,342,35,929,5199,
- 921,5199,1267,5199,49,5199,2547,4649,1081,5199,
- 1138,5199,5199,5199,4485,5199,5199,5199,4659,5199,
- 336,323,1559,325,3904,233,1138,319,1475,5199,
- 1659,39,1551,389,5199,161,5199,1659,39,1551,
- 389,4659,5199,2844,323,1559,325,1304,406,2940,
- 318,1475,1659,39,1551,389,1138,5199,5199,3439,
- 2119,39,1551,389,5199,5199,5199,55,407,408,
- 3069,2687,1517,53,55,2220,39,1551,389,1517,
- 53,5199,5199,2524,49,5199,3069,535,535,55,
- 5199,2161,5199,5199,1517,53,5199,55,2250,5199,
- 5199,5199,1517,53,1324,2585,346,346,1081,3271,
- 338,5199,55,2651,161,161,3069,1517,53,5199,
- 49,1118,193,1307,535,3317,338,4508,2960,331,
- 39,1551,389,5199,5199,165,1767,5199,1221,331,
- 39,1551,389,346,49,5199,49,5199,535,5199,
- 535,161,5199,5199,5199,3589,338,5199,49,1079,
- 409,412,1081,5199,2960,5199,55,346,5199,346,
- 5199,1517,1669,5199,1356,161,55,161,5199,5199,
- 49,1517,1711,193,535,193,5199,195,4508,161,
- 4508,49,5199,5199,5199,1081,5199,2656,5199,5199,
- 5199,5199,3167,346,5199,5199,5199,5199,5199,5199,
- 5199,161,5199,5199,5199,5199,5199,5199,5199,193,
- 5199,5199,161,5199,4508,5199,5199,5199,5199,5199,
- 3925,5199,5199,5199,5199,5199,5199,5199,5199,5199,
- 5199,5199,5199,5199,5199,5199,5199,5199,3678,5199,
- 3853,5199,5199,5199,5199,5199,5199,5199,3915,5199,
- 5199,5199,5199,5199,5199,5199,5199,5199,5199,5199,
- 5199,5199,5199,5199,5199,5199,5199,5199,5199,5199,
- 5199,5199,5199,5199,3872,5199,0,43,5217,0,
- 43,5216,0,949,33,0,437,1256,0,451,
- 1298,0,42,5217,0,42,5216,0,2493,131,
- 0,1,441,0,455,919,0,454,1129,0,
- 949,45,0,646,97,0,949,388,0,39,
- 37,0,36,38,0,43,1123,0,1,568,
- 0,1,5475,0,1,5474,0,1,5473,0,
- 1,5472,0,1,5471,0,1,5470,0,1,
- 5469,0,1,5468,0,1,5467,0,1,5466,
- 0,1,5465,0,43,1,5217,0,43,1,
- 5216,0,641,1,0,5437,245,0,5436,245,
- 0,5540,245,0,5539,245,0,5464,245,0,
- 5463,245,0,5462,245,0,5461,245,0,5460,
- 245,0,5459,245,0,5458,245,0,5457,245,
- 0,5475,245,0,5474,245,0,5473,245,0,
- 5472,245,0,5471,245,0,5470,245,0,5469,
- 245,0,5468,245,0,5467,245,0,5466,245,
- 0,5465,245,0,43,245,5217,0,43,245,
- 5216,0,5241,245,0,54,5217,0,54,5216,
- 0,49,5239,0,49,41,0,5217,54,0,
- 5216,54,0,2493,133,0,2493,132,0,5205,
- 1,0,5204,1,0,241,3463,0,389,36,
- 0,36,389,0,388,33,0,33,388,0,
- 30,516,0,5532,442,0,1347,442,0,1,
- 98,0,41,53,0,5241,1,0,43,1,
- 0,53,41,0,498,2662,0,5241,232,1,
- 0,43,232,1,0,232,414,0,41,5217,
- 0,41,5216,0,5239,51,0,51,41,0,
- 5217,40,0,5216,40,0,1,5217,2,0,
- 1,5216,2,0,41,5217,2,0,41,5216,
- 2,0,5209,404,0,5208,404,0,1,4410,
- 0,1,1123,0,1,3247,0,232,413,0,
- 5532,101,0,1347,101,0,39,79,0,3114,
- 322,0,1,5532,0,1,1347,0,43,1,
- 5217,2,0,43,1,5216,2,0,43,5217,
- 2,0,43,5216,2,0,282,3579,0,498,
- 3845,0,232,1,0,1,3485,0,1,3793,
- 0,5207,1,0,232,224,0,232,1,3274,
- 0,5209,232,0,5208,232,0,232,223,0,
- 3379,232,0,8,10,0,190,3584,0
+ 40,39,31,140,140,96,96,171,171,91,
+ 193,193,76,76,76,76,76,76,76,76,
+ 76,77,77,77,67,67,59,59,172,172,
+ 78,78,78,102,102,173,173,79,79,79,
+ 174,174,80,80,80,80,80,81,81,83,
+ 83,83,83,83,83,83,49,49,49,49,
+ 49,113,113,114,114,50,175,23,23,23,
+ 23,23,47,47,86,86,86,86,86,147,
+ 147,142,142,142,142,142,143,143,143,144,
+ 144,144,145,145,145,146,146,146,87,87,
+ 87,87,87,88,88,88,13,13,13,13,
+ 13,13,13,13,13,13,13,99,118,118,
+ 118,118,118,118,116,116,116,117,117,149,
+ 149,148,148,120,120,103,71,71,72,73,
+ 52,46,150,150,53,51,85,85,151,151,
+ 141,141,121,122,122,68,68,152,152,62,
+ 62,62,57,57,56,63,63,66,66,55,
+ 55,55,89,89,98,97,97,60,60,58,
+ 58,54,54,44,100,100,100,92,92,92,
+ 93,93,94,94,94,95,95,104,104,104,
+ 106,106,105,105,194,194,90,90,177,177,
+ 177,177,177,124,45,45,154,176,176,125,
+ 125,125,125,178,178,37,37,115,126,126,
+ 126,126,107,107,119,119,119,156,157,157,
+ 157,157,157,157,157,157,157,157,157,181,
+ 181,179,179,180,180,158,158,158,158,159,
+ 182,109,108,108,183,183,160,160,160,160,
+ 101,101,101,184,184,9,9,10,185,185,
+ 186,161,153,153,162,162,163,164,164,6,
+ 6,7,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,69,74,74,166,166,128,
+ 128,129,129,129,129,129,129,3,130,130,
+ 127,127,110,110,110,84,70,82,155,155,
+ 111,111,187,187,187,131,131,123,123,188,
+ 188,167,167,881,39,2083,2043,2084,3196,34,
+ 1036,31,35,991,30,32,2033,29,27,56,
+ 1094,112,82,83,113,1117,29,1172,1164,1243,
+ 1201,1277,1251,1328,1156,1320,1300,1421,1447,148,
+ 277,1941,1222,163,149,400,3402,1855,39,968,
+ 36,1541,1076,34,1036,339,35,991,2359,2277,
+ 39,968,36,236,1001,34,1036,31,35,991,
+ 30,32,899,29,27,56,1094,112,82,83,
+ 113,1117,1119,1172,1164,1243,1201,1277,1962,239,
+ 234,235,1946,2207,1074,4605,1941,3348,2528,1923,
+ 387,3402,278,320,1235,322,1029,39,283,315,
+ 1125,4542,236,929,2061,3631,1882,2628,246,249,
+ 252,255,2570,336,3673,941,39,968,36,1657,
+ 3130,34,1036,31,35,991,63,32,248,234,
+ 235,1681,2905,572,1429,719,582,2579,2755,3088,
+ 4334,1420,39,968,36,2528,1001,34,1036,31,
+ 35,991,2138,32,899,29,27,56,1094,112,
+ 82,83,113,1117,343,1172,1164,1243,1201,1277,
+ 1251,1328,353,1320,360,1421,1447,148,493,2524,
+ 1069,512,149,2524,1110,2679,2633,2905,3400,2424,
+ 2478,425,243,420,1678,513,1420,39,968,36,
+ 2528,1001,34,1036,31,35,991,2138,32,899,
+ 29,27,56,1094,112,82,83,113,1117,343,
+ 1172,1164,1243,1201,1277,1251,1328,492,1320,929,
+ 1421,1447,148,1029,39,283,512,149,4560,236,
+ 2679,1942,39,1531,47,2067,424,46,1036,67,
+ 513,508,1411,39,968,36,1503,3130,34,1036,
+ 31,35,991,62,32,244,234,235,2130,2832,
+ 1577,2139,3575,1420,39,968,36,2528,1001,34,
+ 1036,31,35,991,2138,32,899,29,27,56,
+ 1094,112,82,83,113,1117,343,1172,1164,1243,
+ 1201,1277,1251,1328,455,1320,508,1421,1447,148,
+ 3551,117,1699,512,149,681,356,2679,1745,2451,
+ 39,281,1108,2170,527,1540,2139,513,1690,39,
+ 968,36,2528,1001,34,1036,31,35,991,2138,
+ 32,899,29,27,56,1094,112,82,83,113,
+ 1117,343,1172,1164,1243,1201,1277,1251,1328,1992,
+ 1320,929,1421,1447,148,244,438,1119,512,149,
+ 1927,1678,2679,336,1547,2226,38,48,2225,2378,
+ 39,284,513,508,3234,929,66,1095,39,968,
+ 36,354,4552,34,1036,31,35,991,30,32,
+ 2217,506,2655,2139,28,1486,39,968,36,2024,
+ 1001,34,1036,31,35,991,30,32,899,29,
+ 27,56,1094,112,82,83,113,1117,1911,1172,
+ 1164,1243,1201,1277,1251,1328,454,1320,509,1421,
+ 1447,148,336,2576,3053,379,149,1012,39,968,
+ 36,2119,4552,34,1036,31,35,991,65,32,
+ 3976,1337,39,1545,386,1560,39,968,36,382,
+ 1001,34,1036,31,35,991,30,32,899,29,
+ 27,56,1094,112,82,83,113,1117,99,1172,
+ 1164,1243,1201,1277,1251,1328,2196,1320,55,1421,
+ 1447,148,1678,1539,1051,379,149,2277,39,968,
+ 36,1637,1001,34,1036,31,35,991,30,32,
+ 899,29,27,56,1094,112,82,83,91,380,
+ 383,1865,39,968,36,75,1001,34,1036,31,
+ 35,991,30,32,899,29,27,56,1094,112,
+ 82,83,113,1117,1925,1172,1164,1243,1201,1277,
+ 1251,1328,290,1320,1735,1421,1447,148,1607,4068,
+ 1607,163,149,4068,451,4068,2134,1177,1345,336,
+ 39,2302,1071,3158,416,2601,1865,39,968,36,
+ 384,1001,34,1036,31,35,991,30,32,899,
+ 29,27,56,1094,112,82,83,113,1117,161,
+ 1172,1164,1243,1201,1277,1251,1328,531,1320,333,
+ 1421,1447,148,3431,238,332,373,149,1865,39,
+ 968,36,1956,1001,34,1036,31,35,991,30,
+ 32,899,29,27,56,1094,112,82,83,113,
+ 1117,325,1172,1164,1243,1201,1277,1251,1328,1104,
+ 1320,2005,1421,1447,148,336,39,286,373,149,
+ 2581,572,1865,39,968,36,1678,1001,34,1036,
+ 31,35,991,30,32,899,29,27,56,1094,
+ 112,82,83,113,1117,2046,1172,1164,1243,1201,
+ 1277,1251,1328,67,1320,100,1421,1447,148,74,
+ 372,1744,373,149,1801,39,968,36,1470,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,866,1172,1164,
+ 1243,1201,1277,1251,1328,556,1320,117,1421,1447,
+ 148,736,371,766,379,149,398,1624,39,968,
+ 36,326,1001,34,1036,31,35,991,30,32,
+ 899,29,27,56,1094,112,82,83,113,1117,
+ 1148,1172,1164,1243,1201,1277,1251,1328,38,1320,
+ 117,1421,1447,148,813,117,369,147,149,2564,
+ 1865,39,968,36,2581,1001,34,1036,31,35,
+ 991,30,32,899,29,27,56,1094,112,82,
+ 83,113,1117,3100,1172,1164,1243,1201,1277,1251,
+ 1328,442,1320,1607,1421,1447,148,766,4068,377,
+ 164,149,1865,39,968,36,1678,1001,34,1036,
+ 31,35,991,30,32,899,29,27,56,1094,
+ 112,82,83,113,1117,76,1172,1164,1243,1201,
+ 1277,1251,1328,1926,1320,1607,1421,1447,148,59,
+ 4068,225,160,149,1865,39,968,36,332,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,1170,1172,1164,
+ 1243,1201,1277,1251,1328,940,1320,117,1421,1447,
+ 148,4340,3052,1499,159,149,1865,39,968,36,
+ 332,1001,34,1036,31,35,991,30,32,899,
+ 29,27,56,1094,112,82,83,113,1117,77,
+ 1172,1164,1243,1201,1277,1251,1328,3189,1320,117,
+ 1421,1447,148,2746,3528,442,158,149,1865,39,
+ 968,36,2290,1001,34,1036,31,35,991,30,
+ 32,899,29,27,56,1094,112,82,83,113,
+ 1117,2241,1172,1164,1243,1201,1277,1251,1328,596,
+ 1320,1607,1421,1447,148,2286,4068,1107,157,149,
+ 1865,39,968,36,2290,1001,34,1036,31,35,
+ 991,30,32,899,29,27,56,1094,112,82,
+ 83,113,1117,1223,1172,1164,1243,1201,1277,1251,
+ 1328,1111,1320,860,1421,1447,148,2783,2105,314,
+ 156,149,1865,39,968,36,332,1001,34,1036,
+ 31,35,991,30,32,899,29,27,56,1094,
+ 112,82,83,113,1117,2350,1172,1164,1243,1201,
+ 1277,1251,1328,518,1320,117,1421,1447,148,2680,
+ 4437,2495,155,149,1865,39,968,36,1678,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,1482,1172,1164,
+ 1243,1201,1277,1251,1328,518,1320,1714,1421,1447,
+ 148,93,336,3432,154,149,1865,39,968,36,
+ 1678,1001,34,1036,31,35,991,30,32,899,
+ 29,27,56,1094,112,82,83,113,1117,2058,
+ 1172,1164,1243,1201,1277,1251,1328,1988,1320,3331,
+ 1421,1447,148,58,2335,1991,153,149,1865,39,
+ 968,36,929,1001,34,1036,31,35,991,30,
+ 32,899,29,27,56,1094,112,82,83,113,
+ 1117,2373,1172,1164,1243,1201,1277,1251,1328,1935,
+ 1320,117,1421,1447,148,588,1980,1981,152,149,
+ 1865,39,968,36,2134,1001,34,1036,31,35,
+ 991,30,32,899,29,27,56,1094,112,82,
+ 83,113,1117,72,1172,1164,1243,1201,1277,1251,
+ 1328,243,1320,244,1421,1447,148,57,3634,419,
+ 151,149,1865,39,968,36,2134,1001,34,1036,
+ 31,35,991,30,32,899,29,27,56,1094,
+ 112,82,83,113,1117,519,1172,1164,1243,1201,
+ 1277,1251,1328,595,1320,590,1421,1447,148,2378,
+ 39,281,150,149,1756,39,968,36,1300,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,947,1172,1164,
+ 1243,1201,1277,1251,1328,678,1320,1078,1421,2257,
+ 169,1865,39,968,36,1678,1001,34,1036,31,
+ 35,991,30,32,899,29,27,56,1094,112,
+ 82,83,113,1117,3204,1172,1164,1243,1201,1277,
+ 1251,1328,287,1320,2372,1421,1447,148,96,328,
+ 2636,145,149,336,39,2226,2267,336,39,1545,
+ 386,2187,39,968,36,2233,1001,34,1036,31,
+ 35,991,30,32,899,29,27,56,1094,112,
+ 82,83,113,1117,214,1172,1164,1243,1201,1277,
+ 1251,1328,1810,1320,55,1421,1447,148,433,1539,
+ 564,194,149,2277,39,968,36,1300,1001,34,
+ 1036,31,35,991,30,32,899,29,27,56,
+ 1094,112,82,83,113,1117,73,1172,1164,1243,
+ 1201,1277,1251,1328,1552,1320,1793,1421,2257,169,
+ 2277,39,968,36,401,1001,34,1036,31,35,
+ 991,30,32,899,29,27,56,1094,112,82,
+ 83,113,1117,2401,1172,1164,1243,1201,1277,1251,
+ 1328,288,1320,2512,1421,2257,169,1012,39,968,
+ 36,3419,4552,34,1036,31,35,991,64,32,
+ 2277,39,968,36,294,1001,34,1036,31,35,
+ 991,30,32,899,29,27,56,1094,112,82,
+ 83,113,1117,2455,1172,1164,1243,1201,1277,1251,
+ 1328,2405,1320,2429,1421,2257,169,2277,39,968,
+ 36,2935,1001,34,1036,31,35,991,30,32,
+ 899,29,27,56,1094,112,82,83,113,1117,
+ 2534,1172,1164,1243,1201,1277,1251,1328,2596,1320,
+ 2572,1421,2257,169,1982,39,968,36,1851,1676,
+ 34,1036,44,35,991,1678,1793,2277,39,968,
+ 36,418,1001,34,1036,31,35,991,30,32,
+ 899,29,27,56,1094,112,82,83,113,1117,
+ 2582,1172,1164,1243,1201,1277,1251,1328,350,1320,
+ 890,1421,2257,169,2322,39,968,36,417,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,2155,1172,1164,
+ 1243,1201,1277,1251,1328,2294,1320,2595,1421,2257,
+ 169,1982,39,968,36,990,2555,34,1036,2232,
+ 35,991,2393,929,2277,39,968,36,420,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,1979,1172,1164,
+ 1243,1201,1277,1251,1328,117,1320,2597,2014,624,
+ 402,2277,39,968,36,3406,1001,34,1036,31,
+ 35,991,30,32,899,29,27,56,1094,112,
+ 82,83,113,1117,1678,1172,1164,1243,1201,1277,
+ 1251,1328,2614,2004,2277,39,968,36,327,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,3256,1172,1164,
+ 1243,1201,1277,1251,1954,2277,39,968,36,62,
+ 1001,34,1036,31,35,991,30,32,899,29,
+ 27,56,1094,112,82,83,113,1117,2393,1172,
+ 1164,1243,1201,1877,2277,39,968,36,929,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,1300,1172,1164,
+ 1243,1914,2277,39,968,36,301,1001,34,1036,
+ 31,35,991,30,32,899,29,27,56,1094,
+ 112,82,83,113,1117,1472,1172,1164,1243,1920,
+ 2277,39,968,36,1342,1001,34,1036,31,35,
+ 991,30,32,899,29,27,56,1094,112,82,
+ 83,113,1117,103,1172,1164,1783,2277,39,968,
+ 36,299,1001,34,1036,31,35,991,30,32,
+ 899,29,27,56,1094,112,82,83,113,1117,
+ 1637,1172,1164,1791,2277,39,968,36,1853,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,1863,1172,1164,
+ 1799,2277,39,968,36,2618,1001,34,1036,31,
+ 35,991,30,32,899,29,27,56,1094,112,
+ 82,83,113,1117,2621,1172,1164,1833,2367,39,
+ 1545,386,117,2580,2339,2221,1071,2277,39,968,
+ 36,241,1001,34,1036,31,35,991,30,32,
+ 899,29,27,56,1094,112,82,83,113,1117,
+ 2394,1172,1835,1885,1018,277,336,39,2704,2574,
+ 991,39,2180,1583,117,3295,347,1678,2978,1136,
+ 424,39,1545,386,2277,39,968,36,236,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,113,1117,55,1172,1875,
+ 3290,2484,1539,2566,239,234,235,55,336,39,
+ 2226,280,1539,2215,2799,3551,1114,278,979,39,
+ 968,36,1415,2450,34,1036,339,35,991,236,
+ 2359,3039,2623,246,249,252,255,2570,1769,1466,
+ 39,968,36,2758,1657,34,1036,339,35,991,
+ 94,329,335,108,1608,251,234,235,2528,4068,
+ 719,582,2579,2755,3088,4334,4605,1499,2621,1924,
+ 1291,2576,351,1373,320,1235,322,2628,420,787,
+ 315,1125,50,2225,352,1300,2702,4605,336,2642,
+ 2226,80,2053,2200,2613,320,1235,322,3008,2522,
+ 117,315,1125,1071,3070,352,2619,3631,1300,332,
+ 344,865,646,349,1556,39,2226,2648,2689,1253,
+ 39,968,36,1541,4068,34,1036,339,35,991,
+ 161,344,865,646,349,352,1849,205,4057,2145,
+ 2108,39,392,3052,360,1252,1829,177,1608,298,
+ 2757,533,2528,4068,336,39,1545,386,2577,2424,
+ 2478,344,865,646,349,2678,1793,4605,2633,342,
+ 233,2628,306,1849,332,320,1235,322,161,1074,
+ 2482,315,1125,2528,2664,185,3081,1413,2625,1018,
+ 289,426,208,219,4468,366,207,216,217,218,
+ 220,355,2628,332,95,236,174,108,3641,527,
+ 187,1910,1,351,173,2528,533,117,1848,2611,
+ 2627,1071,2615,188,172,175,176,177,178,179,
+ 2634,254,234,235,343,233,1362,3528,360,2393,
+ 308,312,2628,161,388,422,352,3201,161,2799,
+ 185,3081,2577,2424,2478,720,911,208,219,4468,
+ 2849,207,216,217,218,220,1405,39,295,360,
+ 3200,174,344,865,646,349,186,225,830,173,
+ 2145,389,422,3657,2424,2478,334,335,189,172,
+ 175,176,177,178,179,1354,2277,39,968,36,
+ 4048,1001,34,1036,31,35,991,30,32,899,
+ 29,27,56,1094,112,82,83,113,1117,2822,
+ 1707,2277,39,968,36,929,1001,34,1036,31,
+ 35,991,30,32,899,29,27,56,1094,112,
+ 82,83,113,1117,1678,1715,1159,39,2846,36,
+ 1541,4068,34,1036,339,35,991,1982,39,968,
+ 36,2645,2175,34,1036,340,35,991,1849,2703,
+ 2073,39,1545,386,265,2666,451,73,533,1982,
+ 39,968,36,1637,2393,34,1036,2358,35,991,
+ 1556,39,2226,280,4605,2481,437,233,1849,2528,
+ 104,332,320,1235,322,161,1597,277,315,1125,
+ 1071,2026,185,3081,942,1405,2985,295,343,208,
+ 219,4468,305,207,216,217,218,220,526,336,
+ 39,1545,386,174,353,3641,2522,165,533,2679,
+ 533,173,1262,336,39,2226,285,4068,2967,529,
+ 3430,172,175,176,177,178,179,233,117,4108,
+ 1291,2576,1071,1678,1597,161,277,161,1071,2415,
+ 1018,2393,185,3081,185,3081,391,422,1914,208,
+ 219,4468,78,207,216,217,218,220,117,4040,
+ 2659,1678,1071,174,441,165,72,333,533,2679,
+ 2639,173,1386,200,413,2852,390,422,352,184,
+ 181,172,175,176,177,178,179,233,2703,161,
+ 512,39,1545,386,71,161,1258,1722,279,2654,
+ 2799,2393,185,3081,346,865,646,349,236,208,
+ 219,4468,1018,207,216,217,218,220,2034,376,
+ 1029,39,448,174,529,4504,2732,55,533,1018,
+ 1680,173,1539,1699,257,234,235,331,335,203,
+ 192,172,175,176,177,178,179,233,117,2659,
+ 289,2980,3080,4032,2393,161,1621,39,1545,386,
+ 2661,2683,185,3081,336,39,2226,282,2718,208,
+ 219,4468,2799,207,216,217,218,220,1977,2611,
+ 4536,201,381,174,617,1953,39,448,533,2799,
+ 4504,173,202,55,336,39,2226,2840,1539,1741,
+ 3550,172,175,176,177,178,179,233,376,3720,
+ 335,2108,39,392,374,161,117,3039,2632,244,
+ 2640,1597,185,3081,4123,1071,3725,335,117,208,
+ 219,4468,1071,207,216,217,218,220,1670,39,
+ 968,36,1415,174,34,1036,339,35,991,1184,
+ 117,173,165,2528,3152,776,39,1545,386,161,
+ 197,172,175,176,177,178,179,2006,336,39,
+ 1545,386,2628,2668,2734,420,705,336,39,295,
+ 533,117,441,3110,3139,1071,4605,336,39,1545,
+ 386,2702,55,2738,320,1235,322,1539,53,233,
+ 315,1125,2740,3771,352,429,522,161,424,39,
+ 1545,386,161,1678,185,3081,919,3401,3208,2752,
+ 2954,208,219,4468,428,207,216,217,218,220,
+ 344,865,646,349,2467,174,793,117,523,500,
+ 533,1071,2753,173,89,55,70,445,3110,3139,
+ 1539,53,191,172,175,176,177,178,179,233,
+ 1678,1678,2101,39,1545,386,2720,161,161,1205,
+ 336,39,1545,386,185,3081,3073,498,499,244,
+ 3592,208,219,4468,4319,207,216,217,218,220,
+ 1738,1846,2736,3666,61,174,4068,117,324,55,
+ 1978,3555,519,173,1539,53,527,427,2754,2108,
+ 39,392,199,172,175,176,177,178,179,2277,
+ 39,968,36,2764,1001,34,1036,31,35,991,
+ 30,32,899,29,27,56,1094,112,82,83,
+ 113,1749,2277,39,968,36,3431,1001,34,1036,
+ 31,35,991,30,32,899,29,27,56,1094,
+ 112,82,83,113,1756,2277,39,968,36,2758,
+ 1001,34,1036,31,35,991,30,32,899,29,
+ 27,56,1094,112,82,83,113,1757,1238,39,
+ 968,36,2759,4068,34,1036,339,35,991,1391,
+ 39,968,36,2956,2659,34,1036,339,35,991,
+ 49,336,39,1545,386,2585,3532,1079,2659,2528,
+ 5144,1210,336,39,1545,386,2747,5144,102,244,
+ 2528,336,39,295,4527,2062,4605,399,233,2528,
+ 5144,5144,1678,333,320,1235,322,4605,55,343,
+ 316,1125,2393,52,352,317,2830,322,343,447,
+ 210,219,4468,4059,209,216,217,218,220,2687,
+ 4141,5144,117,2528,117,60,2789,521,1071,858,
+ 346,865,646,349,211,213,215,296,297,2534,
+ 304,1678,233,5144,512,39,1545,386,221,212,
+ 214,1137,39,968,36,161,4068,34,1036,339,
+ 35,991,1678,3101,210,219,4468,1678,209,216,
+ 217,218,220,2708,323,5144,117,2528,4128,2387,
+ 3169,55,5144,2393,4058,5144,1539,53,211,213,
+ 215,296,297,2534,117,107,233,5144,2528,4605,
+ 3727,3557,221,212,214,2989,333,320,1235,322,
+ 5144,117,117,318,1125,3609,4486,343,210,219,
+ 4468,206,209,216,217,218,220,117,5144,5144,
+ 117,1344,4128,2695,733,117,2663,117,2679,2688,
+ 4172,4092,211,213,215,296,297,2534,1581,117,
+ 1678,117,5144,3663,1751,4535,221,212,214,2277,
+ 1547,968,1573,4193,1001,34,1036,31,35,991,
+ 30,32,899,29,27,56,1094,112,82,83,
+ 90,117,5144,2994,5144,1512,4128,2718,2277,39,
+ 968,36,5144,1001,34,1036,31,35,991,30,
+ 32,899,29,27,56,1094,112,82,83,89,
+ 2277,39,968,36,5144,1001,34,1036,31,35,
+ 991,30,32,899,29,27,56,1094,112,82,
+ 83,88,2277,39,968,36,5144,1001,34,1036,
+ 31,35,991,30,32,899,29,27,56,1094,
+ 112,82,83,87,2277,39,968,36,5144,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,86,2277,39,968,36,
+ 5144,1001,34,1036,31,35,991,30,32,899,
+ 29,27,56,1094,112,82,83,85,2277,39,
+ 968,36,5144,1001,34,1036,31,35,991,30,
+ 32,899,29,27,56,1094,112,82,83,84,
+ 2138,39,968,36,5144,1001,34,1036,31,35,
+ 991,30,32,899,29,27,56,1094,112,82,
+ 83,110,2277,39,968,36,5144,1001,34,1036,
+ 31,35,991,30,32,899,29,27,56,1094,
+ 112,82,83,115,2277,39,968,36,5144,1001,
+ 34,1036,31,35,991,30,32,899,29,27,
+ 56,1094,112,82,83,114,2277,39,968,36,
+ 1678,1001,34,1036,31,35,991,30,32,899,
+ 29,27,56,1094,112,82,83,111,1532,39,
+ 968,36,1541,5144,34,1036,339,35,991,2232,
+ 39,968,36,446,1001,34,1036,31,35,991,
+ 30,32,899,29,27,56,1094,92,82,83,
+ 2771,1597,1408,117,2528,1071,244,1071,117,117,
+ 1678,4531,3315,945,5144,1678,4605,2659,2101,39,
+ 1545,386,5144,233,320,1235,322,2393,2393,117,
+ 315,1125,165,1554,161,525,1413,5144,336,39,
+ 1545,386,3353,378,5144,210,219,4468,3104,209,
+ 216,217,218,220,2603,55,5144,5144,2528,1678,
+ 1539,53,1018,1382,117,204,300,2528,2528,211,
+ 213,215,296,297,2534,55,520,233,117,3308,
+ 1539,2339,3998,516,212,214,2628,343,5144,308,
+ 312,5144,3164,2101,39,1545,386,3582,2669,210,
+ 219,4468,2528,209,216,217,218,220,2679,4150,
+ 1597,2626,5144,5144,1071,3278,5144,2393,1588,3200,
+ 2393,233,2799,211,213,215,296,297,2534,1035,
+ 55,1678,5144,2528,4598,1539,53,515,212,214,
+ 1678,165,2792,210,219,4468,2528,209,216,217,
+ 218,220,233,361,3327,4578,5144,5144,226,4038,
+ 335,5144,5144,1678,3224,233,2393,211,213,215,
+ 296,297,2534,3558,537,403,3539,1678,5144,5144,
+ 5144,222,212,214,1678,5144,2810,210,219,4468,
+ 2528,209,216,217,218,220,4047,5144,404,405,
+ 406,296,297,2534,198,5144,3652,5144,5144,233,
+ 4196,211,213,215,296,297,2534,3376,5144,5144,
+ 1597,5144,5144,5144,1071,307,212,214,5144,5144,
+ 2497,210,219,4468,5144,209,216,217,218,220,
+ 1548,39,2846,36,1541,5144,34,1036,339,35,
+ 991,165,5144,5144,5144,211,213,215,296,297,
+ 2534,5144,117,5144,5144,5144,1071,5144,5144,494,
+ 212,214,1855,39,968,36,1541,5144,34,1036,
+ 339,35,991,5144,5144,407,410,5144,4605,2101,
+ 39,1545,386,161,5144,117,320,1235,322,2528,
+ 5144,2368,315,1125,2424,39,1545,386,942,2580,
+ 952,5144,5144,5144,2528,4598,3980,242,343,5144,
+ 4605,117,5144,117,5144,533,55,533,320,1235,
+ 322,1539,53,233,315,1125,5144,5144,5144,2679,
+ 1413,277,5144,117,343,5144,343,2528,5144,1615,
+ 3410,5144,161,5144,161,537,403,3539,5144,5144,
+ 1216,5144,911,5144,236,2679,343,2679,5144,5144,
+ 5144,5144,5144,5144,5144,1042,5144,1638,5144,404,
+ 405,406,296,297,2534,5144,5144,2679,5144,5144,
+ 240,234,235,309,312,5144,5144,1631,414,2852,
+ 5144,5144,5144,278,5144,5144,5144,1137,39,968,
+ 36,2497,4068,34,1036,339,35,991,5144,247,
+ 250,253,256,2570,5144,1855,39,968,36,1541,
+ 1657,34,1036,339,35,991,5144,5144,2037,39,
+ 968,36,2729,5144,34,1036,339,35,991,5144,
+ 5144,5144,5144,117,5144,4605,1184,1071,5144,5144,
+ 2528,5144,333,320,1235,322,407,409,5144,316,
+ 1125,5144,5144,4605,2101,39,1545,386,5144,2628,
+ 5144,320,1235,322,161,5144,4605,315,1125,566,
+ 5144,4159,4207,3509,317,2830,322,2183,39,1545,
+ 386,2397,39,1545,386,2489,2523,5144,5144,2528,
+ 533,55,336,39,1545,386,1539,53,5144,5144,
+ 5144,5144,336,39,1545,386,5144,5144,2628,343,
+ 336,39,1545,386,55,3562,5144,161,55,1539,
+ 53,5144,5144,1539,53,193,500,5144,2629,55,
+ 4455,5144,1071,5144,1539,1839,5144,117,3317,55,
+ 5144,533,3571,5144,1539,1051,5144,55,336,39,
+ 1545,386,1539,859,5144,336,39,1545,386,161,
+ 343,5144,5144,5144,497,499,5144,167,161,5144,
+ 3557,5144,5144,117,5144,500,193,533,117,5144,
+ 117,4455,2528,117,533,55,5144,2528,195,5144,
+ 1539,2470,55,5144,5144,5144,343,1539,2993,5144,
+ 5144,343,3021,343,161,5144,343,5144,5144,5144,
+ 5144,161,193,497,499,5144,5144,4455,5144,193,
+ 5144,5144,2679,5144,4455,117,117,2679,5144,2528,
+ 2528,5144,2294,5144,5144,5144,5144,504,5144,4045,
+ 5144,5144,5144,5144,5144,5144,5144,5144,343,343,
+ 5144,3374,5144,5144,5144,5144,5144,5144,5144,4147,
+ 5144,5144,5144,5144,5144,5144,5144,5144,5144,2679,
+ 2679,5144,5144,5144,5144,4089,5144,5144,5144,502,
+ 530,5144,4161,5144,5144,5144,5144,5144,5144,5144,
+ 5144,5144,5144,5144,5144,5144,5144,5144,5144,4214,
+ 5144,0,43,5162,0,43,5161,0,851,33,
+ 0,435,1287,0,449,1330,0,42,5162,0,
+ 42,5161,0,2474,131,0,1,439,0,453,
+ 769,0,452,901,0,851,45,0,2532,97,
+ 0,851,385,0,39,37,0,36,38,0,
+ 43,913,0,1,905,0,1,5420,0,1,
+ 5419,0,1,5418,0,1,5417,0,1,5416,
+ 0,1,5415,0,1,5414,0,1,5413,0,
+ 1,5412,0,1,5411,0,1,5410,0,43,
+ 1,5162,0,43,1,5161,0,781,1,0,
+ 5382,245,0,5381,245,0,5482,245,0,5481,
+ 245,0,5409,245,0,5408,245,0,5407,245,
+ 0,5406,245,0,5405,245,0,5404,245,0,
+ 5403,245,0,5402,245,0,5420,245,0,5419,
+ 245,0,5418,245,0,5417,245,0,5416,245,
+ 0,5415,245,0,5414,245,0,5413,245,0,
+ 5412,245,0,5411,245,0,5410,245,0,43,
+ 245,5162,0,43,245,5161,0,5186,245,0,
+ 54,5162,0,54,5161,0,49,5184,0,49,
+ 41,0,5162,54,0,5161,54,0,2474,133,
+ 0,2474,132,0,5150,1,0,5149,1,0,
+ 241,3016,0,386,36,0,36,386,0,385,
+ 33,0,33,385,0,30,514,0,5474,440,
+ 0,1335,440,0,1,98,0,41,53,0,
+ 5186,1,0,43,1,0,53,41,0,496,
+ 2505,0,5186,232,1,0,43,232,1,0,
+ 232,412,0,41,5162,0,41,5161,0,5184,
+ 51,0,51,41,0,5162,40,0,5161,40,
+ 0,1,5162,2,0,1,5161,2,0,41,
+ 5162,2,0,41,5161,2,0,5154,401,0,
+ 5153,401,0,1,577,0,1,913,0,1,
+ 2821,0,232,411,0,5474,101,0,1335,101,
+ 0,39,79,0,3612,319,0,1,5474,0,
+ 1,1335,0,43,1,5162,2,0,43,1,
+ 5161,2,0,43,5162,2,0,43,5161,2,
+ 0,282,3261,0,496,4084,0,232,1,0,
+ 232,224,0,232,223,0,1,2750,0,1,
+ 3251,0,5152,1,0,232,1,3313,0,5154,
+ 232,0,5153,232,0,3384,232,0,8,10,
+ 0,190,3316,0
};
};
public final static char baseAction[] = BaseAction.baseAction;
@@ -1059,303 +1048,297 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 30,3,32,33,34,35,36,37,38,39,
+ 30,31,32,33,34,35,36,0,38,39,
40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,0,62,63,64,65,0,0,68,69,
- 70,71,11,12,74,8,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,0,62,63,64,65,0,6,68,69,
+ 70,0,0,73,74,75,76,77,78,79,
+ 80,81,10,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,0,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,45,46,47,0,49,50,51,
- 52,53,54,55,56,57,58,59,60,0,
- 62,63,64,65,88,89,68,69,70,71,
- 11,12,74,0,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 22,23,24,25,26,27,0,29,30,31,
+ 32,33,34,35,36,0,38,39,40,41,
+ 42,43,44,45,46,47,99,49,50,51,
+ 52,53,54,55,56,57,58,59,60,121,
+ 62,63,64,65,88,89,68,69,70,88,
+ 89,73,74,75,76,77,78,79,80,81,
+ 122,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,29,30,3,32,33,
- 34,35,36,37,38,39,40,41,42,43,
- 44,45,46,47,61,49,50,51,52,53,
- 54,55,56,57,58,59,60,121,62,63,
- 64,65,0,1,2,69,70,71,0,7,
- 74,0,76,77,78,79,80,81,82,83,
+ 24,25,26,27,0,29,30,31,32,33,
+ 34,35,36,0,38,39,40,41,42,43,
+ 44,45,46,47,0,49,50,51,52,53,
+ 54,55,56,57,58,59,60,0,62,63,
+ 64,65,0,0,68,69,70,4,11,12,
+ 74,75,76,77,78,79,80,81,0,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,30,3,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,45,
- 46,47,0,49,50,51,52,53,54,55,
- 56,57,58,59,60,0,62,63,64,65,
- 0,1,2,69,70,71,88,89,74,0,
- 76,77,78,79,80,81,82,83,84,85,
+ 26,27,0,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,45,
+ 46,47,99,49,50,51,52,53,54,55,
+ 56,57,58,59,60,101,62,63,64,65,
+ 88,89,68,69,70,0,1,2,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 0,29,30,3,32,33,34,35,36,37,
+ 0,29,30,31,32,33,34,35,36,0,
38,39,40,41,42,43,44,45,46,47,
- 61,49,50,51,52,53,54,55,56,57,
- 58,59,60,101,62,63,64,65,0,1,
- 2,69,70,71,0,100,74,0,76,77,
- 78,79,80,81,82,83,84,85,86,87,
+ 0,49,50,51,52,53,54,55,56,57,
+ 58,59,60,67,62,63,64,65,0,0,
+ 68,69,70,0,1,2,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 30,3,32,33,34,35,36,37,38,39,
- 40,41,42,43,44,45,46,47,61,49,
+ 30,31,32,33,34,35,36,58,38,39,
+ 40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,0,62,63,64,65,0,1,2,69,
- 70,71,88,89,74,0,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,101,62,63,64,65,88,89,68,69,
+ 70,0,1,2,74,75,76,77,78,79,
+ 80,81,0,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,3,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,45,46,47,61,49,50,51,
+ 22,23,24,25,26,27,0,29,30,31,
+ 32,33,34,35,36,0,38,39,40,41,
+ 42,43,44,45,46,47,0,49,50,51,
52,53,54,55,56,57,58,59,60,0,
- 62,63,64,65,0,0,0,69,70,71,
- 0,100,74,8,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 62,63,64,65,0,0,68,69,70,4,
+ 11,12,74,75,76,77,78,79,80,81,
+ 0,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,48,29,30,0,32,33,
- 34,35,36,37,38,39,40,41,42,43,
+ 24,25,26,27,0,29,30,31,32,33,
+ 34,35,36,0,38,39,40,41,42,43,
44,45,46,47,0,49,50,51,52,53,
54,55,56,57,58,59,60,0,62,63,
- 64,65,88,89,0,69,70,71,88,89,
- 74,0,76,77,78,79,80,81,82,83,
+ 64,65,88,89,68,69,70,0,11,12,
+ 74,75,76,77,78,79,80,81,0,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,48,29,30,0,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,45,
+ 26,27,0,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,45,
46,47,0,49,50,51,52,53,54,55,
56,57,58,59,60,0,62,63,64,65,
- 0,1,2,69,70,71,11,12,74,0,
- 76,77,78,79,80,81,82,83,84,85,
+ 5,0,68,69,70,0,1,2,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 0,29,30,3,32,33,34,35,36,37,
+ 0,29,30,31,32,33,34,35,36,0,
38,39,40,41,42,43,44,45,46,47,
- 61,49,50,51,52,53,54,55,56,57,
- 58,59,60,101,62,63,64,65,0,1,
- 2,69,70,71,0,0,74,3,76,77,
- 78,79,80,81,82,83,84,85,86,87,
- 0,1,2,3,4,5,6,7,8,31,
- 10,11,12,0,14,15,16,17,18,19,
+ 0,49,50,51,52,53,54,55,56,57,
+ 58,59,60,67,62,63,64,65,29,0,
+ 68,69,70,4,0,0,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
+ 0,1,2,3,4,5,6,7,8,0,
+ 10,11,12,4,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 30,0,32,33,34,35,36,37,38,39,
+ 30,31,32,33,34,35,36,28,38,39,
40,41,42,43,44,45,46,47,0,49,
- 50,51,52,53,54,55,56,57,0,0,
- 0,1,2,63,4,0,6,0,8,69,
- 70,71,0,14,61,3,0,10,6,66,
- 8,9,0,11,12,13,0,1,2,3,
- 14,5,61,7,0,9,0,66,26,27,
- 28,0,0,9,45,46,47,59,49,50,
- 51,52,53,54,55,56,14,59,90,0,
- 48,45,46,47,96,49,50,51,52,53,
- 54,55,56,61,48,0,0,72,66,67,
- 68,0,1,2,72,73,5,45,46,47,
- 31,49,50,51,52,53,54,55,56,73,
- 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,0,0,0,117,
- 118,3,120,121,6,59,8,9,102,11,
- 12,13,67,0,1,2,3,4,5,6,
- 7,8,118,117,26,27,28,0,0,1,
- 2,3,4,5,6,7,8,0,0,1,
- 2,14,4,5,0,7,48,102,4,104,
- 105,106,107,108,109,110,111,112,113,61,
- 0,0,117,66,66,67,68,0,31,31,
- 72,73,45,46,47,0,49,50,51,52,
- 53,54,55,56,0,72,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,28,46,47,117,118,0,120,121,
- 0,1,2,3,4,5,6,7,8,9,
- 10,0,72,13,14,15,16,17,18,19,
- 20,21,22,23,24,25,0,1,2,0,
- 4,31,0,1,2,3,4,5,6,7,
- 8,0,0,1,2,45,46,47,0,49,
- 50,51,52,53,54,55,56,31,58,0,
+ 50,51,52,53,54,55,56,9,58,0,
0,1,2,63,4,5,0,7,68,69,
- 70,71,72,31,74,75,0,1,2,3,
- 4,5,6,7,8,9,10,28,0,13,
- 14,15,16,17,18,19,20,21,22,23,
- 24,25,61,0,0,1,2,31,4,5,
- 99,7,0,10,114,115,116,0,1,2,
- 61,45,46,47,95,49,50,51,52,53,
- 54,55,56,0,58,31,0,1,2,63,
- 4,5,9,7,68,69,70,71,72,61,
- 74,75,93,94,0,1,2,3,4,5,
- 6,7,8,60,0,0,1,2,4,4,
- 6,6,8,8,9,0,0,1,2,3,
- 4,5,6,7,8,0,1,2,0,4,
- 114,115,116,0,1,2,3,4,5,6,
- 7,8,48,10,11,12,73,95,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,67,29,30,48,32,33,34,35,36,
- 37,38,39,40,41,42,43,44,73,0,
- 1,2,3,0,5,57,7,4,9,0,
- 57,0,13,4,0,1,2,64,65,5,
- 95,7,0,1,2,0,0,74,0,1,
- 2,3,4,5,6,7,8,28,10,11,
- 12,0,0,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,48,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,31,0,1,2,3,4,0,
- 6,0,8,0,28,57,64,65,9,61,
- 9,66,64,65,0,1,2,3,4,5,
- 6,7,8,9,10,11,12,66,0,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,48,29,30,99,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,0,
- 1,2,3,0,5,66,7,68,9,68,
- 0,57,13,59,0,1,2,3,0,5,
- 0,7,68,0,1,2,3,4,5,6,
- 7,8,9,10,11,12,0,0,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,0,29,30,3,32,33,34,35,36,
- 37,38,39,40,41,42,43,44,0,1,
- 2,61,0,1,2,3,66,5,0,7,
- 57,61,59,0,1,2,72,4,0,1,
- 2,68,0,1,2,3,4,5,6,7,
- 8,0,10,11,12,4,28,15,16,17,
- 18,19,20,21,22,23,24,25,26,27,
- 48,29,30,0,32,33,34,35,36,37,
- 38,39,40,41,42,43,44,0,1,2,
- 0,4,59,6,0,8,0,1,2,57,
- 4,28,6,9,8,0,64,65,0,1,
- 2,3,4,5,6,7,8,0,10,11,
- 12,4,0,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,0,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,0,0,1,2,0,4,0,
- 6,4,8,0,28,57,3,73,0,1,
- 2,66,64,65,0,1,2,3,4,5,
- 6,7,8,9,10,11,12,97,98,15,
+ 70,0,1,2,3,4,5,6,7,8,
+ 9,10,97,98,13,14,15,16,17,18,
+ 19,20,21,22,23,24,25,37,0,1,
+ 2,3,4,5,6,7,8,48,37,0,
+ 0,1,2,4,4,0,45,46,47,4,
+ 49,50,51,52,53,54,55,56,57,0,
+ 59,0,1,2,63,4,5,0,7,68,
+ 69,70,71,28,73,74,48,37,0,1,
+ 2,0,4,82,0,1,2,3,4,5,
+ 6,7,8,9,10,67,118,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,45,29,30,66,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,0,
+ 114,115,116,46,47,114,115,116,0,1,
+ 2,37,4,0,6,0,8,0,0,45,
+ 46,47,9,49,50,51,52,53,54,55,
+ 56,57,17,59,0,1,2,63,4,5,
+ 0,7,68,69,70,71,0,73,74,3,
+ 0,0,6,0,8,9,82,11,12,13,
+ 45,46,47,10,49,50,51,52,53,54,
+ 55,56,26,27,28,0,0,1,2,3,
+ 4,5,6,7,8,72,0,0,114,115,
+ 116,0,17,75,48,0,1,2,0,1,
+ 2,3,4,5,6,7,8,61,95,0,
+ 57,61,66,67,97,98,0,71,72,73,
+ 45,46,47,0,49,50,51,52,53,54,
+ 55,56,37,10,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,
+ 37,0,0,117,118,3,120,121,6,71,
+ 8,9,0,11,12,13,67,0,1,2,
+ 3,4,5,6,7,8,63,100,26,27,
+ 28,0,0,1,2,3,4,5,6,7,
+ 8,0,1,2,3,4,90,6,17,8,
+ 48,102,96,104,105,106,107,108,109,110,
+ 111,112,113,61,0,48,117,66,66,67,
+ 0,1,2,71,72,73,45,46,47,0,
+ 49,50,51,52,53,54,55,56,9,48,
+ 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,0,1,2,117,
+ 118,0,120,121,0,1,2,3,4,5,
+ 6,7,8,0,10,11,12,4,14,15,
+ 16,0,18,19,20,21,22,23,24,25,
+ 26,27,73,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,28,
+ 0,1,2,3,0,5,0,7,45,9,
+ 64,65,58,13,0,1,2,0,64,65,
+ 0,1,2,0,4,5,9,7,74,0,
1,2,3,4,5,6,7,8,0,10,
- 11,12,64,65,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,0,29,30,
- 0,32,33,34,35,36,37,38,39,40,
- 41,42,43,44,0,0,0,114,115,116,
- 6,114,115,116,0,28,57,3,59,0,
+ 11,12,71,14,15,16,95,18,19,20,
+ 21,22,23,24,25,26,27,37,29,30,
+ 31,32,33,34,35,36,28,38,39,40,
+ 41,42,43,44,60,0,1,2,3,0,
+ 5,0,7,66,9,4,95,58,9,72,
+ 61,0,13,64,65,0,1,2,3,4,
+ 5,6,7,8,9,10,11,12,0,14,
+ 15,16,0,18,19,20,21,22,23,24,
+ 25,26,27,48,29,30,31,32,33,34,
+ 35,36,0,38,39,40,41,42,43,44,
+ 28,0,1,2,3,66,5,72,7,0,
+ 9,60,3,58,13,60,48,0,1,2,
+ 3,0,5,0,7,0,1,2,73,0,
+ 1,2,3,4,5,6,7,8,9,10,
+ 11,12,0,14,15,16,0,18,19,20,
+ 21,22,23,24,25,26,27,48,29,30,
+ 31,32,33,34,35,36,0,38,39,40,
+ 41,42,43,44,28,9,0,0,1,2,
+ 4,4,6,6,8,8,9,58,71,60,
+ 0,1,2,0,1,2,3,4,5,6,
+ 7,8,73,10,11,12,0,14,15,16,
+ 0,18,19,20,21,22,23,24,25,26,
+ 27,100,29,30,31,32,33,34,35,36,
+ 0,38,39,40,41,42,43,44,72,0,
+ 1,2,3,37,5,0,7,0,0,72,
+ 0,58,4,3,64,65,9,64,65,0,
1,2,3,4,5,6,7,8,0,10,
- 11,12,118,0,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,0,29,30,
- 0,32,33,34,35,36,37,38,39,40,
- 41,42,43,44,0,0,0,77,4,3,
- 0,5,6,3,8,28,57,11,12,9,
- 0,0,76,3,3,0,1,2,0,9,
- 122,0,26,27,28,90,30,0,1,2,
- 3,96,5,0,7,72,0,26,27,6,
- 0,1,2,3,48,5,28,7,48,0,
- 1,2,72,0,5,0,0,61,48,48,
- 64,65,66,67,0,1,2,0,0,48,
- 3,61,0,73,6,0,66,0,6,61,
- 31,28,0,73,88,89,90,91,92,93,
- 94,0,0,97,98,99,100,101,102,103,
- 104,105,106,107,108,109,110,111,112,113,
- 0,93,94,3,103,5,6,0,8,28,
- 0,11,12,59,91,92,0,1,2,9,
- 48,120,0,13,0,0,26,27,28,4,
- 30,0,1,2,67,90,0,0,1,2,
- 4,96,61,97,98,119,0,31,48,91,
- 92,5,28,91,92,0,1,2,0,1,
- 2,61,31,0,64,65,66,67,31,0,
- 1,2,90,4,93,94,66,123,96,0,
- 0,45,3,3,0,63,31,3,88,89,
- 90,91,92,93,94,0,72,97,98,99,
- 100,101,102,103,104,105,106,107,108,109,
- 110,111,112,113,0,1,2,3,4,5,
- 6,7,8,28,10,11,12,48,48,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,30,3,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,0,
- 1,2,48,0,1,2,3,4,5,6,
- 7,8,0,10,11,12,0,0,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,0,29,30,3,32,33,34,35,36,
- 37,38,39,40,41,42,43,44,0,67,
- 0,0,1,2,3,4,5,6,7,8,
- 57,10,11,12,48,0,15,16,17,18,
- 19,20,21,22,23,24,25,26,27,67,
- 29,30,0,32,33,34,35,36,37,38,
+ 11,12,95,14,15,16,28,18,19,20,
+ 21,22,23,24,25,26,27,48,29,30,
+ 31,32,33,34,35,36,28,38,39,40,
+ 41,42,43,44,0,1,2,0,4,0,
+ 6,66,8,0,0,1,2,58,4,72,
+ 6,8,8,64,65,0,1,2,3,4,
+ 5,6,7,8,9,10,11,12,0,14,
+ 15,16,4,18,19,20,21,22,23,24,
+ 25,26,27,0,29,30,31,32,33,34,
+ 35,36,0,38,39,40,41,42,43,44,
+ 0,1,2,3,4,5,6,7,8,0,
+ 10,11,12,76,14,15,16,8,18,19,
+ 20,21,22,23,24,25,26,27,0,29,
+ 30,31,32,33,34,35,36,9,38,39,
+ 40,41,42,43,44,0,1,2,0,4,
+ 0,6,0,8,0,1,2,3,58,5,
+ 60,7,0,71,0,1,2,3,4,5,
+ 6,7,8,118,10,11,12,0,14,15,
+ 16,0,18,19,20,21,22,23,24,25,
+ 26,27,0,29,30,31,32,33,34,35,
+ 36,73,38,39,40,41,42,43,44,0,
+ 0,61,3,0,5,6,66,8,66,71,
+ 11,12,58,0,0,0,3,3,3,48,
+ 17,0,9,71,0,26,27,28,28,30,
+ 0,0,1,2,4,0,1,2,7,4,
+ 26,27,0,1,2,0,4,48,45,46,
+ 47,6,49,50,51,52,53,54,55,56,
+ 61,48,48,64,65,66,67,0,0,0,
+ 0,0,1,2,61,45,5,0,7,66,
+ 0,0,67,6,3,72,6,88,89,90,
+ 91,92,93,94,0,60,97,98,99,100,
+ 101,102,103,104,105,106,107,108,109,110,
+ 111,112,113,0,90,0,3,103,5,6,
+ 96,8,28,0,11,12,0,1,2,3,
+ 63,5,9,7,120,0,91,92,3,26,
+ 27,28,0,30,114,115,116,0,1,2,
+ 0,0,5,3,3,61,0,1,2,90,
+ 90,48,0,1,2,96,96,5,91,92,
+ 102,91,92,0,61,0,61,64,65,66,
+ 67,66,9,48,37,117,13,93,94,66,
+ 0,1,2,37,0,0,73,0,1,2,
+ 0,88,89,90,91,92,93,94,0,67,
+ 97,98,99,100,101,102,103,104,105,106,
+ 107,108,109,110,111,112,113,0,1,2,
+ 3,4,5,6,7,8,28,10,11,12,
+ 0,14,15,16,0,18,19,20,21,22,
+ 23,24,25,26,27,61,29,30,31,32,
+ 33,34,35,36,0,38,39,40,41,42,
+ 43,44,0,1,2,48,0,1,2,3,
+ 4,5,6,7,8,0,10,11,12,0,
+ 14,15,16,29,18,19,20,21,22,23,
+ 24,25,26,27,60,29,30,31,32,33,
+ 34,35,36,28,38,39,40,41,42,43,
+ 44,0,1,2,3,4,5,6,7,8,
+ 0,10,11,12,58,14,15,16,0,18,
+ 19,20,21,22,23,24,25,26,27,60,
+ 29,30,31,32,33,34,35,36,28,38,
39,40,41,42,43,44,0,1,2,3,
- 4,5,6,7,8,0,10,11,12,59,
- 28,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,29,30,0,32,33,
- 34,35,36,37,38,39,40,41,42,43,
+ 4,5,6,7,8,0,10,11,12,0,
+ 14,15,16,0,18,19,20,21,22,23,
+ 24,25,26,27,0,29,30,31,32,33,
+ 34,35,36,28,38,39,40,41,42,43,
44,0,1,2,3,4,5,6,7,8,
- 0,10,11,12,0,28,15,16,17,18,
+ 37,10,11,12,0,14,15,16,0,18,
19,20,21,22,23,24,25,26,27,0,
- 29,30,67,32,33,34,35,36,37,38,
+ 29,30,31,32,33,34,35,36,0,38,
39,40,41,42,43,44,0,1,2,0,
- 4,67,0,0,0,3,10,28,0,10,
+ 4,0,0,1,2,37,10,0,1,2,
14,15,16,17,18,19,20,21,22,23,
- 24,25,0,0,0,0,0,67,0,0,
- 31,9,9,9,9,13,13,13,9,0,
- 0,45,46,47,0,49,50,51,52,53,
- 54,55,56,9,0,1,2,29,4,63,
- 0,0,63,59,10,69,70,71,14,15,
- 16,17,18,19,20,21,22,23,24,25,
- 72,0,0,0,1,2,3,4,5,6,
- 7,8,9,0,0,66,13,14,73,45,
- 46,47,73,49,50,51,52,53,54,55,
- 56,28,68,0,0,0,0,63,3,59,
- 95,28,9,69,70,71,13,66,45,46,
- 47,48,49,50,51,52,53,54,55,56,
+ 24,25,0,0,1,2,0,1,2,28,
+ 0,9,0,3,0,13,48,3,119,37,
+ 61,45,46,47,37,49,50,51,52,53,
+ 54,55,56,0,1,2,0,4,0,63,
+ 37,3,61,10,68,69,70,14,15,16,
+ 17,18,19,20,21,22,23,24,25,0,
+ 0,1,2,119,0,1,2,3,4,5,
+ 6,7,8,9,93,94,0,13,45,46,
+ 47,17,49,50,51,52,53,54,55,56,
+ 0,0,28,0,3,0,63,37,0,9,
+ 9,68,69,70,0,0,0,48,10,45,
+ 46,47,48,49,50,51,52,53,54,55,
+ 56,0,1,2,3,4,5,6,7,8,
+ 9,0,0,0,13,37,72,61,17,48,
+ 9,9,66,0,13,13,3,14,15,16,
+ 17,18,19,20,21,22,23,24,25,66,
+ 0,63,72,72,0,61,45,46,47,48,
+ 49,50,51,52,53,54,55,56,45,46,
+ 47,0,49,50,51,52,53,54,55,56,
+ 0,0,28,72,0,1,2,3,4,5,
+ 6,7,8,9,0,0,0,13,3,3,
+ 0,17,0,1,2,3,4,5,6,7,
+ 8,9,0,0,0,13,3,0,0,17,
+ 0,37,0,3,0,0,0,0,0,3,
+ 28,0,61,0,9,0,3,9,0,37,
+ 28,57,61,59,0,28,62,3,48,0,
+ 28,71,28,0,0,61,3,73,0,57,
+ 0,59,0,28,62,0,82,0,0,1,
+ 2,3,4,5,6,7,8,9,0,61,
+ 66,13,0,0,82,17,0,1,2,3,
+ 4,5,6,7,8,9,61,72,71,13,
+ 72,0,71,17,66,37,28,0,1,2,
+ 3,4,5,6,7,8,9,0,60,0,
+ 13,67,60,37,17,57,66,59,93,94,
+ 62,0,67,0,3,0,3,0,71,0,
+ 3,73,3,57,37,59,0,0,62,67,
+ 82,0,0,0,3,3,3,0,0,73,
+ 0,0,0,0,57,0,59,0,82,62,
0,1,2,3,4,5,6,7,8,9,
- 0,0,0,13,14,0,73,0,0,4,
- 9,3,0,0,0,0,14,15,16,17,
- 18,19,20,21,22,23,24,25,28,0,
- 66,0,3,28,0,45,46,47,48,49,
- 50,51,52,53,54,55,56,45,46,47,
- 0,49,50,51,52,53,54,55,56,9,
- 29,0,28,73,0,1,2,3,4,5,
- 6,7,8,9,73,0,0,13,14,67,
- 0,1,2,3,4,5,6,7,8,9,
- 0,0,28,13,14,31,0,1,2,3,
- 4,5,6,7,8,9,0,0,0,13,
- 14,31,4,0,0,0,10,3,3,0,
- 0,0,58,73,60,0,62,31,67,0,
- 0,0,3,119,9,0,28,31,58,75,
- 60,0,62,67,3,0,0,72,68,3,
- 29,0,0,0,58,75,60,0,62,28,
- 0,0,72,72,68,0,0,0,0,63,
- 0,75,0,1,2,3,4,5,6,7,
- 8,9,0,0,0,13,14,67,0,1,
- 2,3,4,5,6,7,8,9,73,0,
- 0,13,14,31,0,1,2,3,4,5,
- 6,7,8,9,95,0,0,13,14,31,
- 67,0,0,0,0,0,119,0,0,0,
- 58,0,60,0,62,31,0,0,0,0,
- 68,0,0,0,0,0,58,75,60,0,
- 62,0,0,0,0,0,68,0,0,0,
- 0,0,58,75,60,0,62,0,0,0,
- 0,0,68,0,0,0,0,0,0,75,
- 0,1,2,3,4,5,6,7,8,9,
- 0,0,0,13,14,0,0,1,2,3,
- 4,5,6,7,8,9,0,0,0,13,
- 14,31,0,1,2,3,4,5,6,7,
- 8,9,0,0,0,13,14,31,0,0,
- 0,0,0,0,0,0,0,0,58,0,
- 60,0,62,31,0,0,0,0,0,0,
- 0,0,0,0,58,75,60,0,62,0,
- 0,0,0,0,0,0,0,0,0,0,
- 58,75,60,0,62,0,0,0,0,0,
- 0,0,0,0,0,0,0,75,0,0,
+ 73,0,0,13,67,0,0,17,28,82,
+ 71,0,1,2,3,4,5,6,7,8,
+ 9,0,67,0,13,0,0,37,17,0,
+ 1,2,3,4,5,6,7,8,9,0,
+ 119,0,13,0,67,67,17,57,37,59,
+ 29,0,62,0,0,0,0,0,0,0,
+ 0,95,0,0,0,0,37,0,57,0,
+ 59,0,82,62,0,0,0,0,0,0,
+ 0,0,0,0,0,0,57,0,59,0,
+ 0,62,0,82,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,82,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0
+ 0,0,0
};
};
public final static byte termCheck[] = TermCheck.termCheck;
@@ -1363,301 +1346,296 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface TermAction {
public final static char termAction[] = {0,
- 5199,5177,5162,5162,5162,5162,5162,5162,5162,5190,
- 1,1,1,5184,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,5199,1,
- 1,4604,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1601,3256,
- 1642,123,3002,1,1,1,126,136,5206,1,
- 1,1,3202,3177,5379,2354,2543,3348,3516,2202,
- 3343,3245,3255,3327,656,3324,2756,3322,8,5193,
- 5193,5193,5193,5193,5193,5193,5193,5193,5193,5193,
- 5193,5193,5193,5193,5193,5193,5193,5193,5193,5193,
- 5193,5193,5193,5193,5193,5193,5199,5193,5193,5199,
- 5193,5193,5193,5193,5193,5193,5193,5193,5193,5193,
- 5193,5193,5193,5193,5193,5193,5199,5193,5193,5193,
- 5193,5193,5193,5193,5193,5193,5193,5193,5193,125,
- 5193,5193,5193,5193,2556,2603,5193,5193,5193,5193,
- 3202,3177,5193,5199,5193,5193,5193,5193,5193,5193,
- 5193,5193,5193,5193,5193,5193,5199,5177,5162,5162,
- 5162,5162,5162,5162,5162,5181,1,1,1,5184,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5199,1,1,3463,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,2099,1,1,1,1,1,
- 1,1,1,1,1601,3256,1642,4806,3002,1,
- 1,1,42,4825,4822,1,1,1,130,629,
- 5379,5199,2543,3348,3516,2202,3343,3245,3255,3327,
- 656,3324,2756,3322,5199,5177,5162,5162,5162,5162,
- 5162,5162,5162,5181,1,1,1,5184,1,1,
+ 5144,5125,5107,5107,5107,5107,5107,5107,5107,5135,
+ 1,1,1,5132,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5144,1,
+ 1,1,1,1,1,1,1,138,1,1,
+ 1,1,1,1,1,1,1,1,190,1,
+ 1,1,1,1,1,1,1,1672,1,2626,
+ 2756,5144,2971,1,1,1,126,3188,1,1,
+ 1,130,303,5151,5324,3544,3359,3194,2184,3141,
+ 3258,2984,5446,3342,653,3333,2709,3314,8,5138,
+ 5138,5138,5138,5138,5138,5138,5138,5138,5138,5138,
+ 5138,5138,5138,5138,5138,5138,5138,5138,5138,5138,
+ 5138,5138,5138,5138,5138,5138,1,5138,5138,5138,
+ 5138,5138,5138,5138,5138,5144,5138,5138,5138,5138,
+ 5138,5138,5138,5138,5138,5138,589,5138,5138,5138,
+ 5138,5138,5138,5138,5138,5138,5138,5138,5138,4751,
+ 5138,5138,5138,5138,2537,2584,5138,5138,5138,2537,
+ 2584,5138,5138,5138,5138,5138,5138,5138,5138,5138,
+ 5141,5138,5138,5138,5138,5138,5144,5125,5107,5107,
+ 5107,5107,5107,5107,5107,5129,1,1,1,5132,
1,1,1,1,1,1,1,1,1,1,
- 1,1,97,1,1,4843,1,1,1,1,
+ 1,1,1,1,5144,1,1,1,1,1,
+ 1,1,1,139,1,1,1,1,1,1,
+ 1,1,1,1,142,1,1,1,1,1,
+ 1,1,1,1672,1,2626,2756,123,2971,1,
+ 1,1,129,43,1,1,1,5186,2931,2906,
+ 5324,3544,3359,3194,2184,3141,3258,2984,5144,3342,
+ 653,3333,2709,3314,5144,5125,5107,5107,5107,5107,
+ 5107,5107,5107,5129,1,1,1,5132,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,142,1,1,1,1,1,1,1,
- 1,1,1601,3256,1642,140,3002,1,1,1,
- 5199,5216,5217,1,1,1,2556,2603,5379,5199,
- 2543,3348,3516,2202,3343,3245,3255,3327,656,3324,
- 2756,3322,5199,5177,5162,5162,5162,5162,5162,5162,
- 5162,5181,1,1,1,5184,1,1,1,1,
+ 1,1,5144,1,1,1,1,1,1,1,
+ 1,5144,1,1,1,1,1,1,1,1,
+ 1,1,589,1,1,1,1,1,1,1,
+ 1,1672,1,2626,2756,2271,2971,1,1,1,
+ 2537,2584,1,1,1,5144,5161,5162,5324,3544,
+ 3359,3194,2184,3141,3258,2984,293,3342,653,3333,
+ 2709,3314,5144,5125,5107,5107,5107,5107,5107,5107,
+ 5107,5129,1,1,1,5132,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,3651,1,1,1,1,1,1,
+ 5144,1,1,1,1,1,1,1,1,5144,
1,1,1,1,1,1,1,1,1,1,
- 2107,1,1,1,1,1,1,1,1,1,
- 1601,3256,1642,2291,3002,1,1,1,5199,4988,
- 4985,1,1,1,129,591,5379,5199,2543,3348,
- 3516,2202,3343,3245,3255,3327,656,3324,2756,3322,
- 5199,5177,5162,5162,5162,5162,5162,5162,5162,5181,
- 1,1,1,5184,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,241,1,
- 1,5015,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,2109,1,
- 1,1,1,1,1,1,1,1,1601,3256,
- 1642,141,3002,1,1,1,54,5000,4997,1,
- 1,1,2556,2603,5379,5199,2543,3348,3516,2202,
- 3343,3245,3255,3327,656,3324,2756,3322,5199,5177,
- 5162,5162,5162,5162,5162,5162,5162,5181,1,1,
- 1,5184,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,5199,1,1,3461,
+ 143,1,1,1,1,1,1,1,1,1672,
+ 1,2626,2756,1973,2971,1,1,1,128,528,
+ 1,1,1,5144,4933,4930,5324,3544,3359,3194,
+ 2184,3141,3258,2984,5144,3342,653,3333,2709,3314,
+ 5144,5125,5107,5107,5107,5107,5107,5107,5107,5129,
+ 1,1,1,5132,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5144,1,
+ 1,1,1,1,1,1,1,3166,1,1,
+ 1,1,1,1,1,1,1,1,5144,1,
+ 1,1,1,1,1,1,1,1672,1,2626,
+ 2756,2271,2971,1,1,1,2537,2584,1,1,
+ 1,54,4945,4942,5324,3544,3359,3194,2184,3141,
+ 3258,2984,5144,3342,653,3333,2709,3314,5144,5125,
+ 5107,5107,5107,5107,5107,5107,5107,5129,1,1,
+ 1,5132,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,5144,1,1,1,
+ 1,1,1,1,1,5144,1,1,1,1,
+ 1,1,1,1,1,1,5144,1,1,1,
+ 1,1,1,1,1,1672,1,2626,2756,125,
+ 2971,1,1,1,127,5144,1,1,1,785,
+ 2931,2906,5324,3544,3359,3194,2184,3141,3258,2984,
+ 5144,3342,653,3333,2709,3314,5144,5125,5107,5107,
+ 5107,5107,5107,5107,5107,5129,1,1,1,5132,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,2136,1,1,1,
- 1,1,1,1,1,1,1601,3256,1642,5199,
- 3002,1,1,1,128,137,455,1,1,1,
- 127,591,5379,2354,2543,3348,3516,2202,3343,3245,
- 3255,3327,656,3324,2756,3322,5199,5177,5162,5162,
- 5162,5162,5162,5162,5162,5181,1,1,1,5184,
+ 1,1,1,1,5144,1,1,1,1,1,
+ 1,1,1,5144,1,1,1,1,1,1,
+ 1,1,1,1,5144,1,1,1,1,1,
+ 1,1,1,1672,1,2626,2756,124,2971,1,
+ 1,1,2537,2584,1,1,1,5144,2931,2906,
+ 5324,3544,3359,3194,2184,3141,3258,2984,5144,3342,
+ 653,3333,2709,3314,5144,5125,5107,5107,5107,5107,
+ 5107,5107,5107,5129,1,1,1,5132,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,4834,1,1,5199,1,1,
+ 1,1,5144,1,1,1,1,1,1,1,
+ 1,5144,1,1,1,1,1,1,1,1,
+ 1,1,5144,1,1,1,1,1,1,1,
+ 1,1672,1,2626,2756,5144,2971,1,1,1,
+ 2698,5144,1,1,1,54,4933,4930,5324,3544,
+ 3359,3194,2184,3141,3258,2984,370,3342,653,3333,
+ 2709,3314,5144,3313,1,1,1,1,1,1,
+ 1,5154,1,1,1,5153,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5199,1,1,1,1,1,
- 1,1,1,1,1601,3256,1642,5199,3002,1,
- 1,1,2556,2603,454,1,1,1,2556,2603,
- 5379,5199,2543,3348,3516,2202,3343,3245,3255,3327,
- 656,3324,2756,3322,5199,5177,5162,5162,5162,5162,
- 5162,5162,5162,5181,1,1,1,5184,1,1,
+ 5144,1,1,1,1,1,1,1,1,5144,
1,1,1,1,1,1,1,1,1,1,
- 1,1,4837,1,1,5199,1,1,1,1,
+ 5144,1,1,1,1,1,1,1,1,1672,
+ 1,2626,2756,1168,2971,1,1,1,3726,1,
+ 1,1,1,386,5144,134,5324,3544,3359,3194,
+ 2184,3141,3258,2984,5144,3342,653,3333,2709,3314,
+ 43,4755,4752,2827,781,3749,3822,2821,3844,392,
+ 773,3800,3778,385,5412,5410,5419,5405,5418,5414,
+ 5415,5413,5416,5417,5420,5411,3888,3866,5144,5167,
+ 1047,674,852,5169,796,4009,810,851,5170,5168,
+ 671,5163,5165,5166,5164,5408,5481,5482,5144,5402,
+ 5409,5381,5407,5406,5403,5404,5382,5148,1297,453,
+ 5144,4755,4752,5538,781,4800,434,2821,622,5539,
+ 5540,5144,5006,5006,232,5002,232,232,232,232,
+ 5010,1,2392,2364,232,1,1,1,1,1,
+ 1,1,1,1,1,1,1,987,367,5035,
+ 5031,2649,1,913,1,2821,1,4779,4999,5144,
+ 393,4755,4752,2560,5186,54,1,1,1,5162,
+ 1,1,1,1,1,1,1,1,2876,5144,
+ 1996,5144,4755,4752,1,781,913,336,2821,1,
+ 1,1,232,5162,412,5552,1844,43,5144,4755,
+ 4752,5144,5186,5639,5144,5006,5006,232,5002,232,
+ 232,232,232,5062,1,1126,5147,232,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,143,1,1,1,1,1,1,1,
- 1,1,1601,3256,1642,124,3002,1,1,1,
- 54,4988,4985,1,1,1,3202,3177,5379,5199,
- 2543,3348,3516,2202,3343,3245,3255,3327,656,3324,
- 2756,3322,5199,3274,1,1,1,1,1,1,
- 1,5209,1,1,1,5208,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 5199,1,1,3671,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 5708,1,1,1,1,1,1,1,1,1,
- 1601,3256,1642,2291,3002,1,1,1,5199,8425,
- 8425,1,1,1,5199,5199,5379,4405,2543,3348,
- 3516,2202,3343,3245,3255,3327,656,3324,2756,3322,
- 43,4810,4807,1128,641,3811,4136,3247,4158,5239,
- 925,4114,4092,30,5460,5467,5465,5474,5473,5469,
- 5470,5468,5471,5472,5475,5466,4202,4180,116,5222,
- 1056,5199,649,802,5224,715,4323,778,5225,5223,
- 637,5218,5220,5221,5219,5463,5539,5540,5199,5457,
- 5464,5436,5462,5461,5458,5459,5437,1309,5199,228,
- 441,1,1,5596,1,5199,4831,306,4831,912,
- 5597,5598,37,5460,5030,4849,229,5504,4849,5030,
- 4849,4849,5199,4849,4849,4849,1,5090,5086,2696,
- 5460,1123,3951,3247,5199,5009,144,3133,4849,4849,
- 4849,5199,230,5203,5463,5539,5540,1469,5457,5464,
- 5436,5462,5461,5458,5459,5437,5460,2285,4246,41,
- 4849,5463,5539,5540,4268,5457,5464,5436,5462,5461,
- 5458,5459,5437,4849,1856,144,5199,1895,4849,4849,
- 4849,5199,5216,5217,4849,4849,3238,5463,5539,5540,
- 5239,5457,5464,5436,5462,5461,5458,5459,5437,5012,
- 4849,4849,4849,4849,4849,4849,4849,4849,4849,4849,
- 4849,4849,4849,4849,4849,4849,4849,4849,4849,4849,
- 4849,4849,4849,4849,4849,4849,5199,162,5199,4849,
- 4849,4852,4849,4849,4852,3256,4852,4852,2254,4852,
- 4852,4852,1814,5199,5143,5138,4410,5045,1123,5135,
- 3247,5132,5202,3029,4852,4852,4852,231,5199,5152,
- 5148,4410,5241,1123,1347,3247,5532,53,5199,4810,
- 4807,5460,641,4855,43,3247,4852,2254,5241,1772,
- 1730,1688,1646,1604,1562,1520,1478,1436,1394,4852,
- 425,5199,3029,1352,4852,4852,4852,339,2832,658,
- 4852,4852,5463,5539,5540,5199,5457,5464,5436,5462,
- 5461,5458,5459,5437,5199,2076,4852,4852,4852,4852,
- 4852,4852,4852,4852,4852,4852,4852,4852,4852,4852,
- 4852,4852,4852,4852,4852,4852,4852,4852,4852,4852,
- 4852,4852,2657,5539,5540,4852,4852,5199,4852,4852,
- 5199,5061,5061,232,5057,232,232,232,232,5065,
- 1,138,2873,232,1,1,1,1,1,1,
- 1,1,1,1,1,1,396,4810,4807,361,
- 5241,5054,314,5143,5138,4410,5045,1123,5135,3247,
- 5132,5199,49,4994,4994,1,1,1,5199,1,
- 1,1,1,1,1,1,1,43,1433,131,
- 5199,4810,4807,1,641,1123,5199,3247,414,1,
- 1,1,232,4991,5609,5696,5199,5061,5061,232,
- 5057,232,232,232,232,5117,1,2520,5199,232,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,5637,306,5199,4810,4807,5054,641,4855,
- 2324,3247,1,5504,5631,5632,5633,292,5216,5217,
- 4828,1,1,1,5559,1,1,1,1,1,
- 1,1,1,1,1433,2061,5199,4810,4807,1,
- 641,1123,166,3247,413,1,1,1,232,5651,
- 5609,5696,2466,2439,370,5090,5086,2696,1,1123,
- 1,3247,1,2985,43,1,5048,5048,5241,5045,
- 1347,1347,5532,5532,366,5199,348,5152,5148,2696,
- 5241,1123,1347,3247,5532,5199,4810,4807,530,5241,
- 5631,5632,5633,5199,1,1,1,1,1,1,
- 1,1,1856,1,1,1,166,5561,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1136,1,1,1856,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,366,1,
- 5090,5086,5108,5199,5111,3139,5114,723,5209,395,
- 1,351,5208,388,5199,5216,5217,1,1,1123,
- 366,3247,5199,5216,5217,512,139,5733,1,4898,
- 4894,1128,4902,3811,4136,3247,4158,949,4858,4114,
- 4092,365,5199,4885,4891,4864,4867,4879,4876,4882,
- 4873,4870,4861,4888,4202,4180,5199,5222,1056,1856,
- 649,802,5224,715,4323,778,5225,5223,637,5218,
- 5220,5221,5219,2871,348,43,43,2918,5241,5199,
- 1347,5199,5532,5199,2957,1309,4224,781,5207,513,
- 5207,874,43,43,43,4810,4807,1128,641,3811,
- 4136,3247,4158,5207,568,4114,4092,772,5199,5467,
- 5465,5474,5473,5469,5470,5468,5471,5472,5475,5466,
- 4202,4180,1856,5222,1056,2324,649,802,5224,715,
- 4323,778,5225,5223,637,5218,5220,5221,5219,1,
- 5090,5086,4410,5199,1123,1014,3247,5206,314,5206,
- 5199,1309,314,3672,1,5090,5086,4410,5199,1123,
- 5199,3247,5206,43,4810,4807,1128,641,3811,4136,
- 3247,4158,5207,568,4114,4092,5199,5199,5467,5465,
- 5474,5473,5469,5470,5468,5471,5472,5475,5466,4202,
- 4180,5199,5222,1056,4524,649,802,5224,715,4323,
- 778,5225,5223,637,5218,5220,5221,5219,40,5083,
- 5080,3416,1,5090,5086,2696,3133,1123,5199,3247,
- 1309,3792,3672,5199,4810,4807,2076,5241,5199,5000,
- 4997,5206,146,4810,4807,1128,641,3811,4136,3247,
- 4158,1,568,4114,4092,389,3269,5467,5465,5474,
- 5473,5469,5470,5468,5471,5472,5475,5466,4202,4180,
- 1856,5222,1056,5199,649,802,5224,715,4323,778,
- 5225,5223,637,5218,5220,5221,5219,442,43,43,
- 134,5241,1595,5036,5199,5033,98,1,1,1309,
- 1,3272,5039,5205,5039,291,43,43,1,4898,
- 4894,1128,4902,3811,4136,3247,4158,5199,4858,4114,
- 4092,2736,5199,4885,4891,4864,4867,4879,4876,4882,
- 4873,4870,4861,4888,4202,4180,33,5222,1056,423,
- 649,802,5224,715,4323,778,5225,5223,637,5218,
- 5220,5221,5219,436,101,43,43,43,5241,5199,
- 5123,5241,5120,5199,4813,1309,3579,5204,5199,4988,
- 4985,871,43,43,43,4810,4807,1128,641,3811,
- 4136,3247,4158,5203,568,4114,4092,2411,2383,5467,
- 5465,5474,5473,5469,5470,5468,5471,5472,5475,5466,
- 4202,4180,1879,5222,1056,3244,649,802,5224,715,
- 4323,778,5225,5223,637,5218,5220,5221,5219,43,
- 4810,4807,1128,641,3811,4136,3247,4158,190,568,
- 4114,4092,4224,781,5467,5465,5474,5473,5469,5470,
- 5468,5471,5472,5475,5466,4202,4180,437,5222,1056,
- 5199,649,802,5224,715,4323,778,5225,5223,637,
- 5218,5220,5221,5219,5199,119,1,5631,5632,5633,
- 2579,5631,5632,5633,5199,4816,1309,3959,3672,43,
- 4810,4807,1128,641,3811,4136,3247,4158,5199,568,
- 4114,4092,5202,5199,5467,5465,5474,5473,5469,5470,
- 5468,5471,5472,5475,5466,4202,4180,451,5222,1056,
- 445,649,802,5224,715,4323,778,5225,5223,637,
- 5218,5220,5221,5219,5199,5199,1,3437,1811,581,
- 1,5665,5659,2918,5663,4819,1309,5657,5658,5009,
- 1,81,3159,2918,3484,396,5216,5217,133,344,
- 5196,106,5688,5689,5668,4246,5666,1,5090,5086,
- 4410,4268,1123,120,3247,5599,5199,5267,5268,3769,
- 1,5090,5086,5108,566,5111,2520,5114,1856,41,
- 5042,5042,626,45,5042,118,135,5669,1856,2726,
- 1467,1482,5690,5667,5199,5216,5217,109,122,4678,
- 4377,344,121,5012,3769,5199,344,293,3769,5003,
- 3521,4840,105,344,5679,5678,5691,5660,5661,5684,
- 5685,132,117,5682,5683,5662,5664,5686,5687,5692,
- 5672,5673,5674,5670,5671,5680,5681,5676,5675,5677,
- 5199,2466,2439,581,798,5665,5659,5199,5663,2520,
- 5199,5657,5658,3371,3746,3723,41,5051,5051,5209,
- 2024,996,5199,5208,33,5199,5688,5689,5668,1818,
- 5666,5199,5071,5068,1987,4246,43,51,5077,5077,
- 5241,4268,5006,2411,2383,3370,5199,3625,566,3746,
- 3723,3238,949,3746,3723,5199,5098,5094,5199,8402,
- 8299,5669,5239,5199,1467,1482,5690,5667,5074,5199,
- 4810,4807,4246,5241,2466,2439,4344,3022,4268,350,
- 322,1721,1805,5129,5199,3899,5239,3114,5679,5678,
- 5691,5660,5661,5684,5685,388,421,5682,5683,5662,
- 5664,5686,5687,5692,5672,5673,5674,5670,5671,5680,
- 5681,5676,5675,5677,43,4810,4807,1128,641,3811,
- 4136,3247,4158,4846,568,4114,4092,1856,1856,5467,
- 5465,5474,5473,5469,5470,5468,5471,5472,5475,5466,
- 4202,4180,316,5222,1056,907,649,802,5224,715,
- 4323,778,5225,5223,637,5218,5220,5221,5219,5199,
- 8402,8299,1860,43,4810,4807,1128,641,3811,4136,
- 3247,4158,373,568,4114,4092,324,5199,5467,5465,
- 5474,5473,5469,5470,5468,5471,5472,5475,5466,4202,
- 4180,282,5222,1056,5156,649,802,5224,715,4323,
- 778,5225,5223,637,5218,5220,5221,5219,5199,1265,
- 1,43,4810,4807,4640,641,3811,4136,3247,4158,
- 1309,568,4114,4092,1856,5199,5467,5465,5474,5473,
- 5469,5470,5468,5471,5472,5475,5466,4202,4180,1178,
- 5222,1056,5199,649,802,5224,715,4323,778,5225,
- 5223,637,5218,5220,5221,5219,43,4810,4807,1128,
- 641,3811,4136,3247,4158,371,568,4114,4092,3403,
- 949,5467,5465,5474,5473,5469,5470,5468,5471,5472,
- 5475,5466,4202,4180,417,5222,1056,1,649,802,
- 5224,715,4323,778,5225,5223,637,5218,5220,5221,
- 5219,43,4810,4807,1128,641,3811,4136,3247,4158,
- 39,568,4114,4092,5199,949,5467,5465,5474,5473,
- 5469,5470,5468,5471,5472,5475,5466,4202,4180,5199,
- 5222,1056,1223,649,802,5224,715,4323,778,5225,
- 5223,637,5218,5220,5221,5219,5199,4810,4807,1,
- 5241,2165,5199,5199,5199,3016,784,2858,5199,5165,
- 5460,5467,5465,5474,5473,5469,5470,5468,5471,5472,
- 5475,5466,404,5199,1,1,5199,3253,5199,5199,
- 3117,5102,5209,5209,366,5105,5208,5208,5205,5199,
- 5199,5463,5539,5540,1,5457,5464,5436,5462,5461,
- 5458,5459,5437,5171,245,4978,4974,3355,4982,5596,
- 5199,446,5168,3513,784,912,5597,5598,4929,4965,
- 4971,4944,4947,4959,4956,4962,4953,4950,4941,4968,
- 2113,5199,5199,33,388,388,5024,388,388,5024,
- 388,5024,5027,79,5199,4021,5024,388,366,4920,
- 4914,4911,5204,4938,4917,4908,4923,4926,4935,4932,
- 4905,4813,5206,1,313,5199,5199,5596,4624,3525,
- 366,5126,196,912,5597,5598,196,2818,388,388,
- 388,5027,388,388,388,388,388,388,388,388,
- 36,389,389,5018,389,389,5018,389,5018,5021,
- 5199,1,227,5018,389,54,5027,5199,5199,5217,
- 5205,3382,505,5199,378,5199,5460,5467,5465,5474,
- 5473,5469,5470,5468,5471,5472,5475,5466,3150,5199,
- 4384,5199,4664,5217,5199,389,389,389,5021,389,
- 389,389,389,389,389,389,389,5463,5539,5540,
- 1,5457,5464,5436,5462,5461,5458,5459,5437,526,
- 3034,503,3581,5021,1,5162,5162,232,5162,232,
- 232,232,232,232,5204,5199,5199,232,8415,3862,
- 1,5162,5162,232,5162,232,232,232,232,5174,
- 5199,5199,2858,232,8415,5159,1,5162,5162,232,
- 5162,232,232,232,232,5174,1,519,54,232,
- 8415,5159,5216,5199,5199,5199,5165,4666,3066,1,
- 5199,1,1601,526,1173,1,3002,5159,3968,5199,
- 5199,2,4700,3370,168,5199,5216,3117,1601,5696,
- 1173,5199,3002,3253,4355,5199,5199,5382,224,4711,
- 3000,5199,5199,507,1601,5696,1173,5199,3002,41,
- 5199,5199,3315,5381,224,5199,5199,5199,5199,5168,
- 5199,5696,1,5162,5162,232,5162,232,232,232,
- 232,5187,5199,5199,5199,232,8415,1945,1,5162,
- 5162,232,5162,232,232,232,232,5174,168,5199,
- 5199,232,8415,5159,1,5162,5162,232,5162,232,
- 232,232,232,5174,3887,5199,5199,232,8415,5159,
- 934,5199,5199,5199,5199,5199,3370,5199,5199,5199,
- 1601,5199,1173,5199,3002,5159,5199,5199,5199,5199,
- 223,5199,5199,5199,5199,5199,1601,5696,1173,5199,
- 3002,5199,5199,5199,5199,5199,224,5199,5199,5199,
- 5199,5199,1601,5696,1173,5199,3002,5199,5199,5199,
- 5199,5199,224,5199,5199,5199,5199,5199,5199,5696,
- 1,5162,5162,232,5162,232,232,232,232,232,
- 5199,5199,5199,232,8415,5199,1,5162,5162,232,
- 5162,232,232,232,232,232,5199,5199,5199,232,
- 8415,5159,1,5162,5162,232,5162,232,232,232,
- 232,232,5199,5199,5199,232,8415,5159,5199,5199,
- 5199,5199,5199,5199,5199,5199,5199,5199,1601,5199,
- 1173,5199,3002,5159,5199,5199,5199,5199,5199,5199,
- 5199,5199,5199,5199,1601,5696,1173,5199,3002,5199,
- 5199,5199,5199,5199,5199,5199,5199,5199,5199,5199,
- 1601,5696,1173,5199,3002,5199,5199,5199,5199,5199,
- 5199,5199,5199,5199,5199,5199,5199,5696
+ 5574,5575,5576,5481,5482,5574,5575,5576,439,1,
+ 1,4999,1,1,4776,228,4776,135,1,1,
+ 1,1,363,1,1,1,1,1,1,1,
+ 1,2876,5405,1996,5144,4755,4752,1,781,913,
+ 5144,2821,1,1,1,232,37,411,5552,4794,
+ 5144,5144,4794,303,4794,4794,5639,4794,4794,4794,
+ 5408,5481,5482,5446,5402,5409,5381,5407,5406,5403,
+ 5404,5382,4794,4794,4794,229,5144,5097,5093,577,
+ 5186,913,1335,2821,5474,363,5144,140,5574,5575,
+ 5576,5144,5405,3717,4794,5144,8437,8437,5144,5088,
+ 5083,577,4990,913,5080,2821,5077,4794,363,144,
+ 3569,2091,4794,4794,2392,2364,116,4794,4794,4794,
+ 5408,5481,5482,1,5402,5409,5381,5407,5406,5403,
+ 5404,5382,5184,5116,4794,4794,4794,4794,4794,4794,
+ 4794,4794,4794,4794,4794,4794,4794,4794,4794,4794,
+ 4794,4794,4794,4794,4794,4794,4794,4794,4794,4794,
+ 3109,162,5144,4794,4794,4797,4794,4794,4797,2060,
+ 4797,4797,5144,4797,4797,4797,1802,345,5097,5093,
+ 2649,5186,913,1335,2821,5474,5119,2304,4797,4797,
+ 4797,230,311,5088,5083,577,4990,913,5080,2821,
+ 5077,345,43,43,2790,5186,3932,1335,5405,5474,
+ 4797,2234,3954,1760,1718,1676,1634,1592,1550,1508,
+ 1466,1424,1382,4797,5144,1844,3268,1340,4797,4797,
+ 292,5161,5162,4797,4797,4797,5408,5481,5482,5144,
+ 5402,5409,5381,5407,5406,5403,5404,5382,5152,1844,
+ 4797,4797,4797,4797,4797,4797,4797,4797,4797,4797,
+ 4797,4797,4797,4797,4797,4797,4797,4797,4797,4797,
+ 4797,4797,4797,4797,4797,4797,5144,5161,5162,4797,
+ 4797,358,4797,4797,5144,1,1,1,1,1,
+ 1,1,1,43,1,1,1,5186,1,1,
+ 1,33,1,1,1,1,1,1,1,1,
+ 1,1,5151,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,851,
+ 1,5035,5031,5053,5144,5056,5144,5059,3259,5154,
+ 3910,644,1,5153,5144,5161,5162,5144,1,1,
+ 5144,4755,4752,5144,781,4800,5150,2821,5676,1,
+ 4843,4839,2827,4847,3749,3822,2821,3844,5144,4803,
+ 3800,3778,419,4830,4836,4809,5501,4812,4824,4821,
+ 4827,4818,4815,4806,4833,3888,3866,2047,5167,1047,
+ 674,852,5169,796,4009,810,3684,5170,5168,671,
+ 5163,5165,5166,5164,3437,1,5035,5031,2649,5144,
+ 913,5144,2821,4676,4954,1293,5503,1297,5154,5149,
+ 511,5144,5153,43,43,43,4755,4752,2827,781,
+ 3749,3822,2821,3844,5152,905,3800,3778,452,5412,
+ 5410,5419,5144,5418,5414,5415,5413,5416,5417,5420,
+ 5411,3888,3866,1844,5167,1047,674,852,5169,796,
+ 4009,810,5144,5170,5168,671,5163,5165,5166,5164,
+ 4094,1,5035,5031,577,4270,913,4957,2821,347,
+ 311,1457,2265,1297,311,4039,4782,1,5035,5031,
+ 577,141,913,5144,2821,40,5028,5025,5151,43,
+ 4755,4752,2827,781,3749,3822,2821,3844,5152,905,
+ 3800,3778,5144,5412,5410,5419,5144,5418,5414,5415,
+ 5413,5416,5417,5420,5411,3888,3866,1844,5167,1047,
+ 674,852,5169,796,4009,810,1,5170,5168,671,
+ 5163,5165,5166,5164,4325,166,43,1,4993,4993,
+ 5186,4990,1335,1335,5474,5474,363,1297,2060,4039,
+ 5144,4933,4930,146,4755,4752,2827,781,3749,3822,
+ 2821,3844,5151,905,3800,3778,41,5412,5410,5419,
+ 5144,5418,5414,5415,5413,5416,5417,5420,5411,3888,
+ 3866,2304,5167,1047,674,852,5169,796,4009,810,
+ 5144,5170,5168,671,5163,5165,5166,5164,166,1,
+ 5035,5031,2649,5184,913,510,2821,5144,54,363,
+ 5144,1297,5161,4351,3910,644,5150,43,43,1,
+ 4843,4839,2827,4847,3749,3822,2821,3844,5144,4803,
+ 3800,3778,363,4830,4836,4809,5161,4812,4824,4821,
+ 4827,4818,4815,4806,4833,3888,3866,1844,5167,1047,
+ 674,852,5169,796,4009,810,4373,5170,5168,671,
+ 5163,5165,5166,5164,440,43,43,5144,5186,5144,
+ 4981,868,4978,136,98,1,1,1297,1,5149,
+ 4984,2335,4984,43,43,43,4755,4752,2827,781,
+ 3749,3822,2821,3844,5148,905,3800,3778,5144,5412,
+ 5410,5419,1377,5418,5414,5415,5413,5416,5417,5420,
+ 5411,3888,3866,5144,5167,1047,674,852,5169,796,
+ 4009,810,5144,5170,5168,671,5163,5165,5166,5164,
+ 43,4755,4752,2827,781,3749,3822,2821,3844,137,
+ 905,3800,3778,3448,5412,5410,5419,2335,5418,5414,
+ 5415,5413,5416,5417,5420,5411,3888,3866,1,5167,
+ 1047,674,852,5169,796,4009,810,5122,5170,5168,
+ 671,5163,5165,5166,5164,101,43,43,423,5186,
+ 30,5068,362,5065,1,5035,5031,577,1297,913,
+ 4039,2821,5144,1881,43,4755,4752,2827,781,3749,
+ 3822,2821,3844,5147,905,3800,3778,5144,5412,5410,
+ 5419,348,5418,5414,5415,5413,5416,5417,5420,5411,
+ 3888,3866,5144,5167,1047,674,852,5169,796,4009,
+ 810,5151,5170,5168,671,5163,5165,5166,5164,1,
+ 33,4975,734,231,5608,5602,4975,5606,4093,626,
+ 5600,5601,1297,1,81,313,2790,3074,3068,1844,
+ 5405,5144,341,5541,119,5631,5632,5611,4758,5609,
+ 43,42,4770,4767,5186,5144,4755,4752,949,5186,
+ 5212,5213,5144,4755,4752,120,5186,643,5408,5481,
+ 5482,3505,5402,5409,5381,5407,5406,5403,5404,5382,
+ 5612,1844,3098,1455,1463,5633,5610,5144,144,118,
+ 117,5144,5161,5162,341,1867,913,122,2821,341,
+ 121,5144,1254,3505,3016,341,3505,5622,5621,5634,
+ 5603,5604,5627,5628,131,1625,5625,5626,5605,5607,
+ 5629,5630,5635,5615,5616,5617,5613,5614,5623,5624,
+ 5619,5618,5620,5144,3932,5144,734,655,5608,5602,
+ 3954,5606,2501,5144,5600,5601,1,5035,5031,5053,
+ 3449,5056,5152,5059,792,319,3482,3459,5074,5631,
+ 5632,5611,368,5609,5574,5575,5576,41,4987,4987,
+ 97,1,4987,4788,4628,4773,49,4939,4939,3932,
+ 3932,643,5144,5161,5162,3954,3954,2698,3482,3459,
+ 2234,3482,3459,401,5612,5144,4216,1455,1463,5633,
+ 5610,3289,5047,1844,2724,3268,5050,2447,2420,1005,
+ 5144,4945,4942,4936,5144,5144,5151,393,5161,5162,
+ 5144,5622,5621,5634,5603,5604,5627,5628,435,1212,
+ 5625,5626,5605,5607,5629,5630,5635,5615,5616,5617,
+ 5613,5614,5623,5624,5619,5618,5620,43,4755,4752,
+ 2827,781,3749,3822,2821,3844,4761,905,3800,3778,
+ 5144,5412,5410,5419,5144,5418,5414,5415,5413,5416,
+ 5417,5420,5411,3888,3866,2093,5167,1047,674,852,
+ 5169,796,4009,810,5144,5170,5168,671,5163,5165,
+ 5166,5164,5144,7355,6672,925,43,4755,4752,2827,
+ 781,3749,3822,2821,3844,449,905,3800,3778,5144,
+ 5412,5410,5419,3740,5418,5414,5415,5413,5416,5417,
+ 5420,5411,3888,3866,2710,5167,1047,674,852,5169,
+ 796,4009,810,4764,5170,5168,671,5163,5165,5166,
+ 5164,43,4755,4752,4353,781,3749,3822,2821,3844,
+ 45,905,3800,3778,1297,5412,5410,5419,5144,5418,
+ 5414,5415,5413,5416,5417,5420,5411,3888,3866,3701,
+ 5167,1047,674,852,5169,796,4009,810,4785,5170,
+ 5168,671,5163,5165,5166,5164,43,4755,4752,2827,
+ 781,3749,3822,2821,3844,385,905,3800,3778,5144,
+ 5412,5410,5419,53,5418,5414,5415,5413,5416,5417,
+ 5420,5411,3888,3866,5144,5167,1047,674,852,5169,
+ 796,4009,810,4791,5170,5168,671,5163,5165,5166,
+ 5164,43,4755,4752,2827,781,3749,3822,2821,3844,
+ 2618,905,3800,3778,375,5412,5410,5419,5144,5418,
+ 5414,5415,5413,5416,5417,5420,5411,3888,3866,5144,
+ 5167,1047,674,852,5169,796,4009,810,106,5170,
+ 5168,671,5163,5165,5166,5164,5144,4755,4752,5144,
+ 5186,133,41,4996,4996,2798,636,5144,5016,5013,
+ 5412,5410,5419,5405,5418,5414,5415,5413,5416,5417,
+ 5420,5411,5144,51,5022,5022,5144,7355,6672,2501,
+ 241,5154,5144,4960,5144,5153,4292,3321,3382,3000,
+ 2120,5408,5481,5482,5184,5402,5409,5381,5407,5406,
+ 5403,5404,5382,245,4923,4919,5144,4927,5144,5538,
+ 5019,3377,4948,636,622,5539,5540,4910,4916,4889,
+ 4874,4892,4904,4901,4907,4898,4895,4886,4913,105,
+ 5144,5043,5039,3382,33,385,385,4969,385,385,
+ 4969,385,4969,4972,2447,2420,5144,4969,4865,4859,
+ 4856,385,4883,4862,4853,4868,4871,4880,4877,4850,
+ 1,1,4758,291,2790,5144,5538,5184,1,5150,
+ 4954,622,5539,5540,5144,5144,5144,2010,5116,385,
+ 385,385,4972,385,385,385,385,385,385,385,
+ 385,36,386,386,4963,386,386,4963,386,4963,
+ 4966,1,1,227,4963,3109,4972,3440,386,1844,
+ 5154,196,3289,5144,5153,196,3614,5412,5410,5419,
+ 5405,5418,5414,5415,5413,5416,5417,5420,5411,982,
+ 5144,5119,5149,4957,5144,2128,386,386,386,4966,
+ 386,386,386,386,386,386,386,386,5408,5481,
+ 5482,5144,5402,5409,5381,5407,5406,5403,5404,5382,
+ 443,5144,851,4966,1,5107,5107,232,5107,232,
+ 232,232,232,5110,5144,5144,5144,232,4033,3261,
+ 321,8478,1,5107,5107,232,5107,232,232,232,
+ 232,232,1,5144,421,232,4031,5144,5144,8478,
+ 109,5104,79,4140,5144,1,5144,5144,1,3612,
+ 2716,5144,5651,282,524,132,5101,168,444,5104,
+ 851,3025,5580,2626,5144,2716,2971,2972,1844,5144,
+ 5071,3160,3702,5144,415,5594,4250,224,5144,3025,
+ 310,2626,1,2501,2971,39,5639,5144,1,5107,
+ 5107,232,5107,232,232,232,232,5113,5144,4030,
+ 571,232,503,5144,5639,8478,1,5107,5107,232,
+ 5107,232,232,232,232,5110,4951,524,2097,232,
+ 168,517,5327,8478,3225,5104,3741,1,5107,5107,
+ 232,5107,232,232,232,232,5110,501,2756,5144,
+ 232,2147,3739,5104,8478,3025,4302,2626,2447,2420,
+ 2971,5144,4036,5144,3005,5144,4587,5144,3044,5144,
+ 4623,223,3046,3025,5104,2626,1,5144,2971,4633,
+ 5639,5144,5144,5144,4630,3566,4483,5144,505,224,
+ 2,5144,5144,5144,3025,5144,2626,5144,5639,2971,
+ 1,5107,5107,232,5107,232,232,232,232,232,
+ 224,5144,5144,232,4675,5144,5144,8478,41,5639,
+ 5326,1,5107,5107,232,5107,232,232,232,232,
+ 232,1,4036,5144,232,5144,5144,5104,8478,1,
+ 5107,5107,232,5107,232,232,232,232,232,5144,
+ 3382,5144,232,5144,1931,927,8478,3025,5104,2626,
+ 2888,5144,2971,5144,5144,5144,5144,5144,5144,5144,
+ 5144,4170,5144,5144,5144,5144,5104,5144,3025,5144,
+ 2626,5144,5639,2971,5144,5144,5144,5144,5144,5144,
+ 5144,5144,5144,5144,5144,5144,3025,5144,2626,5144,
+ 5144,2971,5144,5639,5144,5144,5144,5144,5144,5144,
+ 5144,5144,5144,5144,5144,5144,5144,5144,5144,5144,
+ 5144,5639
};
};
public final static char termAction[] = TermAction.termAction;
@@ -1665,59 +1643,58 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface Asb {
public final static char asb[] = {0,
- 697,7,406,1,1116,548,548,548,548,145,
- 1116,568,568,625,568,969,406,971,407,407,
- 407,407,407,407,407,407,407,570,576,581,
- 578,585,583,590,588,592,591,593,154,594,
- 406,390,117,117,117,117,446,931,89,89,
- 565,117,318,86,568,568,89,656,570,86,
- 1075,116,863,147,757,390,568,570,1068,1068,
- 931,406,407,407,407,407,407,407,407,407,
- 407,407,407,407,407,407,407,407,407,407,
- 407,406,406,406,406,406,406,406,406,406,
- 406,406,406,407,86,86,77,390,822,822,
- 822,822,251,86,89,89,201,746,757,516,
- 757,511,757,513,757,741,145,446,318,318,
- 89,318,116,406,444,862,86,443,446,445,
- 443,86,318,578,578,576,576,576,583,583,
- 583,583,581,581,588,585,585,591,590,592,
- 539,593,201,277,467,457,456,321,764,764,
- 145,971,1116,1116,1116,1116,446,446,822,784,
- 821,822,565,446,561,207,446,359,251,268,
- 357,516,272,446,446,446,251,822,407,117,
- 574,42,86,147,446,446,548,445,863,406,
- 77,318,609,86,469,471,446,863,406,406,
- 406,406,1116,1116,390,205,561,207,359,358,
- 359,251,359,272,272,446,251,446,86,574,
- 201,862,147,446,444,86,461,449,460,471,
- 251,444,86,86,86,86,931,931,561,560,
- 508,446,207,539,548,253,1023,529,207,359,
- 359,518,446,272,508,506,507,446,574,575,
- 574,406,42,1028,570,147,550,406,458,458,
- 255,255,446,465,201,9,86,446,86,86,
- 561,863,822,548,443,621,531,440,1116,526,
- 144,519,446,508,407,446,574,931,407,318,
- 1028,550,406,406,471,863,86,469,449,550,
- 332,444,870,222,444,359,359,440,614,201,
- 541,407,539,263,518,446,145,145,446,575,
- 86,318,921,471,444,550,615,739,1030,196,
- 1116,149,906,222,444,359,516,145,531,440,
- 407,407,446,446,446,921,86,921,824,196,
- 739,869,516,516,618,145,821,548,976,976,
- 615,516,370,526,446,1116,446,446,1116,914,
- 921,870,869,615,262,614,86,869,869,869,
- 145,446,222,870,222,820,820,982,371,145,
- 446,931,472,914,869,406,986,440,615,508,
- 869,869,869,446,446,222,117,117,982,370,
- 539,407,539,615,1116,1116,1116,371,1116,446,
- 162,615,615,446,516,86,85,916,508,86,
- 984,508,508,446,615,821,362,1116,362,539,
- 371,390,390,388,929,390,615,615,695,982,
- 117,916,984,615,504,9,86,440,86,388,
- 196,1116,86,982,507,976,86,86,345,371,
- 695,371,615,196,406,371,368,984,820,516,
- 516,1108,406,369,931,615,86,443,371,86,
- 615,371
+ 124,7,336,1,905,679,679,679,679,73,
+ 905,547,547,597,547,722,336,724,337,337,
+ 337,337,337,337,337,337,337,549,555,560,
+ 557,564,562,569,567,571,570,572,181,573,
+ 336,320,45,45,45,45,376,684,17,17,
+ 544,45,420,121,547,547,17,628,549,121,
+ 864,44,992,75,1047,320,547,549,779,779,
+ 684,336,337,337,337,337,337,337,337,337,
+ 337,337,337,337,337,337,337,337,337,337,
+ 337,336,336,336,336,336,336,336,336,336,
+ 336,336,336,337,121,121,112,320,1112,1112,
+ 1112,1112,279,121,17,17,228,1036,1047,469,
+ 1047,464,1047,466,1047,1031,73,376,420,420,
+ 17,420,44,336,374,991,121,373,376,375,
+ 373,121,420,557,557,555,555,555,562,562,
+ 562,562,560,560,567,564,564,570,569,571,
+ 796,572,228,379,494,484,483,423,1054,1054,
+ 73,724,905,905,905,905,376,376,1112,1074,
+ 1111,1112,544,376,540,234,376,461,279,283,
+ 459,469,287,376,376,376,279,1112,337,45,
+ 553,77,121,75,376,376,679,375,992,336,
+ 112,420,588,121,496,498,376,992,336,336,
+ 336,336,905,905,320,232,540,234,461,460,
+ 461,279,461,287,287,376,279,376,121,553,
+ 228,991,75,376,374,121,488,476,487,498,
+ 279,374,121,121,121,121,684,684,540,539,
+ 473,376,234,796,467,679,281,946,786,234,
+ 461,461,9,376,287,473,471,472,376,553,
+ 554,553,336,77,951,549,75,729,336,485,
+ 485,168,168,376,492,228,998,121,376,121,
+ 121,540,992,741,469,1112,679,373,798,788,
+ 370,905,669,72,10,376,473,337,376,553,
+ 684,337,420,951,729,336,336,498,992,121,
+ 496,476,729,434,374,741,741,803,250,374,
+ 461,461,370,593,228,672,337,796,176,9,
+ 376,73,73,376,554,121,420,854,498,374,
+ 729,594,473,166,953,223,905,467,839,741,
+ 741,250,374,461,469,73,788,370,337,337,
+ 376,376,376,854,121,854,802,223,166,681,
+ 73,473,1111,679,533,533,594,469,300,669,
+ 376,905,376,376,905,847,854,803,741,594,
+ 175,593,121,73,376,250,803,250,1110,1110,
+ 862,301,73,376,684,499,847,741,336,909,
+ 370,594,376,376,250,45,45,862,300,796,
+ 337,796,594,905,905,905,301,905,376,189,
+ 594,594,376,469,121,120,849,473,121,907,
+ 376,594,1111,292,905,292,796,301,320,320,
+ 318,739,320,594,594,667,862,45,849,907,
+ 594,531,998,121,370,121,318,223,905,121,
+ 862,472,533,121,121,447,301,667,301,594,
+ 223,336,301,298,907,1110,469,469,897,336,
+ 299,684,594,121,373,301,121,594,301
};
};
public final static char asb[] = Asb.asb;
@@ -1725,118 +1702,118 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface Asr {
public final static byte asr[] = {0,
- 9,72,118,73,13,66,121,0,49,15,
- 16,63,46,17,69,50,14,18,51,52,
- 19,20,53,54,21,22,55,70,56,10,
- 71,23,45,24,47,25,1,2,4,95,
- 0,96,90,11,12,91,92,88,89,28,
- 93,94,97,98,99,100,101,102,117,72,
- 95,67,104,105,106,107,108,109,110,111,
- 112,113,118,68,13,121,61,1,2,8,
- 6,4,3,48,66,73,9,0,32,64,
- 33,34,65,7,35,36,37,38,57,39,
- 40,41,42,43,29,26,27,8,6,11,
- 12,5,30,61,44,3,49,15,16,63,
- 46,17,69,50,14,18,51,52,19,20,
- 53,54,21,22,55,70,56,10,71,23,
- 24,47,25,45,1,2,4,0,1,2,
- 123,59,0,61,72,95,66,118,73,68,
- 121,15,16,32,64,17,33,34,18,19,
- 20,65,35,21,22,36,37,38,57,39,
- 40,10,23,24,25,41,42,43,29,26,
- 27,11,12,30,44,9,13,7,5,3,
- 1,2,8,4,6,0,75,7,114,115,
- 116,58,9,3,8,6,5,72,68,13,
- 74,49,15,16,63,46,17,69,50,14,
- 18,51,52,19,20,53,54,21,22,55,
- 70,56,10,71,23,45,24,47,25,4,
- 1,2,31,0,76,59,61,72,95,73,
- 48,3,9,66,13,67,0,4,59,72,
- 0,1,2,9,68,0,64,65,10,33,
- 37,35,32,40,16,25,15,21,19,20,
- 22,23,18,17,24,41,44,42,43,29,
- 39,34,38,5,7,4,3,26,27,8,
- 6,11,12,30,36,1,2,118,9,0,
- 15,16,17,18,19,20,21,22,23,24,
- 25,49,46,50,14,51,52,53,54,55,
- 56,45,47,13,9,73,7,1,2,48,
- 3,8,6,5,4,0,4,28,59,72,
- 0,75,114,115,116,31,72,119,122,68,
- 74,76,58,60,62,78,80,86,84,77,
- 82,83,85,87,59,79,81,13,9,49,
- 63,46,69,50,14,51,52,53,54,55,
- 70,56,71,45,47,57,64,65,10,33,
- 37,35,32,40,16,25,15,21,19,20,
- 22,23,18,17,24,41,44,42,43,29,
- 39,34,38,26,27,11,12,30,36,8,
- 6,3,4,7,5,1,2,0,8,6,
- 4,5,7,1,2,3,48,61,67,66,
- 9,73,95,0,7,5,3,48,6,8,
- 95,49,15,16,46,17,69,50,14,18,
- 51,52,19,20,53,54,21,22,55,70,
- 56,10,71,23,45,24,47,25,1,2,
- 4,73,9,63,0,67,66,68,9,0,
- 31,72,4,1,2,59,0,45,1,2,
- 4,114,115,116,0,59,66,0,13,9,
- 7,5,3,1,2,6,8,4,72,0,
- 72,9,48,3,67,66,13,28,0,46,
- 57,47,9,61,95,67,66,73,0,57,
- 46,7,47,5,1,2,4,76,59,120,
- 103,26,27,48,3,96,90,6,91,92,
- 11,12,89,88,28,93,94,97,98,8,
- 99,100,101,61,95,73,121,67,104,105,
- 106,107,108,109,110,111,112,113,72,118,
- 68,102,117,66,13,9,0,59,67,0,
- 59,72,76,0,49,15,16,63,46,17,
- 69,50,14,18,51,52,19,20,53,54,
- 21,22,55,70,56,10,71,23,45,24,
- 47,25,1,2,4,65,64,11,12,6,
- 91,92,99,8,100,5,30,28,61,107,
- 108,104,105,106,112,111,113,89,88,109,
- 110,97,98,93,94,101,102,26,27,66,
- 90,103,3,48,67,0,15,16,32,64,
- 17,33,34,18,19,20,65,7,35,21,
- 22,36,37,38,57,39,40,10,23,24,
- 25,41,42,43,1,2,3,26,27,8,
- 6,11,12,5,30,4,44,74,29,0,
- 10,69,63,70,71,16,25,15,21,19,
- 20,22,23,18,17,24,76,59,72,95,
- 118,68,121,7,54,55,56,45,47,1,
- 2,53,52,51,14,50,5,4,46,49,
- 9,73,13,48,3,120,96,103,90,26,
+ 9,71,118,72,13,66,121,0,45,1,
+ 2,4,114,115,116,0,31,64,32,33,
+ 65,7,34,35,36,38,58,39,40,41,
+ 42,43,29,26,27,8,6,11,12,5,
+ 30,61,44,3,49,14,15,63,46,16,
+ 68,50,17,18,51,52,19,20,53,54,
+ 21,22,55,69,56,10,70,23,24,47,
+ 25,45,1,2,4,0,96,90,11,12,
+ 91,92,88,89,28,93,94,97,98,99,
+ 100,101,102,117,71,95,67,104,105,106,
+ 107,108,109,110,111,112,113,118,73,13,
+ 121,61,1,2,8,6,4,3,48,66,
+ 72,9,0,14,15,31,64,16,32,33,
+ 18,19,20,65,7,34,21,22,35,36,
+ 38,58,39,40,10,23,24,25,41,42,
+ 43,1,2,3,26,27,8,6,11,12,
+ 5,30,4,44,74,29,0,75,60,61,
+ 71,95,72,48,3,9,66,13,67,0,
+ 61,71,95,66,118,72,73,121,14,15,
+ 31,64,16,32,33,18,19,20,65,34,
+ 21,22,35,36,38,58,39,40,10,23,
+ 24,25,41,42,43,29,26,27,11,12,
+ 30,44,9,13,7,5,3,1,2,8,
+ 4,6,0,82,57,7,114,115,116,59,
+ 9,3,8,6,5,71,73,13,74,49,
+ 14,15,63,46,16,68,50,17,18,51,
+ 52,19,20,53,54,21,22,55,69,56,
+ 10,70,23,45,24,47,25,4,1,2,
+ 37,0,4,60,71,0,1,2,9,73,
+ 0,82,114,115,116,37,71,119,122,73,
+ 74,75,59,57,62,77,79,86,84,76,
+ 81,83,85,87,60,78,80,13,9,49,
+ 63,46,68,50,17,51,52,53,54,55,
+ 69,56,70,45,47,58,64,65,10,32,
+ 36,34,31,40,15,25,14,21,19,20,
+ 22,23,18,16,24,41,44,42,43,29,
+ 39,33,38,26,27,11,12,30,35,8,
+ 6,3,4,7,5,1,2,0,64,65,
+ 10,32,36,34,31,40,15,25,14,21,
+ 19,20,22,23,18,16,24,41,44,42,
+ 43,29,39,33,38,5,7,4,3,26,
+ 27,8,6,11,12,30,35,1,2,118,
+ 9,0,14,15,16,18,19,20,21,22,
+ 23,24,25,49,46,50,17,51,52,53,
+ 54,55,56,45,47,13,9,72,7,1,
+ 2,48,3,8,6,5,4,0,4,28,
+ 60,71,0,37,71,4,1,2,60,0,
+ 67,66,73,9,0,8,6,4,5,7,
+ 1,2,3,48,61,67,66,9,72,95,
+ 0,7,5,3,48,6,8,95,49,14,
+ 15,46,16,68,50,17,18,51,52,19,
+ 20,53,54,21,22,55,69,56,10,70,
+ 23,45,24,47,25,1,2,4,72,9,
+ 63,0,61,67,66,1,2,0,58,46,
+ 7,47,5,1,2,4,75,60,120,103,
+ 26,27,48,3,96,90,6,91,92,11,
+ 12,89,88,28,93,94,97,98,8,99,
+ 100,101,61,95,72,121,67,104,105,106,
+ 107,108,109,110,111,112,113,71,118,73,
+ 102,117,66,13,9,0,49,14,15,63,
+ 46,16,68,50,17,18,51,52,19,20,
+ 53,54,21,22,55,69,56,10,70,23,
+ 45,24,47,25,1,2,4,65,64,11,
+ 12,6,91,92,99,8,100,5,30,28,
+ 61,107,108,104,105,106,112,111,113,89,
+ 88,109,110,97,98,93,94,101,102,26,
+ 27,66,90,103,3,48,67,0,60,66,
+ 0,71,9,48,3,67,66,13,28,0,
+ 60,67,0,9,72,14,15,31,16,32,
+ 33,18,19,20,34,21,22,35,36,38,
+ 58,39,40,10,23,24,25,41,42,43,
+ 29,3,26,27,8,6,11,12,30,4,
+ 44,5,7,1,2,65,64,0,46,58,
+ 47,9,61,95,67,66,72,0,76,0,
+ 62,49,14,15,63,46,16,68,50,82,
+ 17,18,51,52,19,20,53,57,54,21,
+ 22,55,69,56,10,70,23,59,45,24,
+ 47,25,9,3,8,6,73,13,7,4,
+ 37,5,1,2,0,13,9,7,5,3,
+ 1,2,6,8,4,71,0,60,71,75,
+ 0,60,63,46,16,68,50,18,51,52,
+ 19,20,53,54,21,22,55,69,56,70,
+ 23,45,24,47,25,15,14,49,9,3,
+ 8,6,13,59,62,82,17,37,7,1,
+ 2,5,4,10,57,0,46,47,75,3,
+ 60,71,13,58,9,61,95,67,66,72,
+ 0,119,0,64,65,26,27,11,12,30,
+ 35,41,44,42,43,29,39,33,38,15,
+ 25,14,21,19,20,22,23,18,16,24,
+ 10,32,36,34,31,40,8,6,4,48,
+ 7,5,1,2,3,0,9,73,64,65,
+ 58,26,27,8,6,11,12,30,35,3,
+ 41,44,42,43,29,39,33,38,15,25,
+ 14,21,19,20,22,23,18,16,24,32,
+ 36,34,31,40,60,7,1,2,4,10,
+ 5,0,63,46,16,68,50,18,51,52,
+ 19,20,53,54,21,22,55,69,56,10,
+ 70,23,45,24,47,25,15,14,49,9,
+ 3,8,13,59,57,62,82,17,28,4,
+ 6,7,1,2,5,37,0,49,14,15,
+ 63,46,16,68,50,17,18,51,52,19,
+ 20,53,54,21,22,55,69,56,10,70,
+ 23,45,24,47,25,1,2,4,95,0,
+ 10,68,63,69,70,15,25,14,21,19,
+ 20,22,23,18,16,24,75,60,71,95,
+ 118,73,121,7,54,55,56,45,47,1,
+ 2,53,52,51,17,50,5,4,46,49,
+ 9,72,13,48,3,120,96,103,90,26,
27,8,6,11,12,91,92,88,89,28,
93,94,97,98,99,100,101,102,117,104,
105,106,107,108,109,110,111,112,113,67,
- 66,61,0,62,49,15,16,63,46,17,
- 69,50,75,14,18,51,52,19,20,53,
- 60,54,21,22,55,70,56,10,71,23,
- 58,45,24,47,25,9,3,8,4,13,
- 59,6,7,1,2,5,31,0,68,63,
- 46,17,69,50,18,51,52,19,20,53,
- 54,21,22,55,70,56,71,23,45,24,
- 47,25,16,15,49,9,3,8,6,13,
- 58,62,75,14,31,7,1,2,5,4,
- 10,60,0,46,47,76,3,59,72,13,
- 57,9,61,95,67,66,73,0,77,0,
- 9,73,15,16,32,17,33,34,18,19,
- 20,35,21,22,36,37,38,57,39,40,
- 10,23,24,25,41,42,43,29,3,26,
- 27,8,6,11,12,30,4,44,5,7,
- 1,2,65,64,0,61,67,66,1,2,
- 0,119,0,9,68,64,65,57,26,27,
- 8,6,11,12,30,36,3,41,44,42,
- 43,29,39,34,38,16,25,15,21,19,
- 20,22,23,18,17,24,33,37,35,32,
- 40,59,7,1,2,4,10,5,0,63,
- 46,17,69,50,18,51,52,19,20,53,
- 54,21,22,55,70,56,10,71,23,45,
- 24,47,25,16,15,49,9,3,8,6,
- 13,58,60,62,75,14,28,7,4,31,
- 5,1,2,0,64,65,26,27,11,12,
- 30,36,41,44,42,43,29,39,34,38,
- 16,25,15,21,19,20,22,23,18,17,
- 24,10,33,37,35,32,40,8,6,4,
- 48,7,5,1,2,3,0
+ 66,61,0
};
};
public final static byte asr[] = Asr.asr;
@@ -1844,59 +1821,58 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface Nasb {
public final static char nasb[] = {0,
- 208,12,38,12,12,12,12,12,12,198,
- 12,12,12,204,12,27,188,82,38,38,
- 248,38,38,38,38,38,38,12,12,12,
- 12,12,12,12,12,12,12,12,38,12,
- 38,259,256,256,256,256,82,235,122,122,
- 44,5,102,233,12,12,122,206,12,233,
- 38,57,55,12,12,259,12,12,59,59,
- 235,188,38,38,38,38,38,38,38,38,
- 38,38,38,38,38,38,38,38,38,38,
- 38,38,38,38,38,38,38,38,38,38,
- 38,38,188,38,233,233,163,1,12,12,
- 12,12,143,233,36,36,197,223,224,12,
- 224,129,224,68,224,217,10,82,102,102,
- 36,102,256,31,19,47,233,18,252,82,
- 18,233,102,12,12,12,12,12,12,12,
+ 79,12,41,12,12,12,12,12,12,168,
+ 12,12,12,149,12,52,156,76,41,41,
+ 224,41,41,41,41,41,41,12,12,12,
+ 12,12,12,12,12,12,12,12,41,12,
+ 41,252,257,257,257,257,76,177,121,121,
+ 47,5,95,175,12,12,121,151,12,175,
+ 41,29,65,12,12,252,12,12,33,33,
+ 177,156,41,41,41,41,41,41,41,41,
+ 41,41,41,41,41,41,41,41,41,41,
+ 41,41,41,41,41,41,41,41,41,41,
+ 41,41,156,41,175,175,145,1,12,12,
+ 12,12,13,175,39,39,167,242,243,12,
+ 243,108,243,22,243,236,10,76,95,95,
+ 39,95,257,103,205,56,175,204,228,76,
+ 204,175,95,12,12,12,12,12,12,12,
12,12,12,12,12,12,12,12,12,12,
- 12,12,197,97,162,78,78,12,12,12,
- 10,82,12,12,12,12,131,11,12,12,
- 12,12,228,82,122,122,131,122,240,122,
- 12,12,122,240,82,11,12,12,38,256,
- 122,65,233,12,11,82,12,175,55,38,
- 226,102,12,233,124,122,82,55,188,188,
- 188,188,12,12,36,12,110,146,122,122,
- 85,54,85,122,253,11,54,131,233,34,
- 228,47,12,252,131,233,12,115,12,180,
- 53,131,233,233,233,233,235,235,122,110,
- 76,82,136,12,12,12,95,167,146,85,
- 85,158,131,253,76,12,12,131,122,80,
- 12,188,228,176,12,12,122,38,12,12,
- 78,78,82,114,197,180,233,131,233,233,
- 110,55,12,12,198,122,191,117,12,12,
- 198,104,240,76,38,253,34,235,38,102,
- 176,110,38,38,122,55,233,124,13,122,
- 12,19,243,122,240,122,89,15,136,197,
- 12,38,12,93,200,240,198,198,11,80,
- 233,102,122,180,19,110,136,12,243,168,
- 12,253,95,180,19,89,183,23,117,15,
- 38,38,11,240,240,51,233,122,122,191,
- 12,122,12,12,12,198,12,12,238,238,
- 136,183,211,12,240,12,11,11,12,122,
- 51,243,122,136,91,12,233,138,122,122,
- 198,240,180,243,122,12,12,122,153,23,
- 11,235,231,110,138,31,38,117,136,76,
- 243,138,138,240,87,180,256,256,112,185,
- 12,38,12,136,12,12,12,186,12,253,
- 134,136,136,253,108,233,233,122,76,233,
- 122,76,76,87,136,12,106,12,12,12,
- 186,263,263,178,12,263,136,136,12,122,
- 256,51,71,136,12,256,233,117,233,255,
- 122,12,233,112,76,238,233,233,122,186,
- 12,186,136,117,188,186,106,71,12,108,
- 108,115,38,12,214,136,233,18,186,233,
- 136,186
+ 12,12,167,90,144,31,31,12,12,12,
+ 10,76,12,12,12,12,110,11,12,12,
+ 12,12,187,76,121,121,110,121,196,121,
+ 12,12,121,196,76,11,12,12,41,257,
+ 121,60,175,12,11,76,12,170,65,41,
+ 185,95,12,175,123,121,76,65,156,156,
+ 156,156,12,12,39,12,106,245,121,121,
+ 132,64,132,121,229,11,64,110,175,20,
+ 187,56,12,228,110,175,12,114,12,182,
+ 63,110,175,175,175,175,177,177,121,106,
+ 74,76,130,12,159,12,12,99,209,245,
+ 132,132,25,110,229,74,12,12,110,121,
+ 101,12,156,187,171,12,12,121,41,12,
+ 12,31,31,76,113,167,182,175,110,175,
+ 175,106,65,121,12,12,12,168,121,161,
+ 116,12,12,168,97,196,74,41,229,20,
+ 177,41,95,171,106,41,41,121,65,175,
+ 123,199,121,12,205,219,121,231,121,196,
+ 121,82,201,130,167,12,41,12,67,16,
+ 196,168,168,11,101,175,95,121,182,205,
+ 106,130,74,12,231,210,12,229,99,231,
+ 219,182,205,82,190,192,116,201,41,41,
+ 11,196,196,50,175,121,121,161,12,12,
+ 168,74,12,12,134,134,130,190,136,12,
+ 196,12,11,11,12,121,50,231,121,130,
+ 84,12,175,168,196,182,231,121,12,12,
+ 121,139,192,11,177,173,106,219,103,41,
+ 116,130,196,159,182,257,257,86,153,12,
+ 41,12,130,12,12,12,154,12,229,128,
+ 130,130,229,217,175,175,121,74,175,121,
+ 159,130,12,88,12,12,12,154,263,263,
+ 180,12,263,130,130,12,121,257,50,69,
+ 130,12,257,175,116,175,256,121,12,175,
+ 86,74,134,175,175,121,154,12,154,130,
+ 116,156,154,88,69,12,217,217,114,41,
+ 12,260,130,175,204,154,175,130,154
};
};
public final static char nasb[] = Nasb.nasb;
@@ -1904,33 +1880,33 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface Nasr {
public final static char nasr[] = {0,
- 3,13,7,10,148,146,120,145,144,5,
- 2,0,96,95,53,63,55,5,7,10,
- 2,0,166,5,165,0,2,7,3,0,
- 4,31,0,139,0,44,4,5,7,10,
- 2,13,0,4,188,0,65,134,133,0,
- 124,0,53,2,65,0,170,0,5,2,
- 10,7,135,0,4,172,0,5,1,0,
- 13,2,10,7,5,64,0,68,0,137,
- 0,2,43,0,111,0,151,0,155,0,
- 178,0,184,0,152,0,13,2,10,7,
- 5,72,0,186,0,114,0,59,0,60,
- 0,157,0,33,96,95,63,53,7,10,
- 2,4,0,23,4,5,91,0,5,43,
- 2,3,0,4,39,38,0,105,4,47,
- 69,0,53,65,0,4,47,69,103,45,
- 5,0,4,47,39,174,0,5,103,185,
- 0,33,95,96,4,0,38,53,7,10,
- 2,4,154,0,2,115,0,39,176,23,
- 4,0,156,0,64,47,74,4,39,0,
- 2,63,53,7,10,4,91,5,0,5,
- 103,162,0,4,44,167,0,4,169,0,
- 4,64,0,4,173,0,2,5,120,116,
- 117,118,13,88,0,96,95,5,55,0,
- 44,4,33,0,4,98,0,110,0,2,
- 61,0,4,47,69,73,0,5,7,10,
- 13,3,1,0,175,4,44,0,4,44,
- 39,0,4,44,104,0
+ 3,13,7,10,147,145,119,144,143,5,
+ 2,0,48,65,0,5,101,160,0,138,
+ 0,5,1,0,5,101,183,0,168,0,
+ 66,0,5,2,10,7,134,0,44,4,
+ 5,7,10,2,13,0,4,186,0,123,
+ 0,2,7,3,0,65,133,132,0,4,
+ 170,0,48,2,65,0,182,0,13,2,
+ 10,7,5,64,0,2,43,0,4,167,
+ 0,153,0,176,0,155,0,111,0,13,
+ 2,10,7,5,75,0,184,0,150,0,
+ 136,0,4,31,0,60,0,5,43,2,
+ 3,0,33,94,93,63,48,7,10,2,
+ 4,0,23,4,5,89,0,4,39,38,
+ 0,108,0,107,0,4,64,0,4,47,
+ 39,172,0,33,93,94,4,0,4,44,
+ 165,0,64,47,76,4,39,0,103,0,
+ 2,63,48,7,10,4,89,5,0,2,
+ 112,0,44,4,33,0,4,96,0,39,
+ 174,23,4,0,94,93,5,55,0,154,
+ 0,164,5,163,0,2,61,0,94,93,
+ 48,63,55,5,7,10,2,0,38,48,
+ 7,10,2,4,152,0,59,0,113,4,
+ 47,74,0,5,7,10,13,3,1,0,
+ 4,47,74,83,0,2,5,119,115,116,
+ 117,13,86,0,4,47,74,101,45,5,
+ 0,4,44,39,0,173,4,44,0,4,
+ 171,0,4,44,102,0
};
};
public final static char nasr[] = Nasr.nasr;
@@ -1939,18 +1915,18 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface TerminalIndex {
public final static char terminalIndex[] = {0,
115,116,2,32,14,11,81,10,117,102,
- 12,13,122,68,50,54,62,70,76,77,
+ 12,13,122,50,54,62,68,70,76,77,
88,89,104,107,109,8,9,20,114,15,
- 95,57,63,69,86,90,92,96,99,101,
+ 57,63,69,86,90,92,95,96,99,101,
111,112,113,46,106,56,108,1,49,66,
- 72,75,78,85,91,100,97,105,3,79,
- 21,48,55,60,80,45,34,121,65,93,
- 103,31,120,123,67,98,110,51,52,58,
- 59,61,71,73,74,87,94,18,19,7,
+ 72,75,78,85,91,100,79,97,105,3,
+ 21,48,55,60,80,45,34,65,93,103,
+ 31,120,121,123,98,110,51,52,58,59,
+ 61,67,71,73,74,87,94,18,19,7,
16,17,22,23,33,5,24,25,26,27,
28,29,6,35,36,37,38,39,40,41,
42,43,44,82,83,84,30,119,53,4,
- 125,64,124,118
+ 124,64,118
};
};
public final static char terminalIndex[] = TerminalIndex.terminalIndex;
@@ -1958,26 +1934,26 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface NonterminalIndex {
public final static char nonterminalIndex[] = {0,
- 132,137,139,0,0,138,236,136,0,230,
- 135,0,146,134,0,0,145,151,0,0,
- 152,161,182,162,163,164,165,166,167,168,
- 154,169,128,170,171,0,144,130,133,172,
- 0,141,140,155,180,0,0,0,0,0,
- 0,0,0,148,158,0,205,0,175,189,
- 0,202,206,129,0,0,0,207,0,0,
- 178,127,131,174,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,188,0,0,
- 203,213,160,209,210,211,0,0,0,0,
- 149,208,221,177,181,0,0,0,212,0,
- 0,0,241,242,150,191,192,193,194,195,
- 197,200,0,0,215,218,220,0,239,0,
- 240,0,142,143,147,0,0,157,159,0,
- 173,0,183,184,185,186,187,190,0,196,
- 198,0,199,204,0,216,217,0,222,225,
- 227,229,0,233,234,235,237,238,126,0,
- 153,156,0,176,0,179,0,201,214,219,
- 0,223,224,226,228,0,231,232,243,244,
- 0,0,0,0,0,0
+ 131,136,138,0,0,137,235,135,0,229,
+ 134,0,145,133,0,0,144,150,0,0,
+ 151,160,181,161,162,163,164,165,166,167,
+ 153,168,127,169,170,0,143,129,132,171,
+ 0,140,139,154,179,0,0,0,0,0,
+ 0,0,0,147,157,0,204,0,174,188,
+ 0,201,205,128,0,206,0,177,0,0,
+ 0,0,0,0,126,173,0,0,0,0,
+ 0,0,130,0,0,187,0,0,202,212,
+ 159,208,209,210,0,0,0,0,148,207,
+ 220,176,197,0,0,211,0,0,0,240,
+ 241,149,180,0,190,191,192,193,194,196,
+ 199,0,0,214,217,219,0,238,0,239,
+ 0,141,142,146,0,0,156,158,0,172,
+ 0,182,183,184,185,186,189,0,195,0,
+ 198,203,0,215,216,0,221,224,226,228,
+ 0,232,233,234,236,237,125,0,152,155,
+ 0,175,0,178,0,200,213,218,0,222,
+ 223,225,227,0,230,231,242,243,0,0,
+ 0,0,0,0
};
};
public final static char nonterminalIndex[] = NonterminalIndex.nonterminalIndex;
@@ -1985,18 +1961,18 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopePrefix {
public final static char scopePrefix[] = {
- 151,572,591,523,539,550,561,362,261,275,
- 297,303,309,42,286,382,420,159,580,466,
- 20,51,71,80,85,90,127,187,292,315,
- 326,337,267,281,494,27,372,337,599,27,
- 209,240,1,14,61,76,106,141,222,320,
- 333,342,351,355,438,459,488,515,519,609,
- 613,617,97,7,97,141,400,416,429,449,
- 507,429,530,546,557,568,199,477,56,56,
- 148,214,217,235,256,217,217,56,359,444,
- 456,463,148,56,630,110,228,404,116,116,
- 228,56,228,391,169,104,442,621,628,621,
- 628,65,410,134,104,104,245
+ 151,566,585,517,533,544,555,356,261,275,
+ 297,303,42,286,376,414,159,574,460,20,
+ 51,71,80,85,90,127,187,292,309,320,
+ 331,267,281,488,27,366,331,593,27,209,
+ 240,1,14,61,76,106,141,222,314,327,
+ 336,345,349,432,453,482,509,513,603,607,
+ 611,97,7,97,141,394,410,423,443,501,
+ 423,524,540,551,562,199,471,56,56,148,
+ 214,217,235,256,217,217,56,353,438,450,
+ 457,148,56,624,110,228,398,116,116,228,
+ 56,228,385,169,104,436,615,622,615,622,
+ 65,404,134,104,104,245
};
};
public final static char scopePrefix[] = ScopePrefix.scopePrefix;
@@ -2004,18 +1980,18 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeSuffix {
public final static char scopeSuffix[] = {
- 18,5,5,5,5,5,5,369,132,95,
- 132,132,132,48,272,388,426,165,67,472,
- 25,25,25,59,59,95,132,192,132,132,
- 331,331,272,101,499,38,377,586,604,32,
- 203,203,5,18,5,59,95,132,226,324,
- 324,324,95,95,132,238,5,5,5,5,
- 5,238,226,11,101,145,369,369,369,453,
- 499,433,534,534,534,534,203,481,59,59,
- 5,5,220,238,5,259,259,349,95,447,
- 5,238,5,492,5,113,346,407,119,123,
- 231,511,502,394,172,95,95,623,623,625,
- 625,67,412,136,194,179,247
+ 18,5,5,5,5,5,5,363,132,95,
+ 132,132,48,272,382,420,165,67,466,25,
+ 25,25,59,59,95,132,192,132,132,325,
+ 325,272,101,493,38,371,580,598,32,203,
+ 203,5,18,5,59,95,132,226,318,318,
+ 318,95,95,132,238,5,5,5,5,5,
+ 238,226,11,101,145,363,363,363,447,493,
+ 427,528,528,528,528,203,475,59,59,5,
+ 5,220,238,5,259,259,343,95,441,5,
+ 238,5,486,5,113,340,401,119,123,231,
+ 505,496,388,172,95,95,617,617,619,619,
+ 67,406,136,194,179,247
};
};
public final static char scopeSuffix[] = ScopeSuffix.scopeSuffix;
@@ -2023,18 +1999,18 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeLhs {
public final static char scopeLhs[] = {
- 45,17,17,17,17,17,17,77,82,46,
- 87,86,118,66,51,77,76,45,17,19,
- 3,6,9,162,162,159,116,45,85,118,
- 117,119,52,46,135,130,77,17,17,130,
- 97,56,132,80,165,162,159,126,58,117,
- 117,119,177,49,59,139,18,17,17,17,
- 17,17,12,114,159,126,77,76,76,36,
- 135,76,17,17,17,17,97,19,166,162,
- 178,95,102,68,57,154,71,119,78,75,
- 140,139,170,135,16,159,119,104,127,127,
- 55,135,135,77,45,159,70,133,43,133,
- 43,165,104,116,45,45,56
+ 45,17,17,17,17,17,17,79,85,46,
+ 72,117,69,52,79,78,45,17,19,3,
+ 6,9,160,160,157,115,45,73,117,116,
+ 118,53,46,134,129,79,17,17,129,95,
+ 56,131,82,163,160,157,125,58,116,116,
+ 118,175,50,59,138,18,17,17,17,17,
+ 17,12,111,157,125,79,78,78,36,134,
+ 78,17,17,17,17,95,19,164,160,176,
+ 93,100,66,57,152,68,118,80,77,139,
+ 138,168,134,16,157,118,102,126,126,55,
+ 134,134,79,45,157,67,132,43,132,43,
+ 163,102,115,45,45,56
};
};
public final static char scopeLhs[] = ScopeLhs.scopeLhs;
@@ -2042,18 +2018,18 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeLa {
public final static byte scopeLa[] = {
- 119,73,73,73,73,73,73,73,68,13,
- 68,68,68,61,1,73,122,59,3,73,
- 61,61,61,1,1,13,68,59,68,68,
- 1,1,1,1,4,61,13,1,1,61,
- 73,73,73,119,73,1,13,68,1,1,
- 1,1,13,13,68,118,73,73,73,73,
- 73,118,1,73,1,66,73,73,73,72,
- 4,73,61,61,61,61,73,3,1,1,
- 73,73,3,118,73,1,1,1,13,72,
- 73,118,73,5,73,1,31,67,1,1,
- 6,1,31,77,76,13,13,4,4,4,
- 4,3,1,59,1,1,3
+ 119,72,72,72,72,72,72,72,73,13,
+ 73,73,61,1,72,122,60,3,72,61,
+ 61,61,1,1,13,73,60,73,73,1,
+ 1,1,1,4,61,13,1,1,61,72,
+ 72,72,119,72,1,13,73,1,1,1,
+ 1,13,13,73,118,72,72,72,72,72,
+ 118,1,72,1,66,72,72,72,71,4,
+ 72,61,61,61,61,72,3,1,1,72,
+ 72,3,118,72,1,1,1,13,71,72,
+ 118,72,5,72,1,37,67,1,1,6,
+ 1,37,76,75,13,13,4,4,4,4,
+ 3,1,60,1,1,3
};
};
public final static byte scopeLa[] = ScopeLa.scopeLa;
@@ -2061,18 +2037,18 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeStateSet {
public final static char scopeStateSet[] = {
- 78,241,241,241,241,241,241,36,89,78,
- 89,89,147,99,80,36,36,78,241,241,
- 174,216,217,53,53,108,147,78,89,147,
- 147,147,80,78,142,46,36,241,241,46,
- 134,59,24,36,28,53,108,303,59,147,
- 147,147,20,80,31,75,241,241,241,241,
- 241,241,236,6,108,303,36,36,36,272,
- 142,36,241,241,241,241,134,241,28,53,
- 22,134,136,130,59,56,64,147,36,36,
- 50,75,145,142,241,108,147,1,147,147,
- 114,142,142,36,78,108,11,111,151,111,
- 151,28,1,147,78,78,59
+ 92,242,242,242,242,242,242,102,83,92,
+ 81,148,81,94,102,102,92,242,242,175,
+ 217,218,53,53,78,148,92,81,148,148,
+ 148,94,92,143,46,102,242,242,46,135,
+ 59,24,102,28,53,78,304,59,148,148,
+ 148,20,94,31,75,242,242,242,242,242,
+ 242,237,6,78,304,102,102,102,273,143,
+ 102,242,242,242,242,135,242,28,53,22,
+ 135,137,131,59,56,64,148,102,102,50,
+ 75,146,143,242,78,148,1,148,148,115,
+ 143,143,102,92,78,11,112,152,112,152,
+ 28,1,148,92,92,59
};
};
public final static char scopeStateSet[] = ScopeStateSet.scopeStateSet;
@@ -2080,70 +2056,69 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeRhs {
public final static char scopeRhs[] = {0,
- 314,3,57,0,128,0,313,3,119,0,
- 128,175,0,128,183,76,0,217,0,252,
- 128,28,126,0,21,0,292,128,28,31,
- 0,21,55,0,34,134,0,21,55,0,
- 0,292,128,28,31,193,0,21,131,0,
- 252,128,28,131,0,185,129,0,144,0,
- 222,3,290,0,290,0,2,0,128,0,
- 252,128,28,134,0,185,129,227,0,185,
- 129,45,227,0,185,129,310,45,0,132,
- 189,167,129,0,130,0,189,167,129,0,
- 136,130,0,171,0,306,128,171,0,128,
- 171,0,223,130,0,167,244,0,139,0,
- 0,0,137,0,0,0,305,128,59,251,
- 0,129,0,251,0,3,0,0,129,0,
- 304,128,59,0,45,129,0,155,3,0,
- 128,280,279,128,76,278,171,0,279,128,
- 76,278,171,0,216,0,217,0,278,171,
- 0,98,0,0,216,0,217,0,204,98,
- 0,0,216,0,217,0,279,128,278,171,
- 0,216,0,204,0,0,216,0,231,128,
- 3,0,128,0,0,0,0,0,231,128,
- 3,219,0,226,3,0,215,128,0,209,
- 0,189,167,177,0,136,0,167,129,0,
- 11,0,0,0,217,48,0,127,0,231,
- 128,3,181,0,181,0,2,0,0,128,
- 0,0,0,0,0,195,3,0,202,0,
- 230,128,59,29,14,0,185,129,60,58,
- 0,198,130,0,132,185,129,276,58,0,
- 185,129,276,58,0,185,129,67,125,60,
- 0,230,128,59,60,0,230,128,59,123,
- 60,0,230,128,59,126,60,0,273,128,
- 59,125,69,0,273,128,59,69,0,185,
- 129,69,0,137,0,189,185,129,244,0,
- 139,0,185,129,244,0,189,167,129,10,
- 0,167,129,10,0,95,139,0,149,0,
- 266,128,147,0,266,128,171,0,163,86,
- 0,297,162,299,300,3,83,0,128,174,
- 0,299,300,3,83,0,130,0,128,174,
- 0,163,3,77,198,82,0,128,130,0,
- 198,82,0,110,2,133,128,130,0,228,
- 3,77,0,195,168,0,34,172,0,168,
- 0,178,34,172,0,228,3,87,0,198,
- 157,228,3,85,0,64,174,0,228,3,
- 85,0,128,174,64,174,0,298,128,59,
- 0,163,0,217,79,0,31,0,163,117,
- 159,0,31,172,0,222,3,0,217,48,
- 263,0,163,48,0,178,3,294,65,129,
- 0,128,0,0,0,0,294,65,129,0,
- 2,148,128,0,0,0,0,178,3,36,
- 0,150,0,127,31,167,129,0,32,150,
- 0,95,139,32,150,0,225,185,129,0,
- 149,32,150,0,178,3,40,0,163,3,
- 40,0,163,3,61,178,28,32,0,178,
- 28,32,0,21,2,133,128,0,163,3,
- 61,178,28,35,0,178,28,35,0,163,
- 3,61,178,28,37,0,178,28,37,0,
- 163,3,61,178,28,33,0,178,28,33,
- 0,222,3,127,189,167,129,10,0,127,
- 189,167,129,10,0,139,2,0,128,0,
- 222,3,126,177,167,129,10,0,177,167,
- 129,10,0,137,2,0,128,0,222,3,
- 137,0,222,3,141,0,163,48,141,0,
- 258,0,32,0,32,142,0,166,0,163,
- 3,0
+ 311,3,58,0,127,0,310,3,119,0,
+ 127,174,0,127,182,75,0,216,0,250,
+ 127,28,125,0,21,0,289,127,28,37,
+ 0,21,55,0,34,133,0,21,55,0,
+ 0,289,127,28,37,197,0,21,130,0,
+ 250,127,28,130,0,184,128,0,143,0,
+ 219,3,287,0,287,0,2,0,127,0,
+ 250,127,28,133,0,184,128,224,0,184,
+ 128,45,224,0,184,128,307,45,0,131,
+ 188,166,128,0,129,0,188,166,128,0,
+ 135,129,0,170,0,303,127,170,0,127,
+ 170,0,222,129,0,166,242,0,138,0,
+ 0,0,136,0,0,0,302,127,60,249,
+ 0,128,0,249,0,3,0,0,128,0,
+ 301,127,60,0,45,128,0,154,3,0,
+ 127,277,276,127,75,275,170,0,276,127,
+ 75,275,170,0,215,0,216,0,275,170,
+ 0,98,0,0,215,0,216,0,203,98,
+ 0,0,215,0,216,0,276,127,275,170,
+ 0,215,0,203,0,0,215,0,227,127,
+ 3,0,127,0,0,0,0,0,227,127,
+ 3,216,0,223,3,0,212,127,0,208,
+ 0,188,166,171,0,135,0,166,128,0,
+ 11,0,0,0,214,48,0,126,0,227,
+ 127,3,180,0,180,0,2,0,0,127,
+ 0,0,0,0,0,191,3,0,201,0,
+ 237,127,60,29,17,0,184,128,57,59,
+ 0,197,129,0,131,184,128,273,59,0,
+ 184,128,273,59,0,184,128,67,124,57,
+ 0,237,127,60,57,0,237,127,60,226,
+ 57,0,271,127,60,124,68,0,271,127,
+ 60,68,0,184,128,68,0,136,0,188,
+ 184,128,242,0,138,0,184,128,242,0,
+ 188,166,128,10,0,166,128,10,0,95,
+ 138,0,148,0,264,127,146,0,264,127,
+ 170,0,162,86,0,294,161,296,297,3,
+ 83,0,127,173,0,296,297,3,83,0,
+ 129,0,127,173,0,162,3,76,199,81,
+ 0,127,129,0,199,81,0,110,2,132,
+ 127,129,0,225,3,76,0,191,167,0,
+ 34,171,0,167,0,177,34,171,0,225,
+ 3,87,0,199,156,225,3,85,0,64,
+ 173,0,225,3,85,0,127,173,64,173,
+ 0,295,127,60,0,162,0,214,78,0,
+ 31,0,162,117,158,0,31,171,0,219,
+ 3,0,214,48,261,0,162,48,0,177,
+ 3,291,65,128,0,127,0,0,0,0,
+ 291,65,128,0,2,147,127,0,0,0,
+ 0,177,3,35,0,149,0,126,37,166,
+ 128,0,32,149,0,95,138,32,149,0,
+ 222,184,128,0,148,32,149,0,177,3,
+ 40,0,162,3,40,0,162,3,61,177,
+ 28,31,0,177,28,31,0,21,2,132,
+ 127,0,162,3,61,177,28,34,0,177,
+ 28,34,0,162,3,61,177,28,36,0,
+ 177,28,36,0,162,3,61,177,28,32,
+ 0,177,28,32,0,219,3,126,188,166,
+ 128,10,0,126,188,166,128,10,0,138,
+ 2,0,127,0,219,3,125,171,166,128,
+ 10,0,171,166,128,10,0,136,2,0,
+ 127,0,219,3,136,0,219,3,140,0,
+ 162,48,140,0,256,0,32,0,32,141,
+ 0,165,0,162,3,0
};
};
public final static char scopeRhs[] = ScopeRhs.scopeRhs;
@@ -2151,37 +2126,37 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeState {
public final static char scopeState[] = {0,
- 4603,4700,4666,4664,0,2641,2904,2524,2647,0,
- 3642,3584,3489,3431,3373,3315,3255,3096,2849,3066,
- 0,1296,0,1308,1085,726,0,2818,626,0,
- 3277,2796,2543,3098,3090,3642,3584,3489,3431,3373,
- 3315,3255,3096,2849,0,3848,3133,3441,0,2489,
- 993,0,3244,2873,0,3798,2940,0,4485,3798,
- 4421,577,2940,3543,4312,4508,4384,2715,4344,4410,
- 3227,2696,2587,0,2781,675,0,4522,2836,3642,
- 3584,3489,3431,3373,3315,3255,3096,2849,3026,2958,
- 4004,2886,3951,2779,3898,3845,3792,0,3026,2958,
- 4004,2886,3951,2779,3898,3845,3792,4522,2836,0,
- 2736,723,0,2715,4485,4443,4421,577,2784,3227,
- 4005,2910,2851,2708,3378,732,861,722,0,1559,
- 1475,1114,977,577,3378,3543,2696,2587,2918,2960,
- 0,996,798,0,781,0,3339,535,2547,0,
- 4595,4580,4572,4557,4550,4459,3986,3933,4659,4649,
- 4361,4039,3575,3880,3666,3083,3555,3308,3079,2732,
- 1941,1010,0,4595,2651,4580,2250,2161,4572,4557,
- 4550,921,733,4459,3986,3933,3833,4659,3696,3682,
- 4649,3625,3521,3238,2832,4361,3050,4039,2631,2810,
- 3575,3880,3666,2598,3083,1937,3555,3308,1123,3079,
- 3339,2732,2547,1941,1010,641,3543,4312,4508,4384,
- 2715,4485,4344,2738,3798,2669,4421,2239,577,4410,
- 3227,2696,2940,2587,2150,934,2061,658,996,798,
- 4290,2254,2291,2324,591,2411,2383,2354,2603,2556,
- 2520,2493,2466,2439,3769,3746,3723,3202,3177,4268,
- 4246,4224,4202,4180,4158,4136,4114,4092,3811,1056,
- 4323,1945,2202,2165,2113,2076,1223,1178,2024,1987,
- 1136,874,1895,1856,819,739,684,535,1814,1772,
- 1730,1688,1646,1604,1562,1520,1478,1436,1394,1352,
- 1309,1081,1014,954,1265,0
+ 4536,4630,4623,4587,0,3331,1554,1714,1512,0,
+ 3376,3316,3224,3164,3104,3044,2984,2822,2757,3046,
+ 0,1413,0,3315,2688,733,0,3225,3160,0,
+ 3376,3316,4047,3558,3224,3164,3104,3044,3544,2984,
+ 2822,2757,3189,3100,0,4535,3289,4486,0,2678,
+ 2524,0,571,626,0,4468,3539,0,4437,4468,
+ 3641,3528,3539,3278,3998,4455,4302,2729,4270,577,
+ 2956,2649,2628,0,2640,588,0,4159,4340,0,
+ 4159,4340,3663,4216,4172,3609,4128,4084,4030,3555,
+ 0,4159,4340,3663,4216,4172,3609,4128,4084,4030,
+ 3555,3376,3316,3224,3164,3104,3044,2984,2822,2757,
+ 0,2560,785,0,2729,4437,1541,3641,3528,2758,
+ 2956,1415,3431,1108,2664,3052,1104,1373,1110,0,
+ 1235,1125,865,646,3528,3052,3278,2649,2628,2790,
+ 2679,0,792,655,0,644,0,4334,533,2528,
+ 0,4531,4527,4504,4319,4123,4048,3634,3402,4605,
+ 4598,4560,4552,4542,3348,3295,4068,3196,3130,2580,
+ 2570,1927,1001,0,4531,3562,4527,3410,3327,4504,
+ 4319,4123,3308,2764,4048,3634,3402,3234,4605,3204,
+ 3053,4598,3000,2724,2698,2618,4560,2980,4552,3551,
+ 3039,4542,3348,3295,2566,4068,1923,3196,3130,913,
+ 2580,4334,2570,2528,1927,1001,781,3278,3998,4455,
+ 4302,2729,4437,4270,2989,4468,2967,3641,2221,3528,
+ 577,2956,2649,3539,2628,2134,927,2047,987,792,
+ 655,3976,2234,2271,589,2304,2392,2364,2335,2584,
+ 2537,2501,2474,2447,2420,3505,3482,3459,2931,2906,
+ 3954,3932,3910,3888,3866,3844,3822,3800,3778,3749,
+ 1047,4009,1931,2184,2147,2097,2060,1212,1168,2010,
+ 1973,1126,868,1881,1844,813,736,681,533,1802,
+ 1760,1718,1676,1634,1592,1550,1508,1466,1424,1382,
+ 1340,1297,1071,1005,945,1254,0
};
};
public final static char scopeState[] = ScopeState.scopeState;
@@ -2189,59 +2164,58 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface InSymb {
public final static char inSymb[] = {0,
- 0,293,128,265,40,32,35,37,33,10,
- 137,126,134,7,131,4,3,129,36,30,
- 5,12,11,6,8,27,26,141,146,149,
- 148,151,150,153,152,156,154,158,57,159,
- 66,3,28,28,28,28,129,3,28,28,
- 168,128,48,3,64,65,28,7,126,163,
- 64,65,167,166,126,3,125,127,103,120,
+ 0,290,127,263,40,31,34,36,32,10,
+ 136,125,133,7,130,4,3,128,35,30,
+ 5,12,11,6,8,27,26,140,145,148,
+ 147,150,149,152,151,155,153,157,58,158,
+ 66,3,28,28,28,28,128,3,28,28,
+ 167,127,48,3,64,65,28,7,125,162,
+ 64,65,166,165,125,3,124,126,103,120,
3,48,90,96,12,11,92,91,6,94,
93,61,28,88,89,8,98,97,100,99,
101,113,112,111,110,109,108,107,106,105,
- 104,67,117,102,178,163,168,128,178,178,
- 178,178,167,222,128,128,128,267,268,251,
- 269,244,270,69,271,272,10,129,48,48,
- 128,48,294,3,189,4,178,31,5,129,
- 31,222,163,148,148,146,146,146,150,150,
- 150,150,149,149,152,151,151,154,153,156,
- 163,158,128,48,3,220,219,137,127,126,
- 10,129,61,61,61,61,189,177,252,135,
- 255,252,215,129,6,59,167,234,129,127,
- 126,125,59,129,129,185,167,252,196,3,
- 295,168,155,258,189,129,126,185,167,72,
- 215,217,159,226,128,3,129,167,3,3,
- 3,3,127,126,66,167,128,128,127,126,
- 128,185,128,59,128,185,167,31,178,128,
- 128,4,225,5,31,231,232,147,233,128,
- 167,31,163,163,163,163,3,3,6,184,
- 305,129,169,227,31,193,58,171,307,128,
- 128,72,189,128,273,125,274,189,157,260,
- 263,48,179,4,125,127,157,67,226,195,
- 187,181,177,3,128,66,231,189,222,222,
- 128,167,28,31,276,278,128,3,181,309,
- 227,45,129,273,67,66,128,3,48,163,
- 4,128,67,67,3,167,195,128,215,157,
- 127,189,61,28,129,76,128,215,306,128,
- 126,72,285,195,66,129,45,310,185,260,
- 222,217,223,128,189,128,132,14,31,171,
- 62,60,58,128,185,128,279,72,66,215,
- 72,67,185,129,129,128,231,223,29,128,
- 3,59,123,126,125,60,292,31,10,63,
- 132,279,59,289,129,290,185,185,57,157,
- 128,128,59,266,195,277,29,128,59,59,
- 67,129,66,61,28,234,234,280,128,66,
- 185,3,3,128,128,3,67,66,157,230,
- 229,128,128,129,185,128,67,67,128,298,
- 81,79,1,163,87,85,83,82,77,84,
- 86,80,78,60,76,222,314,223,230,155,
- 59,230,230,185,275,292,281,119,9,217,
- 72,3,3,3,198,3,125,163,125,183,
- 66,128,128,275,61,3,228,168,228,300,
- 147,77,228,128,304,63,95,313,168,157,
- 195,157,299,128,3,157,281,66,234,157,
- 157,128,67,198,162,266,163,67,122,297,
- 157,157
+ 104,67,117,102,177,162,167,127,177,177,
+ 177,177,166,219,127,127,127,265,266,249,
+ 267,242,268,68,269,270,10,128,48,48,
+ 127,48,291,3,188,4,177,37,5,128,
+ 37,219,162,147,147,145,145,145,149,149,
+ 149,149,148,148,151,150,150,153,152,155,
+ 162,157,127,48,3,217,216,136,126,125,
+ 10,128,61,61,61,61,188,171,250,134,
+ 253,250,212,128,6,60,166,230,128,126,
+ 125,124,60,128,128,184,166,250,198,3,
+ 292,167,154,256,188,128,125,184,166,71,
+ 212,214,158,223,127,3,128,166,3,3,
+ 3,3,126,125,66,166,127,127,126,125,
+ 127,184,127,60,127,184,166,37,177,127,
+ 127,4,222,5,37,227,228,146,229,127,
+ 166,37,162,162,162,162,3,3,6,183,
+ 302,128,168,224,57,37,197,59,170,304,
+ 127,127,71,188,127,271,124,272,188,156,
+ 258,261,48,178,4,124,126,156,67,223,
+ 191,186,180,171,3,127,66,227,188,219,
+ 219,127,166,60,226,28,37,273,275,127,
+ 3,180,306,224,45,128,271,67,66,127,
+ 3,48,162,4,127,67,67,3,166,191,
+ 127,212,156,126,188,127,60,61,28,128,
+ 75,127,212,303,127,125,71,282,191,66,
+ 128,45,307,184,258,219,214,220,127,188,
+ 127,131,237,17,37,170,62,57,59,236,
+ 127,127,184,127,276,71,66,212,71,67,
+ 184,128,128,127,227,220,29,127,3,124,
+ 57,237,289,37,10,63,131,276,60,286,
+ 128,287,184,184,58,156,127,127,60,264,
+ 191,274,29,67,128,66,61,28,230,230,
+ 277,127,66,184,3,3,127,127,3,67,
+ 66,156,128,184,127,67,67,127,295,80,
+ 78,1,162,87,85,83,81,76,84,86,
+ 79,77,57,75,219,311,220,237,154,60,
+ 184,226,289,278,119,9,214,71,3,3,
+ 3,199,3,124,162,124,182,66,127,127,
+ 226,61,3,225,167,225,297,146,76,225,
+ 127,301,63,95,310,167,156,191,156,296,
+ 127,3,156,278,66,230,156,156,127,67,
+ 199,161,264,162,67,122,294,156,156
};
};
public final static char inSymb[] = InSymb.inSymb;
@@ -2373,7 +2347,6 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
"RightBrace",
"SemiColon",
"ERROR_TOKEN",
- "original_namespace_name",
"EOF_TOKEN",
"no_cast_start",
"]",
@@ -2507,8 +2480,8 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public final static int
ERROR_SYMBOL = 74,
- SCOPE_UBOUND = 116,
- SCOPE_SIZE = 117,
+ SCOPE_UBOUND = 115,
+ SCOPE_SIZE = 116,
MAX_NAME_LENGTH = 37;
public final int getErrorSymbol() { return ERROR_SYMBOL; }
@@ -2517,20 +2490,20 @@ public class CPPNoCastExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public final int getMaxNameLength() { return MAX_NAME_LENGTH; }
public final static int
- NUM_STATES = 522,
- NT_OFFSET = 124,
- LA_STATE_OFFSET = 5733,
+ NUM_STATES = 519,
+ NT_OFFSET = 123,
+ LA_STATE_OFFSET = 5676,
MAX_LA = 2147483647,
- NUM_RULES = 534,
- NUM_NONTERMINALS = 196,
- NUM_SYMBOLS = 320,
+ NUM_RULES = 532,
+ NUM_NONTERMINALS = 194,
+ NUM_SYMBOLS = 317,
SEGMENT_SIZE = 8192,
- START_STATE = 3248,
+ START_STATE = 1118,
IDENTIFIER_SYMBOL = 0,
EOFT_SYMBOL = 121,
EOLT_SYMBOL = 121,
- ACCEPT_ACTION = 4806,
- ERROR_ACTION = 5199;
+ ACCEPT_ACTION = 4751,
+ ERROR_ACTION = 5144;
public final static boolean BACKTRACK = true;
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java
index 34d825c5342..6bf4e1c09a4 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java
@@ -17,26 +17,26 @@ public interface CPPNoCastExpressionParsersym {
public final static int
TK_asm = 62,
TK_auto = 49,
- TK_bool = 15,
- TK_break = 78,
- TK_case = 79,
+ TK_bool = 14,
+ TK_break = 77,
+ TK_case = 78,
TK_catch = 119,
- TK_char = 16,
+ TK_char = 15,
TK_class = 63,
TK_const = 46,
- TK_const_cast = 32,
- TK_continue = 80,
- TK_default = 81,
+ TK_const_cast = 31,
+ TK_continue = 79,
+ TK_default = 80,
TK_delete = 64,
- TK_do = 82,
- TK_double = 17,
- TK_dynamic_cast = 33,
+ TK_do = 81,
+ TK_double = 16,
+ TK_dynamic_cast = 32,
TK_else = 122,
- TK_enum = 69,
+ TK_enum = 68,
TK_explicit = 50,
- TK_export = 75,
- TK_extern = 14,
- TK_false = 34,
+ TK_export = 82,
+ TK_extern = 17,
+ TK_false = 33,
TK_float = 18,
TK_for = 83,
TK_friend = 51,
@@ -46,38 +46,38 @@ public interface CPPNoCastExpressionParsersym {
TK_int = 19,
TK_long = 20,
TK_mutable = 53,
- TK_namespace = 60,
+ TK_namespace = 57,
TK_new = 65,
TK_operator = 7,
TK_private = 114,
TK_protected = 115,
TK_public = 116,
TK_register = 54,
- TK_reinterpret_cast = 35,
+ TK_reinterpret_cast = 34,
TK_return = 86,
TK_short = 21,
TK_signed = 22,
- TK_sizeof = 36,
+ TK_sizeof = 35,
TK_static = 55,
- TK_static_cast = 37,
- TK_struct = 70,
+ TK_static_cast = 36,
+ TK_struct = 69,
TK_switch = 87,
- TK_template = 31,
+ TK_template = 37,
TK_this = 38,
- TK_throw = 57,
- TK_try = 76,
+ TK_throw = 58,
+ TK_try = 75,
TK_true = 39,
TK_typedef = 56,
TK_typeid = 40,
TK_typename = 10,
- TK_union = 71,
+ TK_union = 70,
TK_unsigned = 23,
- TK_using = 58,
+ TK_using = 59,
TK_virtual = 45,
TK_void = 24,
TK_volatile = 47,
TK_wchar_t = 25,
- TK_while = 77,
+ TK_while = 76,
TK_integer = 41,
TK_floating = 42,
TK_charconst = 43,
@@ -85,10 +85,10 @@ public interface CPPNoCastExpressionParsersym {
TK_identifier = 1,
TK_Completion = 2,
TK_EndOfCompletion = 9,
- TK_Invalid = 124,
+ TK_Invalid = 123,
TK_LeftBracket = 48,
TK_LeftParen = 3,
- TK_LeftBrace = 59,
+ TK_LeftBrace = 60,
TK_Dot = 120,
TK_DotStar = 96,
TK_Arrow = 103,
@@ -116,7 +116,7 @@ public interface CPPNoCastExpressionParsersym {
TK_AndAnd = 101,
TK_OrOr = 102,
TK_Question = 117,
- TK_Colon = 72,
+ TK_Colon = 71,
TK_ColonColon = 4,
TK_DotDotDot = 95,
TK_Assign = 67,
@@ -133,11 +133,10 @@ public interface CPPNoCastExpressionParsersym {
TK_Comma = 66,
TK_zero = 44,
TK_RightBracket = 118,
- TK_RightParen = 73,
- TK_RightBrace = 68,
+ TK_RightParen = 72,
+ TK_RightBrace = 73,
TK_SemiColon = 13,
TK_ERROR_TOKEN = 74,
- TK_original_namespace_name = 123,
TK_EOF_TOKEN = 121;
public final static String orderedTerminalSymbols[] = {
@@ -155,10 +154,10 @@ public interface CPPNoCastExpressionParsersym {
"Plus",
"Minus",
"SemiColon",
- "extern",
"bool",
"char",
"double",
+ "extern",
"float",
"int",
"long",
@@ -172,13 +171,13 @@ public interface CPPNoCastExpressionParsersym {
"LT",
"stringlit",
"Bang",
- "template",
"const_cast",
"dynamic_cast",
"false",
"reinterpret_cast",
"sizeof",
"static_cast",
+ "template",
"this",
"true",
"typeid",
@@ -198,10 +197,10 @@ public interface CPPNoCastExpressionParsersym {
"register",
"static",
"typedef",
+ "namespace",
"throw",
"using",
"LeftBrace",
- "namespace",
"GT",
"asm",
"class",
@@ -209,14 +208,13 @@ public interface CPPNoCastExpressionParsersym {
"new",
"Comma",
"Assign",
- "RightBrace",
"enum",
"struct",
"union",
"Colon",
"RightParen",
+ "RightBrace",
"ERROR_TOKEN",
- "export",
"try",
"while",
"break",
@@ -224,6 +222,7 @@ public interface CPPNoCastExpressionParsersym {
"continue",
"default",
"do",
+ "export",
"for",
"goto",
"if",
@@ -264,7 +263,6 @@ public interface CPPNoCastExpressionParsersym {
"Dot",
"EOF_TOKEN",
"else",
- "original_namespace_name",
"Invalid"
};
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParser.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParser.java
index 1799a5dfdc3..44c42727a07 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParser.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParser.java
@@ -1519,758 +1519,751 @@ public CPPNoFunctionDeclaratorParser(String[] mapFrom) { // constructor
}
//
- // Rule 301: original_namespace_definition ::= namespace identifier_name { <openscope-ast> declaration_seq_opt }
+ // Rule 299: named_namespace_definition ::= namespace namespace_name { <openscope-ast> declaration_seq_opt }
//
- case 301: { action.builder.
- consumeNamespaceDefinition(true); break;
- }
-
- //
- // Rule 302: extension_namespace_definition ::= namespace original_namespace_name { <openscope-ast> declaration_seq_opt }
- //
- case 302: { action.builder.
+ case 299: { action.builder.
consumeNamespaceDefinition(true); break;
}
//
- // Rule 303: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
+ // Rule 300: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
//
- case 303: { action.builder.
+ case 300: { action.builder.
consumeNamespaceDefinition(false); break;
}
//
- // Rule 304: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 301: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 304: { action.builder.
+ case 301: { action.builder.
consumeNamespaceAliasDefinition(); break;
}
//
- // Rule 305: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
+ // Rule 302: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
//
- case 305: { action.builder.
+ case 302: { action.builder.
consumeUsingDeclaration(); break;
}
//
- // Rule 306: typename_opt ::= typename
+ // Rule 303: typename_opt ::= typename
//
- case 306: { action.builder.
+ case 303: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 307: typename_opt ::= $Empty
+ // Rule 304: typename_opt ::= $Empty
//
- case 307: { action.builder.
+ case 304: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 308: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 305: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 308: { action.builder.
+ case 305: { action.builder.
consumeUsingDirective(); break;
}
//
- // Rule 309: asm_definition ::= asm ( stringlit ) ;
+ // Rule 306: asm_definition ::= asm ( stringlit ) ;
//
- case 309: { action.builder.
+ case 306: { action.builder.
consumeDeclarationASM(); break;
}
//
- // Rule 310: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
+ // Rule 307: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
//
- case 310: { action.builder.
+ case 307: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 311: linkage_specification ::= extern stringlit <openscope-ast> declaration
+ // Rule 308: linkage_specification ::= extern stringlit <openscope-ast> declaration
//
- case 311: { action.builder.
+ case 308: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 317: init_declarator ::= declarator initializer
+ // Rule 314: init_declarator ::= declarator initializer
//
- case 317: { action.builder.
+ case 314: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 319: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 316: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 319: { action.builder.
+ case 316: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 321: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 318: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 321: { action.builder.
+ case 318: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 324: basic_direct_declarator ::= declarator_id_name
+ // Rule 321: basic_direct_declarator ::= declarator_id_name
//
- case 324: { action.builder.
+ case 321: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 325: basic_direct_declarator ::= ( declarator )
+ // Rule 322: basic_direct_declarator ::= ( declarator )
//
- case 325: { action.builder.
+ case 322: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 326: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 323: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 326: { action.builder.
+ case 323: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 327: array_direct_declarator ::= array_direct_declarator array_modifier
+ // Rule 324: array_direct_declarator ::= array_direct_declarator array_modifier
//
- case 327: { action.builder.
+ case 324: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 328: array_direct_declarator ::= basic_direct_declarator array_modifier
+ // Rule 325: array_direct_declarator ::= basic_direct_declarator array_modifier
//
- case 328: { action.builder.
+ case 325: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 329: array_modifier ::= [ constant_expression ]
+ // Rule 326: array_modifier ::= [ constant_expression ]
//
- case 329: { action.builder.
+ case 326: { action.builder.
consumeDirectDeclaratorArrayModifier(true); break;
}
//
- // Rule 330: array_modifier ::= [ ]
+ // Rule 327: array_modifier ::= [ ]
//
- case 330: { action.builder.
+ case 327: { action.builder.
consumeDirectDeclaratorArrayModifier(false); break;
}
//
- // Rule 331: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 328: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
//
- case 331: { action.builder.
+ case 328: { action.builder.
consumePointer(); break;
}
//
- // Rule 332: ptr_operator ::= &
+ // Rule 329: ptr_operator ::= &
//
- case 332: { action.builder.
+ case 329: { action.builder.
consumeReferenceOperator(); break;
}
//
- // Rule 333: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 330: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
//
- case 333: { action.builder.
+ case 330: { action.builder.
consumePointerToMember(); break;
}
//
- // Rule 339: cv_qualifier ::= const
+ // Rule 336: cv_qualifier ::= const
//
- case 339: { action.builder.
+ case 336: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 340: cv_qualifier ::= volatile
+ // Rule 337: cv_qualifier ::= volatile
//
- case 340: { action.builder.
+ case 337: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 342: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
+ // Rule 339: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
//
- case 342: { action.builder.
+ case 339: { action.builder.
consumeQualifiedId(true); break;
}
//
- // Rule 343: type_id ::= type_specifier_seq
+ // Rule 340: type_id ::= type_specifier_seq
//
- case 343: { action.builder.
+ case 340: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 344: type_id ::= type_specifier_seq abstract_declarator
+ // Rule 341: type_id ::= type_specifier_seq abstract_declarator
//
- case 344: { action.builder.
+ case 341: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 347: abstract_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 344: abstract_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 347: { action.builder.
+ case 344: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 348: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
+ // Rule 345: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
//
- case 348: { action.builder.
+ case 345: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 352: basic_direct_abstract_declarator ::= ( abstract_declarator )
+ // Rule 349: basic_direct_abstract_declarator ::= ( abstract_declarator )
//
- case 352: { action.builder.
+ case 349: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 353: basic_direct_abstract_declarator ::= ( )
+ // Rule 350: basic_direct_abstract_declarator ::= ( )
//
- case 353: { action.builder.
+ case 350: { action.builder.
consumeAbstractDeclaratorEmpty(); break;
}
//
- // Rule 354: array_direct_abstract_declarator ::= array_modifier
+ // Rule 351: array_direct_abstract_declarator ::= array_modifier
//
- case 354: { action.builder.
+ case 351: { action.builder.
consumeDirectDeclaratorArrayDeclarator(false); break;
}
//
- // Rule 355: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
+ // Rule 352: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
//
- case 355: { action.builder.
+ case 352: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 356: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
+ // Rule 353: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
//
- case 356: { action.builder.
+ case 353: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 357: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 354: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 357: { action.builder.
+ case 354: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 358: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 355: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 358: { action.builder.
+ case 355: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(false); break;
}
//
- // Rule 359: parameter_declaration_clause ::= parameter_declaration_list_opt ...
+ // Rule 356: parameter_declaration_clause ::= parameter_declaration_list_opt ...
//
- case 359: { action.builder.
+ case 356: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 360: parameter_declaration_clause ::= parameter_declaration_list_opt
+ // Rule 357: parameter_declaration_clause ::= parameter_declaration_list_opt
//
- case 360: { action.builder.
+ case 357: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 361: parameter_declaration_clause ::= parameter_declaration_list , ...
+ // Rule 358: parameter_declaration_clause ::= parameter_declaration_list , ...
//
- case 361: { action.builder.
+ case 358: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 367: abstract_declarator_opt ::= $Empty
+ // Rule 364: abstract_declarator_opt ::= $Empty
//
- case 367: { action.builder.
+ case 364: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 368: parameter_declaration ::= declaration_specifiers parameter_init_declarator
+ // Rule 365: parameter_declaration ::= declaration_specifiers parameter_init_declarator
//
- case 368: { action.builder.
+ case 365: { action.builder.
consumeParameterDeclaration(); break;
}
//
- // Rule 369: parameter_declaration ::= declaration_specifiers
+ // Rule 366: parameter_declaration ::= declaration_specifiers
//
- case 369: { action.builder.
+ case 366: { action.builder.
consumeParameterDeclarationWithoutDeclarator(); break;
}
//
- // Rule 371: parameter_init_declarator ::= declarator = parameter_initializer
+ // Rule 368: parameter_init_declarator ::= declarator = parameter_initializer
//
- case 371: { action.builder.
+ case 368: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 373: parameter_init_declarator ::= abstract_declarator = parameter_initializer
+ // Rule 370: parameter_init_declarator ::= abstract_declarator = parameter_initializer
//
- case 373: { action.builder.
+ case 370: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 374: parameter_init_declarator ::= = parameter_initializer
+ // Rule 371: parameter_init_declarator ::= = parameter_initializer
//
- case 374: { action.builder.
+ case 371: { action.builder.
consumeDeclaratorWithInitializer(false); break;
}
//
- // Rule 375: parameter_initializer ::= assignment_expression
+ // Rule 372: parameter_initializer ::= assignment_expression
//
- case 375: { action.builder.
+ case 372: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 376: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
+ // Rule 373: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
//
- case 376: { action.builder.
+ case 373: { action.builder.
consumeFunctionDefinition(false); break;
}
//
- // Rule 377: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
+ // Rule 374: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
//
- case 377: { action.builder.
+ case 374: { action.builder.
consumeFunctionDefinition(true); break;
}
//
- // Rule 380: initializer ::= ( expression_list )
+ // Rule 377: initializer ::= ( expression_list )
//
- case 380: { action.builder.
+ case 377: { action.builder.
consumeInitializerConstructor(); break;
}
//
- // Rule 381: initializer_clause ::= assignment_expression
+ // Rule 378: initializer_clause ::= assignment_expression
//
- case 381: { action.builder.
+ case 378: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 382: initializer_clause ::= { <openscope-ast> initializer_list , }
+ // Rule 379: initializer_clause ::= { <openscope-ast> initializer_list , }
//
- case 382: { action.builder.
+ case 379: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 383: initializer_clause ::= { <openscope-ast> initializer_list }
+ // Rule 380: initializer_clause ::= { <openscope-ast> initializer_list }
//
- case 383: { action.builder.
+ case 380: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 384: initializer_clause ::= { <openscope-ast> }
+ // Rule 381: initializer_clause ::= { <openscope-ast> }
//
- case 384: { action.builder.
+ case 381: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 389: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
+ // Rule 386: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
//
- case 389: { action.builder.
+ case 386: { action.builder.
consumeClassSpecifier(); break;
}
//
- // Rule 390: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
+ // Rule 387: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
//
- case 390: { action.builder.
+ case 387: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 391: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
+ // Rule 388: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
//
- case 391: { action.builder.
+ case 388: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 392: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
+ // Rule 389: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
//
- case 392: { action.builder.
+ case 389: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 393: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
+ // Rule 390: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
//
- case 393: { action.builder.
+ case 390: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 395: identifier_name_opt ::= $Empty
+ // Rule 392: identifier_name_opt ::= $Empty
//
- case 395: { action.builder.
+ case 392: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 399: visibility_label ::= access_specifier_keyword :
+ // Rule 396: visibility_label ::= access_specifier_keyword :
//
- case 399: { action.builder.
+ case 396: { action.builder.
consumeVisibilityLabel(); break;
}
//
- // Rule 400: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
+ // Rule 397: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
//
- case 400: { action.builder.
+ case 397: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 401: member_declaration ::= declaration_specifiers_opt ;
+ // Rule 398: member_declaration ::= declaration_specifiers_opt ;
//
- case 401: { action.builder.
+ case 398: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 404: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
+ // Rule 401: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
//
- case 404: { action.builder.
+ case 401: { action.builder.
consumeMemberDeclarationQualifiedId(); break;
}
//
- // Rule 409: member_declaration ::= ERROR_TOKEN
+ // Rule 407: member_declaration ::= ERROR_TOKEN
//
- case 409: { action.builder.
+ case 407: { action.builder.
consumeDeclarationProblem(); break;
}
//
- // Rule 417: member_declarator ::= declarator constant_initializer
+ // Rule 415: member_declarator ::= declarator constant_initializer
//
- case 417: { action.builder.
+ case 415: { action.builder.
consumeMemberDeclaratorWithInitializer(); break;
}
//
- // Rule 418: member_declarator ::= bit_field_declarator : constant_expression
+ // Rule 416: member_declarator ::= bit_field_declarator : constant_expression
//
- case 418: { action.builder.
+ case 416: { action.builder.
consumeBitField(true); break;
}
//
- // Rule 419: member_declarator ::= : constant_expression
+ // Rule 417: member_declarator ::= : constant_expression
//
- case 419: { action.builder.
+ case 417: { action.builder.
consumeBitField(false); break;
}
//
- // Rule 420: bit_field_declarator ::= identifier_name
+ // Rule 418: bit_field_declarator ::= identifier_name
//
- case 420: { action.builder.
+ case 418: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 421: constant_initializer ::= = constant_expression
+ // Rule 419: constant_initializer ::= = constant_expression
//
- case 421: { action.builder.
+ case 419: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 427: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 425: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 427: { action.builder.
+ case 425: { action.builder.
consumeBaseSpecifier(false, false); break;
}
//
- // Rule 428: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
+ // Rule 426: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
//
- case 428: { action.builder.
+ case 426: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 429: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
+ // Rule 427: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
//
- case 429: { action.builder.
+ case 427: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 430: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
+ // Rule 428: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
//
- case 430: { action.builder.
+ case 428: { action.builder.
consumeBaseSpecifier(true, false); break;
}
//
- // Rule 431: access_specifier_keyword ::= private
+ // Rule 429: access_specifier_keyword ::= private
//
- case 431: { action.builder.
+ case 429: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 432: access_specifier_keyword ::= protected
+ // Rule 430: access_specifier_keyword ::= protected
//
- case 432: { action.builder.
+ case 430: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 433: access_specifier_keyword ::= public
+ // Rule 431: access_specifier_keyword ::= public
//
- case 433: { action.builder.
+ case 431: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 435: access_specifier_keyword_opt ::= $Empty
+ // Rule 433: access_specifier_keyword_opt ::= $Empty
//
- case 435: { action.builder.
+ case 433: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 437: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
+ // Rule 435: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
//
- case 437: { action.builder.
+ case 435: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 438: conversion_function_id ::= operator conversion_type_id
+ // Rule 436: conversion_function_id ::= operator conversion_type_id
//
- case 438: { action.builder.
+ case 436: { action.builder.
consumeConversionName(); break;
}
//
- // Rule 439: conversion_type_id ::= type_specifier_seq conversion_declarator
+ // Rule 437: conversion_type_id ::= type_specifier_seq conversion_declarator
//
- case 439: { action.builder.
+ case 437: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 440: conversion_type_id ::= type_specifier_seq
+ // Rule 438: conversion_type_id ::= type_specifier_seq
//
- case 440: { action.builder.
+ case 438: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 441: conversion_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 439: conversion_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 441: { action.builder.
+ case 439: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 447: mem_initializer ::= mem_initializer_name ( expression_list_opt )
+ // Rule 445: mem_initializer ::= mem_initializer_name ( expression_list_opt )
//
- case 447: { action.builder.
+ case 445: { action.builder.
consumeConstructorChainInitializer(); break;
}
//
- // Rule 448: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 446: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 448: { action.builder.
+ case 446: { action.builder.
consumeQualifiedId(false); break;
}
//
- // Rule 451: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
+ // Rule 449: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
//
- case 451: { action.builder.
+ case 449: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 452: operator_id_name ::= operator overloadable_operator
+ // Rule 450: operator_id_name ::= operator overloadable_operator
//
- case 452: { action.builder.
+ case 450: { action.builder.
consumeOperatorName(); break;
}
//
- // Rule 495: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
+ // Rule 493: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
//
- case 495: { action.builder.
+ case 493: { action.builder.
consumeTemplateDeclaration(); break;
}
//
- // Rule 496: export_opt ::= export
+ // Rule 494: export_opt ::= export
//
- case 496: { action.builder.
+ case 494: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 497: export_opt ::= $Empty
+ // Rule 495: export_opt ::= $Empty
//
- case 497: { action.builder.
+ case 495: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 501: template_parameter ::= parameter_declaration
+ // Rule 499: template_parameter ::= parameter_declaration
//
- case 501: { action.builder.
+ case 499: { action.builder.
consumeTemplateParamterDeclaration(); break;
}
//
- // Rule 502: type_parameter ::= class identifier_name_opt
+ // Rule 500: type_parameter ::= class identifier_name_opt
//
- case 502: { action.builder.
+ case 500: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 503: type_parameter ::= class identifier_name_opt = type_id
+ // Rule 501: type_parameter ::= class identifier_name_opt = type_id
//
- case 503: { action.builder.
+ case 501: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 504: type_parameter ::= typename identifier_name_opt
+ // Rule 502: type_parameter ::= typename identifier_name_opt
//
- case 504: { action.builder.
+ case 502: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 505: type_parameter ::= typename identifier_name_opt = type_id
+ // Rule 503: type_parameter ::= typename identifier_name_opt = type_id
//
- case 505: { action.builder.
+ case 503: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 506: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
+ // Rule 504: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
//
- case 506: { action.builder.
+ case 504: { action.builder.
consumeTemplatedTypeTemplateParameter(false); break;
}
//
- // Rule 507: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
+ // Rule 505: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
//
- case 507: { action.builder.
+ case 505: { action.builder.
consumeTemplatedTypeTemplateParameter(true); break;
}
//
- // Rule 508: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
+ // Rule 506: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
//
- case 508: { action.builder.
+ case 506: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 516: explicit_instantiation ::= template declaration
+ // Rule 514: explicit_instantiation ::= template declaration
//
- case 516: { action.builder.
+ case 514: { action.builder.
consumeTemplateExplicitInstantiation(); break;
}
//
- // Rule 517: explicit_specialization ::= template < > declaration
+ // Rule 515: explicit_specialization ::= template < > declaration
//
- case 517: { action.builder.
+ case 515: { action.builder.
consumeTemplateExplicitSpecialization(); break;
}
//
- // Rule 518: try_block ::= try compound_statement <openscope-ast> handler_seq
+ // Rule 516: try_block ::= try compound_statement <openscope-ast> handler_seq
//
- case 518: { action.builder.
+ case 516: { action.builder.
consumeStatementTryBlock(); break;
}
//
- // Rule 521: handler ::= catch ( exception_declaration ) compound_statement
+ // Rule 519: handler ::= catch ( exception_declaration ) compound_statement
//
- case 521: { action.builder.
+ case 519: { action.builder.
consumeStatementCatchHandler(false); break;
}
//
- // Rule 522: handler ::= catch ( ... ) compound_statement
+ // Rule 520: handler ::= catch ( ... ) compound_statement
//
- case 522: { action.builder.
+ case 520: { action.builder.
consumeStatementCatchHandler(true); break;
}
//
- // Rule 523: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
+ // Rule 521: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
//
- case 523: { action.builder.
+ case 521: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 524: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
+ // Rule 522: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
//
- case 524: { action.builder.
+ case 522: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 525: exception_declaration ::= type_specifier_seq
+ // Rule 523: exception_declaration ::= type_specifier_seq
//
- case 525: { action.builder.
+ case 523: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 533: no_function_declarator_start ::= ERROR_TOKEN
+ // Rule 531: no_function_declarator_start ::= ERROR_TOKEN
//
- case 533: { action.builder.
+ case 531: { action.builder.
consumeDeclarationProblem(); break;
}
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParserprs.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParserprs.java
index b7d89950d03..c3c73225e13 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParserprs.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParserprs.java
@@ -29,7 +29,7 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0
+ 0,0,0
};
};
public final static byte isKeyword[] = IsKeyword.isKeyword;
@@ -66,335 +66,314 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,3,
4,4,5,2,4,5,4,5,6,1,
- 3,1,0,1,3,1,1,1,1,1,
- 6,6,5,7,6,1,0,6,5,6,
- 4,1,3,1,0,1,2,1,3,1,
- 3,1,1,1,3,9,2,2,3,2,
- 3,1,5,1,2,2,1,0,1,1,
- 1,4,1,2,1,1,2,3,1,1,
- 1,3,2,1,2,2,9,8,2,1,
- 3,1,3,1,0,1,0,2,1,1,
- 3,1,3,2,1,5,8,1,2,3,
- 1,5,4,3,1,3,1,1,5,4,
- 4,5,5,1,0,1,1,1,2,4,
- 2,2,1,5,1,1,1,1,1,1,
- 2,1,0,1,3,1,2,3,2,1,
- 2,2,1,0,1,3,3,5,5,4,
- 1,1,1,1,0,1,5,2,2,1,
- 2,2,1,0,1,3,4,3,1,1,
- 5,2,1,1,3,3,1,1,1,1,
+ 3,1,0,1,3,1,1,1,6,5,
+ 7,6,1,0,6,5,6,4,1,3,
+ 1,0,1,2,1,3,1,3,1,1,
+ 1,3,9,2,2,3,2,3,1,5,
+ 1,2,2,1,0,1,1,1,4,1,
+ 2,1,1,2,3,1,1,1,3,2,
+ 1,2,2,9,8,2,1,3,1,3,
+ 1,0,1,0,2,1,1,3,1,3,
+ 2,1,5,8,1,2,3,1,5,4,
+ 3,1,3,1,1,5,4,4,5,5,
+ 1,0,1,1,1,2,4,2,2,1,
+ 5,1,1,1,1,1,1,1,2,1,
+ 0,1,3,1,2,3,2,1,2,2,
+ 1,0,1,3,3,5,5,4,1,1,
+ 1,1,0,1,5,2,2,1,2,2,
+ 1,0,1,3,4,3,1,1,5,2,
+ 1,1,3,3,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,2,2,7,1,0,1,3,1,
- 1,2,4,2,4,7,9,5,1,3,
- 1,0,1,1,1,2,4,4,1,2,
- 5,5,3,3,1,4,3,1,0,1,
- 3,1,1,1,-107,0,0,0,-2,0,
+ 2,2,7,1,0,1,3,1,1,2,
+ 4,2,4,7,9,5,1,3,1,0,
+ 1,1,1,2,4,4,1,2,5,5,
+ 3,3,1,4,3,1,0,1,3,1,
+ 1,1,-107,0,0,0,-3,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-3,0,0,
- 0,0,0,0,0,-17,0,-4,0,0,
- 0,0,-24,-262,0,0,-354,0,0,0,
- -460,0,0,0,0,0,0,-455,0,-133,
+ 0,0,0,0,0,-443,0,0,0,0,
+ 0,0,0,-109,0,-43,0,0,0,0,
+ 0,-2,0,0,-196,0,0,0,-7,0,
+ 0,0,0,0,0,0,0,-134,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-7,0,0,0,0,0,0,0,
- -8,0,0,0,0,-10,0,0,0,0,
- -11,0,0,0,0,0,0,0,0,-72,
+ -8,0,0,0,0,0,0,0,0,0,
+ -381,0,0,-11,-102,0,-49,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -70,0,0,0,0,0,-113,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-18,0,-225,0,0,0,0,
- 0,0,-74,0,0,0,0,0,0,0,
+ 0,0,0,-113,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-18,0,-286,0,
+ 0,0,-19,0,0,0,0,0,0,-74,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-19,0,-20,0,0,0,0,
- -73,0,0,0,0,0,-45,0,0,0,
- -22,-327,0,0,0,0,0,-75,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-26,-346,0,
+ 0,-17,0,-45,0,0,0,-289,-362,0,
+ 0,0,0,0,-75,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-26,0,
- -27,0,0,0,-86,0,0,0,0,0,
- 0,-226,0,0,0,-229,0,0,0,-288,
- 0,0,-114,0,0,0,0,0,0,0,
- 0,0,0,0,0,-357,-267,-28,-155,0,
- -470,0,0,0,-90,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-27,0,-28,0,0,
+ 0,-86,0,0,0,0,0,0,-10,0,
+ 0,0,0,0,0,0,0,-73,0,0,
+ 0,-114,0,0,0,-179,0,0,0,0,
+ 0,0,0,0,-29,0,-38,-330,0,-260,
+ 0,0,-90,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-172,0,-285,0,
- 0,-189,0,0,0,0,0,0,0,-221,
+ 0,0,0,0,0,0,0,0,0,-83,
+ 0,0,0,0,0,0,-4,-78,-39,0,
+ 0,0,0,0,0,0,0,-221,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-25,0,
+ 0,0,0,0,-189,0,0,0,0,0,
+ 0,0,-352,0,0,0,0,-24,0,0,
+ 0,0,0,0,0,-517,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -29,0,-38,0,0,0,0,0,0,0,
- 0,-25,0,-157,0,0,0,-39,0,0,
- -269,0,0,0,0,0,0,0,0,-194,
+ -340,0,0,0,0,-94,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-94,0,0,0,-40,
+ 0,0,0,0,0,0,0,0,-40,0,
+ 0,0,0,0,0,0,-41,0,0,0,
+ 0,0,-230,0,0,0,0,-198,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -150,0,0,0,-234,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-41,0,-400,0,
- 0,0,0,0,-42,0,0,-520,0,0,
+ 0,0,0,0,0,0,0,-42,0,0,
+ 0,0,0,0,0,-44,0,0,0,0,
+ 0,-57,0,-31,0,0,-48,0,0,0,
+ -5,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-263,0,
+ -15,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -44,0,-306,0,-234,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-57,0,0,
- 0,0,0,0,0,-341,0,-102,0,0,
- 0,0,0,-58,0,0,-48,0,0,0,
- -5,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-172,0,0,0,-373,0,0,
+ 0,0,-72,0,0,0,0,-258,0,0,
+ 0,0,0,0,-36,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-256,0,0,
+ 0,0,0,0,0,0,0,-58,0,0,
+ 0,-402,0,0,0,0,0,-386,0,0,
+ 0,-317,0,0,0,-59,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,-60,0,0,0,0,0,-61,0,
+ 0,0,0,-356,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-70,0,0,0,
+ 0,0,0,0,-35,0,-305,0,0,0,
+ -62,-22,-290,0,0,0,-63,0,-194,0,
+ 0,0,-64,0,0,0,0,0,0,0,
+ -88,-357,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,-65,0,-250,0,0,0,0,0,
+ 0,0,0,-16,0,0,0,-110,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ -68,0,0,0,-342,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-15,0,0,0,-302,0,0,0,0,
+ 0,0,0,-271,0,0,0,0,0,0,
+ 0,0,0,-66,0,0,0,0,0,-14,
+ 0,0,0,0,0,-411,0,0,0,-136,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-59,0,0,0,0,0,
- 0,0,-60,0,-61,0,0,0,-231,0,
- 0,0,0,-330,0,0,0,-62,0,0,
- 0,0,0,0,0,0,-230,0,0,0,
- -36,0,0,0,-63,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-64,0,0,0,0,0,0,
- 0,-109,0,-65,0,0,0,-240,0,0,
- 0,0,0,-314,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-67,0,
+ 0,-137,0,0,0,-379,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-66,0,0,0,
- -367,0,0,0,0,-351,0,0,0,0,
+ 0,0,0,0,-374,0,0,0,0,0,
+ 0,0,-69,0,0,0,0,0,-240,0,
+ 0,0,0,-138,0,0,0,-71,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-368,0,
- 0,0,0,0,0,0,-407,0,-289,0,
- 0,0,-67,0,-69,0,0,-232,0,0,
- 0,0,-150,0,0,0,-352,0,0,0,
+ 0,0,0,0,0,0,-79,0,0,0,
+ 0,0,0,0,-91,0,-20,0,0,0,
+ 0,-309,0,0,0,-139,0,0,0,-93,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-71,
+ 0,0,0,0,0,0,0,0,-103,0,
+ 0,0,0,0,0,0,-112,0,-21,0,
+ 0,0,0,-454,0,0,0,-140,0,0,
+ 0,-149,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-361,0,0,0,0,-16,0,
- 0,0,-444,0,0,0,0,0,0,0,
+ -459,0,0,0,0,0,0,0,0,0,
+ -30,0,0,0,0,-151,0,0,0,-141,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-250,0,0,0,0,-68,0,0,0,
- -79,0,0,0,0,0,0,0,0,0,
+ 0,0,-509,0,0,0,0,0,0,0,
+ -152,0,0,0,0,0,-458,0,0,0,
+ 0,-142,0,0,0,-153,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-510,0,0,0,0,0,
+ 0,0,-154,0,-34,0,0,0,0,-161,
+ 0,0,0,-143,0,0,0,-162,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-83,0,0,0,0,0,0,
- 0,-91,-347,0,0,0,-136,0,0,0,
+ 0,0,0,0,0,0,-167,0,0,0,
+ 0,0,0,0,-168,0,-37,0,0,0,
+ 0,-175,0,0,0,-144,0,0,0,-176,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-177,0,
+ 0,0,0,0,0,0,-178,0,-89,0,
+ 0,0,-467,-186,-187,0,0,-145,0,0,
+ 0,-188,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -201,0,0,0,0,0,0,0,-202,0,
+ -156,0,0,0,0,-203,-204,0,0,-146,
+ 0,0,0,-205,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-459,0,-184,0,0,-137,0,
- 0,0,-93,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-512,0,0,0,0,0,0,0,0,
- 0,-21,0,0,0,0,-103,-185,0,0,
- -138,0,0,0,-112,0,0,0,0,0,
+ -206,0,-158,0,0,0,0,-207,-208,0,
+ 0,-171,0,0,0,-209,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-149,0,0,0,0,0,-151,-152,0,
- 0,0,-139,0,0,0,-153,0,0,0,
+ 0,0,-210,0,-191,0,0,0,-413,-211,
+ -212,0,0,-255,0,0,0,-213,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-214,0,0,0,
+ 0,0,0,0,-215,0,-160,0,0,0,
+ 0,-216,-366,0,0,-512,0,0,0,-217,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-154,0,-30,0,0,0,0,
- -161,-162,0,0,-140,0,0,0,-167,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-513,0,0,
- 0,0,0,0,0,-168,0,-34,0,0,
- 0,0,-175,-176,0,0,-141,0,0,0,
- -177,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-178,
- 0,0,0,0,0,0,0,-186,0,-37,
- 0,0,0,0,-187,0,0,0,-142,0,
- 0,0,-88,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-218,0,-163,0,
+ 0,0,0,-246,-219,0,0,-308,0,0,
+ 0,-184,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-188,0,0,0,0,0,0,0,-201,
- 0,-43,0,0,0,-202,0,-203,0,0,
- -143,0,0,0,-89,0,0,0,0,0,
+ -235,0,0,0,0,0,0,0,-236,0,
+ 0,0,0,0,-344,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-204,0,0,0,0,0,0,
- 0,-205,0,0,0,0,0,-206,-207,-208,
- 0,0,-144,0,0,0,-209,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-210,0,0,0,0,
- 0,0,0,-211,0,0,0,0,0,-212,
- -213,-214,0,0,-145,0,0,0,-215,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-216,0,0,
- 0,0,0,0,0,-217,0,-156,0,0,
- 0,0,-218,-219,0,0,-146,0,0,0,
- -235,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-236,
- 0,0,0,0,0,0,0,-237,0,-158,
- 0,0,0,0,-238,-259,0,0,-171,0,
- 0,0,-335,0,0,0,0,0,0,0,
+ 0,-333,0,0,0,-104,-367,0,0,0,
+ 0,0,-237,-364,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-260,0,0,0,0,0,0,0,-371,
- 0,-160,0,0,0,0,-261,-271,0,0,
- -255,0,0,0,-272,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-278,0,0,0,0,0,0,
- 0,-431,0,-163,0,0,0,0,-279,-281,
- 0,0,-515,0,0,0,-283,0,0,0,
+ 0,0,0,0,0,0,-238,0,0,0,
+ -383,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-290,0,0,0,0,
- 0,0,0,-294,0,-169,0,0,0,0,
- -510,-295,0,0,-305,0,0,0,-299,0,
+ 0,0,0,-259,0,0,0,0,0,0,
+ 0,-261,0,-326,0,0,0,-378,0,0,
+ 0,-105,-404,0,0,0,0,0,-262,-384,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-110,0,0,
- 0,0,0,0,0,-300,0,0,0,0,
- 0,-339,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-196,0,
+ 0,0,-272,0,0,0,-446,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-359,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-273,
+ 0,0,0,0,0,0,0,-279,0,-280,
+ 0,0,0,-157,0,0,0,-173,-348,-412,
+ 0,0,0,0,-282,-148,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-315,0,-316,0,0,0,-375,
0,0,0,0,0,0,0,0,0,0,
+ -284,0,-135,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-324,0,0,0,0,0,0,0,
- -328,0,-329,0,0,0,-198,0,0,0,
- -338,0,0,0,0,0,0,0,0,-191,
- -376,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-254,0,0,0,0,
+ 0,0,0,-185,0,-133,0,0,0,-174,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-246,0,0,0,0,0,0,
- 0,-340,0,-356,0,0,0,-447,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-130,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -254,0,0,0,0,0,0,0,-363,0,
- 0,0,0,0,-370,0,0,0,-366,-388,
- 0,0,0,0,0,-200,-390,0,-148,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-131,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-391,0,0,0,0,0,0,0,-223,
- 0,-360,0,0,0,-135,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-256,0,
- 0,0,0,0,0,0,0,0,-134,0,
- 0,0,-392,0,0,0,0,0,0,0,
+ 0,0,0,-132,0,0,0,-200,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-394,0,0,0,0,0,0,-130,0,
+ 0,0,0,0,0,0,-307,0,0,0,
+ 0,-124,0,0,0,-291,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-296,0,0,0,-125,0,
+ 0,0,-297,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-131,0,0,
- 0,-395,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-126,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -293,0,0,0,0,-132,0,0,0,-323,
+ 0,0,0,0,0,0,0,0,-298,0,
+ 0,0,-127,0,0,0,-302,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-401,0,
- 0,0,0,-124,0,0,0,-403,0,0,
+ 0,0,0,0,0,-380,0,0,0,-23,
+ 0,0,0,-180,0,-403,0,0,-128,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-412,0,0,0,
- -125,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-383,0,0,0,-126,0,0,
- 0,-372,0,0,0,0,0,0,0,0,
+ 0,-169,0,0,0,0,0,-294,-303,-283,
+ 0,0,0,0,-318,0,0,0,0,0,
+ -226,0,0,0,-129,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -422,0,0,0,-127,0,0,0,-423,0,
+ 0,0,0,0,0,0,0,-155,0,0,
+ -80,-195,0,-319,0,0,0,0,-429,0,
+ 0,-13,-92,0,0,0,0,0,-82,0,
+ 0,0,-327,-243,0,0,-358,0,0,-331,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-430,0,0,
- 0,-23,0,0,0,0,0,-446,0,0,
- -128,0,0,0,0,0,0,0,0,0,
+ -299,-199,-242,-428,0,0,0,0,-332,0,
+ 0,0,0,0,0,-343,-345,-77,0,0,
+ 0,0,0,0,0,0,0,-170,0,0,
+ 0,0,0,0,-489,-223,0,0,0,0,
+ 0,0,0,0,-361,0,0,0,0,0,
+ 0,-369,0,0,0,0,0,0,-372,0,
+ -225,0,-444,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-224,0,0,-78,0,0,-239,
- 0,0,0,-12,0,0,0,0,-497,0,
- 0,0,0,0,-31,-35,-129,0,0,0,
+ 0,0,0,0,0,0,0,-396,0,0,
+ 0,0,0,0,-116,0,0,-251,0,-227,
+ 0,0,0,0,0,-391,-224,0,0,0,
+ 0,0,0,0,0,0,-232,0,0,0,
+ 0,-229,0,0,0,0,-397,0,0,0,
+ 0,0,0,0,-400,0,-493,0,0,0,
+ 0,0,0,0,-119,0,0,0,-401,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-233,0,0,
+ 0,-120,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-414,-227,0,0,0,0,0,
- 0,0,-264,-448,-450,0,0,0,0,0,
- -104,0,-258,0,0,-13,0,0,0,-265,
- 0,-268,0,0,0,0,-451,-452,0,0,
- 0,0,0,0,0,0,-399,0,0,0,
+ 0,0,0,0,-407,0,-320,0,0,0,
+ 0,-409,0,0,0,0,0,0,0,0,
+ -395,0,0,0,0,0,0,0,0,0,
+ 0,-418,-166,0,0,0,0,0,-371,0,
+ 0,0,0,-425,0,0,0,0,0,-368,
+ 0,-406,0,0,0,0,-84,-417,0,-462,
+ -422,0,0,0,0,-241,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-454,-469,0,0,0,0,0,0,0,
- 0,-241,0,-425,-105,0,0,0,0,0,
- -471,0,0,0,0,0,0,0,0,0,
- -173,0,-81,0,0,0,0,0,-472,0,
- -253,0,0,0,0,0,0,0,0,-432,
- -473,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-478,0,0,
- -296,0,0,-301,0,0,0,0,0,0,
- -243,0,0,0,0,0,0,0,0,0,
- 0,0,0,-92,0,0,0,-179,0,0,
- 0,0,0,0,0,0,0,0,-101,-170,
- 0,0,0,-437,-345,0,0,0,0,0,
- -174,0,-115,-284,-228,-482,0,0,0,0,
- 0,0,0,0,0,0,0,0,-266,-487,
- 0,0,0,0,-353,0,0,-180,0,0,
- -80,0,0,0,0,0,0,-233,0,0,
- 0,0,0,0,0,0,0,0,0,-494,
- 0,0,-183,-396,0,0,0,-438,0,0,
- 0,0,0,-504,-511,0,-516,0,0,0,
+ 0,0,0,0,-9,0,0,-452,0,-426,
+ 0,0,-228,0,0,0,0,0,0,0,
+ 0,0,0,-433,-281,0,-304,0,0,-266,
+ 0,0,0,0,0,0,-85,0,0,0,
+ 0,0,0,0,0,0,0,0,-445,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-106,0,-337,0,0,0,0,0,
- -166,0,0,0,0,-76,0,0,0,0,
- 0,-244,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-385,0,0,0,
- 0,-445,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-434,0,-471,-507,-322,0,
+ 0,-192,0,0,0,0,0,0,0,0,
+ 0,-447,0,0,0,0,0,0,0,0,
+ 0,0,-449,-76,0,0,-494,-46,0,0,
+ -450,0,-193,-451,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-195,
- 0,-199,0,0,0,-378,0,0,0,0,
- 0,0,0,0,0,-377,0,0,0,0,
+ 0,0,0,0,0,-500,-453,-455,-244,0,
+ 0,0,0,0,0,0,0,-466,0,0,
+ 0,0,0,0,0,0,0,0,0,-288,
+ 0,0,0,0,0,0,0,0,0,-468,
+ 0,0,-310,0,0,0,0,0,-182,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-270,0,0,0,
- 0,0,0,-242,0,0,0,0,0,0,
- 0,-119,0,0,0,0,0,0,0,0,
+ 0,0,-350,0,-502,-268,0,0,0,0,
+ 0,-101,0,0,0,0,-270,0,-469,-470,
+ 0,0,0,0,0,0,0,0,-81,0,
+ 0,0,-399,0,-475,-485,-474,0,0,0,
+ 0,-463,0,0,0,0,0,-220,-249,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-120,0,0,0,
+ 0,-351,0,-506,-295,0,0,0,0,0,
+ 0,0,0,-300,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-87,0,0,
+ 0,-159,0,0,0,0,0,-430,0,0,
+ 0,0,0,0,0,0,0,-267,0,0,
+ 0,0,0,0,0,0,0,-311,-231,0,
+ 0,0,-518,-96,0,-479,0,0,0,0,
+ 0,0,-484,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-285,0,0,
+ -491,0,-183,0,-147,0,0,-398,0,-501,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-365,0,0,0,
+ 0,-521,0,0,-312,0,-97,0,0,0,
+ 0,-316,-313,0,-323,0,-508,0,0,0,
+ 0,0,0,0,0,-164,0,0,0,0,
+ 0,0,-513,0,0,0,0,0,0,0,
+ 0,0,0,0,-353,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-325,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-282,0,0,0,0,0,0,0,0,
- 0,0,-317,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-387,0,0,0,
- 0,0,0,0,0,0,0,0,0,-405,
- 0,0,0,0,-365,0,0,0,0,0,
- 0,0,0,0,0,-14,0,0,-77,0,
- 0,0,0,0,-82,-362,0,0,0,0,
- -251,0,0,0,0,-419,0,0,-280,0,
- 0,0,0,0,0,-182,0,0,0,-477,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -193,-453,0,0,0,0,0,0,-406,0,
- 0,0,0,0,-373,0,0,0,0,0,
- 0,-346,0,0,0,-220,0,-427,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-496,0,0,0,0,0,
- 0,0,0,0,0,-393,0,0,-474,0,
- 0,0,0,-84,0,0,-304,-326,0,-96,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,-287,-87,0,0,0,0,0,0,
- -307,0,0,0,0,0,0,0,-273,0,
- 0,0,-249,0,0,0,0,0,0,0,
- 0,0,0,0,-297,-503,0,0,0,0,
- 0,0,0,0,0,0,-192,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -159,0,0,0,-308,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -456,0,-505,0,0,0,0,0,0,0,
- 0,-417,0,-97,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-164,0,0,
- 0,0,0,0,0,0,0,-309,0,0,
- 0,0,-286,0,0,0,-313,0,0,0,
- 0,0,0,0,0,0,0,-517,0,-509,
- 0,0,-116,0,0,0,0,0,0,0,
- -9,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-190,0,0,0,0,0,
- 0,-310,0,0,-320,0,0,0,0,-322,
- -348,0,-398,0,0,0,0,0,0,0,
- 0,0,0,0,-147,0,-521,0,0,-274,
- 0,0,0,0,-435,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,-197,0,0,0,-318,0,0,-349,0,
- 0,-384,0,0,0,0,-332,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -426,0,0,-524,0,0,-275,0,0,0,
- 0,-464,0,0,-98,0,0,0,0,0,
- 0,0,0,0,0,0,0,-6,0,0,
- 0,-334,0,0,-342,0,0,0,0,0,
- -355,0,0,-381,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-386,-389,
- 0,0,0,0,0,0,-408,0,0,0,
- 0,0,-411,0,0,0,0,0,0,0,
0,0,0,-121,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,-122,0,0,0,
@@ -402,119 +381,131 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
0,0,0,0,0,0,0,0,0,-123,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-298,0,0,0,0,0,0,0,
- 0,0,0,-404,0,0,0,-410,-319,-331,
- -413,0,0,0,-291,0,0,0,-292,0,
- 0,0,-321,0,0,0,0,-33,0,0,
- 0,0,0,0,0,-303,0,0,0,0,
- 0,0,0,-333,0,0,0,0,0,0,
+ 0,0,-301,0,0,0,0,0,0,0,
+ 0,0,0,-239,0,0,0,-106,-354,-420,
+ -329,0,-115,-334,0,0,0,0,-98,-335,
+ -377,0,0,0,0,-269,0,0,0,0,
+ 0,0,-253,0,0,0,0,-392,-514,0,
+ 0,0,0,0,-393,0,-337,0,0,0,
+ 0,-339,0,0,-437,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-364,0,-434,-415,0,-449,0,
- 0,0,0,-457,0,0,0,0,0,0,
- 0,0,0,-350,-488,0,0,0,0,0,
- 0,0,0,0,0,0,-416,0,-311,0,
+ -376,0,0,0,0,-347,0,0,0,0,
+ 0,0,0,0,0,0,0,-190,0,0,
+ 0,0,0,0,-410,0,0,0,0,0,
+ 0,0,-274,0,0,0,0,0,0,0,
+ -435,-439,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-448,0,0,0,
+ 0,0,0,0,-287,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-409,-46,-421,
- -424,0,0,0,0,-461,0,0,-343,0,
- 0,0,0,0,0,0,-47,0,0,0,
+ 0,0,0,0,0,0,0,0,-419,0,
+ 0,0,0,0,0,0,0,-511,0,0,
0,0,0,0,0,0,0,0,0,0,
- -429,0,0,0,0,-483,0,0,-458,0,
- 0,0,0,0,0,-465,0,0,0,0,
- 0,-420,0,0,0,0,-466,0,0,-485,
- 0,0,0,0,0,0,0,0,-468,0,
- -100,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-344,0,0,0,0,
- 0,-276,-397,0,0,0,0,0,0,0,
- 0,0,0,0,0,-436,0,0,0,0,
- 0,-312,0,0,0,0,0,0,0,0,
- 0,-484,0,0,0,0,-480,0,0,0,
- 0,0,0,0,0,0,0,0,-379,0,
- 0,0,-493,-481,0,-277,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-514,
+ 0,0,0,0,0,0,0,-472,0,0,
+ 0,0,0,0,0,-292,0,0,0,-293,
+ 0,0,0,-324,0,0,0,-360,-389,0,
+ 0,0,0,0,-394,0,0,-414,0,-456,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-486,0,0,0,0,0,-475,
+ 0,0,0,0,-50,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-489,-325,-491,-502,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-506,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-49,0,
+ 0,0,-51,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-52,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-50,0,0,0,
+ 0,0,0,0,0,0,-53,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-51,0,
+ 0,0,0,0,0,0,0,0,-54,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -52,0,0,0,0,0,0,0,0,0,
+ -55,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-53,0,0,0,0,0,0,0,
+ 0,0,-56,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-54,0,0,0,0,0,
+ 0,0,0,0,-108,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-55,0,0,0,
+ 0,0,0,0,0,0,-117,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-56,0,
+ 0,0,0,0,0,0,0,0,-118,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -108,0,0,0,0,0,0,0,0,0,
+ -181,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-117,0,0,0,0,0,0,0,
+ 0,0,-247,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-118,0,0,0,0,0,
+ 0,0,0,0,-359,0,0,0,-460,0,
+ 0,0,0,0,0,-416,0,-424,-427,0,
+ -99,0,0,0,0,-197,0,0,0,0,
+ -385,-336,-432,-275,0,0,0,0,-480,0,
+ -276,0,0,0,0,-464,0,0,-306,0,
+ 0,0,0,0,0,-496,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-457,0,
+ 0,-370,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-465,-477,
+ 0,0,0,-355,0,0,0,0,0,0,
+ 0,0,0,0,0,-481,0,-248,-441,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-181,0,0,0,
+ 0,0,0,0,0,-375,0,0,-482,0,
+ 0,0,-390,-486,-277,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-478,
+ 0,0,0,0,0,0,-490,0,0,0,
+ 0,0,0,0,0,-415,-405,0,-483,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-247,0,
+ 0,0,-488,-338,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-492,
+ -497,-498,-6,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-423,
+ 0,0,-278,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -503,0,0,0,0,0,0,0,0,0,
+ -504,0,0,0,0,0,0,0,0,0,
+ 0,0,-321,-461,0,0,0,0,0,0,
+ 0,0,0,-1,0,0,0,0,0,0,
+ 0,0,0,0,0,-515,-520,0,0,0,
+ 0,0,0,-95,-516,-222,0,0,0,0,
+ 0,0,0,0,-440,0,0,0,0,0,
+ 0,0,-519,-328,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -507,0,0,0,0,0,0,0,0,0,
- 0,-1,0,0,0,0,0,0,0,0,
- 0,0,0,-382,0,-85,0,0,0,0,
- 0,0,-495,-374,0,0,0,0,0,0,
- 0,0,0,0,-32,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-518,0,
- 0,0,0,0,-500,0,0,0,0,-358,
- -428,0,0,0,0,0,0,-440,0,0,
- -501,0,0,0,0,-467,0,0,0,0,
- -462,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-519,
- -523,0,0,0,0,0,-522,0,0,0,
- -508,0,0,0,0,0,-433,0,0,0,
- 0,0,0,0,0,0,0,-499,0,0,
+ 0,-499,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-263,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-490,
+ 0,0,0,0,0,-349,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-382,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-336,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-222,0,0,0,0,
- 0,0,-99,0,0,0,0,0,0,0,
+ 0,-436,0,0,0,0,0,0,0,0,
+ 0,0,-12,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-387,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-380,0,0,0,0,0,0,0,-402,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-418,0,
- 0,0,-439,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -492,0,-95,0,0,0,0,0,-369,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-111,0,
- 0,0,0,0,-441,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-32,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-165,0,0,0,0,0,0,0,
- 0,0,0,-245,0,0,0,0,0,0,
- 0,0,-252,0,0,0,-257,0,0,0,
- 0,-463,0,0,0,0,0,-248,-476,0,
+ 0,0,-264,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-265,0,0,0,
+ 0,0,-341,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-442,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-388,0,0,0,0,0,0,
+ 0,0,0,0,0,-487,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-479,0,0,0,0,
- 0,0,0,0,0,0,0,0,-442,-443,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-498,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-408,0,
+ 0,0,-421,0,0,0,-438,0,0,0,
+ 0,0,0,0,-314,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-111,-315,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-33,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-47,0,0,0,-100,0,
+ 0,0,0,0,-165,0,0,0,-245,0,
0,0,0,0,0,0,0,0,0,0,
+ -252,0,0,0,-257,0,0,0,0,0,
+ -473,0,0,-495,0,0,0,0,0,-363,
+ 0,0,0,0,0,0,0,-476,0,0,
+ 0,0,0,0,0,-431,0,0,0,0,
+ 0,0,0,0,0,0,0,-505,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
@@ -523,7 +514,7 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0
+ 0,0
};
};
public final static short baseCheck[] = BaseCheck.baseCheck;
@@ -533,532 +524,523 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface BaseAction {
public final static char baseAction[] = {
- 169,4,48,71,71,31,31,63,63,38,
- 38,192,192,193,193,194,194,1,1,15,
+ 167,4,48,74,74,31,31,63,63,38,
+ 38,190,190,191,191,192,192,1,1,15,
15,15,15,15,15,15,15,16,16,16,
14,11,11,8,8,8,8,8,8,2,
64,64,5,5,12,12,12,12,44,44,
- 132,132,133,62,62,42,17,17,17,17,
+ 131,131,132,62,62,42,17,17,17,17,
17,17,17,17,17,17,17,17,17,17,
- 17,17,17,17,17,17,134,134,134,116,
- 116,18,18,18,18,18,18,18,18,18,
- 18,18,18,18,19,19,170,170,171,171,
- 172,137,137,138,138,135,135,139,136,136,
+ 17,17,17,17,17,17,133,133,133,113,
+ 113,18,18,18,18,18,18,18,18,18,
+ 18,18,18,18,19,19,168,168,169,169,
+ 170,136,136,137,137,134,134,138,135,135,
20,20,21,21,22,22,22,24,24,24,
24,25,25,25,26,26,26,27,27,27,
27,27,28,28,28,29,29,30,30,32,
32,34,34,35,35,36,36,41,41,40,
40,40,40,40,40,40,40,40,40,40,
- 40,40,39,33,140,140,97,97,173,173,
- 92,195,195,73,73,73,73,73,73,73,
- 73,73,74,74,74,70,70,58,58,174,
- 174,75,75,75,103,103,175,175,76,76,
- 76,176,176,77,77,77,77,77,78,78,
- 72,72,72,72,72,72,72,49,49,49,
- 49,49,104,104,105,105,50,177,23,23,
- 23,23,23,47,47,87,87,87,87,87,
- 147,147,142,142,142,142,142,143,143,143,
- 144,144,144,145,145,145,146,146,146,88,
- 88,88,88,88,89,89,89,13,13,13,
- 13,13,13,13,13,13,13,13,100,120,
- 120,120,120,120,120,118,118,118,119,119,
- 149,149,148,148,122,122,150,82,82,83,
- 83,85,86,84,52,46,151,151,53,51,
- 81,81,152,152,141,141,107,107,65,65,
- 153,153,60,60,55,55,154,61,61,68,
- 68,57,57,57,90,90,99,98,98,59,
- 59,56,56,54,54,43,101,101,101,93,
- 93,93,94,94,95,95,95,96,96,108,
- 108,108,110,110,109,109,196,196,91,91,
- 179,179,179,179,179,124,45,45,156,178,
- 178,125,125,125,125,180,180,37,37,117,
- 126,126,126,126,111,111,121,121,121,158,
- 159,159,159,159,159,159,159,159,159,159,
- 183,183,181,181,182,182,160,160,160,160,
- 161,184,113,112,112,185,185,162,162,162,
- 162,102,102,102,186,186,9,9,10,187,
- 187,188,163,155,155,164,164,165,166,166,
- 6,6,7,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,66,69,69,168,168,
- 128,128,129,129,129,129,129,129,3,130,
- 130,127,127,114,114,114,80,67,79,157,
- 157,115,115,189,189,189,131,131,123,123,
- 190,190,169,169,106,881,39,1672,1645,29,
- 3415,34,613,31,35,621,30,32,1638,29,
- 27,56,1028,112,82,83,114,1044,1236,1103,
- 1095,1118,1105,1154,1135,1207,860,1164,333,1253,
- 1255,149,278,1131,1697,164,150,1431,39,631,
- 36,2323,3688,34,613,341,35,621,1516,3907,
- 2249,39,631,36,237,3797,34,613,31,35,
- 621,30,32,1001,29,27,56,1028,112,82,
- 83,114,1044,987,1103,1095,1118,1105,1154,1135,
- 1779,1081,240,235,236,3528,1516,901,808,38,
- 640,1205,568,324,335,279,328,319,1051,3816,
- 938,39,631,36,494,354,34,613,342,35,
- 621,1131,247,250,253,256,2713,1251,39,631,
- 36,1351,3472,34,613,31,35,621,63,32,
- 348,1478,1436,351,597,1443,1116,3109,2577,2831,
- 3115,3224,4326,1384,39,631,36,2542,3797,34,
- 613,31,35,621,1519,32,1001,29,27,56,
- 1028,112,82,83,114,1044,345,1103,1095,1118,
- 1105,1154,1135,1207,1301,1164,49,1253,1255,149,
- 683,1113,329,513,150,2751,2883,1440,39,1477,
- 47,1497,1425,46,613,2896,317,514,1384,39,
- 631,36,2542,3797,34,613,31,35,621,1519,
- 32,1001,29,27,56,1028,112,82,83,114,
- 1044,345,1103,1095,1118,1105,1154,1135,1207,685,
- 1164,773,1253,1255,149,1871,39,284,513,150,
- 4643,2883,2383,39,285,1263,2556,1898,390,423,
- 1309,67,514,1847,39,631,36,509,3472,34,
- 613,31,35,621,62,32,1309,1773,1504,1711,
- 1518,2472,3696,1527,3688,1384,39,631,36,2542,
- 3797,34,613,31,35,621,1519,32,1001,29,
- 27,56,1028,112,82,83,114,1044,345,1103,
- 1095,1118,1105,1154,1135,1207,2652,1164,76,1253,
- 1255,149,509,48,1512,513,150,1841,2883,2520,
- 39,282,1871,39,284,1554,335,4654,1527,514,
- 1656,39,631,36,2542,3797,34,613,31,35,
- 621,1519,32,1001,29,27,56,1028,112,82,
- 83,114,1044,345,1103,1095,1118,1105,1154,1135,
- 1207,953,1164,326,1253,1255,149,1168,290,2754,
- 513,150,1146,2883,1516,39,2574,2280,1686,439,
- 383,2556,1898,3683,514,2410,520,66,2133,509,
- 938,39,631,36,2987,1905,34,613,44,35,
- 621,2484,1596,493,2133,1527,1451,39,631,36,
- 1834,3797,34,613,31,35,621,30,32,1001,
- 29,27,56,1028,112,82,83,114,1044,425,
- 1103,1095,1118,1105,1154,1135,1207,2016,1164,1906,
- 1253,1255,149,2694,510,2136,381,150,2041,39,
- 631,36,2016,4663,34,613,31,35,621,30,
- 32,502,507,1516,1898,1520,39,631,36,384,
- 3797,34,613,31,35,621,30,32,1001,29,
- 27,56,1028,112,82,83,114,1044,2511,1103,
- 1095,1118,1105,1154,1135,1207,1531,1164,1992,1253,
- 1255,149,188,290,1039,381,150,2203,39,631,
- 36,509,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,92,82,83,382,3227,
- 1905,385,1723,39,631,36,1217,3797,34,613,
- 31,35,621,30,32,1001,29,27,56,1028,
- 112,82,83,114,1044,1312,1103,1095,1118,1105,
- 1154,1135,1207,1825,1164,929,1253,1255,149,2383,
- 39,282,381,150,938,39,631,36,73,327,
- 34,613,3116,35,621,291,857,1516,39,287,
- 386,1944,39,631,36,508,3797,34,613,31,
- 35,621,30,32,1001,29,27,56,1028,112,
- 82,83,114,1044,2277,1103,1095,1118,1105,1154,
- 1135,1207,681,1164,590,1253,1255,149,1516,39,
- 1939,164,150,3259,1944,39,631,36,434,3797,
- 34,613,31,35,621,30,32,1001,29,27,
- 56,1028,112,82,83,114,1044,379,1103,1095,
- 1118,1105,1154,1135,1207,452,1164,678,1253,1255,
- 149,2563,2323,2272,375,150,1944,39,631,36,
- 417,3797,34,613,31,35,621,30,32,1001,
- 29,27,56,1028,112,82,83,114,1044,1334,
- 1103,1095,1118,1105,1154,1135,1207,2152,1164,978,
- 1253,1255,149,137,3688,1118,375,150,1516,39,
- 808,281,3182,1516,39,714,388,1944,39,631,
- 36,1443,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,114,1044,
- 977,1103,1095,1118,1105,1154,1135,1207,374,1164,
- 55,1253,1255,149,1425,52,3228,375,150,1784,
- 39,631,36,2465,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 114,1044,3287,1103,1095,1118,1105,1154,1135,1207,
- 373,1164,1770,1253,1290,170,1249,1589,39,631,
- 36,1492,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,114,1044,
- 358,1103,1095,1118,1105,1154,1135,1207,528,1164,
- 330,1253,1255,149,1582,1562,100,148,150,3358,
- 2751,371,62,1516,39,714,388,1944,39,631,
- 36,651,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,114,1044,
- 77,1103,1095,1118,1105,1154,1135,1207,519,1164,
- 427,1253,1255,149,1516,2806,1019,161,150,1944,
- 39,631,36,689,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 114,1044,2323,1103,1095,1118,1105,1154,1135,1207,
- 811,1164,49,1253,1255,149,738,2233,1732,160,
- 150,1944,39,631,36,1069,3797,34,613,31,
- 35,621,30,32,1001,29,27,56,1028,112,
- 82,83,114,1044,355,1103,1095,1118,1105,1154,
- 1135,1207,1033,1164,99,1253,1255,149,164,1718,
- 522,159,150,1944,39,631,36,1264,3797,34,
- 613,31,35,621,30,32,1001,29,27,56,
- 1028,112,82,83,114,1044,356,1103,1095,1118,
- 1105,1154,1135,1207,340,1164,49,1253,1255,149,
- 815,1999,1561,158,150,1944,39,631,36,1108,
- 3797,34,613,31,35,621,30,32,1001,29,
- 27,56,1028,112,82,83,114,1044,2323,1103,
- 1095,1118,1105,1154,1135,1207,780,1164,49,1253,
- 1255,149,2774,963,1513,157,150,1944,39,631,
- 36,1581,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,114,1044,
- 1734,1103,1095,1118,1105,1154,1135,1207,766,1164,
- 49,1253,1255,149,946,2493,521,156,150,1944,
- 39,631,36,1131,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 114,1044,2436,1103,1095,1118,1105,1154,1135,1207,
- 1985,1164,857,1253,1255,149,1996,3851,2416,155,
- 150,1944,39,631,36,1131,3797,34,613,31,
- 35,621,30,32,1001,29,27,56,1028,112,
- 82,83,114,1044,2523,1103,1095,1118,1105,1154,
- 1135,1207,2617,1164,456,1253,1255,149,156,249,
- 332,154,150,1944,39,631,36,425,3797,34,
- 613,31,35,621,30,32,1001,29,27,56,
- 1028,112,82,83,114,1044,1890,1103,1095,1118,
- 1105,1154,1135,1207,2153,1164,455,1253,1255,149,
- 2352,1832,2373,153,150,1944,39,631,36,1347,
- 3797,34,613,31,35,621,30,32,1001,29,
- 27,56,1028,112,82,83,114,1044,1845,1103,
- 1095,1118,1105,1154,1135,1207,1134,1164,49,1253,
- 1255,149,4516,1111,313,152,150,1944,39,631,
- 36,1665,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,114,1044,
- 1839,1103,1095,1118,1105,1154,1135,1207,1990,1164,
- 49,1253,1255,149,676,2115,1376,151,150,1944,
- 39,631,36,1630,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 114,1044,2349,1103,1095,1118,1105,1154,1135,1207,
- 1630,1164,1128,1253,1255,149,2625,1250,1395,165,
- 150,1944,39,631,36,1812,3797,34,613,31,
- 35,621,30,32,1001,29,27,56,1028,112,
- 82,83,114,1044,2399,1103,1095,1118,1105,1154,
- 1135,1207,2152,1164,49,1253,1255,149,786,2582,
- 1764,146,150,2155,39,631,36,1953,3797,34,
- 613,31,35,621,30,32,1001,29,27,56,
- 1028,112,82,83,114,1044,2414,1103,1095,1118,
- 1105,1154,1135,1207,2183,1164,49,1253,1255,149,
- 2838,2596,2403,195,150,2249,39,631,36,2615,
- 3797,34,613,31,35,621,30,32,1001,29,
- 27,56,1028,112,82,83,114,1044,860,1103,
- 1095,1118,1105,1154,1135,1207,2196,1164,2492,1253,
- 1290,170,2249,39,631,36,443,3797,34,613,
- 31,35,621,30,32,1001,29,27,56,1028,
- 112,82,83,114,1044,2667,1103,1095,1118,1105,
- 1154,1135,1207,443,1164,357,1253,1290,170,1646,
- 39,631,36,528,4663,34,613,31,35,621,
- 65,32,930,2249,39,631,36,295,3797,34,
- 613,31,35,621,30,32,1001,29,27,56,
- 1028,112,82,83,114,1044,520,1103,1095,1118,
- 1105,1154,1135,1207,1396,1164,1414,1253,1290,170,
- 2249,39,631,36,419,3797,34,613,31,35,
- 621,30,32,1001,29,27,56,1028,112,82,
- 83,114,1044,1500,1103,1095,1118,1105,1154,1135,
- 1207,2435,1164,2660,1253,1290,170,1646,39,631,
- 36,1040,4663,34,613,31,35,621,64,32,
- 1131,2249,39,631,36,2917,3797,34,613,31,
- 35,621,30,32,1001,29,27,56,1028,112,
- 82,83,114,1044,2478,1103,1095,1118,1105,1154,
- 1135,1207,2481,1164,2663,1253,1290,170,2295,39,
- 631,36,418,3797,34,613,31,35,621,30,
- 32,1001,29,27,56,1028,112,82,83,114,
- 1044,2049,1103,1095,1118,1105,1154,1135,1207,2185,
- 1164,4279,1253,1290,170,938,39,631,36,2692,
- 2202,34,613,3433,35,621,1131,2690,930,2249,
- 39,631,36,421,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 114,1044,2704,1103,1095,1118,1105,1154,1135,1207,
- 49,1164,1131,1814,2650,930,2249,39,631,36,
- 2731,3797,34,613,31,35,621,30,32,1001,
- 29,27,56,1028,112,82,83,114,1044,1576,
- 1103,1095,1118,1105,1154,1135,1207,57,1806,2249,
- 39,631,36,1600,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 114,1044,2592,1103,1095,1118,1105,1154,1798,2249,
- 39,631,36,103,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 114,1044,389,1103,1095,1118,1105,1770,2249,39,
- 631,36,2701,3797,34,613,31,35,621,30,
- 32,1001,29,27,56,1028,112,82,83,114,
- 1044,860,1103,1095,1118,1771,2249,39,631,36,
- 2620,3797,34,613,31,35,621,30,32,1001,
- 29,27,56,1028,112,82,83,114,1044,2290,
- 1103,1095,1118,1772,2249,39,631,36,2696,3797,
- 34,613,31,35,621,30,32,1001,29,27,
- 56,1028,112,82,83,114,1044,2355,1103,1095,
- 1728,2249,39,631,36,1114,3797,34,613,31,
- 35,621,30,32,1001,29,27,56,1028,112,
- 82,83,114,1044,2620,1103,1095,1729,2249,39,
- 631,36,2323,3797,34,613,31,35,621,30,
- 32,1001,29,27,56,1028,112,82,83,114,
- 1044,2134,1103,1095,1730,2249,39,631,36,2258,
- 3797,34,613,31,35,621,30,32,1001,29,
- 27,56,1028,112,82,83,114,1044,2709,1103,
- 1095,1737,2341,39,714,388,94,3244,2667,108,
- 378,2249,39,631,36,242,3797,34,613,31,
- 35,621,30,32,1001,29,27,56,1028,112,
- 82,83,114,1044,2279,1103,1756,942,2819,278,
- 1516,39,808,1924,1372,39,631,36,2646,2152,
- 34,613,341,35,621,1146,1146,2249,39,631,
- 36,237,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,114,1044,
- 95,1103,1764,108,2567,1116,325,380,2542,240,
- 235,236,3528,1267,2697,2714,237,2542,4667,568,
- 324,1146,279,65,318,1051,978,234,376,2595,
- 1116,3688,1516,39,808,286,234,2737,2742,247,
- 250,253,256,2713,249,235,236,2323,1351,211,
- 220,3095,4257,210,217,218,219,221,2643,405,
- 4455,402,2743,2610,3109,2577,2831,3115,3224,4326,
- 212,214,1569,1897,177,1146,222,3688,535,406,
- 407,2747,1897,334,213,215,216,297,298,299,
- 300,1146,326,2346,39,1561,1892,234,3301,89,
- 528,1358,39,714,388,378,28,162,3886,3455,
- 2600,2698,186,3729,2542,1856,4345,391,423,209,
- 220,3095,75,208,217,218,219,221,2513,335,
- 55,857,175,234,2021,674,3704,914,278,3866,
- 354,1506,393,423,174,2542,3688,189,173,176,
- 177,178,179,180,1867,211,220,3095,2370,210,
- 217,218,219,221,3052,348,1478,1436,351,1883,
- 1867,408,411,1131,2676,857,212,214,2542,1897,
- 3919,1146,222,1883,1899,49,2708,1131,2542,921,
- 213,215,216,297,298,299,300,234,334,1116,
- 1380,1966,166,3781,1850,1506,1168,3052,1146,2542,
- 3688,1098,74,2790,3886,3512,166,78,1867,211,
- 220,3095,2580,210,217,218,219,221,3052,2790,
- 2765,2692,362,2507,2593,39,394,2761,2719,59,
- 212,214,2542,1897,2710,2716,222,31,2922,3129,
- 1940,1947,331,337,213,215,216,297,298,299,
- 300,234,334,1837,353,949,2828,3136,336,337,
- 237,1516,39,714,388,362,978,2790,3886,3826,
- 2952,3688,49,211,220,3095,2804,210,217,218,
- 219,221,3425,1940,1947,577,362,1131,252,235,
- 236,354,1,400,212,214,535,1897,278,5254,
- 222,392,423,3129,1940,1947,333,337,213,215,
- 216,297,298,299,300,234,346,1478,1436,351,
- 1146,354,1146,334,2994,162,1516,39,714,388,
- 186,3729,3886,3837,5254,2511,1899,209,220,3095,
- 2542,208,217,218,219,221,346,1478,1436,351,
- 175,93,5254,58,344,187,809,1576,104,3052,
- 5254,280,174,430,1146,190,173,176,177,178,
- 179,180,2249,39,631,36,5254,3797,34,613,
- 31,35,621,30,32,1001,29,27,56,1028,
- 112,82,83,114,1044,352,1680,2249,39,631,
- 36,5254,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,114,1044,
- 288,1686,968,39,631,36,3476,362,34,613,
- 341,35,621,1636,39,631,36,2825,5254,34,
- 613,341,35,621,3664,1940,1947,1119,39,631,
- 36,2646,3688,34,613,341,35,621,5254,5254,
- 1516,39,714,388,353,1879,39,631,36,3077,
- 3528,34,613,341,35,621,49,568,324,2014,
- 1131,3528,318,1051,5254,1299,241,2106,568,324,
- 354,1146,244,318,1051,3528,955,429,2595,1146,
- 2542,354,568,324,334,5254,978,318,1051,2596,
- 417,3688,558,3528,535,346,1478,1436,351,3052,
- 1989,324,96,2104,404,5254,346,1478,1436,351,
- 3377,49,265,3923,2994,1131,535,4499,237,1516,
- 39,714,388,162,237,1871,39,449,186,3729,
- 4550,5254,857,312,534,234,2378,4542,1516,39,
- 714,388,5254,334,3121,162,245,235,236,5254,
- 186,3729,255,235,236,2465,428,209,220,3095,
- 201,208,217,218,219,221,857,501,3573,353,
- 175,4569,5254,535,1315,448,2692,1576,2007,2457,
- 49,368,174,3688,2542,2748,173,176,177,178,
- 179,180,234,1146,1566,39,714,388,3275,320,
- 1263,1146,162,345,499,500,5254,186,3729,1516,
- 39,808,283,49,209,220,3095,790,208,217,
- 218,219,221,2883,3430,778,441,175,5254,1863,
- 535,55,73,237,1603,3228,674,865,1569,174,
- 289,2542,182,173,176,177,178,179,180,234,
- 5254,2469,39,714,388,1146,2891,5254,5254,162,
- 345,258,235,236,186,3729,4591,202,50,1512,
- 519,209,220,3095,5254,208,217,218,219,221,
- 1342,417,5254,529,175,1131,72,535,55,442,
- 2429,2438,857,674,49,53,174,4573,2542,193,
- 173,176,177,178,179,180,234,5254,1566,39,
- 714,388,1981,782,162,102,162,345,1146,206,
- 3924,186,3729,2560,39,808,281,49,209,220,
- 3095,3744,208,217,218,219,221,2883,2661,5254,
- 617,175,1131,49,535,55,5254,1131,1604,71,
- 674,1830,53,174,5254,2542,2867,173,176,177,
- 178,179,180,234,5254,2367,39,714,388,5254,
- 1127,162,1146,162,345,1146,162,168,186,3729,
- 49,1146,2246,241,806,209,220,3095,5254,208,
- 217,218,219,221,731,49,5254,705,175,1131,
- 49,535,55,70,1131,1576,3541,674,3263,2184,
- 174,5254,61,198,173,176,177,178,179,180,
- 234,305,2517,39,714,388,978,2891,162,1146,
- 162,3688,1146,162,1813,186,3729,49,5254,3251,
- 5254,4599,209,220,3095,5254,208,217,218,219,
- 221,2071,39,449,793,175,4550,49,535,55,
- 60,1131,1576,107,674,49,2221,174,303,2542,
- 192,173,176,177,178,179,180,234,1516,39,
- 714,388,49,334,2721,49,1890,162,345,2966,
- 162,49,186,3729,49,4324,3305,5254,1247,209,
- 220,3095,5254,208,217,218,219,221,2883,2636,
- 49,4417,175,3778,2624,55,577,49,452,1611,
- 674,1932,566,241,174,310,5254,200,173,176,
- 177,178,179,180,2249,39,631,36,438,3797,
- 34,613,31,35,621,30,32,1001,29,27,
- 56,1028,112,82,83,114,1688,2249,39,631,
- 36,226,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,114,1714,
- 2249,39,631,36,5254,3797,34,613,31,35,
- 621,30,32,1001,29,27,56,1028,112,82,
- 83,114,1722,1084,39,2151,36,2646,3688,34,
- 613,341,35,621,1146,446,2429,2438,49,2022,
- 2752,1146,2730,2542,2542,1516,2141,808,80,2560,
- 39,808,2143,1516,39,808,2194,5254,1516,39,
- 714,388,3052,234,5254,3811,2587,39,714,388,
- 5254,3528,3726,5254,2517,39,714,388,568,324,
- 334,5254,5254,318,1051,211,220,3095,1036,210,
- 217,218,219,221,2524,55,241,49,2542,241,
- 674,2794,1392,55,241,5254,212,214,674,1897,
- 53,55,517,4499,1867,2503,674,234,53,2542,
- 213,215,216,297,298,299,300,49,1393,1883,
- 363,2858,5254,1131,309,5254,2235,185,345,211,
- 220,3095,204,210,217,218,219,221,2795,49,
- 49,49,2542,535,4625,1313,1146,5254,3976,1773,
- 212,214,166,1897,3696,5254,516,946,39,714,
- 388,234,345,2790,213,215,216,297,298,299,
- 300,49,162,414,2192,4391,49,447,2695,241,
- 3205,5254,2883,211,220,3095,1576,210,217,218,
- 219,221,2828,2641,55,2885,2542,1576,5254,674,
- 2389,2008,3544,337,212,214,5254,1897,5254,241,
- 311,1516,39,714,388,234,3431,203,213,215,
- 216,297,298,299,300,5254,2587,39,714,388,
- 5254,526,49,2593,39,394,1131,211,220,3095,
- 5254,210,217,218,219,221,2643,308,55,302,
- 2542,2754,1883,674,5254,2778,1131,5254,212,214,
- 301,1897,49,55,495,162,2589,241,674,234,
- 53,3368,213,215,216,297,298,299,300,2587,
- 39,714,388,49,241,166,49,4301,2956,5254,
- 1131,211,220,3095,4381,210,217,218,219,221,
- 1863,39,631,36,3476,207,34,613,341,35,
- 621,426,212,214,241,1897,55,5254,223,162,
- 49,674,205,53,535,3422,213,215,216,297,
- 298,299,300,1146,49,1146,2616,5254,1131,5254,
- 3940,3090,5254,345,2519,5254,5254,5254,3528,3479,
- 5254,5254,304,162,241,568,324,5254,5254,194,
- 318,1051,5254,4470,3276,523,3333,162,354,2249,
- 39,631,36,2282,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 91,5254,3388,346,1478,1436,351,2249,901,631,
- 1485,524,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,90,2249,
- 39,631,36,3973,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 89,2249,39,631,36,5254,3797,34,613,31,
- 35,621,30,32,1001,29,27,56,1028,112,
- 82,83,88,2249,39,631,36,5254,3797,34,
- 613,31,35,621,30,32,1001,29,27,56,
- 1028,112,82,83,87,2249,39,631,36,5254,
- 3797,34,613,31,35,621,30,32,1001,29,
- 27,56,1028,112,82,83,86,2249,39,631,
- 36,5254,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,85,2249,
- 39,631,36,5254,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 84,2106,39,631,36,5254,3797,34,613,31,
- 35,621,30,32,1001,29,27,56,1028,112,
- 82,83,110,2249,39,631,36,5254,3797,34,
- 613,31,35,621,30,32,1001,29,27,56,
- 1028,112,82,83,116,2249,39,631,36,5254,
- 3797,34,613,31,35,621,30,32,1001,29,
- 27,56,1028,112,82,83,115,2249,39,631,
- 36,5254,3797,34,613,31,35,621,30,32,
- 1001,29,27,56,1028,112,82,83,113,2249,
- 39,631,36,5254,3797,34,613,31,35,621,
- 30,32,1001,29,27,56,1028,112,82,83,
- 111,1293,39,631,36,2646,5254,34,613,341,
- 35,621,1002,39,631,36,2646,5254,34,613,
- 341,35,621,5254,1867,5254,2405,39,714,388,
- 5254,3244,5254,1146,1703,39,2151,36,2646,243,
- 34,613,341,35,621,1099,39,631,36,3528,
- 3688,34,613,341,35,621,568,324,5254,241,
- 3528,318,1051,278,3390,1146,558,568,324,5254,
- 1883,1883,318,1051,1131,1131,5254,558,1516,39,
- 296,1146,3528,2790,5254,237,1516,39,296,568,
- 324,1867,5254,3528,318,1051,1462,227,5254,1036,
- 568,324,335,166,166,319,1051,312,534,5254,
- 1146,241,1588,241,235,236,5254,1146,532,534,
- 5254,49,3567,337,5254,1131,279,1372,39,631,
- 36,2646,5254,34,613,341,35,621,2593,39,
- 394,4411,4359,248,251,254,257,2713,3504,199,
- 2790,5254,1351,2457,162,1027,39,631,36,3653,
- 4410,34,613,341,35,621,5254,3482,3786,5254,
- 1372,39,631,36,2646,3528,34,613,341,35,
- 621,539,568,324,5254,5254,5254,318,1051,3902,
- 337,5254,558,401,415,2192,5254,5254,5254,1099,
- 39,631,36,3528,3688,34,613,341,35,621,
- 1989,324,5254,5254,5254,5254,1191,5254,3528,5254,
- 2542,4667,5254,49,5254,568,324,2542,3849,5254,
- 318,1051,5254,313,534,2864,3954,5254,5254,234,
- 5254,5254,2587,39,714,388,345,3528,5254,2865,
- 2587,39,714,388,568,324,335,5254,5254,321,
- 1051,2643,405,4455,5254,5254,2883,5254,5254,2632,
- 39,714,388,2639,39,714,388,1630,5254,55,
- 5254,5254,406,407,674,1897,53,55,5254,5254,
- 5254,593,674,49,53,535,5254,535,5254,955,
- 5254,5254,5254,2542,3169,5254,55,5254,3275,320,
- 55,674,3188,53,345,674,345,53,1856,49,
- 5254,5254,3052,535,162,2628,162,5254,5254,2542,
- 194,4378,2801,5254,4470,4386,2883,5254,5254,5254,
- 5254,5254,345,1516,39,714,388,2711,3052,5254,
- 5254,5254,162,5254,1516,39,714,388,2695,5254,
- 5254,5254,2883,1516,39,714,388,1516,39,714,
- 388,5254,2001,2950,408,410,2542,5254,49,49,
- 55,5254,2542,535,5254,674,5254,1109,5254,5254,
- 501,55,5254,5254,196,345,674,2309,859,2633,
- 55,345,345,527,55,674,49,2008,5254,674,
- 535,2401,162,5254,5254,2883,501,5254,194,49,
- 49,2883,4470,2542,2542,5254,530,498,500,345,
- 5254,5254,3243,49,5254,5254,5254,2542,5254,162,
- 5254,5254,345,345,5254,194,5254,5254,5254,4470,
- 5254,5254,5254,498,500,5254,345,5254,5254,5254,
- 5254,5254,2883,2883,5254,5254,3994,2342,5254,5254,
- 5254,5254,5254,505,503,5254,2883,5254,5254,5254,
- 5254,5254,3975,5254,5254,5254,5254,531,5254,5254,
- 5254,5254,5254,2683,5254,5254,5254,5254,5254,5254,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,4333,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,5254,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,5254,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,5254,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,5254,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,5254,
- 5254,5254,3840,5254,0,5272,2,1,0,5271,
- 2,1,0,450,716,0,436,1472,0,1556,
- 33,0,43,5272,0,43,5271,0,1556,387,
- 0,1,440,0,454,1653,0,453,1695,0,
- 39,37,0,43,5272,2,0,43,5271,2,
- 0,42,5272,0,42,5271,0,2488,132,0,
- 49,5294,0,49,41,0,1,1682,0,1,
- 5531,0,1,5530,0,1,5529,0,1,5528,
- 0,1,5527,0,1,5526,0,1,5525,0,
- 1,5524,0,1,5523,0,1,5522,0,1,
- 5521,0,43,5272,1,0,43,5271,1,0,
- 727,1,0,5493,246,0,5492,246,0,5594,
- 246,0,5593,246,0,5520,246,0,5519,246,
- 0,5518,246,0,5517,246,0,5516,246,0,
- 5515,246,0,5514,246,0,5513,246,0,5531,
- 246,0,5530,246,0,5529,246,0,5528,246,
- 0,5527,246,0,5526,246,0,5525,246,0,
- 5524,246,0,5523,246,0,5522,246,0,5521,
- 246,0,43,246,5272,0,43,246,5271,0,
- 5296,246,0,54,5272,0,54,5271,0,1556,
- 45,0,3161,97,0,36,38,0,43,626,
- 0,30,515,0,5586,441,0,1598,441,0,
- 5260,1,0,5259,1,0,242,2789,0,388,
- 36,0,36,388,0,387,33,0,33,387,
- 0,5272,54,0,5271,54,0,2488,134,0,
- 2488,133,0,5294,51,0,51,41,0,497,
- 1882,0,5296,233,1,0,43,233,1,0,
- 233,413,0,41,5272,0,41,5271,0,5296,
- 1,0,43,1,0,53,41,0,1,98,
- 0,41,53,0,5264,403,0,5263,403,0,
- 2584,1,0,626,1,0,3401,1,0,233,
- 412,0,41,5272,2,0,41,5271,2,0,
- 5272,40,0,5271,40,0,1,5586,0,1,
- 1598,0,43,5272,2,1,0,43,5271,2,
- 1,0,5586,101,0,1598,101,0,39,79,
- 0,497,3724,0,233,1,0,283,3759,0,
- 1,2854,0,1,3873,0,5262,1,0,233,
- 225,0,233,1,2634,0,5264,233,0,5263,
- 233,0,233,224,0,2719,233,0,8,10,
- 0,191,3447,0
+ 40,40,39,33,139,139,95,95,171,171,
+ 90,193,193,75,75,75,75,75,75,75,
+ 75,75,76,76,76,67,67,58,58,172,
+ 172,77,77,77,101,101,173,173,78,78,
+ 78,174,174,79,79,79,79,79,80,80,
+ 82,82,82,82,82,82,82,49,49,49,
+ 49,49,114,114,115,115,50,175,23,23,
+ 23,23,23,47,47,85,85,85,85,85,
+ 146,146,141,141,141,141,141,142,142,142,
+ 143,143,143,144,144,144,145,145,145,86,
+ 86,86,86,86,87,87,87,13,13,13,
+ 13,13,13,13,13,13,13,13,98,119,
+ 119,119,119,119,119,117,117,117,118,118,
+ 148,148,147,147,121,121,102,70,70,71,
+ 72,52,46,149,149,53,51,84,84,150,
+ 150,140,140,104,104,65,65,151,151,60,
+ 60,55,55,152,61,61,66,66,57,57,
+ 57,88,88,97,96,96,59,59,56,56,
+ 54,54,43,99,99,99,91,91,91,92,
+ 92,93,93,93,94,94,105,105,105,107,
+ 107,106,106,194,194,89,89,177,177,177,
+ 177,177,123,45,45,154,176,176,124,124,
+ 124,124,178,178,37,37,116,125,125,125,
+ 125,108,108,120,120,120,156,157,157,157,
+ 157,157,157,157,157,157,157,157,181,181,
+ 179,179,180,180,158,158,158,158,159,182,
+ 110,109,109,183,183,160,160,160,160,100,
+ 100,100,184,184,9,9,10,185,185,186,
+ 161,153,153,162,162,163,164,164,6,6,
+ 7,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,68,73,73,166,166,127,127,
+ 128,128,128,128,128,128,3,129,129,126,
+ 126,111,111,111,83,69,81,155,155,112,
+ 112,187,187,187,130,130,122,122,188,188,
+ 167,167,103,881,39,1782,1775,1233,3538,34,
+ 579,31,35,611,30,32,1774,29,27,56,
+ 1042,112,82,83,114,1158,1173,1203,1176,1251,
+ 1209,1263,1257,1384,153,1303,978,1439,1473,149,
+ 278,4619,29,164,150,1012,39,624,36,1267,
+ 4641,34,579,31,35,611,65,32,2214,39,
+ 624,36,237,4615,34,579,31,35,611,30,
+ 32,1036,29,27,56,1042,112,82,83,114,
+ 1158,1361,1203,1176,1251,1209,1263,1942,240,235,
+ 236,1742,39,447,1376,1956,4539,2214,39,624,
+ 36,279,4615,34,579,31,35,611,30,32,
+ 1036,29,27,56,1042,112,82,83,91,247,
+ 250,253,256,3139,1670,39,624,36,1507,3976,
+ 34,579,31,35,611,63,32,684,517,2561,
+ 39,282,1530,1379,2678,858,2621,2639,2907,2967,
+ 1348,39,624,36,2540,4615,34,579,31,35,
+ 611,1641,32,1036,29,27,56,1042,112,82,
+ 83,114,1158,342,1203,1176,1251,1209,1263,1257,
+ 1384,1773,1303,314,1439,1473,149,1479,864,2420,
+ 511,150,1018,3458,1149,39,1549,47,1357,1357,
+ 46,579,3002,3654,512,1348,39,624,36,2540,
+ 4615,34,579,31,35,611,1641,32,1036,29,
+ 27,56,1042,112,82,83,114,1158,342,1203,
+ 1176,1251,1209,1263,1257,1384,890,1303,1446,1439,
+ 1473,149,1742,39,284,511,150,4625,3458,424,
+ 805,768,38,440,2855,2862,1113,67,979,512,
+ 450,507,1846,39,624,36,2165,3976,34,579,
+ 31,35,611,62,32,1110,1606,62,1863,1656,
+ 1879,39,296,1348,39,624,36,2540,4615,34,
+ 579,31,35,611,1641,32,1036,29,27,56,
+ 1042,112,82,83,114,1158,342,1203,1176,1251,
+ 1209,1263,1257,1384,1479,1303,507,1439,1473,149,
+ 1680,1698,1001,511,150,3316,3458,248,1114,1502,
+ 3454,1683,2144,2766,1656,2643,2643,512,1620,39,
+ 624,36,2540,4615,34,579,31,35,611,1641,
+ 32,1036,29,27,56,1042,112,82,83,114,
+ 1158,342,1203,1176,1251,1209,1263,1257,1384,329,
+ 1303,415,1439,1473,149,1742,39,284,511,150,
+ 4629,3458,2455,424,39,673,385,237,1148,48,
+ 1572,76,512,325,507,66,2005,39,624,36,
+ 491,4641,34,579,31,35,611,30,32,1725,
+ 505,2079,1656,249,235,236,1415,39,624,36,
+ 425,4615,34,579,31,35,611,30,32,1036,
+ 29,27,56,1042,112,82,83,114,1158,1648,
+ 1203,1176,1251,1209,1263,1257,1384,1761,1303,508,
+ 1439,1473,149,424,39,287,378,150,1012,39,
+ 624,36,492,4641,34,579,31,35,611,64,
+ 32,424,39,673,385,1489,39,624,36,381,
+ 4615,34,579,31,35,611,30,32,1036,29,
+ 27,56,1042,112,82,83,114,1158,1779,1203,
+ 1176,1251,1209,1263,1257,1384,117,1303,55,1439,
+ 1473,149,2288,52,329,378,150,2168,39,624,
+ 36,512,4615,34,579,31,35,611,30,32,
+ 1036,29,27,56,1042,92,82,83,379,249,
+ 382,1687,39,624,36,322,4615,34,579,31,
+ 35,611,30,32,1036,29,27,56,1042,112,
+ 82,83,114,1158,2536,1203,1176,1251,1209,1263,
+ 1257,1384,441,1303,1979,1439,1473,149,1879,2787,
+ 296,378,150,2035,39,624,36,324,1599,34,
+ 579,339,35,611,1104,1908,39,624,36,383,
+ 4615,34,579,31,35,611,30,32,1036,29,
+ 27,56,1042,112,82,83,114,1158,2547,1203,
+ 1176,1251,1209,1263,1257,1384,399,1303,1864,1439,
+ 1473,149,2508,39,391,164,150,380,424,39,
+ 673,385,1908,39,624,36,502,4615,34,579,
+ 31,35,611,30,32,1036,29,27,56,1042,
+ 112,82,83,114,1158,376,1203,1176,1251,1209,
+ 1263,1257,1384,2468,1303,428,1439,1473,149,1520,
+ 2455,386,372,150,1908,39,624,36,2661,4615,
+ 34,579,31,35,611,30,32,1036,29,27,
+ 56,1042,112,82,83,114,1158,1148,1203,1176,
+ 1251,1209,1263,1257,1384,329,1303,1064,1439,1473,
+ 149,72,1139,1096,372,150,3024,857,4596,2035,
+ 39,624,36,866,1530,34,579,44,35,611,
+ 2894,1148,1908,39,624,36,377,4615,34,579,
+ 31,35,611,30,32,1036,29,27,56,1042,
+ 112,82,83,114,1158,371,1203,1176,1251,1209,
+ 1263,1257,1384,894,1303,1477,1439,1473,149,1253,
+ 3461,326,372,150,1748,39,624,36,1018,4615,
+ 34,579,31,35,611,30,32,1036,29,27,
+ 56,1042,112,82,83,114,1158,370,1203,1176,
+ 1251,1209,1263,1257,1384,454,1303,432,1439,1488,
+ 170,1553,39,624,36,1276,4615,34,579,31,
+ 35,611,30,32,1036,29,27,56,1042,112,
+ 82,83,114,1158,2547,1203,1176,1251,1209,1263,
+ 1257,1384,1259,1303,238,1439,1473,149,327,100,
+ 32,148,150,397,1125,368,424,39,673,385,
+ 1908,39,624,36,1237,4615,34,579,31,35,
+ 611,30,32,1036,29,27,56,1042,112,82,
+ 83,114,1158,1245,1203,1176,1251,1209,1263,1257,
+ 1384,3172,1303,427,1439,1473,149,288,437,225,
+ 161,150,1908,39,624,36,2079,4615,34,579,
+ 31,35,611,30,32,1036,29,27,56,1042,
+ 112,82,83,114,1158,1594,1203,1176,1251,1209,
+ 1263,1257,1384,1728,1303,99,1439,1473,149,424,
+ 39,2230,160,150,1908,39,624,36,948,4615,
+ 34,579,31,35,611,30,32,1036,29,27,
+ 56,1042,112,82,83,114,1158,1086,1203,1176,
+ 1251,1209,1263,1257,1384,414,1303,32,1439,1473,
+ 149,680,424,2193,159,150,1908,39,624,36,
+ 73,4615,34,579,31,35,611,30,32,1036,
+ 29,27,56,1042,112,82,83,114,1158,1921,
+ 1203,1176,1251,1209,1263,1257,1384,1226,1303,32,
+ 1439,1473,149,735,424,4040,158,150,1908,39,
+ 624,36,1341,4615,34,579,31,35,611,30,
+ 32,1036,29,27,56,1042,112,82,83,114,
+ 1158,2274,1203,1176,1251,1209,1263,1257,1384,4117,
+ 1303,32,1439,1473,149,813,1081,441,157,150,
+ 1908,39,624,36,2661,4615,34,579,31,35,
+ 611,30,32,1036,29,27,56,1042,112,82,
+ 83,114,1158,2274,1203,1176,1251,1209,1263,1257,
+ 1384,1098,1303,291,1439,1473,149,424,3236,3989,
+ 156,150,1908,39,624,36,1130,4615,34,579,
+ 31,35,611,30,32,1036,29,27,56,1042,
+ 112,82,83,114,1158,2274,1203,1176,1251,1209,
+ 1263,1257,1384,1115,1303,32,1439,1473,149,2633,
+ 1985,520,155,150,1908,39,624,36,1546,4615,
+ 34,579,31,35,611,30,32,1036,29,27,
+ 56,1042,112,82,83,114,1158,1669,1203,1176,
+ 1251,1209,1263,1257,1384,1600,1303,32,1439,1473,
+ 149,946,1796,519,154,150,1908,39,624,36,
+ 1875,4615,34,579,31,35,611,30,32,1036,
+ 29,27,56,1042,112,82,83,114,1158,1965,
+ 1203,1176,1251,1209,1263,1257,1384,2181,1303,1148,
+ 1439,1473,149,1617,205,2450,153,150,1908,39,
+ 624,36,2393,4615,34,579,31,35,611,30,
+ 32,1036,29,27,56,1042,112,82,83,114,
+ 1158,2530,1203,1176,1251,1209,1263,1257,1384,2537,
+ 1303,32,1439,1473,149,4246,1867,2245,152,150,
+ 1908,39,624,36,2255,4615,34,579,31,35,
+ 611,30,32,1036,29,27,56,1042,112,82,
+ 83,114,1158,453,1203,1176,1251,1209,1263,1257,
+ 1384,1224,1303,32,1439,1473,149,2721,1545,2223,
+ 151,150,1908,39,624,36,2301,4615,34,579,
+ 31,35,611,30,32,1036,29,27,56,1042,
+ 112,82,83,114,1158,518,1203,1176,1251,1209,
+ 1263,1257,1384,1878,1303,1148,1439,1473,149,2531,
+ 2332,1037,165,150,1908,39,624,36,1990,4615,
+ 34,579,31,35,611,30,32,1036,29,27,
+ 56,1042,112,82,83,114,1158,2460,1203,1176,
+ 1251,1209,1263,1257,1384,590,1303,1482,1439,1473,
+ 149,2760,1461,1863,146,150,2119,39,624,36,
+ 1467,4615,34,579,31,35,611,30,32,1036,
+ 29,27,56,1042,112,82,83,114,1158,3933,
+ 1203,1176,1251,1209,1263,1257,1384,577,1303,32,
+ 1439,1473,149,2782,2526,665,195,150,2214,39,
+ 624,36,1294,4615,34,579,31,35,611,30,
+ 32,1036,29,27,56,1042,112,82,83,114,
+ 1158,469,1203,1176,1251,1209,1263,1257,1384,505,
+ 1303,355,1439,1488,170,2214,39,624,36,526,
+ 4615,34,579,31,35,611,30,32,1036,29,
+ 27,56,1042,112,82,83,114,1158,1259,1203,
+ 1176,1251,1209,1263,1257,1384,77,1303,352,1439,
+ 1488,170,2035,39,624,36,329,2532,34,579,
+ 2067,35,611,593,2214,39,624,36,295,4615,
+ 34,579,31,35,611,30,32,1036,29,27,
+ 56,1042,112,82,83,114,1158,3911,1203,1176,
+ 1251,1209,1263,1257,1384,401,1303,733,1439,1488,
+ 170,2214,39,624,36,417,4615,34,579,31,
+ 35,611,30,32,1036,29,27,56,1042,112,
+ 82,83,114,1158,1291,1203,1176,1251,1209,1263,
+ 1257,1384,2011,1303,1828,1439,1488,170,2035,39,
+ 624,36,329,2532,34,579,2153,35,611,1823,
+ 2214,39,624,36,3495,4615,34,579,31,35,
+ 611,30,32,1036,29,27,56,1042,112,82,
+ 83,114,1158,28,1203,1176,1251,1209,1263,1257,
+ 1384,302,1303,611,1439,1488,170,2260,39,624,
+ 36,416,4615,34,579,31,35,611,30,32,
+ 1036,29,27,56,1042,112,82,83,114,1158,
+ 2209,1203,1176,1251,1209,1263,1257,1384,769,1303,
+ 821,1439,1488,170,424,39,2767,2696,329,2309,
+ 424,39,673,385,3999,929,2214,39,624,36,
+ 419,4615,34,579,31,35,611,30,32,1036,
+ 29,27,56,1042,112,82,83,114,1158,75,
+ 1203,1176,1251,1209,1263,1257,1384,426,1303,94,
+ 1985,2269,108,2214,39,624,36,3130,4615,34,
+ 579,31,35,611,30,32,1036,29,27,56,
+ 1042,112,82,83,114,1158,2337,1203,1176,1251,
+ 1209,1263,1257,1384,1408,1950,2214,39,624,36,
+ 329,4615,34,579,31,35,611,30,32,1036,
+ 29,27,56,1042,112,82,83,114,1158,2957,
+ 1203,1176,1251,1209,1263,1257,1935,2214,39,624,
+ 36,74,4615,34,579,31,35,611,30,32,
+ 1036,29,27,56,1042,112,82,83,114,1158,
+ 1259,1203,1176,1251,1209,1901,2214,39,624,36,
+ 353,4615,34,579,31,35,611,30,32,1036,
+ 29,27,56,1042,112,82,83,114,1158,424,
+ 1203,1176,1251,1908,2214,39,624,36,1148,4615,
+ 34,579,31,35,611,30,32,1036,29,27,
+ 56,1042,112,82,83,114,1158,2547,1203,1176,
+ 1251,1927,2214,39,624,36,1679,4615,34,579,
+ 31,35,611,30,32,1036,29,27,56,1042,
+ 112,82,83,114,1158,1738,1203,1176,1851,2214,
+ 39,624,36,2405,4615,34,579,31,35,611,
+ 30,32,1036,29,27,56,1042,112,82,83,
+ 114,1158,57,1203,1176,1858,2214,39,624,36,
+ 289,4615,34,579,31,35,611,30,32,1036,
+ 29,27,56,1042,112,82,83,114,1158,2132,
+ 1203,1176,1859,2214,39,624,36,1715,4615,34,
+ 579,31,35,611,30,32,1036,29,27,56,
+ 1042,112,82,83,114,1158,2274,1203,1176,1866,
+ 2306,39,673,385,329,3198,2508,39,391,2214,
+ 39,624,36,242,4615,34,579,31,35,611,
+ 30,32,1036,29,27,56,1042,112,82,83,
+ 114,1158,32,1203,1893,59,2828,278,1018,2366,
+ 1395,39,624,36,4213,787,34,579,338,35,
+ 611,2492,39,285,375,2214,39,624,36,237,
+ 4615,34,579,31,35,611,30,32,1036,29,
+ 27,56,1042,112,82,83,114,1158,1280,1203,
+ 1900,1255,329,4596,1117,240,235,236,4153,2469,
+ 39,447,1096,1036,4539,857,321,4596,279,1762,
+ 315,1051,2062,2438,1601,2624,351,1601,2540,4596,
+ 2199,2540,4596,93,2940,3476,247,250,253,256,
+ 3139,978,329,329,177,1507,4134,2580,533,1987,
+ 2580,343,2314,1992,348,332,1197,2111,1978,2585,
+ 237,2678,858,2621,2639,2907,2967,234,1036,331,
+ 373,244,2688,58,349,2630,32,162,237,533,
+ 2960,331,186,3577,331,1955,252,235,236,209,
+ 220,2889,1103,208,217,218,219,221,342,2098,
+ 4429,875,175,1,255,235,236,533,162,328,
+ 334,174,2916,359,194,3955,359,237,4506,189,
+ 173,176,177,178,179,180,234,2688,2540,2955,
+ 2245,2281,2955,2245,2281,32,162,365,329,1125,
+ 875,186,3577,245,235,236,1828,1980,209,220,
+ 2889,3218,208,217,218,219,221,424,39,768,
+ 281,175,1666,2193,333,334,187,2462,162,96,
+ 174,444,2855,2862,2408,1977,196,1173,190,173,
+ 176,177,178,179,180,2214,39,624,36,2637,
+ 4615,34,579,31,35,611,30,32,1036,29,
+ 27,56,1042,112,82,83,114,1158,1036,1801,
+ 387,421,2214,39,624,36,2723,4615,34,579,
+ 31,35,611,30,32,1036,29,27,56,1042,
+ 112,82,83,114,1158,2403,1809,1124,39,624,
+ 36,2647,2346,34,579,338,35,611,4191,388,
+ 421,1257,39,624,36,2632,4596,34,579,338,
+ 35,611,2584,424,39,673,385,2688,350,1969,
+ 39,624,36,2871,2591,34,579,338,35,611,
+ 2547,95,2646,290,108,4153,2664,2635,2532,517,
+ 2651,2640,857,321,2540,2540,1536,315,1051,4153,
+ 278,4596,1044,351,330,334,857,321,331,1374,
+ 2220,315,1051,342,2580,1794,537,4153,265,2540,
+ 2594,525,533,32,2517,321,226,3127,343,2314,
+ 1992,348,2998,3458,2642,329,2663,2544,342,4463,
+ 875,234,4306,300,528,188,237,2363,39,673,
+ 385,162,3198,332,309,532,186,3577,1252,2607,
+ 243,280,351,209,220,2889,3302,208,217,218,
+ 219,221,258,235,236,2531,175,353,2663,1080,
+ 499,533,381,2540,278,174,2540,345,2314,1992,
+ 348,2908,2680,3145,173,176,177,178,179,180,
+ 234,2882,2580,2743,1096,342,237,2531,32,4596,
+ 162,2753,533,32,2754,186,3577,1125,497,498,
+ 3184,317,209,220,2889,1305,208,217,218,219,
+ 221,342,241,235,236,175,441,2759,2625,32,
+ 533,162,1125,3258,174,279,2758,2152,2411,390,
+ 421,3458,182,173,176,177,178,179,180,234,
+ 329,331,2066,248,251,254,257,3139,360,162,
+ 2760,162,1507,329,186,3577,206,4100,4079,1096,
+ 450,209,220,2889,4596,208,217,218,219,221,
+ 518,3348,2618,978,175,529,2309,354,4378,533,
+ 436,3999,681,174,73,526,1125,1666,2193,89,
+ 2705,193,173,176,177,178,179,180,234,1825,
+ 39,1690,1937,2547,3202,2644,2133,2625,162,323,
+ 2540,533,2547,186,3577,166,331,526,2317,32,
+ 209,220,2889,728,208,217,218,219,221,342,
+ 4107,3159,978,175,617,32,55,4494,533,3464,
+ 162,667,174,2234,1412,186,3577,2916,941,4282,
+ 3323,173,176,177,178,179,180,234,600,39,
+ 673,385,776,39,673,385,299,162,424,39,
+ 673,385,186,3577,201,307,2957,2544,875,209,
+ 220,2889,1001,208,217,218,219,221,329,2492,
+ 39,282,175,705,32,55,2659,533,2540,55,
+ 667,174,1717,1503,667,446,53,1853,290,198,
+ 173,176,177,178,179,180,234,342,241,72,
+ 2883,2761,2540,2670,2591,32,162,2644,978,1125,
+ 2704,186,3577,4543,2427,2220,423,3458,209,220,
+ 2889,2580,208,217,218,219,221,1148,1732,50,
+ 1572,175,793,3553,350,329,533,32,162,2579,
+ 174,2540,32,329,1977,329,4044,2766,192,173,
+ 176,177,178,179,180,234,600,39,673,385,
+ 342,2695,202,49,5163,162,71,389,421,351,
+ 186,3577,5163,4152,70,329,3658,209,220,2889,
+ 3458,208,217,218,219,221,5163,359,32,5163,
+ 175,1740,729,55,343,2314,1992,348,667,174,
+ 53,103,2663,3305,2245,2281,61,200,173,176,
+ 177,178,179,180,2214,39,624,36,983,4615,
+ 34,579,31,35,611,30,32,1036,29,27,
+ 56,1042,112,82,83,114,1816,2214,39,624,
+ 36,5163,4615,34,579,31,35,611,30,32,
+ 1036,29,27,56,1042,112,82,83,114,1817,
+ 2214,39,624,36,5163,4615,34,579,31,35,
+ 611,30,32,1036,29,27,56,1042,112,82,
+ 83,114,1824,1185,39,2676,36,2632,4596,34,
+ 579,338,35,611,424,39,768,2228,1801,329,
+ 978,1733,3099,681,2476,4547,4596,1125,2540,32,
+ 32,2640,5163,2540,3521,2540,424,39,768,286,
+ 5163,5163,5163,995,39,673,385,234,329,2666,
+ 60,4153,342,1125,2580,1148,166,32,857,321,
+ 331,3471,32,315,1051,2532,1446,5163,719,211,
+ 220,2889,3458,210,217,218,219,221,3461,107,
+ 278,2595,162,1759,351,2540,32,5163,168,5163,
+ 3981,4463,212,214,216,297,298,2159,2370,39,
+ 673,385,5163,306,234,329,222,213,215,343,
+ 2314,1992,348,424,39,768,283,341,2662,5163,
+ 499,2610,424,39,296,2540,211,220,2889,104,
+ 210,217,218,219,221,55,3983,2532,4076,2900,
+ 667,2436,1984,5163,234,2014,39,768,281,212,
+ 214,216,297,298,2159,5163,78,102,496,498,
+ 2883,412,2677,222,213,215,211,220,2889,329,
+ 210,217,218,219,221,185,5163,5163,1869,39,
+ 624,36,4213,1355,34,579,338,35,611,212,
+ 214,216,297,298,2159,4076,3143,2795,32,5163,
+ 3505,5163,533,222,213,215,424,2650,768,80,
+ 2014,39,768,2669,424,39,768,2705,32,32,
+ 4263,342,4083,1899,4039,2495,4153,5163,32,4116,
+ 2532,162,2995,857,321,4076,3152,194,315,1051,
+ 5163,4506,5163,521,351,2214,805,624,1557,5163,
+ 4615,34,579,31,35,611,30,32,1036,29,
+ 27,56,1042,112,82,83,90,5163,204,343,
+ 2314,1992,348,2214,39,624,36,522,4615,34,
+ 579,31,35,611,30,32,1036,29,27,56,
+ 1042,112,82,83,89,2214,39,624,36,4084,
+ 4615,34,579,31,35,611,30,32,1036,29,
+ 27,56,1042,112,82,83,88,2214,39,624,
+ 36,5163,4615,34,579,31,35,611,30,32,
+ 1036,29,27,56,1042,112,82,83,87,2214,
+ 39,624,36,5163,4615,34,579,31,35,611,
+ 30,32,1036,29,27,56,1042,112,82,83,
+ 86,2214,39,624,36,5163,4615,34,579,31,
+ 35,611,30,32,1036,29,27,56,1042,112,
+ 82,83,85,2214,39,624,36,5163,4615,34,
+ 579,31,35,611,30,32,1036,29,27,56,
+ 1042,112,82,83,84,2070,39,624,36,5163,
+ 4615,34,579,31,35,611,30,32,1036,29,
+ 27,56,1042,112,82,83,110,2214,39,624,
+ 36,5163,4615,34,579,31,35,611,30,32,
+ 1036,29,27,56,1042,112,82,83,116,2214,
+ 39,624,36,5163,4615,34,579,31,35,611,
+ 30,32,1036,29,27,56,1042,112,82,83,
+ 115,2214,39,624,36,5163,4615,34,579,31,
+ 35,611,30,32,1036,29,27,56,1042,112,
+ 82,83,113,2214,39,624,36,5163,4615,34,
+ 579,31,35,611,30,32,1036,29,27,56,
+ 1042,112,82,83,111,984,39,624,36,329,
+ 4596,34,579,338,35,611,32,5163,32,32,
+ 3561,32,4255,556,5163,2540,1249,39,673,385,
+ 5163,241,2693,32,32,2540,2540,4214,1125,32,
+ 445,32,5163,2797,342,1125,424,39,296,2427,
+ 39,673,385,4153,2580,234,2508,39,391,5163,
+ 857,321,332,55,3458,316,1051,162,667,2532,
+ 2306,351,2511,3093,162,1767,2540,211,220,2889,
+ 3228,210,217,218,219,221,55,5163,3483,2532,
+ 2532,667,5163,53,1036,234,345,2314,1992,348,
+ 212,214,216,297,298,2159,32,203,32,32,
+ 3027,913,2540,2540,515,213,215,211,220,2889,
+ 359,210,217,218,219,221,2574,305,207,1471,
+ 2540,342,342,1036,329,32,3545,2245,2281,1125,
+ 212,214,216,297,298,2159,5163,5163,4119,234,
+ 2532,3458,3458,2688,514,213,215,32,5163,5163,
+ 524,4201,3080,503,3307,3056,2708,2274,162,2532,
+ 2540,211,220,2889,3295,210,217,218,219,221,
+ 5163,5163,5163,329,1249,39,673,385,205,234,
+ 3659,334,2688,5163,212,214,216,297,298,2159,
+ 329,329,329,424,39,673,385,301,223,213,
+ 215,211,220,2889,3115,210,217,218,219,221,
+ 2727,55,5163,32,2540,375,667,1125,53,3668,
+ 334,3174,1633,1675,212,214,216,297,298,2159,
+ 55,2532,5163,234,5163,667,2148,722,308,213,
+ 215,1463,39,624,36,2632,162,34,579,338,
+ 35,611,3303,1096,1036,211,220,2889,4596,210,
+ 217,218,219,221,1070,39,624,36,2632,3489,
+ 34,579,338,35,611,5163,2532,2532,212,214,
+ 216,297,298,2159,32,329,952,5163,533,4153,
+ 2540,4645,493,213,215,2737,857,321,5163,2540,
+ 5163,315,1051,329,32,5163,537,342,1125,234,
+ 331,3969,4153,2688,227,199,4237,162,2580,857,
+ 321,5163,2653,2320,315,1051,3618,3458,5163,537,
+ 5163,1118,402,4443,3292,5163,5163,162,2238,5163,
+ 5163,3955,5163,3287,309,532,2427,39,673,385,
+ 4056,334,5163,5163,403,404,405,297,298,2159,
+ 5163,5163,5163,5163,5163,5163,5163,530,532,1028,
+ 39,2676,36,2632,5163,34,579,338,35,611,
+ 5163,4236,5163,55,499,5163,2134,5163,667,5163,
+ 53,2882,940,39,624,36,2632,5163,34,579,
+ 338,35,611,940,39,624,36,2632,1168,34,
+ 579,338,35,611,5163,5163,5163,4153,2427,39,
+ 673,385,496,498,857,321,5163,5163,5163,315,
+ 1051,572,5163,5163,719,5163,5163,5163,5163,5163,
+ 4153,5163,406,408,5163,5163,5163,857,321,5163,
+ 5163,4153,315,1051,5163,55,5163,537,857,321,
+ 667,3068,53,315,1051,1148,5163,4457,1044,1240,
+ 39,624,36,5163,4596,34,579,338,35,611,
+ 1396,5163,5163,1270,39,624,36,3443,5163,34,
+ 579,338,35,611,5163,310,532,1038,5163,5163,
+ 5163,2540,4645,1240,39,624,36,5163,4596,34,
+ 579,338,35,611,5163,5163,5163,4153,32,5163,
+ 234,398,2540,5163,857,321,332,413,2677,316,
+ 1051,4153,5163,5163,2427,39,673,385,2517,321,
+ 5163,342,1118,402,4443,5163,940,39,624,36,
+ 2632,4153,34,579,338,35,611,5163,857,321,
+ 332,3458,5163,318,1051,403,404,405,297,298,
+ 2159,55,501,5163,5163,5163,667,5163,53,2427,
+ 39,673,385,2550,39,673,385,2564,39,673,
+ 385,5163,5163,5163,4153,681,2240,2134,5163,1125,
+ 5163,857,321,5163,5163,5163,315,1051,5163,32,
+ 681,3270,5163,533,1125,5163,55,5163,5163,5163,
+ 55,667,5163,53,55,667,5163,53,166,667,
+ 5163,53,342,5163,3184,317,424,39,673,385,
+ 5163,3208,162,166,5163,3562,5163,5163,2152,3996,
+ 5163,5163,3458,406,409,1550,39,673,385,424,
+ 39,673,385,2622,5163,424,39,673,385,424,
+ 39,673,385,55,5163,5163,5163,5163,667,5163,
+ 1515,424,39,673,385,424,39,673,385,5163,
+ 3335,32,55,5163,32,533,55,667,2540,1318,
+ 681,667,55,796,1125,3459,55,667,32,3229,
+ 5163,667,533,669,342,5163,681,342,55,5163,
+ 1125,5163,55,667,162,1318,5163,667,32,2578,
+ 194,342,1125,166,4506,5163,5163,3458,5163,5163,
+ 5163,162,5163,5163,5163,5163,5163,194,529,166,
+ 5163,4506,5163,5163,5163,5163,5163,5163,5163,5163,
+ 5163,162,5163,5163,5163,5163,5163,4245,5163,5163,
+ 5163,5163,5163,5163,5163,5163,5163,5163,5163,5163,
+ 5163,5163,5163,5163,5163,5163,5163,5163,5163,5163,
+ 5163,5163,4133,5163,5163,3488,5163,5163,5163,5163,
+ 5163,5163,5163,5163,5163,5163,5163,5163,5163,4150,
+ 5163,3959,5163,0,5181,2,1,0,5180,2,
+ 1,0,448,1517,0,434,1559,0,1601,33,
+ 0,43,5181,0,43,5180,0,1601,384,0,
+ 1,438,0,452,1271,0,451,1769,0,39,
+ 37,0,43,5181,2,0,43,5180,2,0,
+ 42,5181,0,42,5180,0,2486,132,0,49,
+ 5203,0,49,41,0,1,566,0,1,5440,
+ 0,1,5439,0,1,5438,0,1,5437,0,
+ 1,5436,0,1,5435,0,1,5434,0,1,
+ 5433,0,1,5432,0,1,5431,0,1,5430,
+ 0,43,5181,1,0,43,5180,1,0,724,
+ 1,0,5402,246,0,5401,246,0,5500,246,
+ 0,5499,246,0,5429,246,0,5428,246,0,
+ 5427,246,0,5426,246,0,5425,246,0,5424,
+ 246,0,5423,246,0,5422,246,0,5440,246,
+ 0,5439,246,0,5438,246,0,5437,246,0,
+ 5436,246,0,5435,246,0,5434,246,0,5433,
+ 246,0,5432,246,0,5431,246,0,5430,246,
+ 0,43,246,5181,0,43,246,5180,0,5205,
+ 246,0,54,5181,0,54,5180,0,1601,45,
+ 0,3033,97,0,36,38,0,43,779,0,
+ 30,513,0,5492,439,0,1685,439,0,5169,
+ 1,0,5168,1,0,242,3122,0,385,36,
+ 0,36,385,0,384,33,0,33,384,0,
+ 5181,54,0,5180,54,0,2486,134,0,2486,
+ 133,0,5203,51,0,51,41,0,495,2142,
+ 0,5205,233,1,0,43,233,1,0,233,
+ 411,0,41,5181,0,41,5180,0,5205,1,
+ 0,43,1,0,53,41,0,1,98,0,
+ 41,53,0,5173,400,0,5172,400,0,4363,
+ 1,0,779,1,0,2935,1,0,233,410,
+ 0,41,5181,2,0,41,5180,2,0,5181,
+ 40,0,5180,40,0,1,5492,0,1,1685,
+ 0,43,5181,2,1,0,43,5180,2,1,
+ 0,5492,101,0,1685,101,0,39,79,0,
+ 495,4022,0,233,1,0,233,225,0,283,
+ 4555,0,233,224,0,1,1162,0,1,2546,
+ 0,5171,1,0,233,1,3012,0,5173,233,
+ 0,5172,233,0,3129,233,0,8,10,0,
+ 191,3233,0
};
};
public final static char baseAction[] = BaseAction.baseAction;
@@ -1071,299 +1053,293 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 0,31,32,33,34,35,36,37,38,39,
+ 30,0,32,33,34,35,36,37,38,39,
40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,0,62,63,0,65,66,6,68,69,
- 70,71,0,9,74,11,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,0,62,63,3,65,66,0,68,69,
+ 70,0,0,73,74,75,76,77,78,79,
+ 80,81,0,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,0,31,
+ 22,23,24,25,26,27,0,29,30,3,
32,33,34,35,36,37,38,39,40,41,
- 42,43,44,45,46,47,0,49,50,51,
+ 42,43,44,45,46,47,64,49,50,51,
52,53,54,55,56,57,58,59,60,121,
- 62,63,122,65,66,0,68,69,70,71,
- 88,89,74,0,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 62,63,0,65,66,3,68,69,70,88,
+ 89,73,74,75,76,77,78,79,80,81,
+ 122,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,29,0,31,32,33,
+ 24,25,26,27,0,29,30,3,32,33,
34,35,36,37,38,39,40,41,42,43,
- 44,45,46,47,61,49,50,51,52,53,
- 54,55,56,57,58,59,60,101,62,63,
- 0,65,66,88,89,69,70,71,0,9,
- 74,11,76,77,78,79,80,81,82,83,
+ 44,45,46,47,0,49,50,51,52,53,
+ 54,55,56,57,58,59,60,0,62,63,
+ 0,65,66,0,68,69,70,0,0,9,
+ 74,75,76,77,78,79,80,81,10,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,0,31,32,33,34,35,
+ 26,27,0,29,30,48,32,33,34,35,
36,37,38,39,40,41,42,43,44,45,
- 46,47,0,49,50,51,52,53,54,55,
- 56,57,58,59,60,0,62,63,3,65,
- 66,0,0,69,70,71,88,89,74,0,
- 76,77,78,79,80,81,82,83,84,85,
+ 46,47,72,49,50,51,52,53,54,55,
+ 56,57,58,59,60,101,62,63,0,65,
+ 66,0,68,69,70,95,99,9,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 48,29,0,31,32,33,34,35,36,37,
+ 0,29,30,3,32,33,34,35,36,37,
38,39,40,41,42,43,44,45,46,47,
- 61,49,50,51,52,53,54,55,56,57,
- 58,59,60,101,62,63,0,65,66,88,
- 89,69,70,71,0,9,74,11,76,77,
- 78,79,80,81,82,83,84,85,86,87,
+ 72,49,50,51,52,53,54,55,56,57,
+ 58,59,60,0,62,63,0,65,66,6,
+ 68,69,70,0,1,2,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 0,31,32,33,34,35,36,37,38,39,
+ 30,3,32,33,34,35,36,37,38,39,
40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,0,62,63,3,65,66,0,0,69,
- 70,71,88,89,74,8,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,0,62,63,0,65,66,3,68,69,
+ 70,0,11,12,74,75,76,77,78,79,
+ 80,81,0,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,48,29,0,31,
+ 22,23,24,25,26,27,0,29,30,48,
32,33,34,35,36,37,38,39,40,41,
42,43,44,45,46,47,0,49,50,51,
52,53,54,55,56,57,58,59,60,0,
- 62,63,0,65,66,0,0,69,70,71,
- 4,9,74,11,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 62,63,0,65,66,3,68,69,70,0,
+ 1,2,74,75,76,77,78,79,80,81,
+ 0,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,29,0,31,32,33,
+ 24,25,26,27,0,29,30,71,32,33,
34,35,36,37,38,39,40,41,42,43,
44,45,46,47,0,49,50,51,52,53,
- 54,55,56,57,58,59,60,0,62,63,
- 0,65,66,3,0,69,70,71,0,100,
- 74,0,76,77,78,79,80,81,82,83,
+ 54,55,56,57,58,59,60,67,62,63,
+ 0,65,66,0,68,69,70,4,99,9,
+ 74,75,76,77,78,79,80,81,0,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,48,29,0,31,32,33,34,35,
+ 26,27,0,29,30,3,32,33,34,35,
36,37,38,39,40,41,42,43,44,45,
- 46,47,64,49,50,51,52,53,54,55,
- 56,57,58,59,60,0,62,63,3,65,
- 66,0,0,69,70,71,99,0,74,0,
- 76,77,78,79,80,81,82,83,84,85,
+ 46,47,72,49,50,51,52,53,54,55,
+ 56,57,58,59,60,101,62,63,0,65,
+ 66,3,68,69,70,0,1,2,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 48,29,0,31,32,33,34,35,36,37,
+ 0,29,30,3,32,33,34,35,36,37,
38,39,40,41,42,43,44,45,46,47,
- 61,49,50,51,52,53,54,55,56,57,
- 58,59,60,76,62,63,0,65,66,0,
- 4,69,70,71,0,0,74,3,76,77,
- 78,79,80,81,82,83,84,85,86,87,
- 0,1,2,3,4,5,6,7,8,30,
- 10,0,12,13,14,15,16,17,18,19,
+ 0,49,50,51,52,53,54,55,56,57,
+ 58,59,60,67,62,63,0,65,66,0,
+ 68,69,70,0,8,0,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
+ 0,1,2,3,4,5,6,7,8,0,
+ 10,11,12,0,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 0,31,32,33,34,35,36,37,38,39,
+ 30,48,32,33,34,35,36,37,38,39,
40,41,42,43,44,45,46,47,0,49,
- 50,51,52,53,54,55,56,0,1,2,
- 60,0,5,63,7,0,1,2,0,69,
- 70,71,0,12,0,3,28,9,6,11,
- 8,9,0,11,10,13,14,0,1,2,
- 3,4,5,6,7,8,0,0,26,27,
- 28,4,41,6,30,8,0,46,47,61,
- 49,50,51,52,53,54,55,56,0,0,
- 48,0,1,2,3,4,5,6,7,8,
- 65,66,64,61,28,48,64,63,0,67,
- 68,93,94,61,72,73,0,1,2,3,
- 0,5,0,7,67,9,4,11,0,0,
- 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,48,28,0,117,
- 118,3,120,121,6,74,8,9,102,11,
- 0,13,14,0,1,2,3,4,5,6,
- 7,8,0,117,26,27,28,0,0,1,
- 2,3,4,5,6,7,8,0,28,12,
- 0,72,0,1,2,0,48,0,0,1,
- 2,3,4,5,6,7,8,0,90,61,
- 0,4,64,0,96,67,68,30,41,9,
- 72,73,30,46,47,0,49,50,51,52,
- 53,54,55,56,9,72,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,72,0,67,117,118,72,120,121,
- 0,1,2,3,4,5,6,7,8,9,
- 10,11,12,0,0,15,16,17,18,19,
- 20,21,22,23,24,25,0,0,73,102,
- 30,104,105,106,107,108,109,110,111,112,
- 113,41,28,100,117,0,46,47,3,49,
- 50,51,52,53,54,55,56,57,118,0,
- 0,1,2,63,4,5,0,7,68,69,
- 70,71,72,0,74,75,0,1,2,3,
- 4,5,6,7,8,9,10,11,12,30,
- 30,15,16,17,18,19,20,21,22,23,
- 24,25,0,1,2,3,30,5,0,7,
- 0,9,67,11,114,115,116,41,0,0,
- 12,0,46,47,0,49,50,51,52,53,
- 54,55,56,57,13,14,12,64,28,63,
- 114,115,116,0,68,69,70,71,72,41,
- 74,75,0,10,46,47,0,49,50,51,
- 52,53,54,55,56,41,48,0,1,2,
- 46,47,5,49,50,51,52,53,54,55,
- 56,0,1,2,3,0,5,0,7,0,
- 114,115,116,0,1,2,3,4,5,6,
- 7,8,59,10,0,0,13,14,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,0,29,0,31,32,33,34,35,36,
- 37,38,39,40,0,42,43,44,45,5,
- 0,1,2,3,4,5,6,7,8,0,
- 1,2,63,60,61,99,7,72,65,66,
- 0,1,2,3,4,5,6,7,8,9,
- 10,67,67,13,14,15,16,17,18,19,
- 20,21,22,23,24,25,26,27,48,29,
- 67,31,32,33,34,35,36,37,38,39,
- 40,0,42,43,44,45,0,1,2,0,
- 4,0,6,0,8,0,1,2,58,4,
- 60,6,0,8,9,0,1,2,68,0,
- 1,2,3,4,5,6,7,8,9,10,
- 0,28,13,14,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,48,29,58,
- 31,32,33,34,35,36,37,38,39,40,
- 0,42,43,44,45,0,1,2,0,1,
- 2,3,4,61,6,0,8,58,73,60,
- 0,0,1,2,9,4,0,68,0,1,
- 2,3,4,5,6,7,8,67,10,0,
- 95,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,48,29,58,31,
- 32,33,34,35,36,37,38,39,40,0,
- 42,43,44,45,0,0,1,2,3,58,
- 5,61,7,68,9,0,1,2,60,4,
- 5,0,7,65,66,0,1,2,3,4,
- 5,6,7,8,0,10,67,3,13,14,
- 15,16,17,18,19,20,21,22,23,24,
- 25,26,27,48,29,0,31,32,33,34,
- 35,36,37,38,39,40,0,42,43,44,
- 45,72,0,1,2,3,10,5,73,7,
- 0,1,2,28,4,60,6,0,8,0,
- 65,66,0,1,2,3,4,5,6,7,
- 8,0,10,0,3,13,14,15,16,17,
+ 50,51,52,53,54,55,56,48,58,0,
+ 1,2,3,63,5,71,7,0,68,69,
+ 70,0,1,2,3,4,5,6,7,8,
+ 9,10,97,98,13,14,15,16,17,18,
+ 19,20,21,22,23,24,25,0,0,1,
+ 2,4,31,0,1,2,3,4,5,6,
+ 7,8,41,100,0,1,2,46,47,5,
+ 49,50,51,52,53,54,55,56,57,31,
+ 59,0,1,2,63,4,5,0,7,68,
+ 69,70,71,95,73,74,0,0,1,2,
+ 3,48,5,82,7,0,0,0,1,2,
+ 3,4,5,6,7,8,9,10,31,102,
+ 13,14,15,16,17,18,19,20,21,22,
+ 23,24,25,0,117,114,115,116,31,0,
+ 1,2,3,4,5,6,7,8,41,0,
+ 0,46,47,46,47,0,49,50,51,52,
+ 53,54,55,56,57,0,59,0,71,4,
+ 63,6,0,8,0,68,69,70,71,0,
+ 73,74,3,0,0,6,0,8,9,82,
+ 11,12,13,0,1,2,3,14,5,0,
+ 7,29,9,97,98,26,27,28,0,1,
+ 2,61,4,74,6,60,8,0,0,1,
+ 2,114,115,116,41,7,9,48,61,46,
+ 47,64,49,50,51,52,53,54,55,56,
+ 61,48,0,64,95,61,67,114,115,116,
+ 71,72,73,67,0,1,2,3,4,5,
+ 6,7,8,64,0,72,0,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,0,28,0,117,118,3,120,
+ 121,6,0,8,9,3,11,12,13,0,
+ 1,2,3,4,5,6,7,8,0,1,
+ 2,26,27,28,0,71,0,1,2,3,
+ 4,5,6,7,8,118,0,71,14,0,
+ 1,2,3,48,5,0,7,0,9,0,
+ 1,2,13,4,9,6,61,8,13,64,
+ 0,119,67,0,28,41,71,72,73,67,
+ 46,47,0,49,50,51,52,53,54,55,
+ 56,88,89,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,64,
+ 0,48,117,118,4,120,121,0,1,2,
+ 3,4,5,6,7,8,0,10,11,12,
+ 0,71,15,16,17,18,19,20,21,22,
+ 23,24,25,26,27,0,29,30,0,32,
+ 33,34,35,36,37,38,39,40,28,42,
+ 43,44,45,0,0,1,2,3,4,5,
+ 6,7,8,28,48,58,28,0,61,0,
+ 3,0,65,66,0,1,2,3,4,5,
+ 6,7,8,9,10,11,12,0,0,15,
+ 16,17,18,19,20,21,22,23,24,25,
+ 26,27,48,29,30,0,32,33,34,35,
+ 36,37,38,39,40,48,42,43,44,45,
+ 0,67,0,1,2,3,0,5,8,7,
+ 0,9,58,28,60,13,0,1,2,9,
+ 4,0,6,0,8,4,75,73,0,1,
+ 2,3,4,5,6,7,8,9,10,11,
+ 12,0,0,15,16,17,18,19,20,21,
+ 22,23,24,25,26,27,0,29,30,0,
+ 32,33,34,35,36,37,38,39,40,28,
+ 42,43,44,45,64,0,1,2,3,4,
+ 0,6,72,8,0,0,58,28,60,0,
+ 1,2,0,1,2,3,4,5,6,7,
+ 8,73,10,11,12,63,100,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 0,29,0,31,32,33,34,35,36,37,
+ 61,29,30,48,32,33,34,35,36,37,
38,39,40,0,42,43,44,45,0,0,
- 1,2,0,4,72,6,4,8,61,48,
- 58,64,60,0,1,2,3,4,5,6,
- 7,8,9,10,61,0,13,14,15,16,
+ 0,1,2,10,4,60,6,9,8,9,
+ 58,13,93,94,65,66,0,65,66,0,
+ 1,2,3,4,5,6,7,8,0,10,
+ 11,12,88,89,15,16,17,18,19,20,
+ 21,22,23,24,25,26,27,0,29,30,
+ 57,32,33,34,35,36,37,38,39,40,
+ 61,42,43,44,45,0,1,2,0,0,
+ 1,2,72,4,5,28,7,58,0,0,
+ 1,2,4,4,65,66,0,1,2,3,
+ 4,5,6,7,8,95,10,11,12,31,
+ 31,15,16,17,18,19,20,21,22,23,
+ 24,25,26,27,0,29,30,3,32,33,
+ 34,35,36,37,38,39,40,0,42,43,
+ 44,45,0,1,2,119,4,0,6,60,
+ 8,0,1,2,58,4,60,0,1,2,
+ 3,4,5,6,7,8,9,10,11,12,
+ 0,0,15,16,17,18,19,20,21,22,
+ 23,24,25,26,27,14,29,30,0,32,
+ 33,34,35,36,37,38,39,40,28,42,
+ 43,44,45,0,67,0,3,60,5,6,
+ 0,8,41,3,11,12,28,46,47,9,
+ 49,50,51,52,53,54,55,56,0,26,
+ 27,28,0,30,0,1,2,0,4,102,
+ 3,104,105,106,107,108,109,110,111,112,
+ 113,48,0,0,117,0,1,2,48,4,
+ 5,0,7,31,61,31,61,64,65,66,
+ 67,61,0,0,64,118,0,5,0,1,
+ 2,3,72,5,0,7,31,0,0,1,
+ 2,88,89,90,91,92,93,94,11,12,
+ 97,98,99,100,101,102,103,104,105,106,
+ 107,108,109,110,111,112,113,0,1,2,
+ 3,4,5,6,7,8,48,10,11,12,
+ 0,0,15,16,17,18,19,20,21,22,
+ 23,24,25,26,27,61,29,30,60,32,
+ 33,34,35,36,37,38,39,40,28,42,
+ 43,44,45,90,0,0,90,3,3,96,
+ 5,6,96,8,0,58,11,12,0,1,
+ 2,3,0,5,0,7,0,0,0,0,
+ 0,26,27,28,0,30,0,9,4,0,
+ 4,14,15,16,17,18,19,20,21,22,
+ 23,24,25,48,0,1,2,28,4,5,
+ 0,7,28,0,1,2,61,28,41,64,
+ 65,66,67,46,47,61,49,50,51,52,
+ 53,54,55,56,0,1,2,61,28,5,
+ 64,7,64,88,89,90,91,92,93,94,
+ 61,73,97,98,99,100,101,102,103,104,
+ 105,106,107,108,109,110,111,112,113,0,
+ 1,2,3,4,5,6,7,8,0,10,
+ 11,12,93,94,15,16,17,18,19,20,
+ 21,22,23,24,25,26,27,0,29,30,
+ 3,32,33,34,35,36,37,38,39,40,
+ 0,42,43,44,45,0,0,48,0,1,
+ 2,3,4,5,6,7,8,0,10,11,
+ 12,0,0,15,16,17,18,19,20,21,
+ 22,23,24,25,26,27,0,29,30,71,
+ 32,33,34,35,36,37,38,39,40,28,
+ 42,43,44,45,0,1,2,0,1,2,
+ 3,4,5,6,7,8,58,10,11,12,
+ 0,71,15,16,17,18,19,20,21,22,
+ 23,24,25,26,27,31,29,30,0,32,
+ 33,34,35,36,37,38,39,40,0,42,
+ 43,44,45,0,1,2,3,4,5,6,
+ 7,8,0,10,11,12,28,95,15,16,
17,18,19,20,21,22,23,24,25,26,
- 27,0,29,41,31,32,33,34,35,36,
+ 27,61,29,30,0,32,33,34,35,36,
37,38,39,40,0,42,43,44,45,0,
- 6,0,3,0,5,6,0,8,0,3,
- 0,3,13,14,0,9,0,1,2,9,
- 4,5,8,7,0,26,27,28,95,28,
- 31,28,0,1,2,3,0,5,0,7,
- 0,1,2,0,4,64,30,48,0,1,
- 2,3,0,5,48,7,114,115,116,0,
- 61,9,61,64,65,66,67,61,0,0,
- 64,118,13,14,64,0,0,9,68,73,
- 48,0,46,47,9,91,92,88,89,90,
- 91,92,93,94,93,94,97,98,99,100,
- 101,102,103,104,105,106,107,108,109,110,
- 111,112,113,0,1,2,3,4,5,6,
- 7,8,0,10,0,73,13,14,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,73,29,68,31,32,33,34,35,36,
- 37,38,39,40,0,42,43,44,45,0,
- 6,0,3,95,3,0,5,6,0,8,
- 0,6,4,60,13,14,0,1,2,9,
- 4,0,6,0,8,0,64,26,27,28,
- 0,0,31,0,4,12,28,4,15,16,
- 17,18,19,20,21,22,23,24,25,48,
- 0,1,2,28,4,5,0,7,0,1,
- 2,28,61,5,41,64,65,66,67,46,
- 47,41,49,50,51,52,53,54,55,56,
- 0,1,2,73,4,91,92,0,30,88,
- 89,90,91,92,93,94,91,92,97,98,
- 99,100,101,102,103,104,105,106,107,108,
- 109,110,111,112,113,0,1,2,3,4,
- 5,6,7,8,0,10,95,3,13,14,
+ 1,2,3,4,5,6,7,8,0,10,
+ 11,12,64,0,15,16,17,18,19,20,
+ 21,22,23,24,25,26,27,0,29,30,
+ 3,32,33,34,35,36,37,38,39,40,
+ 0,42,43,44,45,0,1,2,0,4,
+ 88,89,4,26,27,10,0,1,2,14,
15,16,17,18,19,20,21,22,23,24,
- 25,26,27,0,29,0,31,32,33,34,
- 35,36,37,38,39,40,0,42,43,44,
- 45,0,0,48,0,1,2,3,4,5,
- 6,7,8,28,10,13,14,13,14,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,0,31,32,33,34,35,
- 36,37,38,39,40,0,42,43,44,45,
- 67,0,0,1,2,3,4,5,6,7,
- 8,60,10,29,60,13,14,15,16,17,
- 18,19,20,21,22,23,24,25,26,27,
- 29,29,0,31,32,33,34,35,36,37,
- 38,39,40,61,42,43,44,45,0,1,
- 2,3,4,5,6,7,8,0,10,64,
- 28,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,0,31,
- 32,33,34,35,36,37,38,39,40,0,
- 42,43,44,45,0,1,2,3,4,5,
- 6,7,8,0,10,0,28,13,14,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,67,31,32,33,34,35,
- 36,37,38,39,40,0,42,43,44,45,
- 0,1,2,0,4,0,1,2,0,4,
- 10,0,12,64,0,15,16,17,18,19,
- 20,21,22,23,24,25,0,1,2,0,
- 1,2,0,97,98,30,28,0,1,2,
- 58,41,0,1,2,0,46,47,0,49,
- 50,51,52,53,54,55,56,9,0,30,
- 28,3,0,63,0,1,2,30,4,69,
- 70,71,30,0,10,0,12,4,64,15,
- 16,17,18,19,20,21,22,23,24,25,
- 28,65,66,61,0,0,1,2,3,4,
- 5,6,7,8,9,41,11,12,97,98,
- 46,47,64,49,50,51,52,53,54,55,
- 56,73,28,28,0,93,94,63,0,1,
- 2,0,0,69,70,71,41,0,1,2,
- 0,46,47,48,49,50,51,52,53,54,
- 55,56,0,1,2,3,4,5,6,7,
- 8,9,0,11,12,90,0,30,73,3,
- 0,96,0,3,0,9,0,1,2,0,
- 1,2,0,0,1,2,3,4,5,6,
- 7,8,9,41,11,12,26,27,46,47,
- 48,49,50,51,52,53,54,55,56,30,
- 0,28,72,30,48,0,1,2,48,0,
- 1,2,0,1,2,73,0,1,2,3,
- 4,5,6,7,8,9,0,11,12,73,
- 57,0,59,119,3,62,0,1,2,77,
- 119,0,0,1,2,0,30,95,75,0,
+ 25,0,64,60,90,48,0,1,2,0,
+ 96,5,11,12,90,0,41,31,3,41,
+ 96,46,47,0,49,50,51,52,53,54,
+ 55,56,0,1,2,0,4,31,63,0,
+ 1,2,10,68,69,70,14,15,16,17,
+ 18,19,20,21,22,23,24,25,88,89,
+ 103,0,0,1,2,3,4,5,6,7,
+ 8,9,0,41,0,13,14,120,46,47,
+ 0,49,50,51,52,53,54,55,56,0,
+ 28,0,114,115,116,63,0,1,2,64,
+ 68,69,70,41,65,66,0,0,46,47,
+ 48,49,50,51,52,53,54,55,56,0,
1,2,3,4,5,6,7,8,9,0,
- 11,12,90,103,0,0,0,3,96,0,
- 58,0,3,57,9,59,0,0,62,30,
- 120,0,1,2,68,0,0,10,0,1,
- 2,75,0,1,2,3,4,5,6,7,
- 8,9,61,11,12,64,57,30,59,0,
- 0,62,0,4,0,3,0,68,4,9,
- 61,0,30,64,75,0,1,2,3,4,
- 5,6,7,8,9,123,11,12,73,0,
- 63,0,28,58,3,0,0,0,3,57,
- 0,59,0,0,62,30,90,0,0,0,
- 68,3,96,0,119,0,3,75,0,1,
- 2,3,4,5,6,7,8,9,28,11,
- 12,29,57,73,59,0,0,62,72,3,
- 0,0,0,68,3,3,0,58,30,3,
- 75,0,1,2,3,4,5,6,7,8,
- 9,58,11,12,0,0,0,3,72,72,
- 0,0,0,0,67,57,67,59,0,0,
- 62,30,67,0,0,0,68,0,0,0,
- 0,0,0,75,0,1,2,3,4,5,
- 6,7,8,9,0,11,12,28,57,0,
- 59,0,0,62,0,0,0,0,0,0,
- 0,0,0,0,30,0,75,0,1,2,
- 3,4,5,6,7,8,9,0,11,12,
- 0,0,0,0,0,0,0,0,0,0,
- 0,57,0,59,0,0,62,30,0,0,
- 0,0,0,0,0,0,0,0,0,75,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,57,0,59,0,0,62,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,75,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0
+ 0,0,13,14,72,61,64,0,0,1,
+ 2,61,4,6,64,0,1,2,3,4,
+ 5,6,7,8,9,48,67,28,13,14,
+ 41,0,1,2,0,46,47,48,49,50,
+ 51,52,53,54,55,56,31,0,1,2,
+ 0,1,2,3,4,5,6,7,8,9,
+ 61,72,31,13,14,0,1,2,67,0,
+ 0,0,57,0,59,6,0,62,28,0,
+ 9,31,6,0,13,0,0,4,73,0,
+ 1,2,93,94,60,9,31,82,91,92,
+ 0,1,2,0,1,2,0,57,29,59,
+ 0,0,62,0,1,2,3,4,5,6,
+ 7,8,9,0,41,0,13,14,58,0,
+ 0,31,82,0,0,1,2,3,4,5,
+ 6,7,8,9,31,0,0,13,14,0,
+ 1,2,3,4,5,6,7,8,9,73,
+ 91,92,13,14,0,31,0,91,92,0,
+ 57,0,59,9,0,62,0,13,9,0,
+ 31,0,13,0,3,0,73,64,14,10,
+ 0,57,0,59,9,82,62,67,0,9,
+ 67,9,0,0,28,0,57,73,59,0,
+ 31,62,3,0,9,41,82,71,9,0,
+ 46,47,73,49,50,51,52,53,54,55,
+ 56,82,0,1,2,3,4,5,6,7,
+ 8,9,63,0,0,13,14,0,1,2,
+ 3,4,5,6,7,8,9,48,73,76,
+ 13,14,72,31,72,67,0,1,2,3,
+ 4,5,6,7,8,9,0,72,31,13,
+ 14,72,0,0,0,3,10,4,4,57,
+ 71,59,0,0,62,3,3,31,0,0,
+ 0,3,3,3,57,0,59,31,0,62,
+ 67,28,28,0,82,71,0,0,0,0,
+ 0,119,0,57,0,59,0,0,62,82,
+ 0,0,0,0,0,0,28,0,0,63,
+ 0,0,29,0,0,0,0,0,82,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,67,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0
};
};
public final static byte termCheck[] = TermCheck.termCheck;
@@ -1371,297 +1347,290 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface TermAction {
public final static char termAction[] = {0,
- 5254,5232,5214,5214,5214,5214,5214,5214,5214,5245,
- 1,5239,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,5254,1,
- 191,1,1,1,1,1,1,1,1,1,
+ 5163,5144,5123,5123,5123,5123,5123,5123,5123,5154,
+ 1,1,1,5151,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5163,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1239,979,1434,
- 1,5254,2239,1,403,1,1,1976,5261,1,
- 1,1,127,5154,5435,5157,581,2682,3819,2198,
- 3734,2548,3162,2658,588,2657,3331,2635,8,5248,
- 5248,5248,5248,5248,5248,5248,5248,5248,5248,5248,
- 5248,5248,5248,5248,5248,5248,5248,5248,5248,5248,
- 5248,5248,5248,5248,5248,5248,5254,5248,5254,5248,
- 5248,5248,5248,5248,5248,5248,5248,5248,5248,5248,
- 5248,5248,5248,5248,5248,5248,143,5248,5248,5248,
- 5248,5248,5248,5248,5248,5248,5248,5248,5248,4864,
- 5248,5248,5251,5248,5248,131,5248,5248,5248,5248,
- 2551,2597,5248,5254,5248,5248,5248,5248,5248,5248,
- 5248,5248,5248,5248,5248,5248,5254,5232,5214,5214,
- 5214,5214,5214,5214,5214,5236,1,5239,1,1,
+ 1,1,1,1,1,1,1,1,191,1,
+ 1,1,1,1,1,1,1,1647,1,1465,
+ 2902,5163,2719,1,4244,1,1,5163,1,1,
+ 1,127,163,5170,5344,1591,3057,4019,2197,3670,
+ 2979,2938,5163,3034,1564,3031,3058,3023,8,5157,
+ 5157,5157,5157,5157,5157,5157,5157,5157,5157,5157,
+ 5157,5157,5157,5157,5157,5157,5157,5157,5157,5157,
+ 5157,5157,5157,5157,5157,5157,5163,5157,5157,3122,
+ 5157,5157,5157,5157,5157,5157,5157,5157,5157,5157,
+ 5157,5157,5157,5157,5157,5157,1862,5157,5157,5157,
+ 5157,5157,5157,5157,5157,5157,5157,5157,5157,4773,
+ 5157,5157,97,5157,5157,4971,5157,5157,5157,2549,
+ 2595,5157,5157,5157,5157,5157,5157,5157,5157,5157,
+ 5160,5157,5157,5157,5157,5157,5163,5144,5123,5123,
+ 5123,5123,5123,5123,5123,5148,1,1,1,5151,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5254,1,5254,1,1,1,
+ 1,1,1,1,242,1,1,4995,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5705,1,1,1,1,1,
- 1,1,1,1239,979,1434,1,2286,2239,1,
- 5254,1,1,2551,2597,1,1,1,130,5264,
- 5435,5263,581,2682,3819,2198,3734,2548,3162,2658,
- 588,2657,3331,2635,5254,5232,5214,5214,5214,5214,
- 5214,5214,5214,5236,1,5239,1,1,1,1,
+ 1,1,1,1,143,1,1,1,1,1,
+ 1,1,1,1647,1,1465,2902,139,2719,1,
+ 1,1,1,5163,1,1,1,319,304,362,
+ 5344,1591,3057,4019,2197,3670,2979,2938,5466,3034,
+ 1564,3031,3058,3023,5163,5144,5123,5123,5123,5123,
+ 5123,5123,5123,5148,1,1,1,5151,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,5254,1,5254,1,1,1,1,1,
+ 1,1,5163,1,1,1314,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,144,1,1,1,1,1,1,1,
- 1,1239,979,1434,1,5254,2239,1,4593,1,
- 1,129,322,1,1,1,2551,2597,5435,5254,
- 581,2682,3819,2198,3734,2548,3162,2658,588,2657,
- 3331,2635,5254,5232,5214,5214,5214,5214,5214,5214,
- 5214,5236,1,5239,1,1,1,1,1,1,
+ 1,1,362,1,1,1,1,1,1,1,
+ 1,1647,1,1465,2902,2283,2719,1,5163,1,
+ 1,5163,1,1,1,362,588,5169,5344,1591,
+ 3057,4019,2197,3670,2979,2938,5163,3034,1564,3031,
+ 3058,3023,5163,5144,5123,5123,5123,5123,5123,5123,
+ 5123,5148,1,1,1,5151,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1309,1,5254,1,1,1,1,1,1,1,
+ 1,1,1,4058,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 5691,1,1,1,1,1,1,1,1,1239,
- 979,1434,1,2286,2239,1,1,1,1,2551,
- 2597,1,1,1,128,5264,5435,5263,581,2682,
- 3819,2198,3734,2548,3162,2658,588,2657,3331,2635,
- 5254,5232,5214,5214,5214,5214,5214,5214,5214,5236,
- 1,5239,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,5254,1,
- 5254,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,5254,1,
- 1,1,1,1,1,1,1,1239,979,1434,
- 1,5254,2239,1,2789,1,1,137,323,1,
- 1,1,2551,2597,5435,2349,581,2682,3819,2198,
- 3734,2548,3162,2658,588,2657,3331,2635,5254,5232,
- 5214,5214,5214,5214,5214,5214,5214,5236,1,5239,
+ 5168,1,1,1,1,1,1,1,1,1647,
+ 1,1465,2902,5163,2719,1,5163,1,1,2572,
+ 1,1,1,5163,5180,5181,5344,1591,3057,4019,
+ 2197,3670,2979,2938,5163,3034,1564,3031,3058,3023,
+ 5163,5144,5123,5123,5123,5123,5123,5123,5123,5148,
+ 1,1,1,5151,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5163,1,
+ 1,3984,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5163,1,
+ 1,1,1,1,1,1,1,1647,1,1465,
+ 2902,124,2719,1,5163,1,1,3991,1,1,
+ 1,320,2832,2805,5344,1591,3057,4019,2197,3670,
+ 2979,2938,5163,3034,1564,3031,3058,3023,5163,5144,
+ 5123,5123,5123,5123,5123,5123,5123,5148,1,1,
+ 1,5151,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,5163,1,1,1314,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1309,1,5254,1,
+ 1,1,1,1,1,1,5163,1,1,1,
+ 1,1,1,1,1,1647,1,1465,2902,140,
+ 2719,1,5163,1,1,4085,1,1,1,5163,
+ 4965,4962,5344,1591,3057,4019,2197,3670,2979,2938,
+ 294,3034,1564,3031,3058,3023,5163,5144,5123,5123,
+ 5123,5123,5123,5123,5123,5148,1,1,1,5151,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,5254,1,1,1,
- 1,1,1,1,1,1239,979,1434,1,141,
- 2239,1,1,1,1,5254,5254,1,1,1,
- 721,197,5435,197,581,2682,3819,2198,3734,2548,
- 3162,2658,588,2657,3331,2635,5254,5232,5214,5214,
- 5214,5214,5214,5214,5214,5236,1,5239,1,1,
+ 1,1,1,1,5163,1,1,1904,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5254,1,5254,1,1,1,
+ 1,1,1,1,144,1,1,1,1,1,
+ 1,1,1,1647,1,1465,2902,1988,2719,1,
+ 1,1,1,5163,1,1,1,788,588,167,
+ 5344,1591,3057,4019,2197,3670,2979,2938,5163,3034,
+ 1564,3031,3058,3023,5163,5144,5123,5123,5123,5123,
+ 5123,5123,5123,5148,1,1,1,5151,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5254,1,1,1,1,1,
- 1,1,1,1239,979,1434,1,139,2239,1,
- 97,1,1,5062,454,1,1,1,163,590,
- 5435,5254,581,2682,3819,2198,3734,2548,3162,2658,
- 588,2657,3331,2635,5254,5232,5214,5214,5214,5214,
- 5214,5214,5214,5236,1,5239,1,1,1,1,
+ 1,1,5163,1,1,4173,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,4894,1,5254,1,1,1,1,1,
+ 1,1,167,1,1,1,1,1,1,1,
+ 1,1647,1,1465,2902,2283,2719,1,5163,1,
+ 1,4555,1,1,1,54,4965,4962,5344,1591,
+ 3057,4019,2197,3670,2979,2938,369,3034,1564,3031,
+ 3058,3023,5163,3012,1,1,1,1,1,1,
+ 1,5173,1,1,1,5172,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1859,1,1,1,1,1,1,1,
- 1,1239,979,1434,1,242,2239,1,5086,1,
- 1,5254,453,1,1,1,2319,1,5435,5254,
- 581,2682,3819,2198,3734,2548,3162,2658,588,2657,
- 3331,2635,5254,2634,1,1,1,1,1,1,
- 1,5264,1,5263,1,1,1,1,1,1,
+ 5163,1,1,4570,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 4897,1,5254,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 5762,1,1,1,1,1,1,1,1,1239,
- 979,1434,1,3532,2239,1,43,1,1,41,
- 5296,1,1,1,1,5254,5435,4678,581,2682,
- 3819,2198,3734,2548,3162,2658,588,2657,3331,2635,
- 43,4885,4882,3779,727,4037,4103,3401,4125,5294,
- 862,5254,5516,4081,4059,5523,5521,5530,5529,5525,
- 5526,5524,5527,5528,5531,5522,4169,4147,5254,5277,
- 5254,4009,918,985,5279,950,1047,977,5280,5278,
- 903,5519,5273,5275,5276,5274,5593,5594,132,5513,
- 5520,5492,5518,5517,5514,5515,5493,5254,5271,5272,
- 1347,229,626,5650,3401,5254,5271,5272,5254,1384,
- 5651,5652,37,5516,1,4900,2515,5264,4900,5263,
- 4900,4900,5254,4900,5220,4900,4900,369,4869,4865,
- 3063,1,626,1,3401,1,145,43,4900,4900,
- 4900,5296,5519,1598,2382,5586,450,5593,5594,4917,
- 5513,5520,5492,5518,5517,5514,5515,5493,5254,5254,
- 4900,5254,4869,4865,2584,1,626,1,3401,1,
- 4191,1162,4334,4900,4873,1309,4900,5223,350,4900,
- 4900,2461,2434,1821,4900,4900,1,4869,4865,5160,
- 5254,5163,5254,5166,1174,5264,3186,5263,117,33,
- 4900,4900,4900,4900,4900,4900,4900,4900,4900,4900,
- 4900,4900,4900,4900,4900,4900,4900,4900,4900,4900,
- 4900,4900,4900,4900,4900,4900,1309,1556,5254,4900,
- 4900,5065,4900,4900,5065,5787,5065,5065,2249,5065,
- 436,5065,5065,5254,5197,5192,2584,5139,626,5189,
- 3401,5186,5254,3445,5065,5065,5065,230,5254,4907,
- 4903,2584,5296,626,1598,3401,5586,53,4876,5516,
- 5254,420,49,4923,4923,424,5065,145,315,5197,
- 5192,2584,5139,626,5189,3401,5186,1,4213,5065,
- 5254,388,5065,142,4235,5065,5065,1258,5519,5258,
- 5065,5065,4920,5593,5594,5254,5513,5520,5492,5518,
- 5517,5514,5515,5493,5260,2022,5065,5065,5065,5065,
- 5065,5065,5065,5065,5065,5065,5065,5065,5065,5065,
- 5065,5065,5065,5065,5065,5065,5065,5065,5065,5065,
- 5065,5065,1901,5254,1817,5065,5065,807,5065,5065,
- 5254,5126,5126,233,5122,233,233,233,233,5130,
- 1,233,1,5254,33,1,1,1,1,1,
- 1,1,1,1,1,1,435,5254,5259,2249,
- 5119,1775,1733,1691,1649,1607,1565,1523,1481,1439,
- 1397,1,4879,590,3445,316,1,1,3106,1,
- 1,1,1,1,1,1,1,574,5257,5254,
- 5254,4885,4882,1,727,5068,5254,3401,413,1,
- 1,1,233,511,5663,5750,5254,5126,5126,233,
- 5122,233,233,233,233,5169,1,233,1,1982,
- 2059,1,1,1,1,1,1,1,1,1,
- 1,1,1,4869,4865,2584,5119,626,231,3401,
- 387,315,1072,315,5685,5686,5687,1,106,5254,
- 5516,124,1,1,232,1,1,1,1,1,
- 1,1,1,574,3027,3002,5516,870,4888,1,
- 5685,5686,5687,307,412,1,1,1,233,5519,
- 5663,5750,5254,5560,5593,5594,140,5513,5520,5492,
- 5518,5517,5514,5515,5493,5519,3974,5254,5271,5272,
- 5593,5594,3675,5513,5520,5492,5518,5517,5514,5515,
- 5493,1,4869,4865,2584,5254,626,5254,3401,5254,
- 5685,5686,5687,1,4966,4962,3779,4970,4037,4103,
- 3401,4125,3216,4926,294,372,4081,4059,4953,4959,
- 4932,4935,4947,4944,4950,4941,4938,4929,4956,4169,
- 4147,5254,5277,370,4009,918,985,5279,950,1047,
- 977,5280,5278,903,5254,5273,5275,5276,5274,3675,
- 347,4907,4903,3063,5296,626,1598,3401,5586,42,
- 4914,4911,4438,1347,512,2319,1038,5653,43,43,
- 43,4885,4882,3779,727,4037,4103,3401,4125,5262,
- 1682,1985,1216,4081,4059,5523,5521,5530,5529,5525,
- 5526,5524,5527,5528,5531,5522,4169,4147,1309,5277,
- 1267,4009,918,985,5279,950,1047,977,5280,5278,
- 903,5254,5273,5275,5276,5274,440,1,1,105,
- 1,5254,4891,5254,4891,1,5142,5142,1640,5139,
- 1347,1598,5254,5586,365,5254,5271,5272,5261,43,
- 4885,4882,3779,727,4037,4103,3401,4125,5262,1682,
- 416,1556,4081,4059,5523,5521,5530,5529,5525,5526,
- 5524,5527,5528,5531,5522,4169,4147,2073,5277,1808,
- 4009,918,985,5279,950,1047,977,5280,5278,903,
- 5254,5273,5275,5276,5274,5254,5056,5053,347,43,
- 43,2853,5296,1840,1598,5254,5586,1640,365,1347,
- 5254,5254,4885,4882,5262,5296,5254,5261,147,4885,
- 4882,3779,727,4037,4103,3401,4125,2161,1682,39,
- 365,4081,4059,5523,5521,5530,5529,5525,5526,5524,
- 5527,5528,5531,5522,4169,4147,1309,5277,2805,4009,
- 918,985,5279,950,1047,977,5280,5278,903,444,
- 5273,5275,5276,5274,5254,1,4869,4865,3063,1934,
- 626,1848,3401,5261,5080,5254,4885,4882,1347,727,
- 626,5254,3401,43,43,1,4966,4962,3779,4970,
- 4037,4103,3401,4125,5254,4926,3342,3450,4081,4059,
- 4953,4959,4932,4935,4947,4944,4950,4941,4938,4929,
- 4956,4169,4147,1309,5277,5254,4009,918,985,5279,
- 950,1047,977,5280,5278,903,307,5273,5275,5276,
- 5274,3175,1,4869,4865,2584,5560,626,5083,3401,
- 441,43,43,3230,5296,1347,5077,30,5074,5254,
- 43,43,43,4885,4882,3779,727,4037,4103,3401,
- 4125,349,1682,5254,2902,4081,4059,5523,5521,5530,
- 5529,5525,5526,5524,5527,5528,5531,5522,4169,4147,
- 5254,5277,5254,4009,918,985,5279,950,1047,977,
- 5280,5278,903,360,5273,5275,5276,5274,5254,98,
- 1,1,43,1,2022,5148,5296,5148,5071,1309,
- 1640,5071,1347,43,4885,4882,3779,727,4037,4103,
- 3401,4125,5258,1682,1855,5254,4081,4059,5523,5521,
- 5530,5529,5525,5526,5524,5527,5528,5531,5522,4169,
- 4147,292,5277,1076,4009,918,985,5279,950,1047,
- 977,5280,5278,903,121,5273,5275,5276,5274,1,
- 3630,134,912,5254,5719,5713,1,5717,5254,2853,
- 5254,3507,5711,5712,138,343,5254,4885,4882,5262,
- 727,5068,2349,3401,5254,5742,5743,5722,5613,2515,
- 5720,3344,1,4869,4865,3063,338,626,5254,3401,
- 5254,4885,4882,5254,5296,1003,2147,573,1,4869,
- 4865,5160,1,5163,1309,5166,5685,5686,5687,126,
- 5723,167,5107,5744,769,771,5721,343,1,5254,
- 343,5257,3027,3002,1005,1,5254,365,5261,343,
- 1309,5254,5593,5594,5226,3607,3584,5733,5732,5745,
- 5714,5715,5738,5739,2461,2434,5736,5737,5716,5718,
- 5740,5741,5746,5726,5727,5728,5724,5725,5734,5735,
- 5730,5729,5731,43,4885,4882,3779,727,4037,4103,
- 3401,4125,364,1682,5254,167,4081,4059,5523,5521,
- 5530,5529,5525,5526,5524,5527,5528,5531,5522,4169,
- 4147,365,5277,5261,4009,918,985,5279,950,1047,
- 977,5280,5278,903,123,5273,5275,5276,5274,5254,
- 3630,5254,3872,365,912,122,5719,5713,394,5717,
- 1,3630,387,1347,5711,5712,101,43,43,5260,
- 5296,5254,5205,228,5202,5254,3669,5742,5743,5722,
- 43,1,5720,54,5296,5516,1556,5272,5523,5521,
- 5530,5529,5525,5526,5524,5527,5528,5531,5522,573,
- 5254,4885,4882,3515,727,626,5254,3401,41,5151,
- 5151,5272,5723,5151,5519,5744,769,771,5721,5593,
- 5594,2795,5513,5520,5492,5518,5517,5514,5515,5493,
- 5254,4885,4882,5259,5296,3607,3584,5254,3679,5733,
- 5732,5745,5714,5715,5738,5739,3607,3584,5736,5737,
- 5716,5718,5740,5741,5746,5726,5727,5728,5724,5725,
- 5734,5735,5730,5729,5731,43,4885,4882,3779,727,
- 4037,4103,3401,4125,5254,1682,5615,3926,4081,4059,
- 5523,5521,5530,5529,5525,5526,5524,5527,5528,5531,
- 5522,4169,4147,504,5277,5254,4009,918,985,5279,
- 950,1047,977,5280,5278,903,5254,5273,5275,5276,
- 5274,529,125,2160,43,4885,4882,3779,727,4037,
- 4103,3401,4125,4523,1682,3027,3002,4081,4059,5523,
- 5521,5530,5529,5525,5526,5524,5527,5528,5531,5522,
- 4169,4147,5254,5277,5254,4009,918,985,5279,950,
- 1047,977,5280,5278,903,422,5273,5275,5276,5274,
- 4719,5254,43,4885,4882,4619,727,4037,4103,3401,
- 4125,2538,1682,3559,1347,4081,4059,5523,5521,5530,
- 5529,5525,5526,5524,5527,5528,5531,5522,4169,4147,
- 3671,5277,45,4009,918,985,5279,950,1047,977,
- 5280,5278,903,3670,5273,5275,5276,5274,43,4885,
- 4882,3779,727,4037,4103,3401,4125,502,1682,3789,
- 5059,4081,4059,5523,5521,5530,5529,5525,5526,5524,
- 5527,5528,5531,5522,4169,4147,135,5277,1,4009,
- 918,985,5279,950,1047,977,5280,5278,903,445,
- 5273,5275,5276,5274,43,4885,4882,3779,727,4037,
- 4103,3401,4125,5254,1682,5254,1556,4081,4059,5523,
- 5521,5530,5529,5525,5526,5524,5527,5528,5531,5522,
- 4169,4147,5254,5277,4720,4009,918,985,5279,950,
- 1047,977,5280,5278,903,5254,5273,5275,5276,5274,
- 5254,4885,4882,5254,5296,395,4885,4882,5254,5296,
- 775,136,5516,3501,314,5523,5521,5530,5529,5525,
- 5526,5524,5527,5528,5531,5522,5254,5056,5053,5254,
- 8568,8568,133,2406,2378,43,1974,51,5116,5116,
- 979,5519,5254,5136,5133,5254,5593,5594,5254,5513,
- 5520,5492,5518,5517,5514,5515,5493,5260,5254,5294,
- 2515,3759,5254,5650,246,5046,5042,5113,5050,1384,
- 5651,5652,5294,5254,775,120,4997,732,4427,5033,
- 5039,5012,5015,5027,5024,5030,5021,5018,5009,5036,
- 3487,4191,1162,5110,79,33,387,387,5095,387,
- 387,5095,387,5095,5098,4988,5095,387,2406,2378,
- 4982,4979,4733,5006,4985,4976,4991,4994,5003,5000,
- 4973,5259,5208,4879,5254,2461,2434,5650,54,5056,
- 5053,377,5254,1384,5651,5652,387,41,5145,5145,
- 5254,387,387,5098,387,387,387,387,387,387,
- 387,387,36,388,388,5089,388,388,5089,388,
- 5089,5092,1,5089,388,4213,1,3373,5098,2853,
- 81,4235,5254,2803,5254,5080,54,5104,5101,5254,
- 5176,5172,119,1,5214,5214,233,5214,233,233,
- 233,233,233,388,233,8491,5322,5323,388,388,
- 5092,388,388,388,388,388,388,388,388,5294,
- 5254,1974,2110,5211,1309,293,5271,5272,3393,40,
- 5183,5180,5254,5271,5272,5092,1,5214,5214,233,
- 5214,233,233,233,233,5229,5254,233,8491,5083,
- 1239,5254,1211,2701,3892,2239,5254,5104,5101,2850,
- 2701,5254,395,5271,5272,518,5211,4365,5750,1,
- 5214,5214,233,5214,233,233,233,233,5229,5254,
- 233,8491,4213,657,5254,1,118,3535,4235,109,
- 3560,5254,4370,1239,525,1211,5254,1,2239,5211,
- 793,5254,8453,7812,225,1,5254,5220,5254,8453,
- 7812,5750,1,5214,5214,233,5214,233,233,233,
- 233,5242,3832,233,8491,3126,1239,2382,1211,5254,
- 1,2239,283,1304,54,5217,5254,225,5271,169,
- 2820,5254,5211,3126,5750,1,5214,5214,233,5214,
- 233,233,233,233,5229,2247,233,8491,525,5254,
- 5223,5254,5271,3668,2240,5254,5254,5254,4371,1239,
- 5254,1211,1,5254,2239,5211,4213,5254,5254,5254,
- 224,4672,4235,5254,2701,506,3960,5750,1,5214,
- 5214,233,5214,233,233,233,233,5229,3780,233,
- 8491,2229,1239,169,1211,5254,5254,2239,5438,4679,
- 5254,5254,5254,225,3140,4706,5254,3727,5211,3745,
- 5750,1,5214,5214,233,5214,233,233,233,233,
- 233,3757,233,8491,5254,5254,5254,4421,3219,5437,
- 5254,5254,5254,5254,3342,1239,1943,1211,5254,2,
- 2239,5211,988,5254,5254,5254,225,5254,5254,5254,
- 5254,5254,5254,5750,1,5214,5214,233,5214,233,
- 233,233,233,233,5254,233,8491,41,1239,5254,
- 1211,5254,5254,2239,5254,5254,5254,5254,5254,5254,
- 5254,5254,5254,5254,5211,5254,5750,1,5214,5214,
- 233,5214,233,233,233,233,233,5254,233,8491,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,5254,
- 5254,1239,5254,1211,5254,5254,2239,5211,5254,5254,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,5750,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,5254,
- 5254,5254,5254,5254,1239,5254,1211,5254,5254,2239,
- 5254,5254,5254,5254,5254,5254,5254,5254,5254,5254,
- 5254,5254,5750
+ 5163,1,1,1,1,1,1,1,1,1647,
+ 1,1465,2902,1214,2719,1,137,1,1,5163,
+ 1,1,1,452,2347,135,5344,1591,3057,4019,
+ 2197,3670,2979,2938,422,3034,1564,3031,3058,3023,
+ 43,4794,4791,3028,724,3685,3757,2935,3779,451,
+ 905,3735,3713,141,5425,5432,5430,5439,5438,5434,
+ 5435,5433,5436,5437,5440,5431,3823,3801,5163,5186,
+ 627,4803,859,1028,5188,969,1047,977,5189,5187,
+ 807,5428,5182,5184,5185,5183,5499,5500,357,5422,
+ 5429,5401,5427,5426,5423,5424,5402,4806,1351,1,
+ 4778,4774,4363,5556,779,3116,2935,145,850,5557,
+ 5558,5163,5035,5035,233,5031,233,233,233,233,
+ 5039,1,2404,2376,233,1,1,1,1,1,
+ 1,1,1,1,1,1,1,43,49,4832,
+ 4832,5205,5028,344,4816,4812,2857,5205,779,1685,
+ 2935,5492,1,2316,5163,5180,5181,1,1,3646,
+ 1,1,1,1,1,1,1,1,810,4829,
+ 1069,5163,4794,4791,1,724,779,41,2935,1,
+ 1,1,233,5519,411,5570,5163,1,4778,4774,
+ 4363,1314,779,5657,2935,335,136,5163,5035,5035,
+ 233,5031,233,233,233,233,5078,1,5203,2246,
+ 233,1,1,1,1,1,1,1,1,1,
+ 1,1,1,433,3265,5592,5593,5594,5028,5163,
+ 4778,4774,4363,1,779,1,2935,1,1,1,
+ 5163,5499,5500,1,1,5163,1,1,1,1,
+ 1,1,1,1,810,43,1069,30,2025,5205,
+ 1,1685,5163,5492,5163,1,1,1,233,37,
+ 410,5570,4809,229,5163,4809,367,4809,4809,5657,
+ 4809,4809,4809,1,4778,4774,2857,5425,779,509,
+ 2935,3665,4989,2404,2376,4809,4809,4809,438,1,
+ 1,5612,1,5694,4800,1811,4800,5163,42,4823,
+ 4820,5592,5593,5594,5428,625,5167,4809,4980,5499,
+ 5500,4980,5422,5429,5401,5427,5426,5423,5424,5402,
+ 4809,1314,5163,4809,5521,5598,4809,5592,5593,5594,
+ 4809,4809,4809,1272,5163,5106,5101,4363,5048,779,
+ 5098,2935,5095,868,5163,4992,33,4809,4809,4809,
+ 4809,4809,4809,4809,4809,4809,4809,4809,4809,4809,
+ 4809,4809,4809,4809,4809,4809,4809,4809,4809,4809,
+ 4809,4809,4809,131,1601,5163,4809,4809,4974,4809,
+ 4809,4974,313,4974,4974,1390,4974,4974,4974,5163,
+ 4816,4812,4363,5205,779,1685,2935,5492,54,5013,
+ 5010,4974,4974,4974,230,2025,312,5106,5101,4363,
+ 5048,779,5098,2935,5095,5166,448,418,5425,1,
+ 4778,4774,5069,4974,5072,5163,5075,5163,5173,439,
+ 43,43,5172,5205,5173,4986,4974,4983,5172,4974,
+ 5163,3090,4974,347,4782,5428,4974,4974,4974,1071,
+ 5499,5500,5163,5422,5429,5401,5427,5426,5423,5424,
+ 5402,2549,2595,4974,4974,4974,4974,4974,4974,4974,
+ 4974,4974,4974,4974,4974,4974,4974,4974,4974,4974,
+ 4974,4974,4974,4974,4974,4974,4974,4974,4974,4329,
+ 5163,1314,4974,4974,3158,4974,4974,1,4875,4871,
+ 3028,4879,3685,3757,2935,3779,106,4835,3735,3713,
+ 434,5559,4862,4868,4841,4844,4856,4853,4859,4850,
+ 4847,4838,4865,3823,3801,33,5186,627,384,859,
+ 1028,5188,969,1047,977,5189,5187,807,4785,5182,
+ 5184,5185,5183,5163,366,4778,4774,2857,1,779,
+ 1,2935,1,4788,4264,1351,4797,346,510,5163,
+ 3059,1,43,43,43,4794,4791,3028,724,3685,
+ 3757,2935,3779,5171,566,3735,3713,5163,5163,5432,
+ 5430,5439,5438,5434,5435,5433,5436,5437,5440,5431,
+ 3823,3801,1314,5186,627,5163,859,1028,5188,969,
+ 1047,977,5189,5187,807,1314,5182,5184,5185,5183,
+ 138,1172,1,4778,4774,4363,142,779,2347,2935,
+ 5163,312,1351,1601,1727,312,98,1,1,5169,
+ 1,1,5057,5163,5057,385,3502,5170,43,4794,
+ 4791,3028,724,3685,3757,2935,3779,5171,566,3735,
+ 3713,5163,5163,5432,5430,5439,5438,5434,5435,5433,
+ 5436,5437,5440,5431,3823,3801,5163,5186,627,132,
+ 859,1028,5188,969,1047,977,5189,5187,807,3234,
+ 5182,5184,5185,5183,4654,344,43,43,3263,5205,
+ 5163,1685,5168,5492,130,5163,1351,2513,1727,5163,
+ 5180,5181,147,4794,4791,3028,724,3685,3757,2935,
+ 3779,5170,566,3735,3713,4006,2316,5432,5430,5439,
+ 5438,5434,5435,5433,5436,5437,5440,5431,3823,3801,
+ 4826,5186,627,1314,859,1028,5188,969,1047,977,
+ 5189,5187,807,304,5182,5184,5185,5183,400,5163,
+ 1,5051,5051,5466,5048,2943,1685,5063,5492,362,
+ 1351,5066,2459,2432,3845,564,374,43,43,1,
+ 4875,4871,3028,4879,3685,3757,2935,3779,5163,4835,
+ 3735,3713,2549,2595,4862,4868,4841,4844,4856,4853,
+ 4859,4850,4847,4838,4865,3823,3801,5163,5186,627,
+ 3268,859,1028,5188,969,1047,977,5189,5187,807,
+ 5669,5182,5184,5185,5183,293,5180,5181,53,5163,
+ 4794,4791,362,724,4977,3297,2935,1351,5163,5163,
+ 4794,4791,808,5205,43,43,43,4794,4791,3028,
+ 724,3685,3757,2935,3779,362,566,3735,3713,2777,
+ 575,5432,5430,5439,5438,5434,5435,5433,5436,5437,
+ 5440,5431,3823,3801,5163,5186,627,3526,859,1028,
+ 5188,969,1047,977,5189,5187,807,145,5182,5184,
+ 5185,5183,101,43,43,3090,5205,5163,5114,1979,
+ 5111,5163,4794,4791,1351,5205,1727,43,4794,4791,
+ 3028,724,3685,3757,2935,3779,5167,566,3735,3713,
+ 5163,231,5432,5430,5439,5438,5434,5435,5433,5436,
+ 5437,5440,5431,3823,3801,5425,5186,627,5163,859,
+ 1028,5188,969,1047,977,5189,5187,807,3469,5182,
+ 5184,5185,5183,1,1820,5163,899,3470,5626,5620,
+ 1,5624,5428,3263,5618,5619,3971,5499,5500,340,
+ 5422,5429,5401,5427,5426,5423,5424,5402,5163,5649,
+ 5650,5629,5163,5627,392,4794,4791,109,5205,2246,
+ 4660,1778,1736,1694,1652,1610,1568,1526,1484,1442,
+ 1400,918,5163,5163,3265,5163,4794,4791,1314,724,
+ 4977,5163,2935,2509,5630,43,2011,5651,718,766,
+ 5628,340,5163,117,340,5166,120,3646,1,4778,
+ 4774,2857,340,779,5163,2935,988,126,5163,5180,
+ 5181,5640,5639,5652,5621,5622,5645,5646,2832,2805,
+ 5643,5644,5623,5625,5647,5648,5653,5633,5634,5635,
+ 5631,5632,5641,5642,5637,5636,5638,43,4794,4791,
+ 3028,724,3685,3757,2935,3779,1314,566,3735,3713,
+ 45,5163,5432,5430,5439,5438,5434,5435,5433,5436,
+ 5437,5440,5431,3823,3801,2019,5186,627,3175,859,
+ 1028,5188,969,1047,977,5189,5187,807,4968,5182,
+ 5184,5185,5183,3867,283,5163,3867,5129,899,3889,
+ 5626,5620,3889,5624,5163,1351,5618,5619,1,4778,
+ 4774,5069,5163,5072,5163,5075,5163,228,5163,1,
+ 5163,5649,5650,5629,391,5627,5163,5171,384,134,
+ 1943,5425,5432,5430,5439,5438,5434,5435,5433,5436,
+ 5437,5440,5431,918,5163,4794,4791,1601,724,779,
+ 5163,2935,1601,40,5092,5089,5630,2513,5428,5651,
+ 718,766,5628,5499,5500,2073,5422,5429,5401,5427,
+ 5426,5423,5424,5402,5163,5180,5181,4170,2463,779,
+ 2911,2935,1005,5640,5639,5652,5621,5622,5645,5646,
+ 5016,5170,5643,5644,5623,5625,5647,5648,5653,5633,
+ 5634,5635,5631,5632,5641,5642,5637,5636,5638,43,
+ 4794,4791,3028,724,3685,3757,2935,3779,442,566,
+ 3735,3713,2459,2432,5432,5430,5439,5438,5434,5435,
+ 5433,5436,5437,5440,5431,3823,3801,5163,5186,627,
+ 2748,859,1028,5188,969,1047,977,5189,5187,807,
+ 5163,5182,5184,5185,5183,5163,5163,1895,43,4794,
+ 4791,3028,724,3685,3757,2935,3779,5163,566,3735,
+ 3713,5163,1,5432,5430,5439,5438,5434,5435,5433,
+ 5436,5437,5440,5431,3823,3801,5163,5186,627,621,
+ 859,1028,5188,969,1047,977,5189,5187,807,3497,
+ 5182,5184,5185,5183,5163,8464,8464,43,4794,4791,
+ 4569,724,3685,3757,2935,3779,1351,566,3735,3713,
+ 5163,2111,5432,5430,5439,5438,5434,5435,5433,5436,
+ 5437,5440,5431,3823,3801,5203,5186,627,79,859,
+ 1028,5188,969,1047,977,5189,5187,807,292,5182,
+ 5184,5185,5183,43,4794,4791,3028,724,3685,3757,
+ 2935,3779,129,566,3735,3713,5117,4151,5432,5430,
+ 5439,5438,5434,5435,5433,5436,5437,5440,5431,3823,
+ 3801,2107,5186,627,119,859,1028,5188,969,1047,
+ 977,5189,5187,807,118,5182,5184,5185,5183,43,
+ 4794,4791,3028,724,3685,3757,2935,3779,361,566,
+ 3735,3713,1522,5163,5432,5430,5439,5438,5434,5435,
+ 5433,5436,5437,5440,5431,3823,3801,81,5186,627,
+ 3463,859,1028,5188,969,1047,977,5189,5187,807,
+ 128,5182,5184,5185,5183,5163,4794,4791,43,5205,
+ 2549,2595,5205,5231,5232,772,51,5025,5025,5425,
+ 5432,5430,5439,5438,5434,5435,5433,5436,5437,5440,
+ 5431,125,2999,2902,3867,2755,41,5060,5060,5163,
+ 3889,5060,2832,2805,3867,5163,5428,5022,4676,1247,
+ 3889,5499,5500,5163,5422,5429,5401,5427,5426,5423,
+ 5424,5402,246,4955,4951,420,4959,3650,5556,5163,
+ 4965,4962,772,850,5557,5558,4906,4942,4948,4921,
+ 4924,4936,4933,4939,4930,4927,4918,4945,2549,2595,
+ 654,5163,33,384,384,5004,384,384,5004,384,
+ 5004,5007,443,4897,5163,5004,384,792,4891,4888,
+ 5163,4915,4894,4885,4900,4903,4912,4909,4882,414,
+ 4788,5163,5592,5593,5594,5556,5163,5013,5010,2239,
+ 850,5557,5558,384,3845,564,5163,105,384,384,
+ 5007,384,384,384,384,384,384,384,384,36,
+ 385,385,4998,385,385,4998,385,4998,5001,133,
+ 5163,39,4998,385,5007,3982,2629,121,5163,4794,
+ 4791,3243,5205,3420,2911,1,5123,5123,233,5123,
+ 233,233,233,233,5126,2074,2160,2513,233,8469,
+ 385,5163,5045,5042,1,385,385,5001,385,385,
+ 385,385,385,385,385,385,5120,392,5180,5181,
+ 1,5123,5123,233,5123,233,233,233,233,233,
+ 5019,5001,5203,233,8469,41,5054,5054,3460,123,
+ 527,5163,1108,5163,1465,3420,122,2719,2463,5163,
+ 5173,5120,3420,43,5172,5163,5163,5205,225,5163,
+ 8440,8439,2459,2432,3966,5171,3585,5657,3397,3374,
+ 5163,5085,5081,5163,8440,8439,5163,1108,3609,1465,
+ 5163,5163,2719,1,5123,5123,233,5123,233,233,
+ 233,233,5132,311,3113,5163,233,8469,2954,5163,
+ 502,5203,5657,500,1,5123,5123,233,5123,233,
+ 233,233,233,5126,5120,5163,5163,233,8469,1,
+ 5123,5123,233,5123,233,233,233,233,5126,5170,
+ 3397,3374,233,8469,1,5120,5163,3397,3374,1,
+ 1108,5163,1465,5173,232,2719,5163,5172,197,1,
+ 5120,5163,197,5163,2910,1,224,4352,5425,5135,
+ 1,1108,1,1465,5141,5657,2719,4059,5163,5169,
+ 4478,523,516,5163,3968,1,1108,225,1465,1,
+ 2809,2719,3263,5163,169,5428,5657,5347,4989,5163,
+ 5499,5500,225,5422,5429,5401,5427,5426,5423,5424,
+ 5402,5657,1,5123,5123,233,5123,233,233,233,
+ 233,233,5138,5163,5163,233,8469,1,5123,5123,
+ 233,5123,233,233,233,233,233,1314,5170,3261,
+ 233,8469,5168,5120,523,3460,1,5123,5123,233,
+ 5123,233,233,233,233,233,1,169,5120,233,
+ 8469,4992,5163,54,54,3638,5135,5181,5180,1108,
+ 2997,1465,5163,5163,2719,4651,3147,5120,5163,5163,
+ 5163,4668,3146,4688,1108,504,1465,2809,2,2719,
+ 1946,5181,5180,1,5657,5346,5163,5163,5163,5163,
+ 5163,3090,5163,1108,5163,1465,5163,5163,2719,5657,
+ 5163,5163,5163,5163,5163,5163,41,5163,5163,5138,
+ 5163,5163,2712,5163,5163,5163,5163,5163,5657,5163,
+ 5163,5163,5163,5163,5163,5163,5163,5163,5163,5163,
+ 5163,5163,5163,5163,5163,5163,5163,5163,5163,5163,
+ 5163,5163,926
};
};
public final static char termAction[] = TermAction.termAction;
@@ -1669,59 +1638,59 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface Asb {
public final static char asb[] = {0,
- 970,1,10,3,3,169,555,555,678,169,
- 555,163,315,129,371,177,789,75,996,17,
- 17,552,45,218,265,555,555,486,555,17,
- 265,163,169,548,265,129,369,968,486,486,
- 486,486,73,968,540,113,542,130,130,130,
- 130,130,130,130,130,130,557,563,568,565,
- 572,570,577,575,579,578,580,268,581,218,
- 596,167,911,17,17,315,985,996,925,996,
- 493,996,495,996,980,73,169,218,218,17,
- 319,548,321,369,113,45,45,45,45,169,
- 502,709,557,265,265,256,113,927,44,789,
- 113,557,788,788,502,129,130,130,130,130,
- 130,130,130,130,130,130,130,130,130,130,
- 130,130,130,130,130,129,129,129,129,129,
- 129,129,129,129,129,129,129,130,75,169,
- 1061,1023,1060,1061,552,415,169,924,459,463,
- 328,925,472,169,169,169,459,1061,548,547,
- 129,468,265,265,1061,1061,1061,1061,459,265,
- 130,315,629,619,618,333,1003,1003,73,542,
- 218,44,129,167,265,166,168,166,265,218,
- 565,565,563,563,563,570,570,570,570,568,
- 568,575,572,572,578,577,579,1073,580,911,
- 113,415,924,329,924,459,924,472,472,169,
- 459,169,548,369,968,968,968,968,169,169,
- 256,265,631,633,169,789,130,45,561,221,
- 265,169,168,789,129,469,169,415,1073,486,
- 461,408,1063,415,924,924,77,169,472,469,
- 467,468,169,129,129,129,129,968,968,265,
- 623,611,622,633,459,167,265,561,315,75,
- 169,167,789,1061,486,166,923,1065,968,477,
- 72,78,169,469,130,169,265,265,265,265,
- 502,502,668,129,620,620,627,315,840,265,
- 169,561,562,561,129,221,413,557,75,167,
- 796,430,167,924,924,163,601,480,130,1073,
- 12,633,77,169,73,73,169,265,265,668,
- 129,129,631,611,668,344,561,502,130,218,
- 413,602,488,873,310,968,172,832,430,167,
- 924,925,73,1065,130,130,633,169,169,169,
- 670,668,562,265,218,750,310,488,795,925,
- 925,490,73,1060,486,605,605,602,925,93,
- 477,169,968,265,169,169,670,670,796,795,
- 602,601,265,795,795,795,73,169,430,796,
- 430,1059,1059,918,94,73,169,502,920,968,
- 670,795,163,602,469,795,795,795,169,169,
- 430,45,45,918,93,1073,130,1073,602,968,
- 968,968,94,968,169,276,602,602,169,925,
- 265,920,634,469,469,469,169,602,1060,85,
- 968,85,1073,94,113,113,111,500,113,602,
- 602,748,918,922,264,602,666,840,265,163,
- 265,111,310,968,265,918,922,45,605,265,
- 265,357,94,748,94,602,310,129,94,91,
- 1059,925,925,960,129,92,502,602,265,166,
- 94,265,602,94
+ 1049,1,10,3,3,369,506,506,602,369,
+ 506,363,161,329,241,70,1043,225,690,167,
+ 167,503,195,111,67,506,506,496,506,167,
+ 67,363,369,499,67,329,239,993,496,496,
+ 496,496,223,993,836,313,838,330,330,330,
+ 330,330,330,330,330,330,508,514,519,516,
+ 523,521,528,526,530,529,531,114,532,111,
+ 547,367,890,167,167,161,679,690,1002,690,
+ 843,690,845,690,674,223,369,111,111,167,
+ 165,499,227,239,313,195,195,195,195,369,
+ 798,633,508,67,67,58,313,952,194,1043,
+ 313,508,1042,1042,798,329,330,330,330,330,
+ 330,330,330,330,330,330,330,330,330,330,
+ 330,330,330,330,330,329,329,329,329,329,
+ 329,329,329,329,329,329,329,330,225,369,
+ 755,717,754,755,503,408,369,1001,453,457,
+ 234,1002,461,369,369,369,453,755,499,498,
+ 329,467,67,67,755,755,755,755,453,67,
+ 330,161,563,482,481,372,697,697,223,838,
+ 111,194,329,367,67,366,368,366,67,111,
+ 516,516,514,514,514,521,521,521,521,519,
+ 519,526,523,523,529,528,530,1069,531,890,
+ 313,408,1001,235,1001,453,1001,461,461,369,
+ 453,369,499,239,993,993,993,993,369,369,
+ 58,67,565,567,369,1043,330,195,512,23,
+ 67,369,368,1043,329,468,369,408,1069,846,
+ 496,455,278,1059,408,1001,1001,790,369,461,
+ 468,466,467,369,329,329,329,329,993,993,
+ 67,486,474,485,567,453,367,67,512,161,
+ 225,369,367,1043,852,1002,755,496,366,1000,
+ 1061,993,471,222,791,369,468,330,369,67,
+ 67,67,67,798,798,897,329,483,483,561,
+ 161,757,67,369,512,513,512,329,23,283,
+ 508,225,367,852,852,908,424,367,1001,1001,
+ 363,552,490,330,1069,12,567,790,369,223,
+ 223,369,67,67,897,329,329,565,474,897,
+ 383,512,798,330,111,283,553,468,556,1004,
+ 156,993,846,944,852,852,424,367,1001,1002,
+ 223,1061,330,330,567,369,369,369,899,897,
+ 513,67,111,907,156,556,558,223,468,754,
+ 496,17,17,553,1002,293,471,369,993,67,
+ 369,369,899,899,908,852,553,552,67,223,
+ 369,424,908,424,753,753,995,294,223,369,
+ 798,997,993,899,852,363,553,369,369,424,
+ 195,195,995,293,1069,330,1069,553,993,993,
+ 993,294,993,369,122,553,553,369,1002,67,
+ 997,568,468,369,553,754,285,993,285,1069,
+ 294,313,313,311,850,313,553,553,672,995,
+ 999,66,553,600,757,67,363,67,311,156,
+ 993,67,995,999,195,17,67,67,396,294,
+ 672,294,553,156,329,294,291,753,1002,1002,
+ 985,329,292,798,553,67,366,294,67,553,
+ 294
};
};
public final static char asb[] = Asb.asb;
@@ -1729,114 +1698,113 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface Asr {
public final static byte asr[] = {0,
- 121,0,76,58,61,72,95,73,48,121,
- 3,9,64,11,67,0,32,65,33,34,
- 66,7,35,36,37,38,60,39,40,42,
- 43,44,29,26,27,8,6,13,14,5,
- 31,61,45,3,10,69,63,70,71,16,
+ 121,0,75,60,61,71,95,72,48,121,
+ 3,9,64,13,67,0,61,67,64,1,
+ 2,0,96,90,11,12,91,92,88,89,
+ 28,93,94,97,98,99,100,101,102,117,
+ 71,95,67,104,105,106,107,108,109,110,
+ 111,112,113,118,73,13,121,61,1,2,
+ 8,6,4,3,48,64,72,9,0,65,
+ 66,3,10,33,37,35,32,40,16,25,
+ 15,21,19,20,22,23,18,17,24,42,
+ 45,43,44,29,39,34,38,5,7,4,
+ 26,27,8,6,11,12,30,36,1,2,
+ 118,9,0,61,71,95,64,118,72,73,
+ 121,15,16,32,65,17,33,34,18,19,
+ 20,66,35,21,22,36,37,38,58,39,
+ 40,10,23,24,25,42,43,44,29,26,
+ 27,11,12,30,45,9,13,7,5,3,
+ 1,2,8,4,6,0,32,65,33,34,
+ 66,7,35,36,37,38,58,39,40,42,
+ 43,44,29,26,27,8,6,11,12,5,
+ 30,61,45,3,10,68,63,69,70,16,
25,15,21,19,20,22,23,18,17,24,
- 49,54,55,12,53,52,50,46,47,51,
- 56,41,1,2,4,0,41,1,2,4,
- 114,115,116,0,75,114,115,116,30,72,
- 119,122,68,74,76,57,59,62,78,80,
- 86,84,77,82,83,85,87,58,79,81,
- 11,9,49,63,46,69,50,12,51,52,
- 53,54,55,70,56,71,41,47,60,65,
- 66,10,33,37,35,32,40,16,25,15,
- 21,19,20,22,23,18,17,24,42,45,
- 43,44,29,39,34,38,26,27,13,14,
- 31,36,8,6,3,4,7,5,1,2,
- 0,1,2,123,58,0,65,66,3,10,
- 33,37,35,32,40,16,25,15,21,19,
- 20,22,23,18,17,24,42,45,43,44,
- 29,39,34,38,5,7,4,26,27,8,
- 6,13,14,31,36,1,2,118,9,0,
- 96,90,13,14,91,92,88,89,28,93,
- 94,97,98,99,100,101,102,117,72,95,
- 67,104,105,106,107,108,109,110,111,112,
- 113,118,68,11,121,61,1,2,8,6,
- 4,3,48,64,73,9,0,61,72,95,
- 64,118,73,68,121,15,16,32,65,17,
- 33,34,18,19,20,66,35,21,22,36,
- 37,38,60,39,40,10,23,24,25,42,
- 43,44,29,26,27,13,14,31,45,9,
- 11,7,5,3,1,2,8,4,6,0,
- 9,72,118,73,11,64,0,4,58,72,
- 28,0,15,16,17,18,19,20,21,22,
- 23,24,25,49,46,50,12,51,52,53,
- 54,55,56,41,47,11,9,73,7,1,
- 2,48,3,8,6,5,4,0,9,68,
- 65,66,60,26,27,8,6,13,14,31,
+ 49,54,55,14,53,52,50,46,47,51,
+ 56,41,1,2,4,0,9,71,118,72,
+ 13,64,0,4,60,71,28,0,9,73,
+ 65,66,58,26,27,8,6,11,12,30,
36,3,42,45,43,44,29,39,34,38,
16,25,15,21,19,20,22,23,18,17,
- 24,33,37,35,32,40,58,7,1,2,
- 4,10,5,0,75,7,114,115,116,57,
- 9,3,8,6,5,72,68,11,74,49,
- 15,16,63,46,17,69,50,12,18,51,
- 52,19,20,53,54,21,22,55,70,56,
- 10,71,23,41,24,47,25,4,1,2,
- 30,0,4,58,72,0,67,64,68,9,
- 0,1,2,9,68,0,58,64,0,72,
- 9,48,67,64,11,28,0,29,0,58,
- 67,0,30,72,4,58,1,2,0,77,
- 0,9,73,15,16,32,17,33,34,18,
- 19,20,35,21,22,36,37,38,60,39,
- 40,10,23,24,25,42,43,44,29,3,
- 26,27,8,6,13,14,31,4,45,5,
- 7,1,2,66,65,0,60,46,7,47,
- 5,1,2,4,76,58,120,103,26,27,
- 48,3,96,90,6,91,92,13,14,89,
- 88,28,93,94,97,98,8,99,100,101,
- 61,95,73,121,67,104,105,106,107,108,
- 109,110,111,112,113,72,118,68,102,117,
- 64,11,9,0,61,67,64,1,2,0,
- 8,6,4,5,7,1,2,3,48,61,
- 67,64,9,73,95,0,7,5,3,48,
- 6,8,95,49,15,16,46,17,69,50,
- 12,18,51,52,19,20,53,54,21,22,
- 55,70,56,10,71,23,41,24,47,25,
- 1,2,4,73,9,63,0,46,47,60,
- 9,61,95,67,64,73,0,49,15,16,
- 63,46,17,69,50,12,18,51,52,19,
- 20,53,54,21,22,55,70,56,10,71,
- 23,41,24,47,25,1,2,4,66,65,
- 13,14,6,91,92,99,8,100,5,31,
- 28,61,107,108,104,105,106,112,111,113,
- 89,88,109,110,97,98,93,94,101,102,
- 26,27,64,90,103,3,48,67,0,62,
- 49,15,16,63,46,17,69,50,75,12,
- 18,51,52,19,20,53,59,54,21,22,
- 55,70,56,10,71,23,57,41,24,47,
- 25,9,3,8,6,11,58,4,7,1,
- 2,5,30,0,68,63,46,17,69,50,
+ 24,33,37,35,32,40,60,7,1,2,
+ 4,10,5,0,82,114,115,116,31,71,
+ 119,122,73,74,75,59,57,62,77,79,
+ 86,84,76,81,83,85,87,60,78,80,
+ 13,9,49,63,46,68,50,14,51,52,
+ 53,54,55,69,56,70,41,47,58,65,
+ 66,10,33,37,35,32,40,16,25,15,
+ 21,19,20,22,23,18,17,24,42,45,
+ 43,44,29,39,34,38,26,27,11,12,
+ 30,36,8,6,3,4,7,5,1,2,
+ 0,15,16,17,18,19,20,21,22,23,
+ 24,25,49,46,50,14,51,52,53,54,
+ 55,56,41,47,13,9,72,7,1,2,
+ 48,3,8,6,5,4,0,82,57,7,
+ 114,115,116,59,9,3,8,6,5,71,
+ 73,13,74,49,15,16,63,46,17,68,
+ 50,14,18,51,52,19,20,53,54,21,
+ 22,55,69,56,10,70,23,41,24,47,
+ 25,4,1,2,31,0,4,60,71,0,
+ 1,2,9,73,0,67,64,73,9,0,
+ 60,64,0,8,6,4,5,7,1,2,
+ 3,48,61,67,64,9,72,95,0,71,
+ 9,48,67,64,13,28,0,58,46,7,
+ 47,5,1,2,4,75,60,120,103,26,
+ 27,48,3,96,90,6,91,92,11,12,
+ 89,88,28,93,94,97,98,8,99,100,
+ 101,61,95,72,121,67,104,105,106,107,
+ 108,109,110,111,112,113,71,118,73,102,
+ 117,64,13,9,0,29,0,60,67,0,
+ 7,5,3,48,6,8,95,49,15,16,
+ 46,17,68,50,14,18,51,52,19,20,
+ 53,54,21,22,55,69,56,10,70,23,
+ 41,24,47,25,1,2,4,72,9,63,
+ 0,49,15,16,63,46,17,68,50,14,
18,51,52,19,20,53,54,21,22,55,
- 70,56,71,23,41,24,47,25,16,15,
- 49,9,3,8,6,11,57,62,75,12,
- 30,7,1,2,5,4,10,59,0,49,
- 15,16,63,46,17,69,50,12,18,51,
- 52,19,20,53,54,21,22,55,70,56,
- 10,71,23,41,24,47,25,1,2,4,
- 95,0,63,46,17,69,50,18,51,52,
- 19,20,53,54,21,22,55,70,56,10,
- 71,23,41,24,47,25,16,15,49,9,
- 3,8,11,57,59,62,75,12,28,4,
- 7,6,5,1,2,30,0,119,0,46,
- 47,60,76,72,58,0,65,66,26,27,
- 13,14,31,36,42,45,43,44,29,39,
- 34,38,16,25,15,21,19,20,22,23,
- 18,17,24,10,33,37,35,32,40,8,
- 6,4,48,7,5,1,2,3,0,8,
- 6,4,3,5,7,74,1,2,0,10,
- 69,63,70,71,16,25,15,21,19,20,
- 22,23,18,17,24,76,58,72,95,118,
- 68,121,7,54,55,56,41,47,1,2,
- 53,52,51,12,50,5,4,46,49,9,
- 73,11,48,3,120,96,103,90,26,27,
- 8,6,13,14,91,92,88,89,28,93,
- 94,97,98,99,100,101,102,117,104,105,
- 106,107,108,109,110,111,112,113,67,64,
- 61,0,11,9,7,5,3,1,2,6,
- 8,4,72,0
+ 69,56,10,70,23,41,24,47,25,1,
+ 2,4,66,65,11,12,6,91,92,99,
+ 8,100,5,30,28,61,107,108,104,105,
+ 106,112,111,113,89,88,109,110,97,98,
+ 93,94,101,102,26,27,64,90,103,3,
+ 48,67,0,10,68,63,69,70,16,25,
+ 15,21,19,20,22,23,18,17,24,75,
+ 60,71,95,118,73,121,7,54,55,56,
+ 41,47,1,2,53,52,51,14,50,5,
+ 4,46,49,9,72,13,48,3,120,96,
+ 103,90,26,27,8,6,11,12,91,92,
+ 88,89,28,93,94,97,98,99,100,101,
+ 102,117,104,105,106,107,108,109,110,111,
+ 112,113,67,64,61,0,49,15,16,63,
+ 46,17,68,50,14,18,51,52,19,20,
+ 53,54,21,22,55,69,56,10,70,23,
+ 41,24,47,25,1,2,4,95,0,41,
+ 1,2,4,114,115,116,0,9,72,15,
+ 16,32,17,33,34,18,19,20,35,21,
+ 22,36,37,38,58,39,40,10,23,24,
+ 25,42,43,44,29,3,26,27,8,6,
+ 11,12,30,4,45,5,7,1,2,66,
+ 65,0,31,71,4,1,2,60,0,76,
+ 0,62,49,15,16,63,46,17,68,50,
+ 82,14,18,51,52,19,20,53,57,54,
+ 21,22,55,69,56,10,70,23,59,41,
+ 24,47,25,9,3,8,4,73,13,7,
+ 6,5,1,2,31,0,46,47,58,9,
+ 61,95,67,64,72,0,60,63,46,17,
+ 68,50,18,51,52,19,20,53,54,21,
+ 22,55,69,56,70,23,41,24,47,25,
+ 16,15,49,9,3,8,6,13,59,62,
+ 82,14,31,7,1,2,5,4,10,57,
+ 0,65,66,26,27,11,12,30,36,42,
+ 45,43,44,29,39,34,38,16,25,15,
+ 21,19,20,22,23,18,17,24,10,33,
+ 37,35,32,40,8,6,4,48,7,5,
+ 1,2,3,0,119,0,46,47,58,75,
+ 71,60,0,63,46,17,68,50,18,51,
+ 52,19,20,53,54,21,22,55,69,56,
+ 10,70,23,41,24,47,25,16,15,49,
+ 9,3,8,6,13,59,57,62,82,14,
+ 28,4,7,1,2,5,31,0,8,6,
+ 4,3,5,7,74,1,2,0,13,9,
+ 7,5,3,1,2,6,8,4,71,0
};
};
public final static byte asr[] = Asr.asr;
@@ -1844,59 +1812,59 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface Nasb {
public final static char nasb[] = {0,
- 161,12,13,15,15,194,12,12,190,31,
- 12,161,203,168,44,91,71,12,12,166,
- 166,58,5,96,262,12,12,12,12,166,
- 262,21,194,166,262,44,166,12,12,12,
- 12,12,204,12,54,211,194,44,44,223,
- 44,44,44,44,44,44,12,12,12,12,
- 12,12,12,12,12,12,12,44,12,96,
- 12,25,50,42,42,203,236,237,12,237,
- 124,237,227,237,230,10,194,96,96,42,
- 12,137,12,73,211,257,257,257,257,194,
- 142,192,12,262,262,146,1,44,87,71,
- 211,12,34,34,142,155,44,44,44,44,
- 44,44,44,44,44,44,44,44,44,44,
- 44,44,44,44,44,44,44,44,44,44,
- 44,44,44,44,44,44,155,44,12,11,
- 12,12,12,12,116,166,126,166,180,166,
- 12,12,166,180,194,11,12,12,166,137,
- 44,78,262,262,12,12,12,12,139,262,
- 44,203,145,15,15,12,12,12,10,194,
- 96,257,168,25,262,24,194,24,262,96,
+ 135,12,13,61,61,246,12,12,154,49,
+ 12,135,206,91,35,84,31,12,12,140,
+ 140,78,5,89,147,12,12,12,12,140,
+ 147,233,246,140,147,35,140,12,12,12,
+ 12,12,207,12,43,167,246,35,35,224,
+ 35,35,35,35,35,35,12,12,12,12,
+ 12,12,12,12,12,12,12,35,12,89,
+ 12,237,52,33,33,206,164,165,12,165,
+ 182,165,228,165,158,10,246,89,89,33,
+ 12,108,12,65,167,121,121,121,121,246,
+ 179,156,12,147,147,196,1,35,17,31,
+ 167,12,23,23,179,129,35,35,35,35,
+ 35,35,35,35,35,35,35,35,35,35,
+ 35,35,35,35,35,35,35,35,35,35,
+ 35,35,35,35,35,35,129,35,12,11,
+ 12,12,12,12,151,140,184,140,192,140,
+ 12,12,140,192,246,11,12,12,140,108,
+ 35,70,147,147,12,12,12,12,56,147,
+ 35,206,195,61,61,12,12,12,10,246,
+ 89,121,91,237,147,236,246,236,147,89,
12,12,12,12,12,12,12,12,12,12,
- 12,12,12,12,12,12,12,12,12,50,
- 42,249,166,166,40,70,40,166,228,11,
- 70,126,137,73,12,12,12,12,126,11,
- 114,262,132,166,194,71,44,257,166,100,
- 262,194,129,71,44,78,194,185,12,12,
- 12,17,241,249,40,40,63,126,228,78,
- 12,12,126,155,155,155,155,12,12,262,
- 12,159,12,173,69,126,262,61,116,12,
- 31,126,71,12,12,204,166,197,12,12,
- 204,85,180,78,44,228,262,262,262,262,
- 142,142,166,44,12,12,158,203,173,262,
- 126,166,105,12,155,116,130,12,12,25,
- 206,166,180,166,103,21,185,12,44,12,
- 83,166,215,180,204,204,11,262,262,137,
- 44,44,132,19,166,12,61,142,44,96,
- 130,185,12,206,242,12,228,17,173,25,
- 103,107,176,161,44,44,173,11,180,180,
- 166,137,105,262,96,166,197,12,166,12,
- 12,12,204,12,12,150,150,185,107,80,
- 12,180,12,262,11,11,89,166,206,166,
- 185,12,262,109,166,166,204,180,173,206,
- 166,12,12,166,119,176,11,142,166,12,
- 89,109,161,185,78,206,109,109,180,239,
- 173,257,257,98,152,12,44,12,185,12,
- 12,12,153,12,228,183,185,185,228,29,
- 262,137,260,78,78,78,239,185,12,67,
- 12,12,12,153,219,219,171,12,219,185,
- 185,12,166,166,262,185,12,257,262,161,
- 262,256,166,12,262,98,89,257,150,262,
- 262,166,153,12,153,185,161,155,153,67,
- 12,29,29,159,44,12,187,185,262,24,
- 153,262,185,153
+ 12,12,12,12,12,12,12,12,12,52,
+ 33,249,140,140,124,30,124,140,229,11,
+ 30,184,108,65,12,12,12,12,184,11,
+ 149,147,110,140,246,31,35,121,140,81,
+ 147,246,214,31,35,70,246,173,12,59,
+ 12,12,72,256,249,124,124,175,184,229,
+ 70,12,12,184,129,129,129,129,12,12,
+ 147,12,133,12,189,29,184,147,47,151,
+ 12,49,184,31,140,12,12,12,207,140,
+ 200,12,12,207,76,192,70,35,229,147,
+ 147,147,147,179,179,140,35,12,12,132,
+ 206,189,147,184,140,100,12,129,151,215,
+ 12,12,237,209,140,241,140,192,140,63,
+ 233,173,12,35,12,41,140,102,192,207,
+ 207,11,147,147,108,35,35,110,231,140,
+ 12,47,179,35,89,215,173,70,12,241,
+ 257,12,229,72,241,209,189,237,63,106,
+ 19,135,35,35,189,11,192,192,140,108,
+ 100,147,89,140,200,12,12,207,70,12,
+ 12,74,74,173,106,142,12,192,12,147,
+ 11,11,98,140,241,140,173,12,147,207,
+ 192,189,241,140,12,12,140,115,19,11,
+ 179,140,12,98,209,135,173,192,59,189,
+ 121,121,15,126,12,35,12,173,12,12,
+ 12,127,12,229,171,173,173,229,94,147,
+ 108,145,70,59,173,12,96,12,12,12,
+ 127,220,220,187,12,220,173,173,12,140,
+ 140,147,173,12,121,147,135,147,120,140,
+ 12,147,15,98,121,74,147,147,140,127,
+ 12,127,173,135,129,127,96,12,94,94,
+ 133,35,12,217,173,147,236,127,147,173,
+ 127
};
};
public final static char nasb[] = Nasb.nasb;
@@ -1904,33 +1872,33 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface Nasr {
public final static char nasr[] = {0,
- 3,13,7,10,147,145,121,144,143,5,
- 2,0,178,0,68,0,151,0,95,94,
- 48,61,57,5,7,10,2,0,58,0,
- 1,3,0,5,2,10,7,134,0,112,
- 0,43,4,5,7,10,2,13,0,64,
- 133,132,0,2,7,3,0,4,188,0,
- 138,0,5,102,185,0,115,0,48,2,
- 64,0,13,2,10,7,5,63,0,4,
- 63,0,184,0,186,0,170,0,123,0,
- 13,2,10,7,5,71,0,157,0,4,
- 172,0,155,0,136,0,156,0,104,4,
- 47,69,0,95,94,5,57,0,4,47,
- 39,174,0,5,44,2,3,0,2,116,
- 0,23,4,5,90,0,59,0,48,64,
- 0,4,97,0,31,94,95,4,0,111,
- 0,63,47,73,4,39,0,31,95,94,
- 2,10,7,48,61,4,0,4,33,0,
- 39,176,23,4,0,166,5,165,0,2,
- 62,0,4,39,38,0,4,173,0,4,
- 43,167,0,2,44,0,2,61,48,7,
- 10,4,90,5,0,4,47,69,72,0,
- 4,43,39,0,5,102,162,0,4,43,
- 103,0,7,10,3,13,5,1,0,2,
- 5,121,117,118,119,13,87,0,150,0,
- 38,48,7,10,2,4,153,0,4,47,
- 69,102,45,5,0,175,4,43,0,43,
- 4,31,0
+ 3,13,7,10,146,144,120,143,142,5,
+ 2,0,176,0,155,0,168,0,164,5,
+ 163,0,5,2,10,7,133,0,48,2,
+ 64,0,43,4,5,7,10,2,13,0,
+ 182,0,2,7,3,0,137,0,1,3,
+ 0,64,132,131,0,48,64,0,102,0,
+ 66,0,153,0,13,2,10,7,5,63,
+ 0,149,0,108,0,184,0,4,186,0,
+ 4,170,0,13,2,10,7,5,74,0,
+ 4,33,0,58,0,112,0,122,0,135,
+ 0,5,100,160,0,154,0,59,0,23,
+ 4,5,88,0,4,47,39,172,0,173,
+ 4,43,0,109,0,63,47,75,4,39,
+ 0,31,93,92,2,10,7,48,61,4,
+ 0,4,63,0,43,4,31,0,93,92,
+ 5,57,0,4,43,165,0,2,5,120,
+ 116,117,118,13,85,0,4,43,39,0,
+ 4,39,38,0,5,100,183,0,4,95,
+ 0,5,44,2,3,0,39,174,23,4,
+ 0,2,62,0,31,92,93,4,0,2,
+ 61,48,7,10,4,88,5,0,114,4,
+ 47,73,0,2,113,0,4,171,0,4,
+ 43,101,0,7,10,3,13,5,1,0,
+ 93,92,48,61,57,5,7,10,2,0,
+ 4,47,73,82,0,2,44,0,4,47,
+ 73,100,45,5,0,38,48,7,10,2,
+ 4,151,0
};
};
public final static char nasr[] = Nasr.nasr;
@@ -1939,18 +1907,18 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface TerminalIndex {
public final static char terminalIndex[] = {0,
115,116,2,32,14,11,81,10,117,102,
- 122,68,12,13,50,54,62,70,76,77,
- 88,89,104,107,109,8,9,20,114,95,
- 15,57,63,69,86,90,92,96,99,101,
+ 12,13,122,68,50,54,62,70,76,77,
+ 88,89,104,107,109,8,9,20,114,15,
+ 95,57,63,69,86,90,92,96,99,101,
106,111,112,113,46,56,108,1,49,66,
- 72,75,78,85,91,100,105,3,79,97,
- 21,48,55,45,60,80,34,121,65,93,
- 103,31,120,123,67,98,110,51,52,58,
- 59,61,71,73,74,87,94,18,19,7,
+ 72,75,78,85,91,100,79,97,105,3,
+ 21,48,55,45,60,80,34,65,93,103,
+ 31,120,121,123,98,110,51,52,58,59,
+ 61,67,71,73,74,87,94,18,19,7,
16,17,22,23,33,5,24,25,26,27,
28,29,6,35,36,37,38,39,40,41,
42,43,44,82,83,84,30,119,53,4,
- 125,64,124,118
+ 124,64,118
};
};
public final static char terminalIndex[] = TerminalIndex.terminalIndex;
@@ -1958,26 +1926,26 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface NonterminalIndex {
public final static char nonterminalIndex[] = {0,
- 132,137,139,0,0,138,236,136,0,230,
- 135,0,146,134,0,0,145,151,0,0,
- 152,161,182,162,163,164,165,166,167,168,
- 128,169,154,170,171,0,144,130,133,172,
- 0,141,155,140,180,0,0,0,0,0,
- 0,0,0,148,205,0,158,175,189,202,
- 206,0,129,0,178,0,0,207,0,0,
- 127,131,174,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,188,0,0,203,
- 213,160,209,210,211,0,0,0,0,149,
- 208,221,177,181,0,200,0,0,0,212,
- 0,0,0,241,242,150,191,192,193,194,
- 195,197,0,215,218,220,0,239,0,240,
- 0,142,143,147,0,0,157,159,0,173,
- 0,183,184,185,186,187,190,0,196,198,
- 0,199,204,0,0,216,217,0,222,225,
- 227,229,0,233,234,235,237,238,126,0,
- 153,156,0,176,0,179,0,201,214,219,
- 0,223,224,226,228,0,231,232,243,244,
- 0,0,0,0,0,0
+ 131,136,138,0,0,137,235,135,0,229,
+ 134,0,145,133,0,0,144,150,0,0,
+ 151,160,181,161,162,163,164,165,166,167,
+ 127,168,153,169,170,0,143,129,132,171,
+ 0,140,154,139,179,0,0,0,0,0,
+ 0,0,0,147,204,0,157,174,188,201,
+ 205,0,128,0,177,206,0,0,0,0,
+ 0,0,0,126,173,0,0,0,0,0,
+ 0,130,0,0,187,0,0,202,212,159,
+ 208,209,210,0,0,0,0,148,207,220,
+ 176,197,199,0,0,0,211,0,0,0,
+ 240,241,149,180,0,190,191,192,193,194,
+ 196,0,214,217,219,0,238,0,239,0,
+ 141,142,146,0,0,156,158,0,172,0,
+ 182,183,184,185,186,189,0,195,0,198,
+ 203,0,0,215,216,0,221,224,226,228,
+ 0,232,233,234,236,237,125,0,152,155,
+ 0,175,0,178,0,200,213,218,0,222,
+ 223,225,227,0,230,231,242,243,0,0,
+ 0,0,0,0
};
};
public final static char nonterminalIndex[] = NonterminalIndex.nonterminalIndex;
@@ -1985,18 +1953,18 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface ScopePrefix {
public final static char scopePrefix[] = {
- 151,578,597,529,545,556,567,362,261,275,
- 297,303,309,42,286,382,420,159,586,472,
- 20,51,71,80,85,90,127,187,292,315,
- 326,337,267,281,500,27,372,337,605,27,
- 209,240,1,14,61,76,106,141,222,320,
- 333,342,351,355,438,465,494,521,525,615,
- 619,623,97,7,97,141,400,416,429,449,
- 513,429,536,552,563,574,199,483,56,56,
- 148,214,217,235,256,217,217,56,359,444,
- 462,469,148,56,636,110,228,404,456,116,
- 116,228,56,228,391,169,104,442,627,634,
- 627,634,65,410,134,104,104,245
+ 151,572,591,523,539,550,561,356,261,275,
+ 297,303,42,286,376,414,159,580,466,20,
+ 51,71,80,85,90,127,187,292,309,320,
+ 331,267,281,494,27,366,331,599,27,209,
+ 240,1,14,61,76,106,141,222,314,327,
+ 336,345,349,432,459,488,515,519,609,613,
+ 617,97,7,97,141,394,410,423,443,507,
+ 423,530,546,557,568,199,477,56,56,148,
+ 214,217,235,256,217,217,56,353,438,456,
+ 463,148,56,630,110,228,398,450,116,116,
+ 228,56,228,385,169,104,436,621,628,621,
+ 628,65,404,134,104,104,245
};
};
public final static char scopePrefix[] = ScopePrefix.scopePrefix;
@@ -2004,18 +1972,18 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface ScopeSuffix {
public final static char scopeSuffix[] = {
- 18,5,5,5,5,5,5,369,132,95,
- 132,132,132,48,272,388,426,165,67,478,
- 25,25,25,59,59,95,132,192,132,132,
- 331,331,272,101,505,38,377,592,610,32,
- 203,203,5,18,5,59,95,132,226,324,
- 324,324,95,95,132,238,5,5,5,5,
- 5,238,226,11,101,145,369,369,369,453,
- 505,433,540,540,540,540,203,487,59,59,
- 5,5,220,238,5,259,259,349,95,447,
- 5,238,5,498,5,113,346,407,459,119,
- 123,231,517,508,394,172,95,95,629,629,
- 631,631,67,412,136,194,179,247
+ 18,5,5,5,5,5,5,363,132,95,
+ 132,132,48,272,382,420,165,67,472,25,
+ 25,25,59,59,95,132,192,132,132,325,
+ 325,272,101,499,38,371,586,604,32,203,
+ 203,5,18,5,59,95,132,226,318,318,
+ 318,95,95,132,238,5,5,5,5,5,
+ 238,226,11,101,145,363,363,363,447,499,
+ 427,534,534,534,534,203,481,59,59,5,
+ 5,220,238,5,259,259,343,95,441,5,
+ 238,5,492,5,113,340,401,453,119,123,
+ 231,511,502,388,172,95,95,623,623,625,
+ 625,67,406,136,194,179,247
};
};
public final static char scopeSuffix[] = ScopeSuffix.scopeSuffix;
@@ -2023,18 +1991,18 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface ScopeLhs {
public final static char scopeLhs[] = {
- 45,17,17,17,17,17,17,76,81,46,
- 86,85,119,66,52,76,75,45,17,19,
- 3,6,9,162,162,159,117,45,84,119,
- 118,120,53,46,134,129,76,17,17,129,
- 96,154,131,79,165,162,159,125,56,118,
- 118,120,177,50,58,138,18,17,17,17,
- 17,17,12,115,159,125,76,75,75,36,
- 134,75,17,17,17,17,96,19,166,162,
- 178,94,101,68,55,153,65,120,77,74,
- 139,138,170,134,16,159,120,103,21,126,
- 126,57,134,134,76,45,159,70,132,44,
- 132,44,165,103,117,45,45,154
+ 45,17,17,17,17,17,17,78,84,46,
+ 71,118,68,52,78,77,45,17,19,3,
+ 6,9,160,160,157,116,45,72,118,117,
+ 119,53,46,133,128,78,17,17,128,94,
+ 152,130,81,163,160,157,124,56,117,117,
+ 119,175,50,58,137,18,17,17,17,17,
+ 17,12,112,157,124,78,77,77,36,133,
+ 77,17,17,17,17,94,19,164,160,176,
+ 92,99,66,55,151,65,119,79,76,138,
+ 137,168,133,16,157,119,101,21,125,125,
+ 57,133,133,78,45,157,67,131,44,131,
+ 44,163,101,116,45,45,152
};
};
public final static char scopeLhs[] = ScopeLhs.scopeLhs;
@@ -2042,18 +2010,18 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface ScopeLa {
public final static byte scopeLa[] = {
- 119,73,73,73,73,73,73,73,68,11,
- 68,68,68,61,1,73,122,58,3,73,
- 61,61,61,1,1,11,68,58,68,68,
- 1,1,1,1,4,61,11,1,1,61,
- 73,73,73,119,73,1,11,68,1,1,
- 1,1,11,11,68,118,73,73,73,73,
- 73,118,1,73,1,64,73,73,73,72,
- 4,73,61,61,61,61,73,3,1,1,
- 73,73,3,118,73,1,1,1,11,72,
- 73,118,73,5,73,1,30,67,73,1,
- 1,6,1,30,77,76,11,11,4,4,
- 4,4,3,1,58,1,1,3
+ 119,72,72,72,72,72,72,72,73,13,
+ 73,73,61,1,72,122,60,3,72,61,
+ 61,61,1,1,13,73,60,73,73,1,
+ 1,1,1,4,61,13,1,1,61,72,
+ 72,72,119,72,1,13,73,1,1,1,
+ 1,13,13,73,118,72,72,72,72,72,
+ 118,1,72,1,64,72,72,72,71,4,
+ 72,61,61,61,61,72,3,1,1,72,
+ 72,3,118,72,1,1,1,13,71,72,
+ 118,72,5,72,1,31,67,72,1,1,
+ 6,1,31,76,75,13,13,4,4,4,
+ 4,3,1,60,1,1,3
};
};
public final static byte scopeLa[] = ScopeLa.scopeLa;
@@ -2061,18 +2029,18 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface ScopeStateSet {
public final static char scopeStateSet[] = {
- 60,243,243,243,243,243,243,34,71,60,
- 71,71,101,81,62,34,34,60,243,243,
- 175,217,218,54,54,90,101,60,71,101,
- 101,101,62,60,93,44,34,243,243,44,
- 148,57,22,34,26,54,90,306,158,101,
- 101,101,20,62,29,51,243,243,243,243,
- 243,243,238,6,90,306,34,34,34,275,
- 93,34,243,243,243,243,148,243,26,54,
- 156,148,150,144,158,57,163,101,34,34,
- 48,51,96,93,243,90,101,1,244,101,
- 101,105,93,93,34,60,90,11,98,121,
- 98,121,26,1,101,60,60,57
+ 74,244,244,244,244,244,244,84,65,74,
+ 63,102,63,76,84,84,74,244,244,176,
+ 218,219,54,54,60,102,74,63,102,102,
+ 102,76,74,94,44,84,244,244,44,149,
+ 57,22,84,26,54,60,307,159,102,102,
+ 102,20,76,29,51,244,244,244,244,244,
+ 244,239,6,60,307,84,84,84,276,94,
+ 84,244,244,244,244,149,244,26,54,157,
+ 149,151,145,159,57,164,102,84,84,48,
+ 51,97,94,244,60,102,1,245,102,102,
+ 106,94,94,84,74,60,11,99,122,99,
+ 122,26,1,102,74,74,57
};
};
public final static char scopeStateSet[] = ScopeStateSet.scopeStateSet;
@@ -2080,70 +2048,70 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface ScopeRhs {
public final static char scopeRhs[] = {0,
- 314,3,60,0,128,0,313,3,119,0,
- 128,175,0,128,182,76,0,217,0,251,
- 128,28,126,0,21,0,292,128,28,30,
- 0,21,55,0,34,134,0,21,55,0,
- 0,292,128,28,30,193,0,21,131,0,
- 251,128,28,131,0,186,129,0,144,0,
- 221,3,290,0,290,0,2,0,128,0,
- 251,128,28,134,0,186,129,226,0,186,
- 129,41,226,0,186,129,310,41,0,132,
- 188,168,129,0,130,0,188,168,129,0,
- 136,130,0,171,0,306,128,171,0,128,
- 171,0,223,130,0,168,245,0,139,0,
- 0,0,137,0,0,0,305,128,58,250,
- 0,129,0,250,0,3,0,0,129,0,
- 304,128,58,0,45,129,0,157,3,0,
- 128,280,279,128,76,277,171,0,279,128,
- 76,277,171,0,216,0,217,0,277,171,
- 0,98,0,0,216,0,217,0,204,98,
- 0,0,216,0,217,0,279,128,277,171,
- 0,216,0,204,0,0,216,0,232,128,
- 3,0,128,0,0,0,0,0,232,128,
- 3,218,0,225,3,0,214,128,0,209,
- 0,188,168,172,0,136,0,168,129,0,
- 11,0,0,0,216,48,0,127,0,232,
- 128,3,179,0,179,0,2,0,0,128,
- 0,0,0,0,0,189,3,0,202,0,
- 229,128,58,29,12,0,186,129,59,57,
- 0,198,130,0,132,186,129,275,57,0,
- 186,129,275,57,0,186,129,67,125,59,
- 0,229,128,58,59,0,229,128,58,123,
- 59,0,229,128,58,126,59,0,272,128,
- 58,125,69,0,272,128,58,69,0,186,
- 129,69,0,137,0,188,186,129,245,0,
- 139,0,186,129,245,0,188,168,129,10,
- 0,168,129,10,0,95,139,0,149,0,
- 265,128,147,0,265,128,171,0,163,86,
- 0,297,162,299,300,3,83,0,128,174,
- 0,299,300,3,83,0,130,0,128,174,
- 0,163,3,77,197,82,0,128,130,0,
- 197,82,0,110,2,133,128,130,0,227,
- 3,77,0,189,167,0,34,172,0,167,
- 0,178,34,172,0,227,3,87,0,197,
- 155,227,3,85,0,64,174,0,227,3,
- 85,0,128,174,64,174,0,298,128,58,
- 0,163,0,216,79,0,31,0,163,117,
- 159,0,31,172,0,178,3,0,128,152,
- 0,221,3,0,216,48,262,0,163,48,
- 0,178,3,294,66,129,0,128,0,0,
- 0,0,294,66,129,0,2,148,128,0,
- 0,0,0,178,3,36,0,150,0,127,
- 30,168,129,0,32,150,0,95,139,32,
- 150,0,224,186,129,0,149,32,150,0,
- 178,3,40,0,163,3,40,0,163,3,
- 61,178,28,32,0,178,28,32,0,21,
- 2,133,128,0,163,3,61,178,28,35,
- 0,178,28,35,0,163,3,61,178,28,
- 37,0,178,28,37,0,163,3,61,178,
- 28,33,0,178,28,33,0,221,3,127,
- 188,168,129,10,0,127,188,168,129,10,
- 0,139,2,0,128,0,221,3,126,172,
- 168,129,10,0,172,168,129,10,0,137,
- 2,0,128,0,221,3,137,0,221,3,
- 141,0,163,48,141,0,257,0,32,0,
- 32,142,0,166,0,163,3,0
+ 311,3,58,0,127,0,310,3,119,0,
+ 127,174,0,127,181,75,0,216,0,249,
+ 127,28,125,0,21,0,289,127,28,31,
+ 0,21,55,0,34,133,0,21,55,0,
+ 0,289,127,28,31,196,0,21,130,0,
+ 249,127,28,130,0,185,128,0,143,0,
+ 218,3,287,0,287,0,2,0,127,0,
+ 249,127,28,133,0,185,128,223,0,185,
+ 128,41,223,0,185,128,307,41,0,131,
+ 187,167,128,0,129,0,187,167,128,0,
+ 135,129,0,170,0,303,127,170,0,127,
+ 170,0,222,129,0,167,243,0,138,0,
+ 0,0,136,0,0,0,302,127,60,248,
+ 0,128,0,248,0,3,0,0,128,0,
+ 301,127,60,0,45,128,0,156,3,0,
+ 127,277,276,127,75,274,170,0,276,127,
+ 75,274,170,0,215,0,216,0,274,170,
+ 0,98,0,0,215,0,216,0,203,98,
+ 0,0,215,0,216,0,276,127,274,170,
+ 0,215,0,203,0,0,215,0,228,127,
+ 3,0,127,0,0,0,0,0,228,127,
+ 3,215,0,222,3,0,211,127,0,208,
+ 0,187,167,171,0,135,0,167,128,0,
+ 11,0,0,0,213,48,0,126,0,228,
+ 127,3,178,0,178,0,2,0,0,127,
+ 0,0,0,0,0,188,3,0,201,0,
+ 238,127,60,29,14,0,185,128,57,59,
+ 0,197,129,0,131,185,128,272,59,0,
+ 185,128,272,59,0,185,128,67,124,57,
+ 0,238,127,60,57,0,238,127,60,225,
+ 57,0,270,127,60,124,68,0,270,127,
+ 60,68,0,185,128,68,0,136,0,187,
+ 185,128,243,0,138,0,185,128,243,0,
+ 187,167,128,10,0,167,128,10,0,95,
+ 138,0,148,0,263,127,146,0,263,127,
+ 170,0,162,86,0,294,161,296,297,3,
+ 83,0,127,173,0,296,297,3,83,0,
+ 129,0,127,173,0,162,3,76,198,81,
+ 0,127,129,0,198,81,0,110,2,132,
+ 127,129,0,224,3,76,0,188,166,0,
+ 34,171,0,166,0,177,34,171,0,224,
+ 3,87,0,198,154,224,3,85,0,64,
+ 173,0,224,3,85,0,127,173,64,173,
+ 0,295,127,60,0,162,0,213,78,0,
+ 31,0,162,117,158,0,31,171,0,177,
+ 3,0,127,151,0,218,3,0,213,48,
+ 260,0,162,48,0,177,3,291,66,128,
+ 0,127,0,0,0,0,291,66,128,0,
+ 2,147,127,0,0,0,0,177,3,36,
+ 0,149,0,126,31,167,128,0,32,149,
+ 0,95,138,32,149,0,221,185,128,0,
+ 148,32,149,0,177,3,40,0,162,3,
+ 40,0,162,3,61,177,28,32,0,177,
+ 28,32,0,21,2,132,127,0,162,3,
+ 61,177,28,35,0,177,28,35,0,162,
+ 3,61,177,28,37,0,177,28,37,0,
+ 162,3,61,177,28,33,0,177,28,33,
+ 0,218,3,126,187,167,128,10,0,126,
+ 187,167,128,10,0,138,2,0,127,0,
+ 218,3,125,171,167,128,10,0,171,167,
+ 128,10,0,136,2,0,127,0,218,3,
+ 136,0,218,3,140,0,162,48,140,0,
+ 255,0,32,0,32,141,0,165,0,162,
+ 3,0
};
};
public final static char scopeRhs[] = ScopeRhs.scopeRhs;
@@ -2151,37 +2119,37 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface ScopeState {
public final static char scopeState[] = {0,
- 4591,4706,4679,3960,0,1981,3205,811,1313,0,
- 3504,3447,3390,3333,3276,3219,3162,2922,2694,3140,
- 0,2589,1932,1247,0,3501,3175,0,1588,1462,
- 581,2667,2492,3504,3447,3390,3333,3276,3219,3162,
- 2922,2694,0,4625,3126,4599,0,2484,2410,0,
- 806,790,0,3789,807,0,3095,4455,0,2633,
- 4516,3504,3447,3390,3333,3276,3219,3162,2922,2694,
- 2858,2794,3886,2730,3832,2624,3778,3724,3670,0,
- 2858,2794,3886,2730,3832,2624,3778,3724,3670,2633,
- 4516,0,793,657,0,1162,0,3186,721,0,
- 535,4326,2542,0,3077,577,2825,4499,3228,3476,
- 3653,1249,2761,2692,3136,809,2896,4345,2646,0,
- 4573,4569,4550,4542,3919,3866,3704,3696,4667,4663,
- 4654,3472,3415,4643,3358,3301,3851,3244,2713,3797,
- 3688,3528,0,1478,1436,1051,568,577,2692,3940,
- 3063,3052,2853,2883,0,558,0,3095,577,4499,
- 4455,4345,3940,4301,4470,4427,3077,4334,3063,3653,
- 3052,2584,4312,0,4573,3188,4569,3169,3090,4550,
- 4542,3919,2956,1393,3866,3704,3683,3696,3679,3675,
- 3373,3259,2652,4667,2721,4663,4654,2580,1258,3472,
- 3415,2891,4643,3358,3301,914,1263,3851,3244,4326,
- 2713,3797,3688,2542,626,3528,727,3940,4301,4470,
- 4427,3077,4334,2235,3095,577,4499,1114,3063,3653,
- 3052,4455,930,640,4345,2584,4312,988,2147,2059,
- 793,657,1047,4279,4257,2249,2286,2319,590,2406,
- 2378,2349,2597,2551,2515,2488,2461,2434,3630,3607,
- 3584,3027,3002,4235,4213,4191,4169,4147,4125,4103,
- 4081,4059,4037,4009,1943,2198,2161,2110,2073,1267,
- 1216,2022,1174,1985,1901,870,1859,1817,1775,1733,
- 1691,1649,1607,1565,1523,1481,1439,1397,535,815,
- 738,683,1347,1131,1309,1005,946,1072,0
+ 2695,4668,4651,3638,0,2998,2797,1773,556,0,
+ 3292,3233,3174,3115,3056,2997,2938,2723,2664,3147,
+ 0,3027,2995,1899,0,2629,621,0,3292,3233,
+ 1675,1633,3174,3115,3056,2997,1591,2938,2723,2664,
+ 4117,2536,0,4255,2911,3471,0,2766,2144,0,
+ 729,728,0,2239,3116,0,2889,4443,0,4457,
+ 4246,0,4457,4246,3561,4170,4116,3521,4076,4022,
+ 3982,3464,0,4457,4246,3561,4170,4116,3521,4076,
+ 4022,3982,3464,3292,3233,3174,3115,3056,2997,2938,
+ 2723,2664,0,792,654,0,564,0,3158,788,
+ 0,533,2967,2540,0,2871,3955,2647,4463,3461,
+ 4213,3443,1253,2644,2916,3099,2618,3024,4429,2632,
+ 0,4547,4543,4539,4494,4378,4306,4134,3999,4645,
+ 4641,4629,3976,3538,4625,3316,3202,4619,3198,3139,
+ 4615,4596,4153,0,2314,1992,1051,857,3955,2916,
+ 3618,2857,2580,3263,3458,0,537,0,2889,3955,
+ 4463,4443,4429,3618,4201,4506,4352,2871,4329,2857,
+ 3443,2580,4363,4224,0,4547,3208,4543,2240,1396,
+ 4539,4494,4378,1168,913,4306,4134,3654,3999,3650,
+ 3646,3585,3553,3476,4645,3483,4641,4629,3454,2777,
+ 3976,3538,2883,4625,3316,3202,2234,1001,4619,3198,
+ 2967,3139,4615,4596,2540,779,4153,724,3618,4201,
+ 4506,4352,2871,4329,2148,2889,3955,4463,2062,2857,
+ 3443,2580,4443,1259,1113,4429,4363,4224,926,988,
+ 575,792,654,1047,3933,3911,2246,2283,588,2316,
+ 2404,2376,2347,2595,2549,2513,2486,2459,2432,3420,
+ 3397,3374,2832,2805,3889,3867,3845,3823,3801,3779,
+ 3757,3735,3713,3685,627,1946,2197,2160,2111,2074,
+ 1272,1214,2025,1172,1988,1904,868,1862,1820,1778,
+ 1736,1694,1652,1610,1568,1526,1484,1442,1400,533,
+ 813,735,680,1351,1125,1314,1005,946,1071,0
};
};
public final static char scopeState[] = ScopeState.scopeState;
@@ -2189,59 +2157,59 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public interface InSymb {
public final static char inSymb[] = {0,
- 0,293,189,179,185,172,131,134,7,5,
- 126,3,128,3,67,48,168,166,126,28,
- 28,167,128,48,3,65,66,126,125,28,
- 189,214,129,6,157,128,58,40,32,35,
- 37,33,10,137,4,3,129,36,31,5,
- 14,13,6,8,27,26,141,146,149,148,
- 151,150,153,152,156,154,158,60,159,216,
- 159,188,4,128,128,128,266,267,250,268,
- 245,269,69,270,271,10,129,48,48,128,
- 168,128,264,128,3,28,28,28,28,129,
- 3,7,126,178,163,167,128,65,66,168,
- 3,127,103,120,3,48,90,96,14,13,
+ 0,290,188,178,184,171,130,133,7,5,
+ 125,3,127,3,67,48,167,165,125,28,
+ 28,166,127,48,3,65,66,125,124,28,
+ 188,211,128,6,156,127,60,40,32,35,
+ 37,33,10,136,4,3,128,36,30,5,
+ 12,11,6,8,27,26,140,145,148,147,
+ 150,149,152,151,155,153,157,58,158,213,
+ 158,187,4,127,127,127,264,265,248,266,
+ 243,267,68,268,269,10,128,48,48,127,
+ 167,127,262,127,3,28,28,28,28,128,
+ 3,7,125,177,162,166,127,65,66,167,
+ 3,126,103,120,3,48,90,96,12,11,
92,91,6,94,93,61,28,88,89,8,
98,97,100,99,101,113,112,111,110,109,
- 108,107,106,105,104,67,117,102,257,188,
- 251,135,254,251,214,58,168,235,129,127,
- 126,125,58,129,129,186,168,251,6,183,
- 64,304,178,163,178,178,178,178,168,221,
- 155,128,3,219,218,137,127,126,10,129,
- 48,294,3,188,178,30,129,30,221,163,
- 148,148,146,146,146,150,150,150,150,149,
- 149,152,151,151,154,153,156,163,158,4,
- 64,128,127,126,128,186,128,58,128,186,
- 168,30,128,64,61,61,61,61,188,172,
- 214,225,128,3,129,168,195,3,295,167,
- 157,129,186,168,72,305,129,169,226,30,
- 193,57,171,307,128,128,72,188,128,272,
- 125,273,188,3,3,3,3,127,126,232,
- 233,147,234,128,168,30,178,128,128,224,
- 5,30,168,28,30,275,277,128,179,309,
- 226,41,129,272,67,64,163,163,163,163,
- 3,3,155,67,225,189,3,128,64,232,
- 188,155,259,262,48,181,4,125,127,188,
- 61,28,129,76,128,214,306,126,72,285,
- 189,3,64,129,41,310,186,221,221,128,
- 67,67,128,214,155,127,128,3,48,163,
- 4,132,12,30,171,62,59,57,128,186,
- 128,279,72,64,72,67,128,186,129,129,
- 222,128,259,221,216,29,128,3,58,123,
- 126,125,59,292,30,10,63,132,279,58,
- 289,129,290,232,186,186,128,222,128,58,
- 265,276,29,128,58,58,67,129,64,61,
- 28,235,235,280,128,64,186,3,155,60,
- 128,128,64,155,229,228,128,128,129,186,
- 128,67,67,128,298,81,79,1,163,87,
- 85,83,82,77,84,86,80,78,59,76,
- 221,128,3,229,229,229,186,274,292,281,
- 119,9,216,72,3,3,3,197,3,125,
- 163,125,182,222,314,274,61,3,227,167,
- 227,300,147,77,227,128,128,64,63,95,
- 313,167,155,189,155,299,128,3,155,281,
- 235,155,155,128,67,197,162,265,163,67,
- 122,297,155,155
+ 108,107,106,105,104,67,117,102,255,187,
+ 249,134,252,249,211,60,167,231,128,126,
+ 125,124,60,128,128,185,167,249,6,182,
+ 64,301,177,162,177,177,177,177,167,218,
+ 154,127,3,216,215,136,126,125,10,128,
+ 48,291,3,187,177,31,128,31,218,162,
+ 147,147,145,145,145,149,149,149,149,148,
+ 148,151,150,150,153,152,155,162,157,4,
+ 64,127,126,125,127,185,127,60,127,185,
+ 167,31,127,64,61,61,61,61,187,171,
+ 211,222,127,3,128,167,197,3,292,166,
+ 156,128,185,167,71,302,128,168,223,57,
+ 31,196,59,170,304,127,127,71,187,127,
+ 270,124,271,187,3,3,3,3,126,125,
+ 228,229,146,230,127,167,31,177,127,127,
+ 221,5,31,167,60,225,28,31,272,274,
+ 127,178,306,223,41,128,270,67,64,162,
+ 162,162,162,3,3,154,67,222,188,3,
+ 127,64,228,187,154,257,260,48,180,4,
+ 124,126,187,127,60,61,28,128,75,127,
+ 211,303,125,71,282,188,3,64,128,41,
+ 307,185,218,218,127,67,67,127,211,154,
+ 126,127,3,48,162,4,131,238,14,31,
+ 170,62,57,59,237,127,127,185,127,276,
+ 71,64,71,67,127,185,128,128,219,127,
+ 257,218,213,29,127,3,124,57,238,289,
+ 31,10,63,131,276,60,286,128,287,228,
+ 185,185,127,219,127,60,263,273,29,67,
+ 128,64,61,28,231,231,277,127,64,185,
+ 3,154,58,127,127,64,154,128,185,127,
+ 67,67,127,295,80,78,1,162,87,85,
+ 83,81,76,84,86,79,77,57,75,218,
+ 127,3,238,185,225,289,278,119,9,213,
+ 71,3,3,3,198,3,124,162,124,181,
+ 219,311,225,61,3,224,166,224,297,146,
+ 76,224,127,127,64,63,95,310,166,154,
+ 188,154,296,127,3,154,278,231,154,154,
+ 127,67,198,161,263,162,67,122,294,154,
+ 154
};
};
public final static char inSymb[] = InSymb.inSymb;
@@ -2373,7 +2341,6 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
"RightBrace",
"SemiColon",
"ERROR_TOKEN",
- "original_namespace_name",
"EOF_TOKEN",
"no_function_declarator_start",
"]",
@@ -2507,8 +2474,8 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public final static int
ERROR_SYMBOL = 74,
- SCOPE_UBOUND = 117,
- SCOPE_SIZE = 118,
+ SCOPE_UBOUND = 116,
+ SCOPE_SIZE = 117,
MAX_NAME_LENGTH = 37;
public final int getErrorSymbol() { return ERROR_SYMBOL; }
@@ -2517,20 +2484,20 @@ public class CPPNoFunctionDeclaratorParserprs implements lpg.lpgjavaruntime.Pars
public final int getMaxNameLength() { return MAX_NAME_LENGTH; }
public final static int
- NUM_STATES = 524,
- NT_OFFSET = 124,
- LA_STATE_OFFSET = 5788,
+ NUM_STATES = 521,
+ NT_OFFSET = 123,
+ LA_STATE_OFFSET = 5695,
MAX_LA = 2147483647,
- NUM_RULES = 534,
- NUM_NONTERMINALS = 196,
- NUM_SYMBOLS = 320,
+ NUM_RULES = 532,
+ NUM_NONTERMINALS = 194,
+ NUM_SYMBOLS = 317,
SEGMENT_SIZE = 8192,
- START_STATE = 4312,
+ START_STATE = 4224,
IDENTIFIER_SYMBOL = 0,
EOFT_SYMBOL = 121,
EOLT_SYMBOL = 121,
- ACCEPT_ACTION = 4864,
- ERROR_ACTION = 5254;
+ ACCEPT_ACTION = 4773,
+ ERROR_ACTION = 5163;
public final static boolean BACKTRACK = true;
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParsersym.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParsersym.java
index def34ebe76f..7c6422b7e3e 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParsersym.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoFunctionDeclaratorParsersym.java
@@ -18,24 +18,24 @@ public interface CPPNoFunctionDeclaratorParsersym {
TK_asm = 62,
TK_auto = 49,
TK_bool = 15,
- TK_break = 78,
- TK_case = 79,
+ TK_break = 77,
+ TK_case = 78,
TK_catch = 119,
TK_char = 16,
TK_class = 63,
TK_const = 46,
TK_const_cast = 32,
- TK_continue = 80,
- TK_default = 81,
+ TK_continue = 79,
+ TK_default = 80,
TK_delete = 65,
- TK_do = 82,
+ TK_do = 81,
TK_double = 17,
TK_dynamic_cast = 33,
TK_else = 122,
- TK_enum = 69,
+ TK_enum = 68,
TK_explicit = 50,
- TK_export = 75,
- TK_extern = 12,
+ TK_export = 82,
+ TK_extern = 14,
TK_false = 34,
TK_float = 18,
TK_for = 83,
@@ -46,7 +46,7 @@ public interface CPPNoFunctionDeclaratorParsersym {
TK_int = 19,
TK_long = 20,
TK_mutable = 53,
- TK_namespace = 59,
+ TK_namespace = 57,
TK_new = 66,
TK_operator = 7,
TK_private = 114,
@@ -60,24 +60,24 @@ public interface CPPNoFunctionDeclaratorParsersym {
TK_sizeof = 36,
TK_static = 55,
TK_static_cast = 37,
- TK_struct = 70,
+ TK_struct = 69,
TK_switch = 87,
- TK_template = 30,
+ TK_template = 31,
TK_this = 38,
- TK_throw = 60,
- TK_try = 76,
+ TK_throw = 58,
+ TK_try = 75,
TK_true = 39,
TK_typedef = 56,
TK_typeid = 40,
TK_typename = 10,
- TK_union = 71,
+ TK_union = 70,
TK_unsigned = 23,
- TK_using = 57,
+ TK_using = 59,
TK_virtual = 41,
TK_void = 24,
TK_volatile = 47,
TK_wchar_t = 25,
- TK_while = 77,
+ TK_while = 76,
TK_integer = 42,
TK_floating = 43,
TK_charconst = 44,
@@ -85,10 +85,10 @@ public interface CPPNoFunctionDeclaratorParsersym {
TK_identifier = 1,
TK_Completion = 2,
TK_EndOfCompletion = 9,
- TK_Invalid = 124,
+ TK_Invalid = 123,
TK_LeftBracket = 48,
TK_LeftParen = 3,
- TK_LeftBrace = 58,
+ TK_LeftBrace = 60,
TK_Dot = 120,
TK_DotStar = 96,
TK_Arrow = 103,
@@ -97,10 +97,10 @@ public interface CPPNoFunctionDeclaratorParsersym {
TK_MinusMinus = 27,
TK_And = 8,
TK_Star = 6,
- TK_Plus = 13,
- TK_Minus = 14,
+ TK_Plus = 11,
+ TK_Minus = 12,
TK_Tilde = 5,
- TK_Bang = 31,
+ TK_Bang = 30,
TK_Slash = 91,
TK_Percent = 92,
TK_RightShift = 88,
@@ -116,7 +116,7 @@ public interface CPPNoFunctionDeclaratorParsersym {
TK_AndAnd = 101,
TK_OrOr = 102,
TK_Question = 117,
- TK_Colon = 72,
+ TK_Colon = 71,
TK_ColonColon = 4,
TK_DotDotDot = 95,
TK_Assign = 67,
@@ -133,11 +133,10 @@ public interface CPPNoFunctionDeclaratorParsersym {
TK_Comma = 64,
TK_zero = 45,
TK_RightBracket = 118,
- TK_RightParen = 73,
- TK_RightBrace = 68,
- TK_SemiColon = 11,
+ TK_RightParen = 72,
+ TK_RightBrace = 73,
+ TK_SemiColon = 13,
TK_ERROR_TOKEN = 74,
- TK_original_namespace_name = 123,
TK_EOF_TOKEN = 121;
public final static String orderedTerminalSymbols[] = {
@@ -152,10 +151,10 @@ public interface CPPNoFunctionDeclaratorParsersym {
"And",
"EndOfCompletion",
"typename",
- "SemiColon",
- "extern",
"Plus",
"Minus",
+ "SemiColon",
+ "extern",
"bool",
"char",
"double",
@@ -171,8 +170,8 @@ public interface CPPNoFunctionDeclaratorParsersym {
"MinusMinus",
"LT",
"stringlit",
- "template",
"Bang",
+ "template",
"const_cast",
"dynamic_cast",
"false",
@@ -198,10 +197,10 @@ public interface CPPNoFunctionDeclaratorParsersym {
"register",
"static",
"typedef",
- "using",
- "LeftBrace",
"namespace",
"throw",
+ "using",
+ "LeftBrace",
"GT",
"asm",
"class",
@@ -209,14 +208,13 @@ public interface CPPNoFunctionDeclaratorParsersym {
"delete",
"new",
"Assign",
- "RightBrace",
"enum",
"struct",
"union",
"Colon",
"RightParen",
+ "RightBrace",
"ERROR_TOKEN",
- "export",
"try",
"while",
"break",
@@ -224,6 +222,7 @@ public interface CPPNoFunctionDeclaratorParsersym {
"continue",
"default",
"do",
+ "export",
"for",
"goto",
"if",
@@ -264,7 +263,6 @@ public interface CPPNoFunctionDeclaratorParsersym {
"Dot",
"EOF_TOKEN",
"else",
- "original_namespace_name",
"Invalid"
};
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParser.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParser.java
index c1f8b5d2a54..6ddd1200b93 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParser.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParser.java
@@ -1519,758 +1519,751 @@ public CPPParser(String[] mapFrom) { // constructor
}
//
- // Rule 301: original_namespace_definition ::= namespace identifier_name { <openscope-ast> declaration_seq_opt }
+ // Rule 299: named_namespace_definition ::= namespace namespace_name { <openscope-ast> declaration_seq_opt }
//
- case 301: { action.builder.
- consumeNamespaceDefinition(true); break;
- }
-
- //
- // Rule 302: extension_namespace_definition ::= namespace original_namespace_name { <openscope-ast> declaration_seq_opt }
- //
- case 302: { action.builder.
+ case 299: { action.builder.
consumeNamespaceDefinition(true); break;
}
//
- // Rule 303: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
+ // Rule 300: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
//
- case 303: { action.builder.
+ case 300: { action.builder.
consumeNamespaceDefinition(false); break;
}
//
- // Rule 304: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 301: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 304: { action.builder.
+ case 301: { action.builder.
consumeNamespaceAliasDefinition(); break;
}
//
- // Rule 305: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
+ // Rule 302: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
//
- case 305: { action.builder.
+ case 302: { action.builder.
consumeUsingDeclaration(); break;
}
//
- // Rule 306: typename_opt ::= typename
+ // Rule 303: typename_opt ::= typename
//
- case 306: { action.builder.
+ case 303: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 307: typename_opt ::= $Empty
+ // Rule 304: typename_opt ::= $Empty
//
- case 307: { action.builder.
+ case 304: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 308: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 305: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 308: { action.builder.
+ case 305: { action.builder.
consumeUsingDirective(); break;
}
//
- // Rule 309: asm_definition ::= asm ( stringlit ) ;
+ // Rule 306: asm_definition ::= asm ( stringlit ) ;
//
- case 309: { action.builder.
+ case 306: { action.builder.
consumeDeclarationASM(); break;
}
//
- // Rule 310: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
+ // Rule 307: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
//
- case 310: { action.builder.
+ case 307: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 311: linkage_specification ::= extern stringlit <openscope-ast> declaration
+ // Rule 308: linkage_specification ::= extern stringlit <openscope-ast> declaration
//
- case 311: { action.builder.
+ case 308: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 316: init_declarator_complete ::= init_declarator
+ // Rule 313: init_declarator_complete ::= init_declarator
//
- case 316: { action.builder.
+ case 313: { action.builder.
consumeInitDeclaratorComplete(); break;
}
//
- // Rule 318: init_declarator ::= declarator initializer
+ // Rule 315: init_declarator ::= declarator initializer
//
- case 318: { action.builder.
+ case 315: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 320: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 317: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 320: { action.builder.
+ case 317: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 322: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 319: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 322: { action.builder.
+ case 319: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 326: basic_direct_declarator ::= declarator_id_name
+ // Rule 323: basic_direct_declarator ::= declarator_id_name
//
- case 326: { action.builder.
+ case 323: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 327: basic_direct_declarator ::= ( declarator )
+ // Rule 324: basic_direct_declarator ::= ( declarator )
//
- case 327: { action.builder.
+ case 324: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 328: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 325: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 328: { action.builder.
+ case 325: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 329: array_direct_declarator ::= array_direct_declarator array_modifier
+ // Rule 326: array_direct_declarator ::= array_direct_declarator array_modifier
//
- case 329: { action.builder.
+ case 326: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 330: array_direct_declarator ::= basic_direct_declarator array_modifier
+ // Rule 327: array_direct_declarator ::= basic_direct_declarator array_modifier
//
- case 330: { action.builder.
+ case 327: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 331: array_modifier ::= [ constant_expression ]
+ // Rule 328: array_modifier ::= [ constant_expression ]
//
- case 331: { action.builder.
+ case 328: { action.builder.
consumeDirectDeclaratorArrayModifier(true); break;
}
//
- // Rule 332: array_modifier ::= [ ]
+ // Rule 329: array_modifier ::= [ ]
//
- case 332: { action.builder.
+ case 329: { action.builder.
consumeDirectDeclaratorArrayModifier(false); break;
}
//
- // Rule 333: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 330: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
//
- case 333: { action.builder.
+ case 330: { action.builder.
consumePointer(); break;
}
//
- // Rule 334: ptr_operator ::= &
+ // Rule 331: ptr_operator ::= &
//
- case 334: { action.builder.
+ case 331: { action.builder.
consumeReferenceOperator(); break;
}
//
- // Rule 335: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 332: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
//
- case 335: { action.builder.
+ case 332: { action.builder.
consumePointerToMember(); break;
}
//
- // Rule 341: cv_qualifier ::= const
+ // Rule 338: cv_qualifier ::= const
//
- case 341: { action.builder.
+ case 338: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 342: cv_qualifier ::= volatile
+ // Rule 339: cv_qualifier ::= volatile
//
- case 342: { action.builder.
+ case 339: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 344: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
+ // Rule 341: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
//
- case 344: { action.builder.
+ case 341: { action.builder.
consumeQualifiedId(true); break;
}
//
- // Rule 345: type_id ::= type_specifier_seq
+ // Rule 342: type_id ::= type_specifier_seq
//
- case 345: { action.builder.
+ case 342: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 346: type_id ::= type_specifier_seq abstract_declarator
+ // Rule 343: type_id ::= type_specifier_seq abstract_declarator
//
- case 346: { action.builder.
+ case 343: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 349: abstract_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 346: abstract_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 349: { action.builder.
+ case 346: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 350: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
+ // Rule 347: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
//
- case 350: { action.builder.
+ case 347: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 354: basic_direct_abstract_declarator ::= ( abstract_declarator )
+ // Rule 351: basic_direct_abstract_declarator ::= ( abstract_declarator )
//
- case 354: { action.builder.
+ case 351: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 355: basic_direct_abstract_declarator ::= ( )
+ // Rule 352: basic_direct_abstract_declarator ::= ( )
//
- case 355: { action.builder.
+ case 352: { action.builder.
consumeAbstractDeclaratorEmpty(); break;
}
//
- // Rule 356: array_direct_abstract_declarator ::= array_modifier
+ // Rule 353: array_direct_abstract_declarator ::= array_modifier
//
- case 356: { action.builder.
+ case 353: { action.builder.
consumeDirectDeclaratorArrayDeclarator(false); break;
}
//
- // Rule 357: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
+ // Rule 354: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
//
- case 357: { action.builder.
+ case 354: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 358: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
+ // Rule 355: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
//
- case 358: { action.builder.
+ case 355: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 359: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 356: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 359: { action.builder.
+ case 356: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 360: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 357: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 360: { action.builder.
+ case 357: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(false); break;
}
//
- // Rule 361: parameter_declaration_clause ::= parameter_declaration_list_opt ...
+ // Rule 358: parameter_declaration_clause ::= parameter_declaration_list_opt ...
//
- case 361: { action.builder.
+ case 358: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 362: parameter_declaration_clause ::= parameter_declaration_list_opt
+ // Rule 359: parameter_declaration_clause ::= parameter_declaration_list_opt
//
- case 362: { action.builder.
+ case 359: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 363: parameter_declaration_clause ::= parameter_declaration_list , ...
+ // Rule 360: parameter_declaration_clause ::= parameter_declaration_list , ...
//
- case 363: { action.builder.
+ case 360: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 369: abstract_declarator_opt ::= $Empty
+ // Rule 366: abstract_declarator_opt ::= $Empty
//
- case 369: { action.builder.
+ case 366: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 370: parameter_declaration ::= declaration_specifiers parameter_init_declarator
+ // Rule 367: parameter_declaration ::= declaration_specifiers parameter_init_declarator
//
- case 370: { action.builder.
+ case 367: { action.builder.
consumeParameterDeclaration(); break;
}
//
- // Rule 371: parameter_declaration ::= declaration_specifiers
+ // Rule 368: parameter_declaration ::= declaration_specifiers
//
- case 371: { action.builder.
+ case 368: { action.builder.
consumeParameterDeclarationWithoutDeclarator(); break;
}
//
- // Rule 373: parameter_init_declarator ::= declarator = parameter_initializer
+ // Rule 370: parameter_init_declarator ::= declarator = parameter_initializer
//
- case 373: { action.builder.
+ case 370: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 375: parameter_init_declarator ::= abstract_declarator = parameter_initializer
+ // Rule 372: parameter_init_declarator ::= abstract_declarator = parameter_initializer
//
- case 375: { action.builder.
+ case 372: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 376: parameter_init_declarator ::= = parameter_initializer
+ // Rule 373: parameter_init_declarator ::= = parameter_initializer
//
- case 376: { action.builder.
+ case 373: { action.builder.
consumeDeclaratorWithInitializer(false); break;
}
//
- // Rule 377: parameter_initializer ::= assignment_expression
+ // Rule 374: parameter_initializer ::= assignment_expression
//
- case 377: { action.builder.
+ case 374: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 378: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
+ // Rule 375: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
//
- case 378: { action.builder.
+ case 375: { action.builder.
consumeFunctionDefinition(false); break;
}
//
- // Rule 379: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
+ // Rule 376: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
//
- case 379: { action.builder.
+ case 376: { action.builder.
consumeFunctionDefinition(true); break;
}
//
- // Rule 382: initializer ::= ( expression_list )
+ // Rule 379: initializer ::= ( expression_list )
//
- case 382: { action.builder.
+ case 379: { action.builder.
consumeInitializerConstructor(); break;
}
//
- // Rule 383: initializer_clause ::= assignment_expression
+ // Rule 380: initializer_clause ::= assignment_expression
//
- case 383: { action.builder.
+ case 380: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 384: initializer_clause ::= { <openscope-ast> initializer_list , }
+ // Rule 381: initializer_clause ::= { <openscope-ast> initializer_list , }
//
- case 384: { action.builder.
+ case 381: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 385: initializer_clause ::= { <openscope-ast> initializer_list }
+ // Rule 382: initializer_clause ::= { <openscope-ast> initializer_list }
//
- case 385: { action.builder.
+ case 382: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 386: initializer_clause ::= { <openscope-ast> }
+ // Rule 383: initializer_clause ::= { <openscope-ast> }
//
- case 386: { action.builder.
+ case 383: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 391: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
+ // Rule 388: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
//
- case 391: { action.builder.
+ case 388: { action.builder.
consumeClassSpecifier(); break;
}
//
- // Rule 392: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
+ // Rule 389: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
//
- case 392: { action.builder.
+ case 389: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 393: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
+ // Rule 390: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
//
- case 393: { action.builder.
+ case 390: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 394: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
+ // Rule 391: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
//
- case 394: { action.builder.
+ case 391: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 395: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
+ // Rule 392: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
//
- case 395: { action.builder.
+ case 392: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 397: identifier_name_opt ::= $Empty
+ // Rule 394: identifier_name_opt ::= $Empty
//
- case 397: { action.builder.
+ case 394: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 401: visibility_label ::= access_specifier_keyword :
+ // Rule 398: visibility_label ::= access_specifier_keyword :
//
- case 401: { action.builder.
+ case 398: { action.builder.
consumeVisibilityLabel(); break;
}
//
- // Rule 402: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
+ // Rule 399: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
//
- case 402: { action.builder.
+ case 399: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 403: member_declaration ::= declaration_specifiers_opt ;
+ // Rule 400: member_declaration ::= declaration_specifiers_opt ;
//
- case 403: { action.builder.
+ case 400: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 406: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
+ // Rule 403: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
//
- case 406: { action.builder.
+ case 403: { action.builder.
consumeMemberDeclarationQualifiedId(); break;
}
//
- // Rule 411: member_declaration ::= ERROR_TOKEN
+ // Rule 409: member_declaration ::= ERROR_TOKEN
//
- case 411: { action.builder.
+ case 409: { action.builder.
consumeDeclarationProblem(); break;
}
//
- // Rule 419: member_declarator ::= declarator constant_initializer
+ // Rule 417: member_declarator ::= declarator constant_initializer
//
- case 419: { action.builder.
+ case 417: { action.builder.
consumeMemberDeclaratorWithInitializer(); break;
}
//
- // Rule 420: member_declarator ::= bit_field_declarator : constant_expression
+ // Rule 418: member_declarator ::= bit_field_declarator : constant_expression
//
- case 420: { action.builder.
+ case 418: { action.builder.
consumeBitField(true); break;
}
//
- // Rule 421: member_declarator ::= : constant_expression
+ // Rule 419: member_declarator ::= : constant_expression
//
- case 421: { action.builder.
+ case 419: { action.builder.
consumeBitField(false); break;
}
//
- // Rule 422: bit_field_declarator ::= identifier_name
+ // Rule 420: bit_field_declarator ::= identifier_name
//
- case 422: { action.builder.
+ case 420: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 423: constant_initializer ::= = constant_expression
+ // Rule 421: constant_initializer ::= = constant_expression
//
- case 423: { action.builder.
+ case 421: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 429: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 427: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 429: { action.builder.
+ case 427: { action.builder.
consumeBaseSpecifier(false, false); break;
}
//
- // Rule 430: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
+ // Rule 428: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
//
- case 430: { action.builder.
+ case 428: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 431: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
+ // Rule 429: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
//
- case 431: { action.builder.
+ case 429: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 432: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
+ // Rule 430: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
//
- case 432: { action.builder.
+ case 430: { action.builder.
consumeBaseSpecifier(true, false); break;
}
//
- // Rule 433: access_specifier_keyword ::= private
+ // Rule 431: access_specifier_keyword ::= private
//
- case 433: { action.builder.
+ case 431: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 434: access_specifier_keyword ::= protected
+ // Rule 432: access_specifier_keyword ::= protected
//
- case 434: { action.builder.
+ case 432: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 435: access_specifier_keyword ::= public
+ // Rule 433: access_specifier_keyword ::= public
//
- case 435: { action.builder.
+ case 433: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 437: access_specifier_keyword_opt ::= $Empty
+ // Rule 435: access_specifier_keyword_opt ::= $Empty
//
- case 437: { action.builder.
+ case 435: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 439: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
+ // Rule 437: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
//
- case 439: { action.builder.
+ case 437: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 440: conversion_function_id ::= operator conversion_type_id
+ // Rule 438: conversion_function_id ::= operator conversion_type_id
//
- case 440: { action.builder.
+ case 438: { action.builder.
consumeConversionName(); break;
}
//
- // Rule 441: conversion_type_id ::= type_specifier_seq conversion_declarator
+ // Rule 439: conversion_type_id ::= type_specifier_seq conversion_declarator
//
- case 441: { action.builder.
+ case 439: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 442: conversion_type_id ::= type_specifier_seq
+ // Rule 440: conversion_type_id ::= type_specifier_seq
//
- case 442: { action.builder.
+ case 440: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 443: conversion_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 441: conversion_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 443: { action.builder.
+ case 441: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 449: mem_initializer ::= mem_initializer_name ( expression_list_opt )
+ // Rule 447: mem_initializer ::= mem_initializer_name ( expression_list_opt )
//
- case 449: { action.builder.
+ case 447: { action.builder.
consumeConstructorChainInitializer(); break;
}
//
- // Rule 450: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 448: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 450: { action.builder.
+ case 448: { action.builder.
consumeQualifiedId(false); break;
}
//
- // Rule 453: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
+ // Rule 451: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
//
- case 453: { action.builder.
+ case 451: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 454: operator_id_name ::= operator overloadable_operator
+ // Rule 452: operator_id_name ::= operator overloadable_operator
//
- case 454: { action.builder.
+ case 452: { action.builder.
consumeOperatorName(); break;
}
//
- // Rule 497: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
+ // Rule 495: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
//
- case 497: { action.builder.
+ case 495: { action.builder.
consumeTemplateDeclaration(); break;
}
//
- // Rule 498: export_opt ::= export
+ // Rule 496: export_opt ::= export
//
- case 498: { action.builder.
+ case 496: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 499: export_opt ::= $Empty
+ // Rule 497: export_opt ::= $Empty
//
- case 499: { action.builder.
+ case 497: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 503: template_parameter ::= parameter_declaration
+ // Rule 501: template_parameter ::= parameter_declaration
//
- case 503: { action.builder.
+ case 501: { action.builder.
consumeTemplateParamterDeclaration(); break;
}
//
- // Rule 504: type_parameter ::= class identifier_name_opt
+ // Rule 502: type_parameter ::= class identifier_name_opt
//
- case 504: { action.builder.
+ case 502: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 505: type_parameter ::= class identifier_name_opt = type_id
+ // Rule 503: type_parameter ::= class identifier_name_opt = type_id
//
- case 505: { action.builder.
+ case 503: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 506: type_parameter ::= typename identifier_name_opt
+ // Rule 504: type_parameter ::= typename identifier_name_opt
//
- case 506: { action.builder.
+ case 504: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 507: type_parameter ::= typename identifier_name_opt = type_id
+ // Rule 505: type_parameter ::= typename identifier_name_opt = type_id
//
- case 507: { action.builder.
+ case 505: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 508: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
+ // Rule 506: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
//
- case 508: { action.builder.
+ case 506: { action.builder.
consumeTemplatedTypeTemplateParameter(false); break;
}
//
- // Rule 509: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
+ // Rule 507: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
//
- case 509: { action.builder.
+ case 507: { action.builder.
consumeTemplatedTypeTemplateParameter(true); break;
}
//
- // Rule 510: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
+ // Rule 508: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
//
- case 510: { action.builder.
+ case 508: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 518: explicit_instantiation ::= template declaration
+ // Rule 516: explicit_instantiation ::= template declaration
//
- case 518: { action.builder.
+ case 516: { action.builder.
consumeTemplateExplicitInstantiation(); break;
}
//
- // Rule 519: explicit_specialization ::= template < > declaration
+ // Rule 517: explicit_specialization ::= template < > declaration
//
- case 519: { action.builder.
+ case 517: { action.builder.
consumeTemplateExplicitSpecialization(); break;
}
//
- // Rule 520: try_block ::= try compound_statement <openscope-ast> handler_seq
+ // Rule 518: try_block ::= try compound_statement <openscope-ast> handler_seq
//
- case 520: { action.builder.
+ case 518: { action.builder.
consumeStatementTryBlock(); break;
}
//
- // Rule 523: handler ::= catch ( exception_declaration ) compound_statement
+ // Rule 521: handler ::= catch ( exception_declaration ) compound_statement
//
- case 523: { action.builder.
+ case 521: { action.builder.
consumeStatementCatchHandler(false); break;
}
//
- // Rule 524: handler ::= catch ( ... ) compound_statement
+ // Rule 522: handler ::= catch ( ... ) compound_statement
//
- case 524: { action.builder.
+ case 522: { action.builder.
consumeStatementCatchHandler(true); break;
}
//
- // Rule 525: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
+ // Rule 523: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
//
- case 525: { action.builder.
+ case 523: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 526: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
+ // Rule 524: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
//
- case 526: { action.builder.
+ case 524: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 527: exception_declaration ::= type_specifier_seq
+ // Rule 525: exception_declaration ::= type_specifier_seq
//
- case 527: { action.builder.
+ case 525: { action.builder.
consumeDeclarationSimple(false); break;
}
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParserprs.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParserprs.java
index b4e916bafbf..8aa2e7f1681 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParserprs.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParserprs.java
@@ -29,7 +29,7 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0
+ 0,0,0
};
};
public final static byte isKeyword[] = IsKeyword.isKeyword;
@@ -66,458 +66,459 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,3,
4,4,5,2,4,5,4,5,6,1,
- 3,1,0,1,3,1,1,1,1,1,
- 6,6,5,7,6,1,0,6,5,6,
- 4,1,3,1,0,1,1,2,1,3,
- 1,3,1,1,1,1,3,9,2,2,
- 3,2,3,1,5,1,2,2,1,0,
- 1,1,1,4,1,2,1,1,2,3,
- 1,1,1,3,2,1,2,2,9,8,
- 2,1,3,1,3,1,0,1,0,2,
- 1,1,3,1,3,2,1,5,8,1,
- 2,3,1,5,4,3,1,3,1,1,
- 5,4,4,5,5,1,0,1,1,1,
- 2,4,2,2,1,5,1,1,1,1,
- 1,1,2,1,0,1,3,1,2,3,
- 2,1,2,2,1,0,1,3,3,5,
- 5,4,1,1,1,1,0,1,5,2,
- 2,1,2,2,1,0,1,3,4,3,
- 1,1,5,2,1,1,3,3,1,1,
+ 3,1,0,1,3,1,1,1,6,5,
+ 7,6,1,0,6,5,6,4,1,3,
+ 1,0,1,1,2,1,3,1,3,1,
+ 1,1,1,3,9,2,2,3,2,3,
+ 1,5,1,2,2,1,0,1,1,1,
+ 4,1,2,1,1,2,3,1,1,1,
+ 3,2,1,2,2,9,8,2,1,3,
+ 1,3,1,0,1,0,2,1,1,3,
+ 1,3,2,1,5,8,1,2,3,1,
+ 5,4,3,1,3,1,1,5,4,4,
+ 5,5,1,0,1,1,1,2,4,2,
+ 2,1,5,1,1,1,1,1,1,1,
+ 2,1,0,1,3,1,2,3,2,1,
+ 2,2,1,0,1,3,3,5,5,4,
+ 1,1,1,1,0,1,5,2,2,1,
+ 2,2,1,0,1,3,4,3,1,1,
+ 5,2,1,1,3,3,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,2,2,7,1,0,1,
- 3,1,1,2,4,2,4,7,9,5,
- 1,3,1,0,1,1,1,2,4,4,
- 1,2,5,5,3,3,1,4,3,1,
- 0,1,3,-241,0,0,0,-2,0,0,
+ 1,1,2,2,7,1,0,1,3,1,
+ 1,2,4,2,4,7,9,5,1,3,
+ 1,0,1,1,1,2,4,4,1,2,
+ 5,5,3,3,1,4,3,1,0,1,
+ 3,-238,0,0,0,-307,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-4,0,0,0,0,
- 0,0,0,0,-7,0,-12,0,0,0,
- 0,0,-9,0,0,-29,0,0,0,0,
- -46,0,0,0,0,0,-10,0,0,-267,
+ 0,0,0,-76,0,0,0,0,0,0,
+ 0,0,-360,0,-12,0,0,0,0,0,
+ -64,0,0,-441,0,0,-29,0,0,0,
+ 0,-16,0,0,0,0,0,-265,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-2,
0,0,0,0,0,0,0,0,0,0,
+ -108,0,0,-122,-27,0,0,0,0,0,
+ 0,0,0,0,0,-25,0,0,0,0,
+ 0,0,0,-458,0,0,0,0,0,0,
+ 0,0,-376,-244,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-75,0,0,0,
+ 0,-470,0,0,0,0,0,0,0,0,
+ -103,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -14,0,0,0,-110,0,0,-3,0,0,
- -17,0,0,0,0,-93,0,0,0,0,
- 0,0,0,0,0,0,-104,0,0,0,
- 0,0,0,0,0,-30,0,0,0,-24,
- 0,-247,0,0,0,-31,0,0,0,0,
- 0,0,0,0,-32,0,-117,0,0,0,
- 0,0,0,-105,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-63,0,0,
+ 0,0,0,0,-97,0,0,0,0,0,
+ -30,0,0,0,0,-116,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-139,0,-34,0,0,0,
- -25,0,0,0,0,0,0,-162,0,0,
- 0,-76,-461,0,0,0,0,0,-118,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-3,0,
+ 0,0,0,-188,0,0,0,0,0,-47,
+ 0,0,0,0,0,0,-4,-457,0,0,
+ 0,-245,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-21,0,0,0,0,0,
+ 0,0,-120,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-36,
- 0,-72,0,0,0,0,0,-67,0,0,
- 0,0,-48,0,0,0,-99,0,0,0,
- 0,0,0,-447,-100,-37,0,0,-248,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-21,0,0,-513,-523,0,-122,0,
+ 0,0,0,0,0,0,0,0,0,-98,
+ -7,-13,0,0,0,0,0,-160,0,0,
+ 0,-81,0,0,0,0,0,-280,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-65,
- 0,0,0,0,0,0,0,-38,0,0,
- -13,0,-16,0,0,0,0,0,-41,0,
- -225,0,0,-283,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -510,0,0,0,-104,0,0,0,0,-45,
+ 0,-284,0,0,0,-105,0,0,0,0,
+ 0,0,0,-208,0,0,0,-91,0,0,
+ 0,-9,0,0,0,0,0,0,-14,0,
+ 0,-17,0,0,-287,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-77,0,-222,0,0,0,
- -332,0,0,0,0,0,0,-107,0,0,
- 0,0,0,-106,0,0,0,0,0,0,
- 0,0,-310,0,0,-123,0,0,0,0,
+ 0,0,0,0,0,0,-65,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-290,0,0,0,0,0,0,
+ 0,-89,0,0,0,0,0,-234,-58,0,
+ 0,0,-428,0,0,0,-24,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -243,0,0,0,0,-405,0,0,-431,0,
- 0,0,-42,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,-66,
- 0,-27,0,0,0,0,-63,-120,0,0,
- 0,0,-202,-268,0,0,0,0,0,0,
+ 0,0,0,0,-262,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-31,0,0,0,
+ 0,0,0,-32,-118,-112,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-121,0,-114,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-34,0,-36,0,
+ 0,0,-10,0,0,0,0,-143,0,0,
+ 0,-90,0,0,-329,0,0,0,-37,0,
+ -195,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-43,0,
- 0,0,-92,0,0,0,0,0,0,-305,
- 0,0,0,-498,0,0,0,0,0,0,
- -194,-197,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,-38,0,0,0,0,0,-102,0,0,
+ 0,0,-125,-119,-145,0,0,0,-290,0,
+ 0,0,-41,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-51,0,0,0,-215,0,
- 0,0,0,-53,-82,-147,0,0,0,-293,
- 0,0,0,-216,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-96,
0,0,0,0,0,0,0,0,0,0,
+ -381,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-54,0,-60,0,
- 0,-384,0,0,0,-68,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-71,0,0,0,-135,0,0,
+ 0,0,-186,0,0,0,-42,-336,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-190,0,0,0,0,-73,
- 0,0,0,0,0,-145,0,0,0,-339,
+ -382,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-385,0,0,0,-363,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,-50,0,-131,0,0,0,0,0,-52,
+ 0,0,-110,0,0,0,-53,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-74,0,-39,0,0,0,0,
- 0,0,0,0,-112,0,0,0,-228,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-192,0,-59,0,0,0,-520,
+ 0,-183,0,0,0,-67,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-334,0,-79,0,0,
- 0,-185,0,0,0,-80,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-127,0,0,0,0,0,0,
- 0,0,-134,0,-91,0,0,0,-144,0,
- 0,0,0,0,0,0,-116,0,-244,-287,
- 0,0,0,-270,0,0,0,0,0,0,
+ 0,0,-72,0,-39,0,0,0,0,-40,
+ 0,0,0,0,0,-312,0,0,0,-267,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-229,-149,0,0,-271,0,0,0,0,
+ -73,0,0,0,0,0,-222,0,-137,0,
+ 0,-268,0,0,0,-78,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-500,0,0,0,0,0,0,
+ 0,0,0,0,-117,0,0,0,-240,0,
+ 0,0,0,-269,0,0,0,-79,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-237,0,-448,0,
- 0,0,-137,0,-138,0,0,-272,0,0,
+ 0,0,0,0,0,-501,0,0,0,0,
+ 0,0,0,0,-114,0,-223,0,0,0,
+ -331,0,0,0,0,-270,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-134,0,0,
+ 0,0,0,0,0,0,0,0,-408,0,
+ 0,0,0,0,0,0,0,-271,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -411,0,0,0,0,-146,-212,0,0,-273,
0,0,0,0,0,0,0,0,0,0,
+ -46,0,0,0,0,0,-136,0,0,-272,
+ 0,0,0,-144,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,-148,0,0,0,0,0,0,0,0,
+ -149,0,-294,0,0,0,-340,0,0,0,
+ 0,-273,0,0,0,-414,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -150,0,-40,0,0,0,0,-151,-213,0,
- 0,-274,0,0,0,0,0,0,0,0,
+ 0,0,0,-150,0,0,0,0,0,0,
+ 0,0,-152,0,-200,0,0,0,-62,0,
+ -153,0,0,-274,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-154,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-152,0,-476,0,0,0,-154,0,
- -214,0,0,-275,0,0,0,0,0,0,
+ 0,0,-155,0,0,-275,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-156,0,0,
+ 0,0,0,0,0,0,0,0,-77,0,
+ 0,0,-402,0,0,0,0,-276,0,0,
+ 0,-487,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-47,0,0,0,
- 0,-155,-223,0,0,-276,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-158,0,
+ -48,0,0,0,0,-371,0,0,0,-277,
+ 0,0,0,-159,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,-172,0,0,0,0,0,0,0,0,
+ -173,0,-51,0,0,0,0,-375,0,0,
+ 0,-378,0,0,0,-174,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-156,0,-49,0,
- 0,0,0,-157,0,0,0,-277,0,0,
- 0,-407,0,0,0,0,0,0,0,0,
+ 0,0,0,-175,0,0,0,0,0,0,
+ 0,0,0,0,-54,0,0,0,0,-176,
+ -177,0,0,-413,0,0,0,-178,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-158,0,
- -52,0,0,0,0,-374,0,0,0,-278,
+ 0,0,0,0,0,-179,0,0,0,0,
+ 0,0,0,0,-180,0,-56,0,0,0,
+ 0,-181,-182,0,0,-503,0,0,0,-213,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-184,0,0,
+ 0,0,0,0,0,0,-147,0,-60,0,
+ 0,0,0,-225,-185,0,0,-221,0,0,
+ 0,-189,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-191,
+ 0,0,0,0,0,0,0,0,-193,0,
+ 0,0,0,0,-305,0,0,0,-199,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-379,0,0,0,0,0,0,0,0,
- 0,0,-55,0,0,0,0,-378,0,0,
- 0,-279,0,0,0,-415,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-160,0,0,0,0,0,0,
- 0,0,-161,0,-57,0,0,0,0,-174,
- 0,0,0,-280,0,0,0,-175,0,0,
+ 0,0,0,0,0,0,0,-201,0,0,
+ 0,-338,0,0,0,-194,0,0,0,0,
+ 0,0,0,0,-363,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-503,0,0,0,0,
- 0,0,0,0,0,0,-61,0,0,0,
- 0,-176,-382,0,0,-381,0,0,0,-177,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-178,0,0,
- 0,0,0,0,0,0,-179,0,-71,0,
- 0,0,0,-180,0,0,0,-416,0,0,
- 0,-181,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-203,0,-205,0,0,
+ 0,-390,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-182,0,
- -75,0,0,0,0,-417,-477,0,0,-506,
- 0,0,0,-183,0,0,0,0,0,0,
+ 0,0,0,-206,0,0,0,0,0,0,
+ 0,0,-498,0,-512,0,0,0,-121,0,
+ 0,0,-202,-207,0,0,0,0,0,-210,
+ -241,-391,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-184,0,0,0,0,0,0,0,0,
- -186,0,-78,0,0,0,-94,-187,-191,0,
- 0,-224,0,0,0,-193,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-215,0,-235,0,0,0,-497,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-343,0,0,0,0,0,-308,0,
- 0,0,-195,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -201,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-522,0,0,0,-203,
- 0,0,0,0,0,0,0,0,-501,0,
- -366,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-302,0,0,0,-243,
+ -286,0,0,0,0,0,-211,-291,-279,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-205,0,-502,0,0,0,-393,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-207,
- 0,0,0,0,0,0,0,0,-208,0,
- -209,0,0,0,-341,0,0,0,0,0,
- 0,0,0,0,0,0,0,-517,-218,-394,
+ -220,0,0,0,0,0,0,0,0,-70,
+ 0,0,0,0,0,-266,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-292,0,0,
+ 0,0,0,0,0,0,0,0,-264,0,
+ 0,0,-236,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-220,0,0,0,0,0,0,0,0,
- -238,0,-246,0,0,0,-500,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-261,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-289,0,-294,
- 0,0,0,-337,0,0,0,0,-295,0,
- 0,0,0,0,-315,0,0,0,-282,0,
+ 0,-299,0,0,0,0,0,0,-263,0,
+ 0,0,-300,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -304,0,0,0,0,0,-255,0,0,0,
+ -226,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-306,0,
+ 0,0,0,-256,0,0,0,-319,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-474,0,0,0,0,
+ -257,0,0,0,-320,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-258,0,0,
+ 0,-321,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-322,
+ 0,0,0,0,-5,0,0,0,-326,0,
+ -107,-295,-101,0,-327,0,-237,0,-28,0,
+ 0,0,0,0,0,0,0,0,0,-334,
+ 0,0,0,0,-314,0,0,0,0,0,
+ -328,0,-204,0,0,0,0,0,0,0,
+ 0,0,0,-68,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-74,-18,-80,0,
+ 0,0,0,0,0,0,0,-283,0,0,
+ 0,0,0,-82,-83,-505,-219,0,0,0,
+ 0,0,0,0,-341,0,-342,-157,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,-343,-344,0,0,0,0,0,0,
+ 0,0,0,0,0,-372,-216,0,-310,0,
+ 0,0,0,0,0,0,0,0,-345,0,
+ 0,-445,0,-212,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-346,0,0,-347,
+ 0,0,0,0,0,0,-259,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-499,0,
+ 0,0,-260,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-282,0,0,0,0,0,
+ 0,0,-348,-519,0,0,0,-115,0,0,
+ 0,0,0,0,0,0,0,0,-379,-86,
+ 0,0,0,0,-349,-514,0,0,-26,0,
+ 0,0,0,0,-392,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-350,-20,-35,
+ 0,0,0,0,-293,0,0,0,0,0,
+ 0,0,0,0,0,0,-317,0,0,-351,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,-411,0,0,0,0,0,-352,0,0,
+ -473,0,-361,0,-247,0,0,0,0,-401,
+ 0,0,0,0,0,0,-444,0,0,-22,
+ 0,0,0,-353,0,-88,0,0,0,0,
+ -354,-57,0,0,0,0,0,0,-355,0,
+ 0,0,-99,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ -356,0,-357,-358,0,-151,-1,-449,0,0,
+ 0,0,0,0,-359,0,0,-362,0,0,
+ -364,0,0,0,0,0,0,0,0,0,
+ 0,-214,0,0,0,0,0,0,0,0,
+ 0,0,-366,0,-404,0,0,0,-146,0,
+ 0,0,0,0,0,0,0,0,0,-19,
+ 0,0,0,-367,0,-69,0,0,0,-368,
+ 0,0,0,0,0,0,-92,0,0,0,
+ -142,-370,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-187,0,0,0,-397,0,
+ -442,0,0,0,0,0,-250,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,-251,0,0,0,-398,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -302,0,0,0,0,0,0,0,0,-81,
- 0,0,0,0,0,-269,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-98,0,0,
- 0,0,0,0,0,0,-303,0,-264,0,
- 0,0,-307,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-94,0,-95,
+ -399,0,-369,0,0,0,0,-109,0,0,
+ 0,0,0,0,0,0,0,0,-100,-129,
+ 0,0,0,-400,0,-224,0,0,0,0,
+ -43,0,0,0,-415,0,-132,0,0,0,
+ 0,0,-61,0,-209,0,0,0,0,0,
+ 0,0,0,0,0,-418,0,0,-130,0,
+ 0,0,0,0,0,0,-416,0,-318,0,
+ 0,0,0,0,0,-196,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -309,0,0,0,0,0,0,-265,0,0,
- 0,-326,0,0,0,0,0,0,0,0,
+ -417,0,-422,0,0,0,0,0,-412,0,
+ 0,0,0,0,0,0,0,0,-480,-161,
+ -426,-278,0,0,0,0,-311,0,0,0,
+ 0,0,-197,-308,-430,0,0,-106,0,0,
+ 0,0,-439,-440,0,0,0,0,0,0,
+ 0,0,0,-133,0,-281,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-266,0,0,0,-322,
+ 0,-482,-227,0,-435,0,0,0,0,0,
+ -6,0,0,0,0,-446,0,0,0,0,
+ 0,0,0,0,0,-455,-217,0,0,0,
+ 0,0,0,0,0,0,0,0,-289,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-504,0,0,
- 0,0,0,-1,0,-132,-323,0,-188,0,
- 0,0,-324,-325,-329,-444,0,0,0,0,
- 0,-258,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-486,-419,0,-421,0,0,
+ 0,0,-198,0,0,-15,0,0,0,-459,
+ -431,0,0,0,-495,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-471,
+ 0,-475,0,0,0,0,0,-323,0,0,
+ 0,0,0,0,0,0,0,0,-502,0,
+ 0,0,0,0,0,0,0,0,0,-296,
+ -301,0,0,0,0,0,-298,0,0,0,
+ 0,0,-476,0,0,0,0,0,0,0,
+ -515,0,-481,-303,0,-432,0,0,0,-140,
+ 0,0,0,0,-489,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-488,0,-494,
+ 0,0,-504,0,-44,0,0,0,0,0,
+ 0,0,0,0,-509,0,0,0,0,0,
+ 0,0,0,-521,-316,0,0,0,0,0,
+ 0,0,0,0,-447,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-49,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-330,-210,0,
- 0,-211,0,0,-133,0,0,-159,0,0,
- -331,0,0,0,0,0,0,0,0,0,
- -259,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-87,0,0,-324,
+ 0,0,0,-448,0,0,0,0,0,-396,
+ -288,0,-228,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-124,
+ 0,0,-315,0,0,-383,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-229,
+ 0,0,-436,0,0,0,0,0,-335,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-260,0,0,
- 0,-62,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-344,
- 0,0,0,0,-108,-345,0,-261,0,0,
- 0,-346,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-347,
- 0,0,0,0,-5,0,0,0,0,0,
- -64,0,-200,0,0,0,-348,0,-28,0,
- 0,0,0,0,0,0,0,0,0,-404,
- 0,0,0,-395,0,0,0,-262,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-231,
- 0,0,0,0,0,0,-26,0,0,0,
- 0,0,0,0,0,0,0,-434,0,0,
- 0,0,0,0,-318,-196,-291,-136,0,0,
- -103,0,0,0,0,-83,-424,0,-473,0,
- 0,0,0,0,-349,0,0,0,0,0,
- 0,0,0,0,0,0,0,-304,0,-350,
- 0,0,0,0,0,0,-351,0,-311,0,
- 0,0,-88,0,0,0,0,-204,0,0,
- 0,0,-445,0,0,0,0,-352,0,0,
- 0,0,0,0,0,0,-296,0,0,0,
- 0,0,0,0,0,0,0,-335,0,-84,
- -353,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-306,0,
- -354,0,0,0,0,0,-355,-126,0,-356,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-357,-15,-515,-87,0,
- 0,0,0,-383,-227,-119,0,-219,0,0,
- 0,0,0,0,-460,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-239,0,-313,-18,0,0,
- 0,0,-129,0,-358,0,0,0,0,0,
- 0,0,0,0,0,0,0,-124,-298,-359,
- 0,0,0,0,0,0,-206,0,0,0,
- 0,0,0,0,0,0,0,-360,-240,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-361,0,0,0,0,
- 0,0,0,0,0,0,0,-130,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,-362,0,0,0,0,0,0,0,0,
- 0,0,-286,0,0,0,-490,0,0,-59,
- 0,0,0,0,-365,0,-314,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-89,0,0,
- 0,0,0,0,-109,0,0,0,0,0,
- 0,0,0,0,-263,0,0,0,-20,0,
+ 0,0,-127,0,-437,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-285,0,0,0,
- 0,-367,0,0,-369,-217,0,0,0,0,
- 0,0,0,0,0,0,-370,-386,0,-371,
- -153,0,0,0,0,-450,0,0,0,0,
- 0,-101,-508,-463,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-142,
- -494,-316,-373,-364,-317,0,0,0,0,-400,
- 0,0,0,0,-320,0,0,0,0,0,
- 0,0,0,-401,0,0,-402,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -90,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-11,0,0,
- 0,0,0,-321,0,0,0,0,-403,-33,
- 0,0,0,0,0,0,0,-418,0,0,
- -368,0,0,0,0,0,0,0,0,0,
+ 0,0,-111,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-365,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-419,0,0,0,0,0,0,0,0,
- 0,0,0,-492,0,0,0,0,0,0,
- 0,-420,0,0,-143,0,-376,0,0,0,
- 0,0,0,0,-425,-253,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-438,-233,-373,0,0,0,0,0,
+ -252,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -254,0,0,0,0,0,0,0,0,0,
+ 0,0,-141,0,0,0,0,-468,0,0,
+ 0,0,0,0,-339,0,0,-253,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-372,0,0,-22,0,-148,0,-429,
- 0,-115,0,0,0,0,-433,0,0,0,
- 0,0,-399,-299,0,-442,0,0,-443,-19,
- 0,0,0,-449,0,0,-451,0,0,0,
- 0,0,-96,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-236,-421,
- -458,0,0,0,0,0,0,0,0,0,
- -113,0,-462,0,0,0,0,-474,0,-478,
- 0,0,-327,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-338,0,0,-435,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-479,0,0,0,-483,-249,0,-484,
- 0,0,-471,0,0,0,-491,0,0,0,
- 0,0,-377,0,0,-497,0,0,0,0,
- 0,0,0,0,0,0,0,-288,-342,0,
- 0,0,0,0,0,0,0,0,0,-507,
- -512,0,0,0,0,0,0,0,0,0,
- 0,-226,0,-485,-163,0,0,0,0,0,
- 0,0,-487,0,0,0,0,0,0,0,
- 0,0,0,-391,0,0,0,0,0,0,
- 0,0,0,0,-375,-125,0,0,0,0,
- -97,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-102,
- -489,0,0,0,0,0,0,0,0,0,
- 0,-380,0,0,-198,0,0,0,0,-199,
+ 0,-254,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-398,0,-336,0,0,
- -250,0,0,0,0,0,0,0,0,0,
- 0,0,0,-427,-505,0,0,0,0,0,
- 0,0,0,0,0,-284,0,0,-292,0,
- 0,0,0,0,0,0,-518,-412,0,0,
- 0,0,0,0,0,0,0,0,0,-301,
- 0,0,-297,0,-189,0,0,0,0,-35,
+ 0,0,0,0,0,-384,0,0,0,0,
+ 0,0,0,0,0,0,-163,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-319,0,0,-410,0,0,0,
+ 0,0,0,0,0,0,0,-11,-333,-377,
+ -472,0,0,-374,0,-246,0,0,0,0,
+ 0,0,-388,-230,-424,-425,-483,0,0,0,
+ 0,0,0,0,-395,-407,0,0,0,0,
+ 0,0,-427,0,0,0,0,0,0,0,
+ -409,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -388,0,0,0,0,0,0,0,-428,-486,
- 0,0,-524,0,0,0,0,0,0,0,
- 0,0,0,0,0,-437,0,0,0,0,
- 0,0,0,0,0,-446,-58,0,0,0,
- -44,0,0,0,-453,0,0,0,-511,0,
- 0,0,0,0,0,-455,0,0,0,0,
- 0,0,0,0,0,-8,0,0,-430,0,
+ 0,0,0,0,0,0,0,0,-429,0,
+ 0,0,0,0,0,-164,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-469,0,0,-459,0,
+ 0,0,0,0,0,0,0,-165,0,0,
0,0,0,0,0,0,0,0,0,0,
- -85,0,0,-432,0,-436,-509,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-433,
+ -434,0,0,0,0,-166,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-45,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-167,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-168,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-281,-457,-86,0,0,0,0,
- 0,-520,0,0,-465,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-70,0,
- 0,0,0,0,0,-464,0,-128,-466,0,
- -472,0,0,-467,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -135,0,0,0,-468,0,0,0,0,0,
+ 0,-169,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-170,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-482,0,-493,0,0,0,0,0,
+ 0,0,0,0,0,-171,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-255,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-239,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-256,0,
+ 0,0,0,0,0,0,0,0,0,-248,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-257,0,0,0,-480,0,0,0,
+ 0,-249,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-300,0,-438,-439,0,-440,
- 0,0,-481,0,-514,0,-495,0,0,0,
- 0,-50,0,0,0,0,0,0,-387,0,
+ 0,0,0,-325,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-405,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-441,0,0,
- -496,0,0,0,-510,0,0,0,-516,-519,
+ 0,0,0,0,0,0,0,-484,0,0,
+ 0,0,0,0,0,0,0,0,-453,-332,
+ -485,-285,0,0,0,0,-8,-443,-380,-313,
+ 0,0,0,-454,0,-466,-450,0,-460,0,
+ 0,0,0,-55,0,0,0,0,0,0,
+ -452,0,-456,0,0,-462,0,0,0,0,
+ 0,0,0,0,0,0,-463,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-84,0,0,0,
+ 0,0,0,0,0,-467,-496,-461,-469,0,
+ 0,0,0,-128,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-464,0,0,
+ -85,0,0,0,0,0,0,-465,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-165,0,0,0,0,0,0,0,0,
+ 0,0,0,-506,0,0,-477,0,0,0,
+ 0,0,0,0,0,0,-126,-33,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-166,0,0,0,
+ 0,0,0,-190,0,0,0,0,0,0,
+ 0,0,-478,0,0,0,0,0,0,0,
+ -297,0,0,0,0,-479,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-167,0,
+ 0,0,0,0,-490,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -491,-492,0,0,0,0,0,0,0,0,
+ 0,0,0,-113,0,0,0,0,-493,0,
0,0,0,0,0,0,0,0,0,0,
- -168,0,0,0,0,0,0,0,0,0,
+ -517,-511,0,0,-507,0,0,0,-389,0,
+ 0,0,0,-513,0,0,0,0,0,0,
+ -23,0,0,0,-516,0,0,-93,-518,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-169,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-231,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-170,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-171,0,0,0,
+ 0,0,0,0,0,0,-162,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-172,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -173,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-242,0,0,0,0,0,0,0,
+ 0,0,0,-138,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-251,0,0,0,0,0,
+ 0,-451,0,0,0,0,0,0,0,0,
+ 0,0,0,-386,0,-139,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-218,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-252,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-309,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-328,0,
+ 0,0,0,0,0,-123,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -408,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-330,0,0,0,0,
+ 0,-337,0,0,0,-393,0,0,0,0,
+ 0,-385,0,0,0,0,0,-394,0,0,
+ 0,-232,0,0,0,0,0,0,0,0,
+ 0,-242,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-392,0,0,0,0,0,0,0,
- 0,0,0,-23,0,0,0,-521,0,0,
- 0,0,-69,0,0,0,0,0,0,0,
- 0,0,0,0,0,-111,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-232,0,0,0,0,0,0,0,
- 0,-452,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-233,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-403,
+ 0,0,0,0,0,0,0,-410,0,0,
+ 0,0,0,0,0,-420,0,0,-387,0,
+ 0,0,0,-423,-508,-406,0,0,0,0,
+ 0,-522,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-454,
0,0,0,0,0,0,0,0,0,0,
- -414,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-140,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-95,0,0,0,
- 0,0,0,0,0,0,0,0,-56,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-6,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-141,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-470,0,0,0,0,0,
- 0,-131,0,0,0,0,0,0,0,0,
- 0,0,-192,0,0,0,0,0,0,0,
- 0,0,0,-221,0,0,0,0,0,0,
- 0,0,-312,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-234,0,
- 0,0,0,-389,0,0,0,0,0,0,
- 0,0,0,0,-475,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-333,0,
- 0,0,0,0,0,0,0,-340,0,0,
- 0,0,0,0,0,0,0,0,-396,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-397,0,0,0,
- 0,-390,0,-456,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-164,
- 0,0,0,0,0,0,0,-230,0,0,
- 0,0,0,0,0,0,0,0,-235,0,
- 0,0,0,0,0,0,-245,0,0,0,
- 0,-406,0,0,0,-409,0,0,-499,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-413,0,0,0,0,0,0,0,0,
- 0,0,0,-422,0,0,0,0,0,0,
- -423,0,-426,0,0,0,0,0,0,-525,
- 0,0,0,0,0,0,-488,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
@@ -526,7 +527,7 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0
+ 0,0,0,0,0,0
};
};
public final static short baseCheck[] = BaseCheck.baseCheck;
@@ -536,536 +537,536 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface BaseAction {
public final static char baseAction[] = {
- 170,4,53,80,80,31,31,67,67,38,
- 38,170,170,171,171,133,133,1,1,15,
+ 168,4,53,78,78,31,31,70,70,38,
+ 38,168,168,169,169,132,132,1,1,15,
15,15,15,15,15,15,15,16,16,16,
14,11,11,8,8,8,8,8,8,2,
- 69,69,5,5,12,12,12,12,44,44,
- 134,134,135,61,61,42,17,17,17,17,
+ 71,71,5,5,12,12,12,12,44,44,
+ 133,133,134,61,61,42,17,17,17,17,
17,17,17,17,17,17,17,17,17,17,
- 17,17,17,17,17,17,136,136,136,115,
- 115,18,18,18,18,18,18,18,18,18,
- 18,18,18,18,19,19,172,172,173,173,
- 174,139,139,140,140,137,137,141,138,138,
+ 17,17,17,17,17,17,135,135,135,112,
+ 112,18,18,18,18,18,18,18,18,18,
+ 18,18,18,18,19,19,170,170,171,171,
+ 172,138,138,139,139,136,136,140,137,137,
20,20,21,21,23,23,23,24,24,24,
24,25,25,25,26,26,26,27,27,27,
27,27,28,28,28,29,29,30,30,32,
32,34,34,35,35,36,36,41,41,40,
40,40,40,40,40,40,40,40,40,40,
- 40,40,39,33,142,142,98,98,175,175,
- 93,194,194,81,81,81,81,81,81,81,
- 81,81,82,82,82,78,78,59,59,176,
- 176,83,83,83,104,104,177,177,84,84,
- 84,178,178,85,85,85,85,85,86,86,
- 68,68,68,68,68,68,68,48,48,48,
- 48,48,105,105,106,106,49,179,22,22,
- 22,22,22,47,47,88,88,88,88,88,
- 149,149,144,144,144,144,144,145,145,145,
- 146,146,146,147,147,147,148,148,148,89,
- 89,89,89,89,90,90,90,13,13,13,
- 13,13,13,13,13,13,13,13,101,119,
- 119,119,119,119,119,117,117,117,118,118,
- 151,151,150,150,121,121,152,72,72,73,
- 73,75,76,74,51,46,153,153,52,50,
- 71,71,154,154,143,143,122,123,123,79,
- 79,155,155,64,64,64,57,57,56,65,
- 65,77,77,55,55,55,91,91,100,99,
- 99,60,60,58,58,54,54,43,102,102,
- 102,94,94,94,95,95,96,96,96,97,
- 97,107,107,107,109,109,108,108,195,195,
- 92,92,181,181,181,181,181,125,45,45,
- 157,180,180,126,126,126,126,182,182,37,
- 37,116,127,127,127,127,110,110,120,120,
- 120,159,160,160,160,160,160,160,160,160,
- 160,160,185,185,183,183,184,184,161,161,
- 161,161,162,186,112,111,111,187,187,163,
- 163,163,163,103,103,103,188,188,9,9,
- 10,189,189,190,164,156,156,165,165,166,
- 167,167,6,6,7,168,168,168,168,168,
- 168,168,168,168,168,168,168,168,168,168,
- 168,168,168,168,168,168,168,168,168,168,
- 168,168,168,168,168,168,168,168,168,168,
- 168,168,168,168,168,168,168,62,66,66,
- 169,169,129,129,130,130,130,130,130,130,
- 3,131,131,128,128,113,113,113,70,63,
- 87,158,158,114,114,191,191,191,132,132,
- 124,124,192,192,881,39,2491,2478,995,4649,
- 34,717,31,35,675,30,32,2435,29,27,
- 56,1830,112,82,83,114,1075,1838,1880,1872,
- 1907,1898,1922,1914,1964,557,1949,1271,1982,1991,
- 149,278,3641,1262,164,150,1355,39,666,36,
- 2591,1513,34,717,343,35,675,1737,1109,1003,
- 2415,39,666,36,237,4720,34,717,31,35,
- 675,30,32,1814,29,27,56,1830,112,82,
- 83,114,1997,1838,1880,1872,1907,1898,1922,1914,
- 2845,1367,240,235,236,248,39,451,938,3570,
- 4583,146,324,1030,326,279,939,39,666,36,
- 319,850,34,717,2485,35,675,599,39,287,
- 247,250,253,256,3270,772,599,1314,1260,38,
- 30,631,1009,39,666,36,382,4658,34,717,
- 31,35,675,63,32,646,2248,1115,2797,863,
- 2838,2989,3246,4354,1484,39,666,36,2585,4720,
- 34,717,31,35,675,1823,32,1814,29,27,
- 56,1830,112,82,83,114,347,1838,1880,1872,
- 1907,1898,1922,1914,1964,680,1949,734,1982,1991,
- 149,248,39,284,515,150,3637,3031,1393,39,
- 2211,47,998,1450,46,717,2806,2593,516,1484,
- 39,666,36,2585,4720,34,717,31,35,675,
- 1823,32,1814,29,27,56,1830,112,82,83,
- 114,347,1838,1880,1872,1907,1898,1922,1914,1964,
- 1379,1949,1513,1982,1991,149,333,339,1655,515,
- 150,861,3031,599,39,3451,3283,1294,39,285,
- 444,1999,2006,516,1975,1872,822,511,67,1453,
- 39,666,36,327,4658,34,717,31,35,675,
- 62,32,1613,1383,1217,1998,1450,1450,4509,1484,
- 39,666,36,2585,4720,34,717,31,35,675,
- 1823,32,1814,29,27,56,1830,112,82,83,
- 114,347,1838,1880,1872,1907,1898,1922,1914,1964,
- 1469,1949,511,1982,1991,149,1266,328,1098,515,
- 150,1271,3031,1207,1176,530,3724,2061,861,945,
- 1998,599,1571,516,1764,39,666,36,2585,4720,
- 34,717,31,35,675,1823,32,1814,29,27,
- 56,1830,112,82,83,114,347,1838,1880,1872,
- 1907,1898,1922,1914,1964,857,1949,1930,1982,1991,
- 149,336,39,284,515,150,4752,3031,599,39,
- 1260,281,441,237,1294,39,282,329,516,48,
- 1536,2679,511,2354,3318,66,939,39,666,36,
- 360,359,34,717,344,35,675,2080,530,530,
- 1998,249,235,236,1552,39,666,36,318,4720,
- 34,717,31,35,675,30,32,1814,29,27,
- 56,1830,112,82,83,114,1176,1838,1880,1872,
- 1907,1898,1922,1914,1964,496,1949,512,1982,1991,
- 149,1987,291,2429,383,150,599,39,3269,1624,
- 39,666,36,1064,4720,34,717,31,35,675,
- 30,32,1814,29,27,56,1830,112,82,83,
- 114,386,1838,1880,1872,1907,1898,1922,1914,1964,
- 1159,1949,692,1982,1991,149,2532,65,857,383,
- 150,50,1536,1086,2415,39,666,36,3779,4720,
- 34,717,31,35,675,30,32,1814,29,27,
- 56,1830,112,82,83,114,384,1838,1880,1872,
- 1907,1898,1922,2860,857,226,1889,39,666,36,
- 387,4720,34,717,31,35,675,30,32,1814,
- 29,27,56,1830,112,82,83,114,337,1838,
- 1880,1872,1907,1898,1922,1914,1964,330,1949,1403,
- 1982,1991,149,599,39,296,383,150,458,419,
- 939,39,666,36,1975,388,34,717,3434,35,
- 675,857,2066,39,666,36,1873,4720,34,717,
- 31,35,675,30,32,1814,29,27,56,1830,
- 112,82,83,114,457,1838,1880,1872,1907,1898,
- 1922,1914,1964,2748,1949,1324,1982,1991,149,599,
- 39,296,164,150,1515,1442,599,39,660,390,
- 2066,39,666,36,1442,4720,34,717,31,35,
- 675,30,32,1814,29,27,56,1830,112,82,
- 83,114,381,1838,1880,1872,1907,1898,1922,1914,
- 1964,331,1949,55,1982,1991,149,1208,52,1122,
- 377,150,2066,39,666,36,1466,4720,34,717,
- 31,35,675,30,32,1814,29,27,56,1830,
- 112,82,83,114,936,1838,1880,1872,1907,1898,
- 1922,1914,1964,1120,1949,1653,1982,1991,149,3007,
- 909,2798,377,150,3318,2426,599,39,1260,286,
- 1820,39,666,36,2248,4772,34,717,31,35,
- 675,65,32,2066,39,666,36,990,4720,34,
- 717,31,35,675,30,32,1814,29,27,56,
- 1830,112,82,83,114,376,1838,1880,1872,1907,
- 1898,1922,1914,1964,1093,1949,498,1982,1991,149,
- 3756,2698,188,377,150,1832,39,666,36,1736,
- 4720,34,717,31,35,675,30,32,1814,29,
- 27,56,1830,112,82,83,114,375,1838,1880,
- 1872,1907,1898,1922,1914,1964,857,1949,1483,1982,
- 2043,170,1696,39,666,36,1545,4720,34,717,
- 31,35,675,30,32,1814,29,27,56,1830,
- 112,82,83,114,1581,1838,1880,1872,1907,1898,
- 1922,1914,1964,1581,1949,1271,1982,1991,149,1923,
- 4572,521,148,150,4594,332,357,329,373,1442,
- 599,39,660,390,2066,39,666,36,1131,4720,
- 34,717,31,35,675,30,32,1814,29,27,
- 56,1830,112,82,83,114,4321,1838,1880,1872,
- 1907,1898,1922,1914,1964,1956,1949,450,1982,1991,
- 149,303,1374,1581,161,150,2066,39,666,36,
- 391,4720,34,717,31,35,675,30,32,1814,
- 29,27,56,1830,112,82,83,114,2254,1838,
- 1880,1872,1907,1898,1922,1914,1964,2124,1949,1430,
- 1982,1991,149,1598,3779,1776,160,150,2066,39,
- 666,36,2808,4720,34,717,31,35,675,30,
- 32,1814,29,27,56,1830,112,82,83,114,
- 288,1838,1880,1872,1907,1898,1922,1914,1964,358,
- 1949,2551,1982,1991,149,1489,1583,1581,159,150,
- 2066,39,666,36,1615,4720,34,717,31,35,
- 675,30,32,1814,29,27,56,1830,112,82,
- 83,114,427,1838,1880,1872,1907,1898,1922,1914,
- 1964,1705,1949,71,1982,1991,149,2713,1693,1581,
- 158,150,2066,39,666,36,2179,4720,34,717,
- 31,35,675,30,32,1814,29,27,56,1830,
- 112,82,83,114,310,1838,1880,1872,1907,1898,
- 1922,1914,1964,1214,1949,2637,1982,1991,149,1807,
- 3779,1581,157,150,2066,39,666,36,100,4720,
- 34,717,31,35,675,30,32,1814,29,27,
- 56,1830,112,82,83,114,302,1838,1880,1872,
- 1907,1898,1922,1914,1964,454,1949,71,1982,1991,
- 149,4497,1802,1581,156,150,2066,39,666,36,
- 1615,4720,34,717,31,35,675,30,32,1814,
- 29,27,56,1830,112,82,83,114,301,1838,
- 1880,1872,1907,1898,1922,1914,1964,1870,1949,71,
- 1982,1991,149,2328,2008,99,155,150,2066,39,
- 666,36,2157,4720,34,717,31,35,675,30,
- 32,1814,29,27,56,1830,112,82,83,114,
- 289,1838,1880,1872,1907,1898,1922,1914,1964,2020,
- 1949,1459,1982,1991,149,3042,599,3524,154,150,
- 2066,39,666,36,102,4720,34,717,31,35,
- 675,30,32,1814,29,27,56,1830,112,82,
- 83,114,1674,1838,1880,1872,1907,1898,1922,1914,
- 1964,2254,1949,71,1982,1991,149,2671,599,3250,
- 153,150,2066,39,666,36,863,4720,34,717,
- 31,35,675,30,32,1814,29,27,56,1830,
- 112,82,83,114,1875,1838,1880,1872,1907,1898,
- 1922,1914,1964,1666,1949,71,1982,1991,149,684,
- 1375,3669,152,150,2066,39,666,36,1180,4720,
- 34,717,31,35,675,30,32,1814,29,27,
- 56,1830,112,82,83,114,1674,1838,1880,1872,
- 1907,1898,1922,1914,1964,2254,1949,71,1982,1991,
- 149,2555,1493,1682,151,150,2066,39,666,36,
- 1152,4720,34,717,31,35,675,30,32,1814,
- 29,27,56,1830,112,82,83,114,2308,1838,
- 1880,1872,1907,1898,1922,1914,1964,29,1949,71,
- 1982,1991,149,677,1752,524,165,150,2066,39,
- 666,36,890,4720,34,717,31,35,675,30,
- 32,1814,29,27,56,1830,112,82,83,114,
- 385,1838,1880,1872,1907,1898,1922,1914,1964,1564,
- 1949,71,1982,1991,149,739,2162,1246,146,150,
- 2296,39,666,36,681,4720,34,717,31,35,
- 675,30,32,1814,29,27,56,1830,112,82,
- 83,114,1479,1838,1880,1872,1907,1898,1922,1914,
- 1964,1021,1949,1513,1982,1991,149,65,2108,2155,
- 195,150,2415,39,666,36,1953,4720,34,717,
- 31,35,675,30,32,1814,29,27,56,1830,
- 112,82,83,114,495,1838,1880,1872,1907,1898,
- 1922,1914,1964,857,1949,309,1982,2043,170,2415,
- 39,666,36,1252,4720,34,717,31,35,675,
- 30,32,1814,29,27,56,1830,112,82,83,
- 114,1798,1838,1880,1872,1907,1898,1922,1914,1964,
- 522,1949,76,1982,2043,170,1981,39,666,36,
- 2184,4772,34,717,31,35,675,30,32,857,
- 509,2415,39,666,36,295,4720,34,717,31,
- 35,675,30,32,1814,29,27,56,1830,112,
- 82,83,114,57,1838,1880,1872,1907,1898,1922,
- 1914,1964,64,1949,1246,1982,2043,170,2415,39,
- 666,36,421,4720,34,717,31,35,675,30,
- 32,1814,29,27,56,1830,112,82,83,114,
- 2185,1838,1880,1872,1907,1898,1922,1914,1964,1742,
- 1949,2047,1982,2043,170,1820,39,666,36,103,
- 4772,34,717,31,35,675,64,32,857,2209,
- 2415,39,666,36,3182,4720,34,717,31,35,
- 675,30,32,1814,29,27,56,1830,112,82,
- 83,114,1063,1838,1880,1872,1907,1898,1922,1914,
- 1964,2182,1949,1209,1982,2043,170,2471,39,666,
- 36,420,4720,34,717,31,35,675,30,32,
- 1814,29,27,56,1830,112,82,83,114,77,
- 1838,1880,1872,1907,1898,1922,1914,1964,2267,1949,
- 1773,1982,2043,170,939,39,666,36,104,2269,
- 34,717,44,35,675,599,39,660,390,2415,
- 39,666,36,423,4720,34,717,31,35,675,
- 30,32,1814,29,27,56,1830,112,82,83,
- 114,2276,1838,1880,1872,1907,1898,1922,1914,1964,
- 71,1949,429,2922,819,436,2415,39,666,36,
- 2178,4720,34,717,31,35,675,30,32,1814,
- 29,27,56,1830,112,82,83,114,1595,1838,
- 1880,1872,1907,1898,1922,1914,1964,2324,2878,2415,
- 39,666,36,2005,4720,34,717,31,35,675,
- 30,32,1814,29,27,56,1830,112,82,83,
- 114,1863,1838,1880,1872,1907,1898,2777,2415,39,
- 666,36,1945,4720,34,717,31,35,675,30,
- 32,1814,29,27,56,1830,112,82,83,114,
- 2947,1838,1880,1872,1907,2780,2415,39,666,36,
- 2271,4720,34,717,31,35,675,30,32,1814,
- 29,27,56,1830,112,82,83,114,1674,1838,
- 1880,1872,1907,2796,1330,996,65,2305,2585,599,
- 39,1260,283,2327,2337,2101,2278,39,282,392,
- 425,2610,2415,39,666,36,234,4720,34,717,
- 31,35,675,30,32,1814,29,27,56,1830,
- 112,82,83,114,308,1838,1880,1872,2685,211,
- 220,4524,210,217,218,219,221,523,2133,1865,
- 39,396,1865,39,396,65,212,214,1271,996,
- 565,1961,15,4739,213,215,216,297,298,299,
- 300,2415,39,666,36,3363,4720,34,717,31,
- 35,675,30,32,1814,29,27,56,1830,112,
- 82,83,114,305,1838,1880,1872,2700,2415,39,
- 666,36,1476,4720,34,717,31,35,675,30,
- 32,1814,29,27,56,1830,112,82,83,114,
- 1544,1838,1880,1872,2707,1476,1616,13,2415,39,
- 666,36,1792,4720,34,717,31,35,675,30,
- 32,1814,29,27,56,1830,112,82,83,114,
- 1828,1838,1880,1872,2728,2527,39,660,390,2291,
- 2647,1430,2337,1115,538,3118,3779,2035,242,1139,
- 39,666,36,2591,3779,34,717,343,35,675,
- 599,39,1260,3266,599,39,660,390,2415,39,
- 666,36,278,4720,34,717,31,35,675,30,
- 32,1814,29,27,56,1830,112,82,83,114,
- 71,1838,1880,2751,2585,237,336,511,39,660,
- 390,432,3570,2593,336,324,1030,326,599,39,
- 660,390,347,319,850,2199,1513,1115,153,2585,
- 3779,1230,1571,240,235,236,71,505,778,2646,
- 2858,534,4376,3031,55,152,279,2867,2975,1165,
- 4363,1219,338,339,2400,431,445,382,65,3755,
- 205,247,250,253,256,3270,404,328,2940,1923,
- 162,3565,631,2712,4594,186,3141,2585,1513,445,
- 336,312,316,2012,39,1260,281,2593,381,2797,
- 863,2838,2989,3246,4354,234,304,1608,39,666,
- 36,3028,1037,34,717,343,35,675,2109,3539,
- 71,2122,2585,1226,3446,201,3062,364,211,220,
- 4524,210,217,218,219,221,335,339,355,1381,
- 347,2153,3506,2122,2150,212,214,1900,2788,565,
- 2722,222,2585,213,215,216,297,298,299,300,
- 3570,1531,290,324,1030,326,2735,2648,2646,71,
- 234,319,850,2778,1115,1103,1430,402,2095,2665,
- 244,3779,2808,4603,356,990,772,94,3788,1384,
- 108,1453,1578,211,220,4524,210,217,218,219,
- 221,348,1452,1329,353,1513,355,1271,3030,3065,
- 212,214,4669,2878,565,1922,222,2585,213,215,
- 216,297,298,299,300,4694,202,237,1468,1585,
- 2196,336,2585,2585,2593,234,4299,1027,39,666,
- 36,3563,428,34,717,343,35,675,2353,1513,
- 2867,2867,356,3788,1537,245,235,236,211,220,
- 4524,210,217,218,219,221,2006,1043,237,348,
- 1452,1329,353,3704,339,212,214,3065,2892,565,
- 28,222,2585,213,215,216,297,298,299,300,
- 3570,3587,2094,324,1030,326,252,235,236,521,
- 234,319,850,248,39,451,95,2325,4583,108,
- 599,39,660,390,356,2355,2259,1271,3788,1579,
- 364,365,4687,211,220,4524,210,217,218,219,
- 221,348,1452,1329,353,2718,2122,2150,71,2250,
- 212,214,2843,2937,565,1674,222,278,213,215,
- 216,297,298,299,300,2415,39,666,36,3077,
- 4720,34,717,31,35,675,30,32,1814,29,
- 27,56,1830,112,82,83,114,177,1838,1880,
- 2771,534,2393,3788,1621,2443,1167,39,2343,36,
- 2591,3779,34,717,343,35,675,2455,2199,234,
- 2480,2097,2585,3779,380,3412,599,3320,1260,80,
- 162,280,1595,2211,1115,186,3141,1132,370,237,
- 2867,522,209,220,4524,208,217,218,219,221,
- 1595,1115,2578,2499,1,1513,175,3779,534,3570,
- 2506,336,324,1030,326,1513,162,255,235,236,
- 319,850,168,336,2511,174,234,2530,189,173,
- 176,177,178,179,180,933,354,162,448,1999,
- 2006,71,186,3141,2593,2908,75,4363,356,209,
- 220,4524,208,217,218,219,221,337,1406,3959,
- 364,2593,2585,175,1513,348,1452,1329,353,2571,
- 1952,187,378,346,2585,3506,2122,2150,2572,356,
- 234,65,174,3845,339,190,173,176,177,178,
- 179,180,347,393,425,74,350,1452,1329,353,
- 3945,339,89,211,220,4524,210,217,218,219,
- 221,395,425,732,1865,39,396,416,2361,185,
- 212,214,2449,3064,565,1595,15,65,213,215,
- 216,297,298,299,300,2405,2415,39,666,36,
- 2769,4720,34,717,31,35,675,30,32,1814,
- 29,27,56,1830,112,82,83,114,4000,1838,
- 2550,2415,39,666,36,204,4720,34,717,31,
- 35,675,30,32,1814,29,27,56,1830,112,
- 82,83,114,265,1838,2556,3091,534,1230,1571,
- 2356,14,1355,39,666,36,2591,2266,34,717,
- 343,35,675,1468,1008,234,2598,2585,2585,2626,
- 2534,39,1174,1741,1727,3952,162,2012,39,1260,
- 3353,186,3141,71,3401,2867,2867,3060,209,220,
- 4524,208,217,218,219,221,394,425,454,1920,
- 353,2644,175,1132,534,3570,237,55,324,1030,
- 326,71,1165,1015,783,1132,319,850,2342,440,
- 2504,174,234,1513,3195,173,176,177,178,179,
- 180,778,166,162,258,235,236,1513,186,3141,
- 599,39,660,390,2666,209,220,4524,208,217,
- 218,219,221,2198,59,364,503,441,1920,175,
- 2387,534,1132,599,39,1260,3376,2650,93,290,
- 3626,2122,2150,65,313,316,2652,430,174,234,
- 1699,182,173,176,177,178,179,180,1920,1513,
- 162,166,1132,501,502,186,3141,3323,1663,1578,
- 2505,2513,209,220,4524,208,217,218,219,221,
- 5292,203,1430,5292,529,71,175,3779,534,534,
- 58,166,5292,2729,39,666,36,2591,5292,34,
- 717,343,35,675,65,174,234,347,193,173,
- 176,177,178,179,180,505,1008,162,162,1132,
- 2585,1496,186,3141,2879,3185,3389,5292,3031,209,
- 220,4524,208,217,218,219,221,336,2867,2835,
- 71,617,406,175,3248,534,3570,5292,162,324,
- 1030,326,1513,206,3609,71,3482,319,850,954,
- 71,5292,174,234,2667,3400,173,176,177,178,
- 179,180,778,3062,162,5292,1513,5292,71,186,
- 3141,71,1132,449,5292,1132,209,220,4524,208,
- 217,218,219,221,65,2615,39,666,36,3563,
- 175,34,717,343,35,675,71,3706,503,71,
- 1287,3548,5292,2804,162,312,316,705,1513,174,
- 2033,534,198,173,176,177,178,179,180,5292,
- 71,5292,207,1430,3601,1674,3707,5292,3779,234,
- 599,39,660,390,5292,500,502,1226,3570,96,
- 162,324,1030,326,71,186,3141,71,3263,319,
- 850,794,209,220,4524,208,217,218,219,221,
- 5292,1264,356,5292,525,2585,175,55,5292,65,
- 65,5292,1165,793,1175,2159,5292,534,336,348,
- 1452,1329,353,2867,380,174,1513,526,192,173,
- 176,177,178,179,180,234,1513,599,39,660,
- 390,687,39,660,390,1513,162,205,3043,2388,
- 5292,186,3141,2585,3959,5292,1513,3786,209,220,
- 4524,208,217,218,219,221,2699,3791,5292,71,
- 2585,347,175,2815,55,5292,3357,5292,55,1165,
- 529,924,5292,1165,5292,53,1920,3414,234,1513,
- 1132,174,3031,503,200,173,176,177,178,179,
- 180,2968,1113,532,71,2585,71,65,733,5292,
- 3044,211,220,4524,210,217,218,219,221,166,
- 3471,5292,3536,234,775,39,660,390,212,214,
- 500,502,565,5292,518,5292,213,215,216,297,
- 298,299,300,5292,5292,227,211,220,4524,210,
- 217,218,219,221,71,71,2981,5292,1132,3423,
- 2585,55,65,212,214,1513,1165,565,53,519,
- 3257,213,215,216,297,298,299,300,234,599,
- 39,660,390,5292,3947,636,71,162,2802,1513,
- 3061,71,2585,2896,1513,1124,73,5292,5292,5292,
- 199,211,220,4524,210,217,218,219,221,5292,
- 234,599,39,660,390,1513,55,5292,212,214,
- 72,1165,565,1407,311,71,213,215,216,297,
- 298,299,300,211,220,4524,210,217,218,219,
- 221,4358,5292,2107,5292,71,70,3525,55,816,
- 212,214,5292,1165,565,1184,223,5292,213,215,
- 216,297,298,299,300,2415,39,666,36,5292,
- 4720,34,717,31,35,675,30,32,1814,29,
- 27,56,1830,112,82,83,114,5292,2562,2415,
- 39,666,36,5292,4720,34,717,31,35,675,
- 30,32,1814,29,27,56,1830,112,82,83,
- 114,5292,2580,2415,39,666,36,1513,4720,34,
- 717,31,35,675,30,32,1814,29,27,56,
- 1830,112,82,83,114,3046,2597,71,71,2585,
- 71,1132,1132,1513,1132,71,5292,1513,1856,817,
- 5292,5292,1135,39,660,390,5292,234,5292,1221,
- 39,666,36,5292,3779,34,717,343,35,675,
- 162,162,5292,162,2418,5292,3765,3789,61,3794,
- 211,220,4524,210,217,218,219,221,71,55,
- 5292,1513,1132,5292,1165,1513,53,212,214,1513,
- 1513,565,5292,497,5292,213,215,216,297,298,
- 299,300,3570,787,337,324,1030,326,5292,5292,
- 5292,162,60,320,850,5292,3762,3815,5292,5292,
- 107,3613,2359,39,666,36,356,4720,34,717,
- 31,35,675,30,32,1814,29,27,56,1830,
- 92,82,83,350,1452,1329,353,2415,39,666,
- 36,5292,4720,34,717,31,35,675,30,32,
- 1814,29,27,56,1830,112,82,83,91,2415,
- 1314,666,2213,5292,4720,34,717,31,35,675,
- 30,32,1814,29,27,56,1830,112,82,83,
- 90,2415,39,666,36,5292,4720,34,717,31,
- 35,675,30,32,1814,29,27,56,1830,112,
- 82,83,89,2415,39,666,36,5292,4720,34,
- 717,31,35,675,30,32,1814,29,27,56,
- 1830,112,82,83,88,2415,39,666,36,5292,
- 4720,34,717,31,35,675,30,32,1814,29,
- 27,56,1830,112,82,83,87,2415,39,666,
- 36,5292,4720,34,717,31,35,675,30,32,
- 1814,29,27,56,1830,112,82,83,86,2415,
- 39,666,36,5292,4720,34,717,31,35,675,
- 30,32,1814,29,27,56,1830,112,82,83,
- 85,2415,39,666,36,5292,4720,34,717,31,
- 35,675,30,32,1814,29,27,56,1830,112,
- 82,83,84,2238,39,666,36,5292,4720,34,
- 717,31,35,675,30,32,1814,29,27,56,
- 1830,112,82,83,110,2415,39,666,36,5292,
- 4720,34,717,31,35,675,30,32,1814,29,
- 27,56,1830,112,82,83,116,2415,39,666,
- 36,5292,4720,34,717,31,35,675,30,32,
- 1814,29,27,56,1830,112,82,83,115,2415,
- 39,666,36,5292,4720,34,717,31,35,675,
- 30,32,1814,29,27,56,1830,112,82,83,
- 113,2415,39,666,36,5292,4720,34,717,31,
- 35,675,30,32,1814,29,27,56,1830,112,
- 82,83,111,1687,39,2343,36,2591,5292,34,
- 717,343,35,675,2590,39,660,390,1461,2647,
- 5292,5292,5292,1283,39,666,36,243,3779,34,
- 717,343,35,675,5292,5292,2023,39,666,36,
- 5292,3779,34,717,343,35,675,5292,5292,528,
- 5292,278,5292,71,5292,5292,3570,2585,5292,324,
- 1030,326,1844,5292,5292,5292,2585,319,850,5292,
- 5292,5292,5292,5292,237,347,3570,5292,337,324,
- 1030,326,933,5292,347,5292,71,322,850,3570,
- 2585,337,324,1030,326,5292,3031,5292,5292,5292,
- 320,850,241,235,236,3843,5292,2427,347,5292,
- 1355,39,666,36,2591,279,34,717,343,35,
- 675,423,39,660,390,5292,5292,5292,5292,3031,
- 248,251,254,257,3270,5292,5292,5292,5292,5292,
- 2433,631,1258,39,666,36,3016,5292,34,717,
- 343,35,675,5292,5292,5292,5292,951,278,5292,
- 5292,2585,3811,3570,417,2361,324,1030,326,511,
- 39,660,390,5292,319,850,5292,5292,5292,234,
- 403,5292,5292,5292,976,39,666,36,2599,3360,
- 34,717,343,35,675,3570,5292,5292,321,770,
- 326,5292,2668,407,4482,1039,55,5292,5292,2585,
- 3811,1165,5292,53,5292,5292,5292,5292,5292,408,
- 409,5292,3274,565,5292,1920,5292,234,5292,1132,
- 647,5292,1254,39,660,390,78,3570,5292,5292,
- 321,770,326,1754,39,660,390,5292,5292,5292,
- 2668,407,4482,3943,1754,39,660,390,166,5292,
- 1493,5292,5292,1754,39,660,390,408,409,55,
- 5292,565,5292,5292,1165,5292,53,5292,5292,71,
- 55,5292,5292,2585,71,1165,5292,53,2585,5292,
- 5292,55,5292,1169,5292,71,1165,1032,53,1132,
- 55,347,5292,5292,1410,1165,347,53,1493,1618,
- 39,660,390,5292,5292,2265,410,412,775,39,
- 660,390,3031,3991,2614,5292,5292,3031,162,1754,
- 39,660,390,2434,2089,5292,5292,5292,507,1032,
- 1393,5292,4545,5292,5292,5292,55,1754,39,660,
- 390,1165,71,1712,593,55,2585,5292,534,5292,
- 1165,5292,1796,5292,410,413,55,5292,5292,5292,
- 2940,1165,5292,53,347,5292,347,5292,5292,4461,
- 1592,39,660,390,55,5292,5292,162,71,1165,
- 2658,53,534,194,5292,3031,5292,4450,5292,599,
- 39,660,390,5292,5292,5292,505,71,3340,5292,
- 347,534,599,39,660,390,71,55,5292,1920,
- 2585,162,1165,1132,1409,5292,5292,3124,5292,347,
- 5292,3031,599,39,660,390,55,5292,347,5292,
- 162,1165,3075,2372,71,5292,2879,5292,534,55,
- 3031,71,166,71,1165,534,2436,534,196,3031,
- 71,3337,5292,5292,2585,5292,347,71,5292,55,
- 3636,1132,5292,347,1165,347,1409,162,5292,5292,
- 5292,5292,347,194,162,5292,162,4450,5292,5292,
- 194,5292,194,5292,4450,5292,4450,5292,5292,5292,
- 162,5292,5292,3031,5292,5292,3995,5292,5292,5292,
- 5292,5292,5292,5292,533,5292,5292,3999,5292,5292,
- 5292,5292,5292,5292,5292,5292,5292,5292,5292,5292,
- 5292,3610,5292,5292,5292,5292,5292,5292,5292,5292,
- 5292,5292,5292,5292,5292,5292,5292,5292,3645,5292,
- 5292,5292,5292,5292,5292,3656,5292,3689,5292,0,
- 499,3666,0,233,1,0,43,5310,0,43,
- 5309,0,1,576,0,1,656,0,1,3130,
- 0,1,5310,2,0,1,5309,2,0,5531,
- 246,0,5530,246,0,5634,246,0,5633,246,
- 0,5558,246,0,5557,246,0,5556,246,0,
- 5555,246,0,5554,246,0,5553,246,0,5552,
- 246,0,5551,246,0,5569,246,0,5568,246,
- 0,5567,246,0,5566,246,0,5565,246,0,
- 5564,246,0,5563,246,0,5562,246,0,5561,
- 246,0,5560,246,0,5559,246,0,43,246,
- 5310,0,43,246,5309,0,5334,246,0,1825,
- 389,0,54,5310,0,54,5309,0,43,1,
- 5310,2,0,43,1,5309,2,0,5334,1,
- 0,1,5626,0,1,1909,0,1825,33,0,
- 438,1951,0,452,2300,0,5310,54,0,5309,
- 54,0,2676,323,0,43,5310,2,0,43,
- 5309,2,0,39,37,0,1,442,0,456,
- 1038,0,455,1074,0,233,225,0,499,1495,
- 0,5334,233,1,0,43,233,1,0,233,
- 415,0,41,5310,0,41,5309,0,49,5332,
- 0,49,41,0,1,2488,0,1,5569,0,
- 1,5568,0,1,5567,0,1,5566,0,1,
- 5565,0,1,5564,0,1,5563,0,1,5562,
- 0,1,5561,0,1,5560,0,1,5559,0,
- 43,1,5310,0,43,1,5309,0,728,1,
- 0,1,2479,0,1,2482,0,233,224,0,
- 5302,405,0,5301,405,0,233,414,0,30,
- 517,0,42,5310,0,42,5309,0,2528,132,
- 0,5300,1,0,5626,443,0,1909,443,0,
- 5332,51,0,51,41,0,5298,1,0,5297,
- 1,0,1825,45,0,3508,97,0,36,38,
- 0,43,656,0,233,1,3012,0,5302,233,
- 0,5301,233,0,43,1,0,242,3299,0,
- 390,36,0,36,390,0,389,33,0,33,
- 389,0,2528,134,0,2528,133,0,3162,233,
- 0,53,41,0,1,98,0,41,53,0,
- 8,10,0,41,5310,2,0,41,5309,2,
- 0,5310,40,0,5309,40,0,5626,101,0,
- 1909,101,0,39,79,0,283,3686,0,191,
- 3547,0
+ 40,40,39,33,141,141,96,96,173,173,
+ 91,192,192,79,79,79,79,79,79,79,
+ 79,79,80,80,80,74,74,59,59,174,
+ 174,81,81,81,102,102,175,175,82,82,
+ 82,176,176,83,83,83,83,83,84,84,
+ 73,73,73,73,73,73,73,48,48,48,
+ 48,48,113,113,114,114,49,177,22,22,
+ 22,22,22,47,47,86,86,86,86,86,
+ 148,148,143,143,143,143,143,144,144,144,
+ 145,145,145,146,146,146,147,147,147,87,
+ 87,87,87,87,88,88,88,13,13,13,
+ 13,13,13,13,13,13,13,13,99,118,
+ 118,118,118,118,118,116,116,116,117,117,
+ 150,150,149,149,120,120,103,66,66,67,
+ 68,51,46,151,151,52,50,77,77,152,
+ 152,142,142,121,122,122,75,75,153,153,
+ 62,62,62,57,57,56,63,63,72,72,
+ 55,55,55,89,89,98,97,97,60,60,
+ 58,58,54,54,43,100,100,100,92,92,
+ 92,93,93,94,94,94,95,95,104,104,
+ 104,106,106,105,105,193,193,90,90,179,
+ 179,179,179,179,124,45,45,155,178,178,
+ 125,125,125,125,180,180,37,37,115,126,
+ 126,126,126,107,107,119,119,119,157,158,
+ 158,158,158,158,158,158,158,158,158,158,
+ 183,183,181,181,182,182,159,159,159,159,
+ 160,184,109,108,108,185,185,161,161,161,
+ 161,101,101,101,186,186,9,9,10,187,
+ 187,188,162,154,154,163,163,164,165,165,
+ 6,6,7,166,166,166,166,166,166,166,
+ 166,166,166,166,166,166,166,166,166,166,
+ 166,166,166,166,166,166,166,166,166,166,
+ 166,166,166,166,166,166,166,166,166,166,
+ 166,166,166,166,166,64,69,69,167,167,
+ 128,128,129,129,129,129,129,129,3,130,
+ 130,127,127,110,110,110,76,65,85,156,
+ 156,111,111,189,189,189,131,131,123,123,
+ 190,190,881,39,2551,2525,2193,4606,34,1097,
+ 31,35,1064,30,32,2519,29,27,56,1842,
+ 112,82,83,114,857,1851,1884,1866,1901,1900,
+ 1926,1908,1942,1260,1935,944,1943,1968,149,278,
+ 3081,1552,164,150,2519,39,282,1091,39,1057,
+ 36,718,3011,34,1097,340,35,1064,2430,39,
+ 1057,36,237,4447,34,1097,31,35,1064,30,
+ 32,1809,29,27,56,1842,112,82,83,114,
+ 769,1851,1884,1866,1901,1900,1926,2881,240,235,
+ 236,248,39,449,1809,780,4284,1773,2515,3093,
+ 2780,279,494,321,967,323,248,39,284,316,
+ 571,2852,237,326,2174,3648,2553,247,250,253,
+ 256,2940,1244,1644,1475,39,1057,36,942,4612,
+ 34,1097,31,35,1064,63,32,1169,249,235,
+ 236,1475,2586,2241,519,3276,582,2578,2779,2840,
+ 4391,1506,39,1057,36,2515,4447,34,1097,31,
+ 35,1064,1824,32,1809,29,27,56,1842,112,
+ 82,83,114,344,1851,1884,1866,1901,1900,1926,
+ 1908,1942,3773,1935,361,1943,1968,149,1176,1656,
+ 417,513,150,2946,2886,1630,39,285,2153,2106,
+ 2108,423,1431,1383,38,514,1506,39,1057,36,
+ 2515,4447,34,1097,31,35,1064,1824,32,1809,
+ 29,27,56,1842,112,82,83,114,344,1851,
+ 1884,1866,1901,1900,1926,1908,1942,325,1935,1013,
+ 1943,1968,149,333,1489,528,513,150,2725,2886,
+ 423,39,3050,3048,442,1992,2010,987,1260,67,
+ 514,509,1998,39,1057,36,1108,4612,34,1097,
+ 31,35,1064,62,32,2223,1317,3058,1674,94,
+ 4144,1985,108,1506,39,1057,36,2515,4447,34,
+ 1097,31,35,1064,1824,32,1809,29,27,56,
+ 1842,112,82,83,114,344,1851,1884,1866,1901,
+ 1900,1926,1908,1942,188,1935,509,1943,1968,149,
+ 1889,557,944,513,150,439,2886,3385,1102,39,
+ 2195,47,1388,2029,46,1097,1985,514,1780,39,
+ 1057,36,2515,4447,34,1097,31,35,1064,1824,
+ 32,1809,29,27,56,1842,112,82,83,114,
+ 344,1851,1884,1866,1901,1900,1926,1908,1942,519,
+ 1935,2174,1943,1968,149,1630,39,282,513,150,
+ 1111,2886,423,39,997,387,423,39,1383,281,
+ 852,1165,514,509,1403,39,393,66,938,39,
+ 1057,36,1071,2149,34,1097,3109,35,1064,1076,
+ 2058,2957,1063,1985,1782,1574,39,1057,36,448,
+ 4447,34,1097,31,35,1064,30,32,1809,29,
+ 27,56,1842,112,82,83,114,1018,1851,1884,
+ 1866,1901,1900,1926,1908,1942,1253,1935,510,1943,
+ 1968,149,944,48,1614,380,150,4214,2140,423,
+ 39,997,387,1648,39,1057,36,30,4447,34,
+ 1097,31,35,1064,30,32,1809,29,27,56,
+ 1842,112,82,83,114,383,1851,1884,1866,1901,
+ 1900,1926,1908,1942,357,1935,278,1943,1968,149,
+ 1238,2372,528,380,150,2430,39,1057,36,327,
+ 4447,34,1097,31,35,1064,30,32,1809,29,
+ 27,56,1842,112,82,83,114,206,1851,1884,
+ 1866,1901,2844,381,382,857,1906,39,1057,36,
+ 384,4447,34,1097,31,35,1064,30,32,1809,
+ 29,27,56,1842,112,82,83,114,280,1851,
+ 1884,1866,1901,1900,1926,1908,1942,646,1935,1116,
+ 1943,1968,149,1316,1257,296,380,150,423,39,
+ 1383,286,423,39,296,336,39,284,385,734,
+ 4690,2083,39,1057,36,2749,4447,34,1097,31,
+ 35,1064,30,32,1809,29,27,56,1842,112,
+ 82,83,114,456,1851,1884,1866,1901,1900,1926,
+ 1908,1942,1230,1935,452,1943,1968,149,423,39,
+ 287,164,150,1382,857,423,39,997,387,2083,
+ 39,1057,36,1423,4447,34,1097,31,35,1064,
+ 30,32,1809,29,27,56,1842,112,82,83,
+ 114,378,1851,1884,1866,1901,1900,1926,1908,1942,
+ 1464,1935,55,1943,1968,149,1173,52,315,374,
+ 150,2083,39,1057,36,3070,4447,34,1097,31,
+ 35,1064,30,32,1809,29,27,56,1842,112,
+ 82,83,114,300,1851,1884,1866,1901,1900,1926,
+ 1908,1942,455,1935,1111,1943,1968,149,1316,39,
+ 296,374,150,423,39,1383,283,946,2040,39,
+ 1057,36,2241,4698,34,1097,31,35,1064,65,
+ 32,2083,39,1057,36,324,4447,34,1097,31,
+ 35,1064,30,32,1809,29,27,56,1842,112,
+ 82,83,114,373,1851,1884,1866,1901,1900,1926,
+ 1908,1942,1495,1935,1382,1943,1968,149,389,423,
+ 1397,374,150,1848,39,1057,36,1540,4447,34,
+ 1097,31,35,1064,30,32,1809,29,27,56,
+ 1842,112,82,83,114,372,1851,1884,1866,1901,
+ 1900,1926,1908,1942,857,1935,821,1943,2019,170,
+ 2174,1173,1712,39,1057,36,1556,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,114,388,1851,1884,1866,1901,1900,
+ 1926,1908,1942,909,1935,1174,1943,1968,149,4231,
+ 146,329,148,150,3457,370,423,39,997,387,
+ 2083,39,1057,36,1344,4447,34,1097,31,35,
+ 1064,30,32,1809,29,27,56,1842,112,82,
+ 83,114,328,1851,1884,1866,1901,1900,1926,1908,
+ 1942,1115,1935,427,1943,1968,149,423,1632,768,
+ 161,150,2083,39,1057,36,1686,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,114,1644,1851,1884,1866,1901,1900,
+ 1926,1908,1942,356,1935,1176,1943,1968,149,2004,
+ 2946,528,160,150,2083,39,1057,36,1711,4447,
+ 34,1097,31,35,1064,30,32,1809,29,27,
+ 56,1842,112,82,83,114,1644,1851,1884,1866,
+ 1901,1900,1926,1908,1942,241,1935,1176,1943,1968,
+ 149,857,2946,522,159,150,2083,39,1057,36,
+ 333,4447,34,1097,31,35,1064,30,32,1809,
+ 29,27,56,1842,112,82,83,114,1534,1851,
+ 1884,1866,1901,1900,1926,1908,1942,291,1935,1836,
+ 1943,1968,149,2652,1685,521,158,150,2083,39,
+ 1057,36,333,4447,34,1097,31,35,1064,30,
+ 32,1809,29,27,56,1842,112,82,83,114,
+ 852,1851,1884,1866,1901,1900,1926,1908,1942,4086,
+ 1935,146,1943,1968,149,4398,4130,1747,157,150,
+ 2083,39,1057,36,1879,4447,34,1097,31,35,
+ 1064,30,32,1809,29,27,56,1842,112,82,
+ 83,114,1607,1851,1884,1866,1901,1900,1926,1908,
+ 1942,1830,1935,1176,1943,1968,149,857,2946,4120,
+ 156,150,2083,39,1057,36,2185,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,114,1745,1851,1884,1866,1901,1900,
+ 1926,1908,1942,1416,1935,1452,1943,1968,149,417,
+ 2946,2015,155,150,2083,39,1057,36,333,4447,
+ 34,1097,31,35,1064,30,32,1809,29,27,
+ 56,1842,112,82,83,114,2023,1851,1884,1866,
+ 1901,1900,1926,1908,1942,57,1935,226,1943,1968,
+ 149,99,3706,2064,154,150,2083,39,1057,36,
+ 334,4447,34,1097,31,35,1064,30,32,1809,
+ 29,27,56,1842,112,82,83,114,2111,1851,
+ 1884,1866,1901,1900,1926,1908,1942,520,1935,1111,
+ 1943,1968,149,423,39,3184,153,150,2083,39,
+ 1057,36,2340,4447,34,1097,31,35,1064,30,
+ 32,1809,29,27,56,1842,112,82,83,114,
+ 493,1851,1884,1866,1901,1900,1926,1908,1942,1752,
+ 1935,146,1943,1968,149,1200,423,3755,152,150,
+ 2083,39,1057,36,1136,4447,34,1097,31,35,
+ 1064,30,32,1809,29,27,56,1842,112,82,
+ 83,114,2632,1851,1884,1866,1901,1900,1926,1908,
+ 1942,988,1935,1537,1943,1968,149,2863,423,3161,
+ 151,150,2083,39,1057,36,1273,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,114,1409,1851,1884,1866,1901,1900,
+ 1926,1908,1942,520,1935,146,1943,1968,149,2523,
+ 1660,29,165,150,2083,39,1057,36,2014,4447,
+ 34,1097,31,35,1064,30,32,1809,29,27,
+ 56,1842,112,82,83,114,1202,1851,1884,1866,
+ 1901,1900,1926,1908,1942,1517,1935,146,1943,1968,
+ 149,681,65,1843,146,150,2312,39,1057,36,
+ 1388,4447,34,1097,31,35,1064,30,32,1809,
+ 29,27,56,1842,112,82,83,114,1159,1851,
+ 1884,1866,1901,1900,1926,1908,1942,1382,1935,146,
+ 1943,1968,149,3178,1973,1988,195,150,2430,39,
+ 1057,36,1992,4447,34,1097,31,35,1064,30,
+ 32,1809,29,27,56,1842,112,82,83,114,
+ 1789,1851,1884,1866,1901,1900,1926,1908,1942,1282,
+ 1935,2236,1943,2019,170,2430,39,1057,36,1876,
+ 4447,34,1097,31,35,1064,30,32,1809,29,
+ 27,56,1842,112,82,83,114,288,1851,1884,
+ 1866,1901,1900,1926,1908,1942,354,1935,2031,1943,
+ 2019,170,2040,39,1057,36,1111,4698,34,1097,
+ 31,35,1064,64,32,2430,39,1057,36,295,
+ 4447,34,1097,31,35,1064,30,32,1809,29,
+ 27,56,1842,112,82,83,114,379,1851,1884,
+ 1866,1901,1900,1926,1908,1942,1915,1935,2048,1943,
+ 2019,170,2430,39,1057,36,419,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,114,1350,1851,1884,1866,1901,1900,
+ 1926,1908,1942,857,1935,2586,1943,2019,170,938,
+ 39,1057,36,1111,2141,34,1097,341,35,1064,
+ 1382,1388,2430,39,1057,36,3141,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,114,3249,1851,1884,1866,1901,1900,
+ 1926,1908,1942,2065,1935,2142,1943,2019,170,2486,
+ 39,1057,36,418,4447,34,1097,31,35,1064,
+ 30,32,1809,29,27,56,1842,112,82,83,
+ 114,103,1851,1884,1866,1901,1900,1926,1908,1942,
+ 307,1935,2540,1943,2019,170,938,39,1057,36,
+ 1231,2095,34,1097,3753,35,1064,1382,2046,2430,
+ 39,1057,36,421,4447,34,1097,31,35,1064,
+ 30,32,1809,29,27,56,1842,112,82,83,
+ 114,1382,1851,1884,1866,1901,1900,1926,1908,1942,
+ 146,1935,95,2895,2738,108,2430,39,1057,36,
+ 2756,4447,34,1097,31,35,1064,30,32,1809,
+ 29,27,56,1842,112,82,83,114,2055,1851,
+ 1884,1866,1901,1900,1926,1908,1942,299,2883,2430,
+ 39,1057,36,1111,4447,34,1097,31,35,1064,
+ 30,32,1809,29,27,56,1842,112,82,83,
+ 114,289,1851,1884,1866,1901,1900,1926,1908,2859,
+ 2430,39,1057,36,4064,4447,34,1097,31,35,
+ 1064,30,32,1809,29,27,56,1842,112,82,
+ 83,114,2118,1851,1884,1866,1901,1900,2818,2430,
+ 39,1057,36,2124,4447,34,1097,31,35,1064,
+ 30,32,1809,29,27,56,1842,112,82,83,
+ 114,1396,1851,1884,1866,1901,2851,2430,39,1057,
+ 36,1515,4447,34,1097,31,35,1064,30,32,
+ 1809,29,27,56,1842,112,82,83,114,1846,
+ 1851,1884,1866,2667,2430,39,1057,36,2163,4447,
+ 34,1097,31,35,1064,30,32,1809,29,27,
+ 56,1842,112,82,83,114,1083,1851,1884,1866,
+ 2670,2430,39,1057,36,2173,4447,34,1097,31,
+ 35,1064,30,32,1809,29,27,56,1842,112,
+ 82,83,114,355,1851,1884,1866,2733,2430,39,
+ 1057,36,2289,4447,34,1097,31,35,1064,30,
+ 32,1809,29,27,56,1842,112,82,83,114,
+ 2323,1851,1884,1866,2755,2542,39,997,387,2176,
+ 2759,1644,2121,775,1632,2149,2515,1111,242,1160,
+ 39,1057,36,718,2946,34,1097,340,35,1064,
+ 938,39,1057,36,2553,1111,34,1097,44,35,
+ 1064,1978,278,1030,39,1057,36,1643,28,34,
+ 1097,340,35,1064,1189,39,1057,36,76,2946,
+ 34,1097,340,35,1064,237,351,146,3029,146,
+ 377,736,2780,813,333,321,967,323,248,39,
+ 449,316,571,4284,146,146,1633,1947,624,4576,
+ 1121,240,235,236,1030,1946,2780,2196,944,321,
+ 967,323,362,4632,279,316,571,2780,2564,334,
+ 321,967,323,1586,1608,353,319,571,2308,162,
+ 247,250,253,256,2940,168,593,1086,237,944,
+ 1121,942,4560,290,4616,345,2411,1984,350,1724,
+ 309,313,1176,2248,423,39,296,2946,3276,582,
+ 2578,2779,2840,4391,252,235,236,64,1165,162,
+ 205,1689,1977,1641,206,3756,375,2430,39,1057,
+ 36,1356,4447,34,1097,31,35,1064,30,32,
+ 1809,29,27,56,1842,112,82,83,114,1083,
+ 1851,1884,2778,2430,39,1057,36,2821,4447,34,
+ 1097,31,35,1064,30,32,1809,29,27,56,
+ 1842,112,82,83,114,177,1851,1884,2800,532,
+ 50,1614,367,240,2567,39,1057,36,995,4698,
+ 34,1097,31,35,1064,30,32,234,507,1539,
+ 146,446,1992,2010,3490,381,857,3331,162,159,
+ 39,997,387,186,3587,423,39,997,387,4395,
+ 209,220,3221,208,217,218,219,221,1683,3047,
+ 423,39,997,387,175,2790,39,1057,36,3496,
+ 100,34,1097,340,35,1064,55,1111,3273,174,
+ 2029,1302,430,1346,189,173,176,177,178,179,
+ 180,77,71,39,997,387,352,55,1762,382,
+ 989,2211,1302,1,862,146,2946,532,75,1121,
+ 423,39,1383,3183,104,330,336,2208,2780,237,
+ 3065,321,967,323,1877,234,146,316,571,278,
+ 3543,2748,423,39,997,387,162,353,162,1406,
+ 1244,186,3587,1464,1647,255,235,236,209,220,
+ 3221,208,217,218,219,221,2821,345,2411,1984,
+ 350,2017,175,1646,2147,2545,2114,1352,2368,55,
+ 1517,2515,2515,187,1302,2181,905,174,2300,2823,
+ 237,2341,190,173,176,177,178,179,180,234,
+ 344,3226,1127,39,2401,36,718,2946,34,1097,
+ 340,35,1064,2355,78,2295,258,235,236,775,
+ 1632,4306,211,220,3221,210,217,218,219,221,
+ 998,39,1310,1853,2402,3438,423,39,997,387,
+ 2439,212,214,216,297,298,851,417,353,102,
+ 15,1376,2458,213,215,2780,4540,333,321,967,
+ 323,390,423,672,316,571,3300,55,345,2411,
+ 1984,350,1302,55,780,1644,343,536,1302,2465,
+ 1515,1689,39,1383,281,306,2540,2430,39,1057,
+ 36,2564,4447,34,1097,31,35,1064,30,32,
+ 1809,29,27,56,1842,112,82,83,114,13,
+ 1851,2605,2430,39,1057,36,2470,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,114,377,1851,2607,1811,146,290,
+ 1465,2495,3360,265,3643,610,3738,532,1243,39,
+ 1057,36,2637,2946,34,1097,340,35,1064,146,
+ 417,414,2429,2929,2514,234,2590,4293,2271,1641,
+ 3493,511,39,997,387,2524,162,423,39,997,
+ 387,186,3587,1274,3354,1403,39,393,209,220,
+ 3221,208,217,218,219,221,353,352,305,417,
+ 532,2780,175,334,321,967,323,89,55,1111,
+ 317,571,425,1302,55,53,146,174,234,1302,
+ 945,1950,3143,173,176,177,178,179,180,162,
+ 3196,2370,1112,1312,186,3587,2193,302,353,863,
+ 74,209,220,3221,208,217,218,219,221,441,
+ 146,2346,146,532,532,175,1121,944,345,2411,
+ 1984,350,4628,146,1376,1483,2545,3471,1274,4540,
+ 174,234,344,2526,2547,182,173,176,177,178,
+ 179,180,162,162,505,162,146,186,3587,2527,
+ 563,2884,2383,2886,209,220,3221,208,217,218,
+ 219,221,529,146,2323,146,532,532,175,1121,
+ 2540,976,39,1057,36,2529,2420,34,1097,340,
+ 35,1064,401,174,234,344,2578,1138,193,173,
+ 176,177,178,179,180,162,162,2521,162,146,
+ 186,3587,3119,4129,4156,443,2886,209,220,3221,
+ 208,217,218,219,221,617,146,2797,593,532,
+ 532,175,532,995,2780,2637,2661,318,1099,323,
+ 498,423,39,997,387,2208,174,234,344,244,
+ 4134,3383,173,176,177,178,179,180,162,162,
+ 2209,162,2551,186,3587,194,186,3587,1962,4512,
+ 209,220,3221,208,217,218,219,221,429,1769,
+ 39,1057,36,1643,175,34,1097,340,35,1064,
+ 1286,417,2985,3273,2515,426,237,146,434,174,
+ 443,4622,201,2472,198,173,176,177,178,179,
+ 180,705,2553,2528,2283,532,423,39,997,387,
+ 1464,1773,245,235,236,1403,39,393,4137,301,
+ 335,336,2780,234,625,321,967,323,2591,2830,
+ 2597,316,571,1015,162,599,39,997,387,186,
+ 3587,353,399,428,523,2536,209,220,3221,208,
+ 217,218,219,221,793,146,5300,5300,532,3470,
+ 175,345,2411,1984,350,423,3302,1383,80,524,
+ 501,2145,55,3167,3300,174,234,1302,5300,53,
+ 192,173,176,177,178,179,180,162,687,39,
+ 997,387,186,3587,4119,202,928,5300,5300,209,
+ 220,3221,208,217,218,219,221,2725,499,500,
+ 1111,2515,5300,175,1689,39,1383,3343,392,423,
+ 1809,995,3395,146,2515,55,5300,2515,174,234,
+ 1302,5300,53,200,173,176,177,178,179,180,
+ 2801,59,2553,1305,2515,344,1305,2515,2946,725,
+ 2515,2946,211,220,3221,210,217,218,219,221,
+ 146,5300,234,146,2515,2553,2886,1121,2553,1111,
+ 5300,212,214,216,297,298,851,2438,5300,5300,
+ 222,3273,344,213,215,211,220,3221,210,217,
+ 218,219,221,2890,5300,146,162,2515,333,1121,
+ 93,333,4167,2886,212,214,216,297,298,851,
+ 361,5300,5300,222,2465,234,213,215,332,336,
+ 4267,1163,5300,146,3861,2106,2108,1121,162,5300,
+ 5300,5300,4130,361,4228,3706,361,417,211,220,
+ 3221,210,217,218,219,221,5300,3765,2106,2108,
+ 3765,2106,2108,4267,2160,5300,2066,212,214,216,
+ 297,298,851,146,1275,417,222,1121,1121,213,
+ 215,2430,39,1057,36,185,4447,34,1097,31,
+ 35,1064,30,32,1809,29,27,56,1842,112,
+ 82,83,114,1464,2623,5300,162,166,423,39,
+ 1383,3380,4238,204,5300,1111,4267,2247,2430,39,
+ 1057,36,5300,4447,34,1097,31,35,1064,30,
+ 32,1809,29,27,56,1842,112,82,83,114,
+ 5300,2624,2430,39,1057,36,58,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,114,5300,2649,1144,39,1057,36,
+ 3460,2946,34,1097,340,35,1064,2374,39,1057,
+ 36,5300,4447,34,1097,31,35,1064,30,32,
+ 1809,29,27,56,1842,92,82,83,1428,146,
+ 1111,146,2515,1121,417,1121,1275,5300,5300,5300,
+ 1121,391,423,417,146,417,417,417,2515,2780,
+ 234,334,321,967,323,1111,146,5300,317,571,
+ 2837,447,3781,146,162,5300,344,788,353,166,
+ 2143,1111,203,211,220,3221,210,217,218,219,
+ 221,403,5300,207,205,2596,3860,2886,347,2411,
+ 1984,350,212,214,216,297,298,851,2492,146,
+ 5300,15,96,644,213,215,2430,39,1057,36,
+ 5300,4447,34,1097,31,35,1064,30,32,1809,
+ 29,27,56,1842,112,82,83,91,2430,1431,
+ 1057,2240,3655,4447,34,1097,31,35,1064,30,
+ 32,1809,29,27,56,1842,112,82,83,90,
+ 146,1111,5300,5300,4139,5300,2430,39,1057,36,
+ 14,4447,34,1097,31,35,1064,30,32,1809,
+ 29,27,56,1842,112,82,83,89,2430,39,
+ 1057,36,4208,4447,34,1097,31,35,1064,30,
+ 32,1809,29,27,56,1842,112,82,83,88,
+ 2430,39,1057,36,5300,4447,34,1097,31,35,
+ 1064,30,32,1809,29,27,56,1842,112,82,
+ 83,87,2430,39,1057,36,5300,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,86,2430,39,1057,36,5300,4447,
+ 34,1097,31,35,1064,30,32,1809,29,27,
+ 56,1842,112,82,83,85,2430,39,1057,36,
+ 5300,4447,34,1097,31,35,1064,30,32,1809,
+ 29,27,56,1842,112,82,83,84,2254,39,
+ 1057,36,5300,4447,34,1097,31,35,1064,30,
+ 32,1809,29,27,56,1842,112,82,83,110,
+ 2430,39,1057,36,5300,4447,34,1097,31,35,
+ 1064,30,32,1809,29,27,56,1842,112,82,
+ 83,116,2430,39,1057,36,5300,4447,34,1097,
+ 31,35,1064,30,32,1809,29,27,56,1842,
+ 112,82,83,115,2430,39,1057,36,5300,4447,
+ 34,1097,31,35,1064,30,32,1809,29,27,
+ 56,1842,112,82,83,113,2430,39,1057,36,
+ 5300,4447,34,1097,31,35,1064,30,32,1809,
+ 29,27,56,1842,112,82,83,111,1278,39,
+ 1057,36,718,5300,34,1097,340,35,1064,681,
+ 2198,146,1275,532,2515,1121,1121,2712,1111,995,
+ 1637,2515,5300,5300,146,2946,1275,1111,4108,995,
+ 1121,344,344,5300,159,39,997,387,5300,234,
+ 5300,1111,162,1111,162,166,1111,5300,194,4209,
+ 4375,2780,4512,1559,321,967,323,1111,3159,166,
+ 316,571,211,220,3221,210,217,218,219,221,
+ 5300,55,3212,1030,3265,334,1302,73,53,3273,
+ 5300,212,214,216,297,298,851,2903,72,3273,
+ 516,2515,353,213,215,1158,1275,1275,146,146,
+ 1121,1121,4341,3285,1156,39,997,387,3740,234,
+ 5300,196,347,2411,1984,350,3809,336,1111,309,
+ 313,2968,4342,5300,5300,2515,4325,336,1111,166,
+ 166,5300,211,220,3221,210,217,218,219,221,
+ 4254,55,5300,234,417,5300,1302,1111,53,71,
+ 1356,212,214,216,297,298,851,2814,1969,70,
+ 517,2515,2515,213,215,2654,211,220,3221,210,
+ 217,218,219,221,1290,39,997,387,1464,234,
+ 344,3766,227,1111,3757,212,214,216,297,298,
+ 851,2981,4359,4384,308,2515,1472,213,215,5300,
+ 3319,667,211,220,3221,210,217,218,219,221,
+ 5300,55,5300,234,1506,146,1302,5300,53,901,
+ 5300,212,214,216,297,298,851,5300,5300,5300,
+ 223,995,1111,213,215,912,211,220,3221,210,
+ 217,218,219,221,1091,39,1057,36,718,1111,
+ 34,1097,340,35,1064,212,214,216,297,298,
+ 851,417,146,61,495,1111,1350,213,215,1563,
+ 39,2401,36,718,1111,34,1097,340,35,1064,
+ 60,2603,39,997,387,1111,2759,5300,951,2345,
+ 5300,3273,2515,3087,243,5300,4371,2780,5300,199,
+ 321,967,323,5300,5300,107,316,571,146,5300,
+ 234,5300,2515,5300,5300,5300,3404,5300,278,1030,
+ 526,5300,2780,5300,452,321,967,323,4372,336,
+ 344,316,571,3194,404,4494,5300,1614,39,997,
+ 387,237,5300,5300,536,438,5300,5300,5300,5300,
+ 5300,2886,405,406,407,297,298,851,5300,5300,
+ 5300,5300,2510,5300,5300,310,313,241,235,236,
+ 5300,5300,5300,5300,55,5300,5300,5300,5300,1302,
+ 279,2161,5300,5300,1003,39,1057,36,2912,1548,
+ 34,1097,340,35,1064,5300,248,251,254,257,
+ 2940,5300,1091,39,1057,36,718,942,34,1097,
+ 340,35,1064,5300,146,5300,1039,5300,2515,5300,
+ 2515,3087,400,5300,5300,5300,5300,5300,415,2429,
+ 1290,39,997,387,5300,5300,344,2780,234,5300,
+ 318,1099,323,5300,5300,408,410,5300,5300,5300,
+ 1290,39,997,387,5300,2780,5300,2886,321,967,
+ 323,3194,404,4494,316,571,1286,55,505,1304,
+ 2515,4526,1302,5300,53,5300,5300,3353,5300,5300,
+ 405,406,407,297,298,851,5300,55,2553,5300,
+ 5300,1396,1302,5300,53,5300,1821,39,997,387,
+ 5300,5300,599,39,997,387,1290,39,997,387,
+ 5300,2765,2343,5300,5300,5300,2515,1548,1290,39,
+ 997,387,423,39,997,387,5300,5300,5300,5300,
+ 5300,5300,146,55,2553,5300,532,625,1302,55,
+ 2925,5300,5300,55,1302,5300,3149,5300,1302,5300,
+ 53,5300,5300,5300,344,55,501,989,5300,55,
+ 1302,5300,53,2812,1302,162,3308,3281,5300,5300,
+ 5300,2527,5300,408,411,2886,5300,5300,5300,3356,
+ 423,39,997,387,5300,5300,3519,5300,423,39,
+ 997,387,5300,5300,498,500,146,5300,5300,146,
+ 532,5300,501,2515,146,1741,146,5300,532,2515,
+ 2515,5300,146,5300,5300,5300,2515,55,344,5300,
+ 5300,344,1302,5300,574,55,344,344,344,162,
+ 1302,5300,2161,2134,344,194,527,162,5300,4512,
+ 498,500,2886,194,5300,5300,5300,4512,2886,2886,
+ 5300,5300,5300,503,5300,2886,5300,5300,5300,530,
+ 4128,5300,5300,5300,5300,5300,531,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,3175,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,4151,5300,
+ 5300,5300,5300,5300,5300,5300,4153,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,4399,5300,0,497,4127,
+ 0,233,1,0,43,5318,0,43,5317,0,
+ 1,577,0,1,731,0,1,4268,0,1,
+ 5318,2,0,1,5317,2,0,5539,246,0,
+ 5538,246,0,5639,246,0,5638,246,0,5566,
+ 246,0,5565,246,0,5564,246,0,5563,246,
+ 0,5562,246,0,5561,246,0,5560,246,0,
+ 5559,246,0,5577,246,0,5576,246,0,5575,
+ 246,0,5574,246,0,5573,246,0,5572,246,
+ 0,5571,246,0,5570,246,0,5569,246,0,
+ 5568,246,0,5567,246,0,43,246,5318,0,
+ 43,246,5317,0,5342,246,0,1937,386,0,
+ 54,5318,0,54,5317,0,43,1,5318,2,
+ 0,43,1,5317,2,0,5342,1,0,1,
+ 5631,0,1,2280,0,1937,33,0,436,2577,
+ 0,450,2579,0,5318,54,0,5317,54,0,
+ 2594,320,0,43,5318,2,0,43,5317,2,
+ 0,39,37,0,1,440,0,454,1065,0,
+ 453,1164,0,233,225,0,497,1607,0,5342,
+ 233,1,0,43,233,1,0,233,413,0,
+ 41,5318,0,41,5317,0,49,5340,0,49,
+ 41,0,1,2608,0,1,5577,0,1,5576,
+ 0,1,5575,0,1,5574,0,1,5573,0,
+ 1,5572,0,1,5571,0,1,5570,0,1,
+ 5569,0,1,5568,0,1,5567,0,43,1,
+ 5318,0,43,1,5317,0,858,1,0,1,
+ 924,0,1,3095,0,233,224,0,5310,402,
+ 0,5309,402,0,233,412,0,30,515,0,
+ 42,5318,0,42,5317,0,2461,132,0,5308,
+ 1,0,5631,441,0,2280,441,0,5340,51,
+ 0,51,41,0,5306,1,0,5305,1,0,
+ 1937,45,0,3739,97,0,36,38,0,43,
+ 731,0,233,1,2901,0,5310,233,0,5309,
+ 233,0,43,1,0,242,3614,0,387,36,
+ 0,36,387,0,386,33,0,33,386,0,
+ 2461,134,0,2461,133,0,3117,233,0,53,
+ 41,0,1,98,0,41,53,0,8,10,
+ 0,41,5318,2,0,41,5317,2,0,5318,
+ 40,0,5317,40,0,5631,101,0,2280,101,
+ 0,39,79,0,283,4136,0,191,3351,0
};
};
public final static char baseAction[] = BaseAction.baseAction;
@@ -1082,7 +1083,7 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
40,41,42,43,44,45,46,47,48,49,
50,51,52,53,54,55,56,28,58,59,
60,61,62,0,0,65,66,67,68,69,
- 0,71,0,9,74,11,76,77,78,79,
+ 0,1,2,73,74,5,76,77,78,79,
80,81,82,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
@@ -1090,16 +1091,16 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
32,33,34,35,36,37,38,39,40,41,
42,43,44,45,46,47,48,49,50,51,
52,53,54,55,56,0,58,59,60,61,
- 62,0,0,65,66,67,68,69,95,71,
- 0,9,74,11,76,77,78,79,80,81,
+ 62,88,89,65,66,67,68,69,0,1,
+ 2,73,74,99,76,77,78,79,80,81,
82,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,60,30,31,32,33,
+ 24,25,26,27,0,0,30,31,32,33,
34,35,36,37,38,39,40,41,42,43,
44,45,46,47,48,49,50,51,52,53,
- 54,55,56,0,58,59,60,61,62,88,
- 89,65,66,67,68,69,0,0,1,2,
+ 54,55,56,28,58,59,60,61,62,0,
+ 0,65,66,67,68,69,6,0,1,2,
74,4,76,77,78,79,80,81,82,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
@@ -1107,8 +1108,8 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
26,27,88,89,30,31,32,33,34,35,
36,37,38,39,40,41,42,43,44,45,
46,47,48,49,50,51,52,53,54,55,
- 56,0,58,59,60,61,62,0,0,65,
- 66,67,68,69,6,0,1,2,74,4,
+ 56,0,58,59,60,61,62,88,89,65,
+ 66,67,68,69,0,0,1,2,74,4,
76,77,78,79,80,81,82,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
@@ -1116,8 +1117,8 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
0,0,30,31,32,33,34,35,36,37,
38,39,40,41,42,43,44,45,46,47,
48,49,50,51,52,53,54,55,56,28,
- 58,59,60,61,62,88,89,65,66,67,
- 68,69,0,1,2,0,74,5,76,77,
+ 58,59,60,61,62,0,0,65,66,67,
+ 68,69,0,1,2,9,74,11,76,77,
78,79,80,81,82,83,84,85,86,87,
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
@@ -1143,260 +1144,257 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
34,35,36,37,38,39,40,41,42,43,
44,45,46,47,48,49,50,51,52,53,
54,55,56,28,58,59,60,61,62,0,
- 0,65,66,67,68,69,0,1,2,10,
- 74,0,76,77,78,79,80,81,82,83,
+ 0,65,66,67,68,69,0,1,2,9,
+ 74,11,76,77,78,79,80,81,82,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
26,27,0,0,30,31,32,33,34,35,
36,37,38,39,40,41,42,43,44,45,
46,47,48,49,50,51,52,53,54,55,
- 56,28,58,59,60,61,62,76,0,65,
- 66,67,68,69,0,1,2,0,74,99,
+ 56,28,58,59,60,61,62,0,0,65,
+ 66,67,68,69,0,1,2,10,74,0,
76,77,78,79,80,81,82,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
0,0,30,31,32,33,34,35,36,37,
38,39,40,41,42,43,44,45,46,47,
- 48,49,50,51,52,53,54,55,56,28,
- 58,59,60,61,62,0,0,65,66,67,
+ 48,49,50,51,52,53,54,55,56,29,
+ 58,59,60,61,62,76,0,65,66,67,
68,69,0,1,2,9,74,5,76,77,
78,79,80,81,82,83,84,85,86,87,
- 0,1,2,3,4,5,6,7,8,0,
+ 0,1,2,3,4,5,6,7,8,121,
10,29,12,13,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,0,
30,31,32,33,34,35,36,37,38,39,
40,41,42,43,44,45,46,47,48,49,
- 50,51,52,53,54,55,28,0,0,1,
- 2,61,62,5,0,7,66,10,68,69,
+ 50,51,52,53,54,55,28,0,1,2,
+ 60,61,5,0,7,0,66,4,68,69,
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
20,21,22,23,118,0,1,2,3,29,
- 5,31,7,33,34,35,97,98,38,0,
- 40,41,42,43,0,58,46,0,1,2,
- 50,4,0,6,60,8,56,0,0,1,
- 2,61,4,5,0,7,66,10,68,69,
- 0,71,72,0,74,75,0,1,2,3,
- 4,5,6,7,8,0,29,29,0,1,
+ 5,31,7,33,34,35,0,0,38,3,
+ 40,41,42,43,0,0,46,0,1,2,
+ 50,4,0,1,2,3,56,5,58,7,
+ 60,9,0,11,0,70,66,0,68,69,
+ 3,71,10,73,74,75,29,33,34,0,
+ 1,2,3,4,5,6,7,8,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,0,0,114,115,116,29,61,31,
- 0,33,34,35,0,61,38,3,40,41,
- 42,43,0,57,46,0,1,2,50,4,
- 70,6,0,8,56,3,70,0,6,61,
- 8,9,0,11,66,3,68,69,119,71,
- 72,9,74,75,0,121,24,25,26,27,
- 28,0,102,60,104,105,106,107,108,109,
- 110,111,112,113,0,1,2,117,0,1,
- 2,3,4,5,6,7,8,33,34,57,
- 29,0,114,115,116,63,64,6,0,57,
- 63,3,70,71,72,73,0,1,2,3,
- 4,5,6,7,8,73,114,115,116,0,
- 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,0,0,0,117,
- 118,3,120,0,6,57,8,9,12,11,
- 0,1,2,3,4,5,6,7,8,0,
- 1,2,24,25,26,27,28,31,72,33,
- 34,35,91,92,38,0,40,41,42,43,
- 5,0,46,0,1,2,50,0,1,2,
- 3,0,5,0,7,57,9,60,11,90,
- 0,63,64,10,4,96,63,57,70,71,
- 72,73,0,1,2,3,4,5,6,7,
- 8,30,29,0,1,2,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,29,0,61,117,118,4,120,0,
- 1,2,3,4,5,6,7,8,9,10,
- 11,12,13,14,15,16,17,18,19,20,
- 21,22,23,102,0,1,2,3,29,5,
- 31,7,33,34,35,0,0,38,117,40,
- 41,42,43,0,0,46,3,3,0,50,
- 0,3,0,1,2,56,4,58,59,9,
- 61,11,0,1,2,66,30,68,69,7,
- 26,27,0,74,75,0,1,2,3,4,
- 5,6,7,8,9,10,11,12,13,14,
- 15,16,17,18,19,20,21,22,23,0,
- 57,57,0,4,29,6,31,8,33,34,
- 35,0,60,38,64,40,41,42,43,0,
- 121,46,0,1,2,50,4,5,0,7,
- 0,56,4,58,59,0,61,0,0,9,
- 29,66,70,68,69,0,9,103,0,74,
- 75,29,0,0,1,2,3,4,5,6,
- 7,8,0,10,120,0,13,14,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,62,0,30,0,32,24,25,4,36,
- 37,9,39,28,64,57,121,44,45,64,
- 47,48,49,73,51,52,53,54,55,57,
- 73,0,28,0,0,62,63,72,65,6,
- 67,0,1,2,3,4,5,6,7,8,
- 9,10,95,0,13,14,15,16,17,18,
- 19,20,21,22,23,24,25,26,27,101,
- 0,30,0,32,0,73,4,36,37,9,
- 39,0,1,2,0,44,45,0,47,48,
- 49,57,51,52,53,54,55,0,1,2,
- 3,60,5,62,7,0,9,0,1,2,
- 0,6,71,0,1,2,3,4,5,6,
- 7,8,9,10,91,92,13,14,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,71,0,30,0,32,65,3,67,36,
- 37,9,39,100,57,0,72,44,45,72,
- 47,48,49,0,51,52,53,54,55,95,
- 73,0,65,60,67,62,0,1,2,3,
- 9,5,0,7,71,0,1,2,3,4,
- 5,6,7,8,0,10,91,92,13,14,
+ 22,23,0,0,114,115,116,29,56,31,
+ 0,33,34,35,57,0,38,90,40,41,
+ 42,43,0,96,46,0,57,5,50,4,
+ 0,1,2,3,56,5,58,7,60,70,
+ 30,0,1,2,66,30,68,69,7,71,
+ 0,73,74,75,0,0,31,3,3,9,
+ 6,0,8,9,62,11,0,1,2,3,
+ 4,5,6,7,8,0,122,0,24,25,
+ 26,27,28,0,1,2,3,4,5,6,
+ 7,8,114,115,116,0,1,2,0,0,
+ 1,2,3,4,5,6,7,8,0,1,
+ 2,57,4,0,6,0,8,63,64,4,
+ 0,6,72,8,70,71,72,73,0,1,
+ 2,3,4,5,6,7,8,71,63,64,
+ 57,0,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,70,0,
+ 0,117,118,3,120,62,6,0,8,9,
+ 3,11,0,1,2,3,4,5,6,7,
+ 8,114,115,116,24,25,26,27,28,0,
+ 102,0,104,105,106,107,108,109,110,111,
+ 112,113,0,0,0,117,0,0,1,2,
+ 3,0,5,9,7,0,9,57,11,0,
+ 1,2,63,63,64,10,24,25,97,98,
+ 70,71,72,73,0,1,2,70,4,0,
+ 6,0,8,9,29,0,1,2,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,71,60,72,117,118,0,
+ 120,0,1,2,3,4,5,6,7,8,
+ 9,10,11,12,13,14,15,16,17,18,
+ 19,20,21,22,23,0,72,62,119,4,
+ 29,0,31,102,33,34,35,0,77,38,
+ 9,40,41,42,43,0,0,46,117,95,
+ 4,50,0,1,2,0,31,56,0,58,
+ 59,60,63,64,6,0,29,66,3,68,
+ 69,0,0,28,28,74,75,0,1,2,
+ 3,4,5,6,7,8,9,10,11,12,
+ 13,14,15,16,17,18,19,20,21,22,
+ 23,0,1,2,73,4,29,6,31,8,
+ 33,34,35,0,0,38,71,40,41,42,
+ 43,0,121,46,0,1,2,50,4,5,
+ 9,7,0,56,62,58,59,60,0,114,
+ 115,116,28,66,0,68,69,9,4,91,
+ 92,74,75,29,99,0,1,2,3,4,
+ 5,6,7,8,0,10,0,3,13,14,
15,16,17,18,19,20,21,22,23,24,
- 25,26,27,71,70,30,0,32,63,64,
- 4,36,37,60,39,0,0,1,2,44,
- 45,0,47,48,49,64,51,52,53,54,
- 55,0,71,0,1,2,64,62,72,8,
- 65,0,67,0,1,2,3,4,5,6,
- 7,8,0,10,70,0,13,14,15,16,
+ 25,26,27,0,71,30,0,32,0,0,
+ 4,36,37,72,39,63,64,9,121,44,
+ 45,0,47,48,49,0,51,52,53,54,
+ 55,73,0,1,2,3,61,5,63,7,
+ 65,57,67,0,1,2,3,4,5,6,
+ 7,8,9,10,0,0,13,14,15,16,
17,18,19,20,21,22,23,24,25,26,
- 27,0,57,30,0,32,60,0,4,36,
- 37,0,39,28,63,64,0,44,45,3,
+ 27,62,64,30,71,32,0,0,57,36,
+ 37,73,39,0,1,2,100,44,45,64,
47,48,49,0,51,52,53,54,55,0,
- 1,2,28,4,5,62,7,0,65,28,
- 67,0,1,2,3,4,5,6,7,8,
- 9,10,70,0,13,14,15,16,17,18,
- 19,20,21,22,23,24,25,26,27,123,
- 63,30,0,32,0,1,2,36,37,0,
- 39,0,1,2,0,44,45,3,47,48,
- 49,90,51,52,53,54,55,96,0,1,
- 2,3,4,5,6,7,8,28,10,0,
- 29,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,90,30,0,
- 32,0,0,96,36,37,4,39,9,0,
- 1,2,44,45,72,47,48,49,95,51,
- 52,53,54,55,0,1,2,0,60,118,
- 62,0,0,31,3,3,5,6,29,8,
- 0,1,2,3,4,5,6,7,8,9,
- 0,11,12,29,0,24,25,26,27,28,
- 0,1,2,32,4,5,0,7,28,3,
- 0,31,73,33,34,35,97,98,38,0,
- 40,41,42,43,0,0,46,0,57,0,
- 50,0,1,2,63,64,65,57,67,0,
- 99,70,0,1,2,3,4,5,6,7,
- 8,57,28,73,0,28,114,115,116,88,
- 89,90,91,92,93,94,0,28,97,98,
- 99,100,101,102,103,104,105,106,107,108,
- 109,110,111,112,113,0,1,2,3,4,
- 5,6,7,8,28,10,72,72,13,14,
- 15,16,17,18,19,20,21,22,23,24,
- 25,26,27,0,0,30,0,32,4,3,
- 0,36,37,3,39,9,0,0,0,44,
- 45,3,47,48,49,9,51,52,53,54,
- 55,0,0,0,90,31,3,62,5,6,
- 96,8,0,1,2,3,4,5,6,7,
- 8,9,0,11,12,24,25,24,25,26,
- 27,28,0,57,0,32,0,1,2,63,
- 64,0,0,31,0,33,34,35,4,73,
- 38,64,40,41,42,43,24,25,46,73,
- 57,0,50,0,0,29,63,64,65,57,
- 67,0,28,70,101,0,0,0,0,1,
- 2,4,4,8,6,73,8,9,0,28,
- 0,88,89,90,91,92,93,94,64,9,
- 97,98,99,100,101,102,103,104,105,106,
- 107,108,109,110,111,112,113,0,1,2,
- 3,4,5,6,7,8,63,10,64,0,
+ 1,2,0,71,61,62,0,1,2,3,
+ 4,9,6,0,8,0,73,0,1,2,
+ 3,4,5,6,7,8,9,10,29,0,
+ 13,14,15,16,17,18,19,20,21,22,
+ 23,24,25,26,27,90,70,30,65,32,
+ 67,96,0,36,37,0,39,28,0,1,
+ 2,44,45,57,47,48,49,90,51,52,
+ 53,54,55,96,72,62,24,25,61,62,
+ 0,0,1,2,3,4,5,6,7,8,
+ 73,10,63,0,13,14,15,16,17,18,
+ 19,20,21,22,23,24,25,26,27,0,
+ 0,30,57,32,0,100,0,36,37,9,
+ 39,0,93,94,3,44,45,0,47,48,
+ 49,0,51,52,53,54,55,57,0,1,
+ 2,3,61,5,28,7,65,0,67,0,
+ 1,2,3,4,5,6,7,8,0,10,
+ 0,3,13,14,15,16,17,18,19,20,
+ 21,22,23,24,25,26,27,63,0,30,
+ 0,32,72,90,4,36,37,9,39,96,
+ 0,1,2,44,45,57,47,48,49,0,
+ 51,52,53,54,55,0,1,2,28,4,
+ 61,6,0,8,65,0,67,0,1,2,
+ 3,4,5,6,7,8,9,10,97,98,
13,14,15,16,17,18,19,20,21,22,
23,24,25,26,27,0,0,30,0,32,
- 0,73,64,36,37,0,39,0,1,2,
- 119,44,45,73,47,48,49,0,51,52,
- 53,54,55,95,57,0,1,2,3,4,
- 5,6,7,8,0,10,29,0,13,14,
+ 72,0,4,36,37,65,39,67,0,1,
+ 2,44,45,64,47,48,49,0,51,52,
+ 53,54,55,95,28,0,1,2,3,4,
+ 5,6,7,8,0,10,71,29,13,14,
15,16,17,18,19,20,21,22,23,24,
- 25,26,27,0,0,30,0,32,63,64,
- 64,36,37,63,39,28,0,0,70,44,
- 45,0,47,48,49,70,51,52,53,54,
- 55,0,0,0,0,0,0,62,0,1,
- 2,3,4,5,6,7,8,63,10,0,
- 63,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,0,30,63,
- 32,0,0,70,36,37,9,39,57,63,
- 93,94,44,45,0,47,48,49,0,51,
- 52,53,54,55,0,1,2,3,4,5,
- 6,7,8,70,10,70,72,13,14,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,0,119,30,3,32,0,0,0,
- 36,37,100,39,0,0,70,3,44,45,
- 73,47,48,49,72,51,52,53,54,55,
- 0,1,2,3,4,5,6,7,8,0,
- 10,77,3,13,14,15,16,17,18,19,
- 20,21,22,23,24,25,26,27,0,0,
- 30,3,32,0,0,0,36,37,3,39,
- 0,0,0,3,44,45,0,47,48,49,
- 72,51,52,53,54,55,0,1,2,0,
- 4,28,3,0,1,2,10,4,12,13,
- 14,15,16,17,18,19,20,21,22,23,
- 0,1,2,0,4,0,6,31,8,33,
- 34,35,29,0,38,0,40,41,42,43,
- 0,0,46,3,3,0,50,0,1,2,
- 3,4,70,6,0,8,0,61,0,0,
- 1,2,66,4,68,69,0,0,0,10,
- 3,12,13,14,15,16,17,18,19,20,
- 21,22,23,0,0,1,2,3,30,5,
- 31,7,33,34,35,0,122,38,3,40,
- 41,42,43,0,57,46,0,1,2,50,
- 4,28,6,0,8,0,3,0,3,0,
- 61,0,3,0,3,66,0,68,69,12,
- 13,14,15,16,17,18,19,20,21,22,
- 23,57,0,0,0,0,0,0,31,0,
+ 25,26,27,0,0,30,0,32,63,63,
+ 4,36,37,101,39,0,0,1,2,44,
+ 45,6,47,48,49,0,51,52,53,54,
+ 55,0,1,2,28,118,61,62,0,93,
+ 94,3,0,5,6,29,8,0,1,2,
+ 3,4,5,6,7,8,9,0,11,12,
+ 29,0,24,25,26,27,28,0,1,2,
+ 32,4,5,0,7,28,3,0,31,95,
33,34,35,0,0,38,0,40,41,42,
- 43,0,0,46,0,0,0,50,0,1,
- 2,3,4,5,6,7,8,9,0,11,
- 12,0,1,2,3,4,5,6,7,8,
- 9,0,11,12,0,0,28,29,0,1,
- 2,3,0,5,0,7,0,9,0,11,
- 29,0,0,0,0,0,0,0,0,28,
- 0,0,0,0,56,0,58,59,0,0,
- 0,0,28,0,0,0,0,56,0,58,
- 59,0,0,75,0,0,0,0,0,0,
- 0,0,71,0,63,0,75,0,1,2,
- 3,4,5,6,7,8,9,63,11,12,
- 0,0,1,2,3,4,5,6,7,8,
- 9,0,11,12,93,94,29,0,0,0,
- 0,0,0,0,0,0,0,93,94,0,
+ 43,8,0,46,8,57,29,50,0,57,
+ 0,63,64,65,57,67,91,92,70,0,
+ 1,2,28,4,5,0,7,0,0,72,
+ 28,64,24,25,0,64,88,89,90,91,
+ 92,93,94,0,0,97,98,99,100,101,
+ 102,103,104,105,106,107,108,109,110,111,
+ 112,113,0,1,2,3,4,5,6,7,
+ 8,28,10,63,0,13,14,15,16,17,
+ 18,19,20,21,22,23,24,25,26,27,
+ 0,64,30,0,32,70,3,0,36,37,
+ 0,39,9,0,70,0,44,45,64,47,
+ 48,49,0,51,52,53,54,55,28,0,
+ 0,0,3,61,5,6,0,8,0,1,
+ 2,3,4,5,6,7,8,9,64,11,
+ 12,0,0,24,25,26,27,28,28,28,
+ 57,32,0,0,0,0,63,64,3,31,
+ 0,33,34,35,0,72,38,70,40,41,
+ 42,43,0,70,46,0,57,0,50,0,
+ 3,6,63,64,65,57,67,0,0,70,
+ 0,1,2,0,4,95,6,71,8,0,
+ 72,0,0,1,2,63,4,88,89,90,
+ 91,92,93,94,61,63,97,98,99,100,
+ 101,102,103,104,105,106,107,108,109,110,
+ 111,112,113,0,1,2,3,4,5,6,
+ 7,8,70,10,57,57,13,14,15,16,
+ 17,18,19,20,21,22,23,24,25,26,
+ 27,101,0,30,62,32,91,92,0,36,
+ 37,9,39,11,0,1,2,44,45,0,
+ 47,48,49,119,51,52,53,54,55,0,
+ 57,0,1,2,3,4,5,6,7,8,
+ 0,10,0,29,13,14,15,16,17,18,
+ 19,20,21,22,23,24,25,26,27,0,
+ 0,30,0,32,0,0,64,36,37,0,
+ 39,63,10,9,0,44,45,3,47,48,
+ 49,0,51,52,53,54,55,0,0,0,
+ 71,29,61,0,1,2,3,4,5,6,
+ 7,8,0,10,0,63,13,14,15,16,
+ 17,18,19,20,21,22,23,24,25,26,
+ 27,0,60,30,3,32,0,0,64,36,
+ 37,71,39,0,30,70,72,44,45,0,
+ 47,48,49,4,51,52,53,54,55,0,
+ 1,2,3,4,5,6,7,8,0,10,
+ 71,3,13,14,15,16,17,18,19,20,
+ 21,22,23,24,25,26,27,0,119,30,
+ 3,32,95,0,0,36,37,3,39,0,
+ 0,0,3,44,45,4,47,48,49,0,
+ 51,52,53,54,55,0,1,2,3,4,
+ 5,6,7,8,0,10,0,3,13,14,
+ 15,16,17,18,19,20,21,22,23,24,
+ 25,26,27,0,0,30,3,32,0,1,
+ 2,36,37,0,39,0,3,0,3,44,
+ 45,0,47,48,49,0,51,52,53,54,
+ 55,0,1,2,0,4,0,29,0,3,
+ 0,10,0,12,13,14,15,16,17,18,
+ 19,20,21,22,23,0,0,1,2,0,
+ 4,5,31,7,33,34,35,0,28,38,
+ 3,40,41,42,43,0,0,46,3,0,
+ 0,50,3,3,0,0,0,70,9,3,
+ 0,60,0,1,2,70,4,66,0,68,
+ 69,0,10,0,12,13,14,15,16,17,
+ 18,19,20,21,22,23,0,0,28,0,
+ 0,0,0,31,3,33,34,35,0,0,
+ 38,0,40,41,42,43,57,0,46,0,
+ 0,0,50,0,0,0,0,26,27,0,
+ 0,72,60,0,0,0,0,0,66,0,
+ 68,69,12,13,14,15,16,17,18,19,
+ 20,21,22,23,0,0,0,0,57,0,
+ 0,31,0,33,34,35,0,0,38,0,
+ 40,41,42,43,0,0,46,0,0,0,
+ 50,0,1,2,3,4,5,6,7,8,
+ 9,0,11,12,0,1,2,3,4,5,
+ 6,7,8,9,103,11,12,0,0,28,
29,0,0,0,0,0,0,0,0,0,
- 0,0,0,56,0,58,59,0,0,0,
- 0,0,0,0,0,0,0,56,71,58,
- 59,0,75,0,0,0,0,0,0,0,
- 0,0,71,0,0,0,75,0,1,2,
- 3,4,5,6,7,8,9,0,11,12,
- 0,0,1,2,3,4,5,6,7,8,
- 9,0,11,12,0,0,29,0,0,0,
+ 0,120,0,29,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,56,0,58,
+ 59,0,0,0,0,28,0,0,0,0,
+ 56,0,58,59,0,0,75,0,0,0,
+ 1,2,3,0,5,0,7,73,9,75,
+ 0,1,2,3,4,5,6,7,8,9,
+ 63,11,12,0,1,2,3,4,5,6,
+ 7,8,9,0,11,12,0,0,0,29,
0,0,0,0,0,0,0,0,0,0,
- 29,0,0,0,0,0,0,0,0,0,
- 0,0,0,56,0,58,59,0,0,0,
- 0,0,0,0,0,0,0,56,71,58,
- 59,0,75,0,0,0,0,0,0,0,
- 0,0,71,0,0,0,75,0,1,2,
- 3,4,5,6,7,8,9,0,11,12,
+ 93,94,29,0,0,0,57,0,0,0,
+ 0,0,0,0,0,0,56,0,58,59,
+ 0,72,0,0,0,0,0,0,0,56,
+ 0,58,59,73,0,75,0,0,0,0,
+ 0,0,0,0,0,0,73,0,75,0,
+ 1,2,3,4,5,6,7,8,9,0,
+ 11,12,0,1,2,3,4,5,6,7,
+ 8,9,0,11,12,0,0,0,29,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,29,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,56,0,58,59,0,
+ 0,0,0,0,0,0,0,0,56,0,
+ 58,59,73,0,75,0,0,0,1,2,
+ 3,4,5,6,7,8,9,75,11,12,
0,1,2,3,4,5,6,7,8,9,
0,11,12,0,0,0,29,0,0,0,
0,0,0,0,0,0,0,0,0,29,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,56,0,58,59,0,0,0,
+ 0,0,12,56,0,58,59,0,0,0,
0,0,0,0,0,0,56,0,58,59,
- 0,12,75,0,0,0,1,2,3,4,
- 5,6,7,8,9,75,11,12,0,0,
- 31,0,33,34,35,0,0,38,0,40,
- 41,42,43,0,29,46,0,0,0,50,
- 0,0,0,0,0,0,0,0,12,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,56,12,58,59,0,0,31,0,33,
+ 12,31,75,33,34,35,0,0,38,0,
+ 40,41,42,43,0,75,46,0,12,31,
+ 50,33,34,35,0,0,38,0,40,41,
+ 42,43,0,0,46,0,12,31,50,33,
34,35,0,0,38,0,40,41,42,43,
- 75,31,46,33,34,35,50,0,38,0,
- 40,41,42,43,0,0,46,0,0,0,
- 50,0,0,0,0,0,0,0,0,0,
+ 0,0,46,0,0,31,50,33,34,35,
+ 0,0,38,0,40,41,42,43,0,0,
+ 46,0,0,0,50,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0
+ 0,0,0,0,0,0,0,0
};
};
public final static byte termCheck[] = TermCheck.termCheck;
@@ -1404,321 +1402,318 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface TermAction {
public final static char termAction[] = {0,
- 5292,5214,4903,4903,4903,4903,4903,4903,4903,5248,
- 1,5221,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,127,389,
+ 5300,5222,4911,4911,4911,4911,4911,4911,4911,5256,
+ 1,5229,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,127,386,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,628,5009,1788,556,
- 1255,1,1,362,5292,1,1,1,1,1,
- 1,5299,5292,5302,5473,5301,1772,3063,3373,2091,
- 3187,2945,3243,3030,1746,3027,3445,3015,8,5260,
- 5260,5260,5260,5260,5260,5260,5260,5260,5260,5260,
- 5260,5260,5260,5260,5260,5260,5260,5260,5260,5260,
- 5260,5260,5260,5260,5260,5260,2618,2985,5260,5260,
- 5260,5260,5260,5260,5260,5260,5260,5260,5260,5260,
- 5260,5260,5260,5260,5260,5260,5260,5260,5260,5260,
- 5260,5260,5260,5260,5260,5292,5260,5260,5260,5260,
- 5260,131,405,5260,5260,5260,5260,5260,5653,5260,
- 5292,5160,5260,5163,5260,5260,5260,5260,5260,5260,
- 5260,5260,5260,5260,5260,5260,5292,5214,4903,4903,
- 4903,4903,4903,4903,4903,5218,1,5221,1,1,
+ 1,1,1,1,1,1,1858,5017,769,787,
+ 1,1,774,131,139,1,1,1,1,1,
+ 5300,5317,5318,5307,5481,3415,653,2962,3744,2075,
+ 3615,2898,3053,2950,1816,2944,2636,2923,8,5268,
+ 5268,5268,5268,5268,5268,5268,5268,5268,5268,5268,
+ 5268,5268,5268,5268,5268,5268,5268,5268,5268,5268,
+ 5268,5268,5268,5268,5268,5268,2677,2703,5268,5268,
+ 5268,5268,5268,5268,5268,5268,5268,5268,5268,5268,
+ 5268,5268,5268,5268,5268,5268,5268,5268,5268,5268,
+ 5268,5268,5268,5268,5268,1,5268,5268,5268,5268,
+ 5268,2677,2703,5268,5268,5268,5268,5268,5300,5023,
+ 5020,5268,5268,588,5268,5268,5268,5268,5268,5268,
+ 5268,5268,5268,5268,5268,5268,5300,5222,4911,4911,
+ 4911,4911,4911,4911,4911,5226,1,5229,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,130,1657,1,1,1,1,
+ 1,1,1,1,130,33,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,628,5292,1788,556,1255,1,1,2618,
- 2985,1,1,1,1,1,5292,5292,4909,4906,
- 5473,5334,1772,3063,3373,2091,3187,2945,3243,3030,
- 1746,3027,3445,3015,5292,5214,4903,4903,4903,4903,
- 4903,4903,4903,5218,1,5221,1,1,1,1,
+ 1,1,1858,5045,769,787,1,1,774,129,
+ 5300,1,1,1,1,1,3173,5300,4917,4914,
+ 5481,5342,653,2962,3744,2075,3615,2898,3053,2950,
+ 1816,2944,2636,2923,5300,5222,4911,4911,4911,4911,
+ 4911,4911,4911,5226,1,5229,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,2618,2985,1,1,1,1,1,1,
+ 1,1,2677,2703,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 628,5292,1788,556,1255,1,1,129,5292,1,
- 1,1,1,1,3490,5292,4909,4906,5473,5334,
- 1772,3063,3373,2091,3187,2945,3243,3030,1746,3027,
- 3445,3015,5292,5214,4903,4903,4903,4903,4903,4903,
- 4903,5218,1,5221,1,1,1,1,1,1,
+ 1858,5300,769,787,1,1,774,2677,2703,1,
+ 1,1,1,1,5300,5300,4917,4914,5481,5342,
+ 653,2962,3744,2075,3615,2898,3053,2950,1816,2944,
+ 2636,2923,5300,5222,4911,4911,4911,4911,4911,4911,
+ 4911,5226,1,5229,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 128,33,1,1,1,1,1,1,1,1,
+ 128,436,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,628,5037,
- 1788,556,1255,1,1,2618,2985,1,1,1,
- 1,1,5292,5309,5310,5292,5473,3036,1772,3063,
- 3373,2091,3187,2945,3243,3030,1746,3027,3445,3015,
- 5292,5214,4903,4903,4903,4903,4903,4903,4903,5218,
- 1,5221,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,2618,2985,
+ 1,1,1,1,1,1,1,1,1858,5048,
+ 769,787,1,1,774,5300,5300,1,1,1,
+ 1,1,5300,5317,5318,5310,5481,5309,653,2962,
+ 3744,2075,3615,2898,3053,2950,1816,2944,2636,2923,
+ 5300,5222,4911,4911,4911,4911,4911,4911,4911,5226,
+ 1,5229,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,2677,2703,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,628,1,1788,556,
- 1255,1,1,5292,1,1,1,1,1,1,
- 5292,5015,5012,5302,5473,5301,1772,3063,3373,2091,
- 3187,2945,3243,3030,1746,3027,3445,3015,5292,5214,
- 4903,4903,4903,4903,4903,4903,4903,5218,1,5221,
+ 1,1,1,1,1,1,1858,5300,769,787,
+ 1,1,774,5300,402,1,1,1,1,1,
+ 5300,7768,7642,5168,5481,5171,653,2962,3744,2075,
+ 3615,2898,3053,2950,1816,2944,2636,2923,5300,5222,
+ 4911,4911,4911,4911,4911,4911,4911,5226,1,5229,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,5292,2799,1,1,
+ 1,1,1,1,1,1,5300,3365,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,628,796,1788,556,1255,1,
- 1,5292,1,1,1,1,1,1,5292,5309,
- 5310,197,5473,197,1772,3063,3373,2091,3187,2945,
- 3243,3030,1746,3027,3445,3015,5292,5214,4903,4903,
- 4903,4903,4903,4903,4903,5218,1,5221,1,1,
+ 1,1,1,1,1858,1119,769,787,1,1,
+ 774,5300,1,1,1,1,1,1,54,5057,
+ 5054,5310,5481,5309,653,2962,3744,2075,3615,2898,
+ 3053,2950,1816,2944,2636,2923,5300,5222,4911,4911,
+ 4911,4911,4911,4911,4911,5226,1,5229,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5292,438,1,1,1,1,
+ 1,1,1,1,5300,450,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,628,5040,1788,556,1255,1,1,307,
- 139,1,1,1,1,1,5292,7990,7620,5598,
- 5473,1,1772,3063,3373,2091,3187,2945,3243,3030,
- 1746,3027,3445,3015,5292,5214,4903,4903,4903,4903,
- 4903,4903,4903,5218,1,5221,1,1,1,1,
+ 1,1,1858,5051,769,787,1,1,774,5300,
+ 1,1,1,1,1,1,54,5023,5020,197,
+ 5481,197,653,2962,3744,2075,3615,2898,3053,2950,
+ 1816,2944,2636,2923,5300,5222,4911,4911,4911,4911,
+ 4911,4911,4911,5226,1,5229,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,5292,452,1,1,1,1,1,1,
+ 1,1,5300,5300,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 628,5043,1788,556,1255,1,1,1867,5292,1,
- 1,1,1,1,54,5049,5046,5292,5473,1044,
- 1772,3063,3373,2091,3187,2945,3243,3030,1746,3027,
- 3445,3015,5292,5214,4903,4903,4903,4903,4903,4903,
- 4903,5218,1,5221,1,1,1,1,1,1,
+ 1858,2595,769,787,1,1,774,304,5300,1,
+ 1,1,1,1,293,5317,5318,5603,5481,1,
+ 653,2962,3744,2075,3615,2898,3053,2950,1816,2944,
+ 2636,2923,5300,5222,4911,4911,4911,4911,4911,4911,
+ 4911,5226,1,5229,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 5292,5292,1,1,1,1,1,1,1,1,
+ 53,5300,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,628,2750,
- 1788,556,1255,1,1,5292,5292,1,1,1,
- 1,1,41,5257,5257,5296,5473,5257,1772,3063,
- 3373,2091,3187,2945,3243,3030,1746,3027,3445,3015,
- 43,4909,4906,3415,728,4079,4145,3130,4167,135,
- 911,3277,5554,5561,5559,5568,5567,5563,5564,5562,
- 5565,5566,5569,5560,4123,4101,4211,4189,5292,5292,
- 5315,5557,4057,5633,5634,5551,1662,1739,5558,5317,
- 5530,5556,5555,5552,1697,4032,5553,1704,5318,5316,
- 5531,1619,5311,5313,5314,5312,1825,307,5292,5309,
- 5310,5690,1362,656,5292,3130,813,5598,5691,5692,
- 5292,5085,5085,233,5081,233,233,233,233,5089,
+ 1,1,1,1,1,1,1,1,1858,916,
+ 769,787,1,1,774,1979,5300,1,1,1,
+ 1,1,41,5265,5265,5304,5481,5265,653,2962,
+ 3744,2075,3615,2898,3053,2950,1816,2944,2636,2923,
+ 43,4917,4914,3160,858,3838,3910,4268,3932,4907,
+ 1115,3464,5562,5569,5567,5576,5575,5571,5572,5570,
+ 5573,5574,5577,5568,3888,3866,3976,3954,5300,5300,
+ 5323,5565,3816,5638,5639,5559,1691,1758,5566,5325,
+ 5538,5564,5563,5560,1716,3717,5561,1733,5326,5324,
+ 5539,1683,5319,5321,5322,5320,1937,5300,5317,5318,
+ 5695,1352,731,43,4268,39,805,5342,5696,5697,
+ 5300,5093,5093,233,5089,233,233,233,233,5097,
1,233,1,1,1,1,1,1,1,1,
- 1,1,1,1,5295,1,4925,4921,4912,5078,
- 4915,1,4918,1,1,1,2396,2368,1,5292,
- 1,1,1,1,5292,567,1,442,1,1,
- 1,1,5292,5066,2968,5066,715,1,5292,4909,
- 4906,1,728,5211,5292,3130,1,5151,1,1,
- 145,415,233,5292,5703,5790,371,4925,4921,2737,
- 1,656,1,3130,1,5292,2161,1270,5292,5085,
- 5085,233,5081,233,233,233,233,5166,1,233,
+ 1,1,1,1,5303,1,4933,4929,4920,5086,
+ 4923,1,4926,1,1,1,5300,117,1,939,
+ 1,1,1,1,337,5300,1,394,4917,4914,
+ 1,5342,1,4933,4929,4920,1248,4923,1439,4926,
+ 1,5310,304,5309,191,982,1,320,1,1,
+ 5060,233,5603,413,5709,5796,43,5638,5639,368,
+ 4933,4929,2785,1,731,1,4268,1,5300,5093,
+ 5093,233,5089,233,233,233,233,5174,1,233,
1,1,1,1,1,1,1,1,1,1,
- 1,1,437,5292,5725,5726,5727,5078,5154,1,
- 5292,1,1,1,5292,3174,1,621,1,1,
- 1,1,5292,1325,1,443,43,43,1,5334,
- 1834,5187,37,5184,715,5063,1180,5292,5063,1,
- 5063,5063,1,5063,1,2805,1,1,3138,414,
- 233,5196,5703,5790,340,4899,5063,5063,5063,5063,
- 5063,53,2269,3101,1792,1750,1708,1666,1624,1582,
- 1540,1498,1456,1414,54,5015,5012,3754,315,5023,
- 5018,576,5028,656,5034,3130,5031,5633,5634,5063,
- 918,121,5725,5726,5727,5063,5063,3913,323,1325,
- 3701,5052,5063,5063,5063,5063,5292,5023,5018,576,
- 5028,656,5034,3130,5031,5199,5725,5726,5727,117,
- 5063,5063,5063,5063,5063,5063,5063,5063,5063,5063,
- 5063,5063,5063,5063,5063,5063,5063,5063,5063,5063,
- 5063,5063,5063,5063,5063,5063,229,5292,5292,5063,
- 5063,5208,5063,5292,5208,1325,5208,5208,5554,5208,
- 349,5059,5055,2737,5334,656,1909,3130,5626,293,
- 5309,5310,5208,5208,5208,5208,5208,5557,2039,5633,
- 5634,5551,3889,3865,5558,5292,5530,5556,5555,5552,
- 3036,145,5553,5292,7990,7620,5531,1,4925,4921,
- 4912,5292,4915,1,4918,5208,5302,3470,5301,4255,
- 43,5208,5208,5151,5334,4277,5802,1325,5208,5208,
- 5208,5208,5292,5059,5055,576,5334,656,1909,3130,
- 5626,1316,2161,5292,5095,5092,5208,5208,5208,5208,
- 5208,5208,5208,5208,5208,5208,5208,5208,5208,5208,
- 5208,5208,5208,5208,5208,5208,5208,5208,5208,5208,
- 5208,5208,5332,5292,5154,5208,5208,795,5208,5292,
- 4903,4903,233,4903,233,233,233,233,233,1,
- 233,8414,1,1,1,1,1,1,1,1,
- 1,1,1,2269,1,4925,4921,576,4900,656,
- 1,3130,1,1,1,5292,5292,1,3754,1,
- 1,1,1,351,81,1,3584,3358,5292,1,
- 5292,2676,5292,4909,4906,628,5334,587,556,5302,
- 1,5301,42,5175,5172,1,581,1,1,1487,
- 5360,5361,39,5308,5790,5292,4903,4903,233,4903,
- 233,233,233,233,233,1,233,8414,1,1,
- 1,1,1,1,1,1,1,1,1,43,
- 1325,3511,5292,5334,4900,1909,1,5626,1,1,
- 1,41,1783,1,4343,1,1,1,1,531,
- 12,1,5292,4909,4906,1,728,5211,1,3130,
- 5292,628,390,587,556,314,1,1,325,5298,
- 5332,1,1395,1,1,446,367,662,143,5308,
- 5790,2165,456,1,5144,5140,3415,5148,4079,4145,
- 3130,4167,124,5104,799,1,5131,5137,5110,5113,
- 5125,5122,5128,5119,5116,5107,5134,4123,4101,4211,
- 4189,3367,5292,5315,396,4057,3221,3196,389,1662,
- 1739,5298,5317,1825,4800,1325,11,1697,4032,3252,
- 1704,5318,5316,5297,1619,5311,5313,5314,5312,5069,
- 367,5292,1825,123,455,1362,514,625,43,3913,
- 43,43,4909,4906,3415,728,4079,4145,3130,4167,
- 5300,2488,367,141,5561,5559,5568,5567,5563,5564,
- 5562,5565,5566,5569,5560,4123,4101,4211,4189,2306,
- 5292,5315,5292,4057,1,5297,907,1662,1739,5300,
- 5317,5292,5309,5310,426,1697,4032,5292,1704,5318,
- 5316,5072,1619,5311,5313,5314,5312,1,4925,4921,
- 2737,3485,656,1362,3130,122,5196,5292,5015,5012,
- 5292,3913,5299,43,4909,4906,3415,728,4079,4145,
- 3130,4167,5300,2488,3889,3865,5561,5559,5568,5567,
- 5563,5564,5562,5565,5566,5569,5560,4123,4101,4211,
- 4189,5299,1,5315,317,4057,4233,3311,991,1662,
- 1739,5181,5317,590,1325,30,1399,1697,4032,5693,
- 1704,5318,5316,5292,1619,5311,5313,5314,5312,5655,
- 5199,5292,4233,3485,991,1362,1,4925,4921,576,
- 5300,656,292,3130,5299,147,4909,4906,3415,728,
- 4079,4145,3130,4167,294,2488,3889,3865,5561,5559,
- 5568,5567,5563,5564,5562,5565,5566,5569,5560,4123,
- 4101,4211,4189,5299,1076,5315,5292,4057,5169,5169,
- 1957,1662,1739,1255,5317,352,5292,5309,5310,1697,
- 4032,5292,1704,5318,5316,999,1619,5311,5313,5314,
- 5312,137,5299,5292,5049,5046,871,1362,2039,2339,
- 43,5292,43,1,5144,5140,3415,5148,4079,4145,
- 3130,4167,374,5104,2002,5292,5131,5137,5110,5113,
- 5125,5122,5128,5119,5116,5107,5134,4123,4101,4211,
- 4189,120,1325,5315,54,4057,1573,5292,5310,1662,
- 1739,5292,5317,858,3935,3264,5292,1697,4032,4728,
- 1704,5318,5316,5292,1619,5311,5313,5314,5312,5292,
- 4909,4906,5310,728,656,1362,3130,119,43,2640,
- 43,43,4909,4906,3415,728,4079,4145,3130,4167,
- 5296,2488,1222,1,5561,5559,5568,5567,5563,5564,
- 5562,5565,5566,5569,5560,4123,4101,4211,4189,869,
- 5731,5315,5292,4057,397,5309,5310,1662,1739,5292,
- 5317,49,5101,5101,5292,1697,4032,3299,1704,5318,
- 5316,4255,1619,5311,5313,5314,5312,4277,43,4909,
- 4906,3415,728,4079,4145,3130,4167,4393,2488,136,
- 5098,5561,5559,5568,5567,5563,5564,5562,5565,5566,
- 5569,5560,4123,4101,4211,4189,5292,4255,5315,1,
- 4057,140,43,4277,1662,1739,5334,5317,167,51,
- 5193,5193,1697,4032,2128,1704,5318,5316,3917,1619,
- 5311,5313,5314,5312,5292,8439,8439,5292,3485,5295,
- 1362,1,5292,2202,1993,3388,5759,5753,5190,5757,
- 33,389,389,5236,389,389,5236,389,5236,5239,
- 5292,5236,389,5332,106,5751,5752,5782,5783,5762,
- 5292,4909,4906,5760,728,656,97,3130,5037,5205,
- 5292,389,167,389,389,389,2396,2368,389,5292,
- 389,389,389,389,33,5292,389,5292,905,5292,
- 389,40,5274,5271,5763,5784,1358,5239,1366,5292,
- 1044,5761,5292,5059,5055,576,5334,656,1909,3130,
- 5626,4635,1825,5239,118,4426,5725,5726,5727,5773,
- 5772,5785,5754,5755,5778,5779,5292,4619,5776,5777,
- 5756,5758,5780,5781,5786,5766,5767,5768,5764,5765,
- 5774,5775,5770,5769,5771,43,4909,4906,3415,728,
- 4079,4145,3130,4167,3560,2488,422,1918,5561,5559,
- 5568,5567,5563,5564,5562,5565,5566,5569,5560,4123,
- 4101,4211,4189,144,43,5315,1,4057,5334,2805,
- 242,1662,1739,5227,5317,345,1,513,1,1697,
- 4032,4756,1704,5318,5316,527,1619,5311,5313,5314,
- 5312,126,5292,5292,4255,2837,1993,1362,5759,5753,
- 4277,5757,36,390,390,5230,390,390,5230,390,
- 5230,5233,5292,5230,390,3221,3196,5751,5752,5782,
- 5783,5762,125,1325,447,5760,41,5251,5251,345,
- 345,379,5292,390,54,390,390,390,5309,345,
- 390,874,390,390,390,390,3221,3196,390,527,
- 905,45,390,5292,366,2723,5763,5784,1358,5233,
- 1366,5292,5309,5761,2306,138,5292,5292,1,5224,
- 5224,2124,5028,2339,1909,5233,5626,367,424,5202,
- 1,5773,5772,5785,5754,5755,5778,5779,2933,169,
- 5776,5777,5756,5758,5780,5781,5786,5766,5767,5768,
- 5764,5765,5774,5775,5770,5769,5771,43,4909,4906,
- 3415,728,4079,4145,3130,4167,5745,2488,2859,5292,
- 5561,5559,5568,5567,5563,5564,5562,5565,5566,5569,
- 5560,4123,4101,4211,4189,5292,163,5315,372,4057,
- 5292,367,2709,1662,1739,506,5317,5292,5267,5263,
- 3138,1697,4032,169,1704,5318,5316,5292,1619,5311,
- 5313,5314,5312,367,1356,43,4909,4906,3415,728,
- 4079,4145,3130,4167,5292,2488,5332,132,5561,5559,
- 5568,5567,5563,5564,5562,5565,5566,5569,5560,4123,
- 4101,4211,4189,504,520,5315,5292,4057,3313,3264,
- 1876,1662,1739,3070,5317,2558,5292,5292,1283,1697,
- 4032,105,1704,5318,5316,4624,1619,5311,5313,5314,
- 5312,5292,142,418,5292,5292,5292,1362,43,4909,
- 4906,4747,728,4079,4145,3130,4167,3084,2488,5292,
- 5178,5561,5559,5568,5567,5563,5564,5562,5565,5566,
- 5569,5560,4123,4101,4211,4189,5292,1,5315,3087,
- 4057,5292,5292,4692,1662,1739,5298,5317,2217,3129,
- 2501,2442,1697,4032,5292,1704,5318,5316,5292,1619,
- 5311,5313,5314,5312,43,4909,4906,3415,728,4079,
- 4145,3130,4167,2180,2488,1395,5476,5561,5559,5568,
- 5567,5563,5564,5562,5565,5566,5569,5560,4123,4101,
- 4211,4189,5292,3138,5315,4784,4057,5292,5292,5292,
- 1662,1739,590,5317,5292,5292,1960,4791,1697,4032,
- 5297,1704,5318,5316,3300,1619,5311,5313,5314,5312,
- 43,4909,4906,3415,728,4079,4145,3130,4167,5292,
- 2488,3301,2677,5561,5559,5568,5567,5563,5564,5562,
- 5565,5566,5569,5560,4123,4101,4211,4189,5292,5292,
- 5315,4793,4057,79,191,5292,1662,1739,3937,5317,
- 5292,5292,508,3938,1697,4032,5292,1704,5318,5316,
- 5475,1619,5311,5313,5314,5312,5292,4909,4906,5292,
- 5334,5283,3940,397,4909,4906,721,5334,5554,5561,
- 5559,5568,5567,5563,5564,5562,5565,5566,5569,5560,
- 98,1,1,5292,1,5292,5254,5557,5254,5633,
- 5634,5551,43,5292,5558,5292,5530,5556,5555,5552,
- 5292,5292,5553,3988,4402,5292,5531,349,43,43,
- 2805,5334,2076,1909,5292,5626,5292,5690,1,246,
- 5002,4998,813,5006,5691,5692,5292,5292,5292,721,
- 3686,4953,4989,4995,4968,4971,4983,4980,4986,4977,
- 4974,4965,4992,2,1,4925,4921,2737,573,656,
- 4944,3130,4938,4935,4962,5292,5289,4941,4565,4932,
- 4947,4950,4959,5292,1325,4956,101,43,43,4929,
- 5334,41,5280,5292,5277,109,4807,228,4759,5292,
- 5690,283,3649,5292,5286,813,5292,5691,5692,5554,
- 5561,5559,5568,5567,5563,5564,5562,5565,5566,5569,
- 5560,1325,5292,5292,5292,5292,5292,5292,5557,5292,
- 5633,5634,5551,5292,5292,5558,5292,5530,5556,5555,
- 5552,5292,5292,5553,5292,5292,5292,5531,1,4903,
- 4903,233,4903,233,233,233,233,233,5292,233,
- 8414,1,4903,4903,233,4903,233,233,233,233,
- 5075,134,233,8414,5292,5292,858,4900,1,4925,
- 4921,576,5292,656,133,3130,5292,315,5292,315,
- 4900,5292,5292,5292,5292,5292,5292,5292,5292,2558,
- 5292,5292,5292,5292,628,5292,587,556,5292,5292,
- 5292,5292,2558,5292,5292,5292,5292,628,5292,587,
- 556,5292,5292,5790,5292,5292,5292,5292,5292,5292,
- 5292,5292,225,5292,5242,5292,5790,1,4903,4903,
- 233,4903,233,233,233,233,5075,5245,233,8414,
- 5292,1,4903,4903,233,4903,233,233,233,233,
- 5157,5292,233,8414,2501,2442,4900,5292,5292,5292,
- 5292,5292,5292,5292,5292,5292,5292,2501,2442,5292,
- 4900,5292,5292,5292,5292,5292,5292,5292,5292,5292,
- 5292,5292,5292,628,5292,587,556,5292,5292,5292,
- 5292,5292,5292,5292,5292,5292,5292,628,225,587,
- 556,5292,5790,5292,5292,5292,5292,5292,5292,5292,
- 5292,5292,224,5292,5292,5292,5790,1,4903,4903,
- 233,4903,233,233,233,233,5075,5292,233,8414,
- 5292,1,4903,4903,233,4903,233,233,233,233,
- 5075,5292,233,8414,5292,5292,4900,5292,5292,5292,
- 5292,5292,5292,5292,5292,5292,5292,5292,5292,5292,
- 4900,5292,5292,5292,5292,5292,5292,5292,5292,5292,
- 5292,5292,5292,628,5292,587,556,5292,5292,5292,
- 5292,5292,5292,5292,5292,5292,5292,628,225,587,
- 556,5292,5790,5292,5292,5292,5292,5292,5292,5292,
- 5292,5292,225,5292,5292,5292,5790,1,4903,4903,
- 233,4903,233,233,233,233,233,5292,233,8414,
- 1,4903,4903,233,4903,233,233,233,233,233,
- 5292,233,8414,5292,5292,5292,4900,5292,5292,5292,
- 5292,5292,5292,5292,5292,5292,5292,5292,5292,4900,
- 5292,5292,5292,5292,5292,5292,5292,5292,5292,5292,
- 5292,5292,5292,628,5292,587,556,5292,5292,230,
- 5292,5292,5292,5292,5292,5292,628,5292,587,556,
- 5292,5554,5790,5292,5292,1,4903,4903,233,4903,
- 233,233,233,233,233,5790,233,8414,5292,5292,
- 5557,5292,5633,5634,5551,5292,5292,5558,5292,5530,
- 5556,5555,5552,5292,4900,5553,231,5292,5292,5531,
- 5292,5292,5292,5292,5292,5292,5292,5292,5554,5292,
- 232,5292,5292,5292,5292,5292,5292,5292,5292,5292,
- 5292,628,5554,587,556,5292,5292,5557,5292,5633,
- 5634,5551,5292,5292,5558,5292,5530,5556,5555,5552,
- 5790,5557,5553,5633,5634,5551,5531,5292,5558,5292,
- 5530,5556,5555,5552,5292,5292,5553,5292,5292,5292,
- 5531
+ 1,1,5300,5300,5731,5732,5733,5086,565,1,
+ 5300,1,1,1,1313,5300,1,4020,1,1,
+ 1,1,5300,4042,1,43,1313,3415,1,5342,
+ 1,4933,4929,577,1248,731,1439,4268,1,1169,
+ 1385,42,5183,5180,1,910,1,1,988,233,
+ 5300,412,5709,5796,37,5300,2639,5071,2594,5306,
+ 5071,5300,5071,5071,1601,5071,5300,5031,5026,577,
+ 5036,731,5042,4268,5039,30,5297,435,5071,5071,
+ 5071,5071,5071,346,5067,5063,2785,5342,731,2280,
+ 4268,5631,5731,5732,5733,5300,7768,7642,145,312,
+ 5031,5026,577,5036,731,5042,4268,5039,440,1,
+ 1,5071,1,1,5074,43,5074,5071,5071,5342,
+ 5300,2280,5305,5631,5071,5071,5071,5071,5300,5067,
+ 5063,577,5342,731,2280,4268,5631,2025,5177,5177,
+ 1313,135,5071,5071,5071,5071,5071,5071,5071,5071,
+ 5071,5071,5071,5071,5071,5071,5071,5071,5071,5071,
+ 5071,5071,5071,5071,5071,5071,5071,5071,1820,5300,
+ 5300,5071,5071,5216,5071,2750,5216,314,5216,5216,
+ 3573,5216,5300,5067,5063,577,5342,731,2280,4268,
+ 5631,5731,5732,5733,5216,5216,5216,5216,5216,5300,
+ 2249,5300,1778,1736,1694,1652,1610,1568,1526,1484,
+ 1442,1400,124,444,1,3162,5300,1,4933,4929,
+ 577,145,731,167,4268,1,312,5216,312,5300,
+ 5057,5054,4197,5216,5216,5159,3022,2997,2379,1035,
+ 5216,5216,5216,5216,1,5232,5232,1066,5036,5300,
+ 2280,5300,5631,364,2154,5300,5317,5318,5216,5216,
+ 5216,5216,5216,5216,5216,5216,5216,5216,5216,5216,
+ 5216,5216,5216,5216,5216,5216,5216,5216,5216,5216,
+ 5216,5216,5216,5216,621,5162,167,5216,5216,5300,
+ 5216,5300,4911,4911,233,4911,233,233,233,233,
+ 233,1,233,8216,1,1,1,1,1,1,
+ 1,1,1,1,1,43,364,1390,3085,5342,
+ 4908,5300,1,2249,1,1,1,41,3236,1,
+ 5308,1,1,1,1,33,393,1,3162,364,
+ 386,1,394,5317,5318,140,3237,1103,121,769,
+ 787,1,4301,3330,3682,5300,5340,1,3213,1,
+ 1,5300,5300,1937,1937,5316,5796,5300,4911,4911,
+ 233,4911,233,233,233,233,233,1,233,8216,
+ 1,1,1,1,1,1,1,1,1,1,
+ 1,441,43,43,5307,5342,4908,5195,1,5192,
+ 1,1,1,424,1,1,420,1,1,1,
+ 1,1,12,1,5300,4917,4914,1,858,5219,
+ 525,4268,5300,1103,2846,769,787,1,1,5731,
+ 5732,5733,1937,1,5300,1,1,5189,850,3658,
+ 3621,5316,5796,1258,588,1,5152,5148,3160,5156,
+ 3838,3910,4268,3932,348,5112,141,3405,5139,5145,
+ 5118,5121,5133,5130,5136,5127,5124,5115,5142,3888,
+ 3866,3976,3954,5300,2961,5323,1,3816,5300,5300,
+ 387,1691,1758,525,5325,3280,3330,5308,11,1716,
+ 3717,322,1733,5326,5324,311,1683,5319,5321,5322,
+ 5320,5307,1,4933,4929,577,1352,731,512,4268,
+ 43,1313,43,43,4917,4914,3160,858,3838,3910,
+ 4268,3932,5308,2608,5300,120,5569,5567,5576,5575,
+ 5571,5572,5570,5573,5574,5577,5568,3888,3866,3976,
+ 3954,3069,993,5323,5698,3816,294,119,1313,1691,
+ 1758,5307,5325,5300,5317,5318,2319,1716,3717,4354,
+ 1733,5326,5324,5300,1683,5319,5321,5322,5320,5300,
+ 5103,5100,1,2025,1352,3126,346,43,43,3076,
+ 5342,169,2280,5300,5631,142,5307,43,4917,4914,
+ 3160,858,3838,3910,4268,3932,5308,2608,5340,132,
+ 5569,5567,5576,5575,5571,5572,5570,5573,5574,5577,
+ 5568,3888,3866,3976,3954,4020,1988,5323,3998,3816,
+ 1479,4042,126,1691,1758,454,5325,2488,40,5282,
+ 5279,1716,3717,1313,1733,5326,5324,4020,1683,5319,
+ 5321,5322,5320,4042,169,774,3022,2997,1352,3126,
+ 453,147,4917,4914,3160,858,3838,3910,4268,3932,
+ 5307,2608,5186,118,5569,5567,5576,5575,5571,5572,
+ 5570,5573,5574,5577,5568,3888,3866,3976,3954,5300,
+ 1,5323,5077,3816,5300,2319,5300,1691,1758,5306,
+ 5325,5300,2434,2407,3614,1716,3717,5300,1733,5326,
+ 5324,136,1683,5319,5321,5322,5320,5080,1,4933,
+ 4929,2785,1352,731,1152,4268,43,5300,43,1,
+ 5152,5148,3160,5156,3838,3910,4268,3932,5300,5112,
+ 5300,4122,5139,5145,5118,5121,5133,5130,5136,5127,
+ 5124,5115,5142,3888,3866,3976,3954,5808,1,5323,
+ 54,3816,5305,4020,5318,1691,1758,364,5325,4042,
+ 5300,5023,5020,1716,3717,1313,1733,5326,5324,292,
+ 1683,5319,5321,5322,5320,98,1,1,5318,1,
+ 1352,5262,143,5262,43,5300,43,43,4917,4914,
+ 3160,858,3838,3910,4268,3932,5304,2608,2379,1035,
+ 5569,5567,5576,5575,5571,5572,5570,5573,5574,5577,
+ 5568,3888,3866,3976,3954,5300,134,5323,5300,3816,
+ 364,5300,2597,1691,1758,3998,5325,1479,49,5109,
+ 5109,1716,3717,1437,1733,5326,5324,5300,1683,5319,
+ 5321,5322,5320,364,2488,43,4917,4914,3160,858,
+ 3838,3910,4268,3932,359,2608,2112,5106,5569,5567,
+ 5576,5575,5571,5572,5570,5573,5574,5577,5568,3888,
+ 3866,3976,3954,5300,5300,5323,54,3816,5737,5250,
+ 5317,1691,1758,2286,5325,123,51,5201,5201,1716,
+ 3717,3682,1733,5326,5324,5300,1683,5319,5321,5322,
+ 5320,5300,8432,8432,5317,5303,1352,3126,1,2434,
+ 2407,1769,349,5765,5759,5198,5763,33,386,386,
+ 5244,386,386,5244,386,5244,5247,511,5244,386,
+ 5340,445,5757,5758,5788,5789,5768,5300,4917,4914,
+ 5766,858,5219,97,4268,5045,5213,5300,386,5658,
+ 386,386,386,137,5300,386,138,386,386,386,
+ 386,2350,5300,386,2350,554,2062,386,125,1313,
+ 5300,5769,5790,1446,5247,1488,3658,3621,5767,5300,
+ 4917,4914,3473,858,731,371,4268,363,5300,5247,
+ 3510,868,3022,2997,369,2588,5779,5778,5791,5760,
+ 5761,5784,5785,5300,422,5782,5783,5762,5764,5786,
+ 5787,5792,5772,5773,5774,5770,5771,5780,5781,5776,
+ 5775,5777,43,4917,4914,3160,858,3838,3910,4268,
+ 3932,3754,2608,5751,163,5569,5567,5576,5575,5571,
+ 5572,5570,5573,5574,5577,5568,3888,3866,3976,3954,
+ 5300,2522,5323,1,3816,1211,3076,504,1691,1758,
+ 1,5325,342,502,1271,5300,1716,3717,3174,1733,
+ 5326,5324,5300,1683,5319,5321,5322,5320,4418,5300,
+ 5300,45,1769,1352,5765,5759,5300,5763,36,387,
+ 387,5238,387,387,5238,387,5238,5241,1862,5238,
+ 387,5300,5300,5757,5758,5788,5789,5768,3337,5210,
+ 1313,5766,5300,529,5300,242,342,342,5235,387,
+ 144,387,387,387,376,342,387,4524,387,387,
+ 387,387,416,4709,387,122,554,1,387,5300,
+ 4716,3682,5769,5790,1446,5241,1488,106,105,5767,
+ 101,43,43,5300,5342,5660,5288,1904,5285,5300,
+ 5241,5300,5300,4917,4914,2989,5342,5779,5778,5791,
+ 5760,5761,5784,5785,3378,3026,5782,5783,5762,5764,
+ 5786,5787,5792,5772,5773,5774,5770,5771,5780,5781,
+ 5776,5775,5777,43,4917,4914,3160,858,3838,3910,
+ 4268,3932,2162,2608,3741,2199,5569,5567,5576,5575,
+ 5571,5572,5570,5573,5574,5577,5568,3888,3866,3976,
+ 3954,2286,5300,5323,1895,3816,3658,3621,5300,1691,
+ 1758,5310,5325,5309,41,5259,5259,1716,3717,5300,
+ 1733,5326,5324,3085,1683,5319,5321,5322,5320,5300,
+ 1521,43,4917,4914,3160,858,3838,3910,4268,3932,
+ 5300,2608,5300,2991,5569,5567,5576,5575,5571,5572,
+ 5570,5573,5574,5577,5568,3888,3866,3976,3954,518,
+ 5300,5323,1,3816,5300,5300,4379,1691,1758,5300,
+ 5325,3051,5159,5306,5300,1716,3717,3266,1733,5326,
+ 5324,5300,1683,5319,5321,5322,5320,1,5300,5300,
+ 5484,2154,1352,43,4917,4914,4642,858,3838,3910,
+ 4268,3932,5300,2608,1,3074,5569,5567,5576,5575,
+ 5571,5572,5570,5573,5574,5577,5568,3888,3866,3976,
+ 3954,5300,5162,5323,4706,3816,5300,5300,4722,1691,
+ 1758,3106,5325,5300,932,982,5305,1716,3717,5300,
+ 1733,5326,5324,2456,1683,5319,5321,5322,5320,43,
+ 4917,4914,3160,858,3838,3910,4268,3932,5300,2608,
+ 5483,3268,5569,5567,5576,5575,5571,5572,5570,5573,
+ 5574,5577,5568,3888,3866,3976,3954,5300,3085,5323,
+ 4714,3816,4257,5300,5300,1691,1758,3215,5325,5300,
+ 5300,5300,3513,1716,3717,2699,1733,5326,5324,5300,
+ 1683,5319,5321,5322,5320,43,4917,4914,3160,858,
+ 3838,3910,4268,3932,5300,2608,5300,3545,5569,5567,
+ 5576,5575,5571,5572,5570,5573,5574,5577,5568,3888,
+ 3866,3976,3954,5300,5300,5323,3613,3816,5300,5275,
+ 5271,1691,1758,5300,5325,5300,2888,5300,4136,1716,
+ 3717,5300,1733,5326,5324,506,1683,5319,5321,5322,
+ 5320,5300,4917,4914,5300,5342,5300,5340,5300,4206,
+ 79,636,5300,5562,5569,5567,5576,5575,5571,5572,
+ 5570,5573,5574,5577,5568,5300,5300,4917,4914,5300,
+ 858,731,5565,4268,5638,5639,5559,5300,5291,5566,
+ 4121,5538,5564,5563,5560,109,5300,5561,4207,1,
+ 5300,5539,3076,4715,5300,5300,283,1946,5204,5294,
+ 2,5695,246,5010,5006,2734,5014,805,5300,5696,
+ 5697,5300,636,5300,4961,4997,5003,4976,4979,4991,
+ 4988,4994,4985,4982,4973,5000,5300,5300,41,5300,
+ 5300,81,5300,4952,3746,4946,4943,4970,5300,5300,
+ 4949,5300,4940,4955,4958,4967,1313,5300,4964,5300,
+ 5300,5300,4937,5300,5300,5300,5300,5368,5369,5300,
+ 228,5207,5695,5300,5300,5300,5300,5300,805,5300,
+ 5696,5697,5562,5569,5567,5576,5575,5571,5572,5570,
+ 5573,5574,5577,5568,5300,5300,5300,5300,2825,5300,
+ 5300,5565,5300,5638,5639,5559,5300,5300,5566,5300,
+ 5538,5564,5563,5560,5300,5300,5561,5300,5300,5300,
+ 5539,1,4911,4911,233,4911,233,233,233,233,
+ 233,5300,233,8216,1,4911,4911,233,4911,233,
+ 233,233,233,5083,654,233,8216,5300,5300,1152,
+ 4908,5300,5300,5300,5300,5300,5300,133,5300,5300,
+ 5300,792,5300,4908,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,1103,5300,769,
+ 787,5300,5300,5300,5300,2488,5300,5300,5300,5300,
+ 1103,5300,769,787,5300,5300,5796,5300,5300,1,
+ 4933,4929,2785,5300,731,5300,4268,225,5204,5796,
+ 1,4911,4911,233,4911,233,233,233,233,5083,
+ 5253,233,8216,1,4911,4911,233,4911,233,233,
+ 233,233,5165,5300,233,8216,5300,5300,5300,4908,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 2434,2407,4908,5300,5300,5300,1313,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,1103,5300,769,787,
+ 5300,5207,5300,5300,5300,5300,5300,5300,5300,1103,
+ 5300,769,787,225,5300,5796,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,224,5300,5796,1,
+ 4911,4911,233,4911,233,233,233,233,5083,5300,
+ 233,8216,1,4911,4911,233,4911,233,233,233,
+ 233,233,5300,233,8216,5300,5300,5300,4908,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,4908,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5300,5300,5300,1103,5300,769,787,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,1103,5300,
+ 769,787,225,5300,5796,5300,5300,1,4911,4911,
+ 233,4911,233,233,233,233,233,5796,233,8216,
+ 1,4911,4911,233,4911,233,233,233,233,233,
+ 5300,233,8216,5300,5300,5300,4908,5300,5300,5300,
+ 5300,5300,5300,5300,5300,5300,5300,5300,5300,4908,
+ 229,5300,5300,5300,5300,5300,5300,5300,5300,5300,
+ 5300,5300,5562,1103,5300,769,787,5300,230,5300,
+ 5300,5300,5300,5300,5300,5300,1103,5300,769,787,
+ 5562,5565,5796,5638,5639,5559,231,5300,5566,5300,
+ 5538,5564,5563,5560,5300,5796,5561,5300,5562,5565,
+ 5539,5638,5639,5559,232,5300,5566,5300,5538,5564,
+ 5563,5560,5300,5300,5561,5300,5562,5565,5539,5638,
+ 5639,5559,5300,5300,5566,5300,5538,5564,5563,5560,
+ 5300,5300,5561,5300,5300,5565,5539,5638,5639,5559,
+ 5300,5300,5566,5300,5538,5564,5563,5560,5300,5300,
+ 5561,5300,5300,5300,5539
};
};
public final static char termAction[] = TermAction.termAction;
@@ -1726,59 +1721,59 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface Asb {
public final static char asb[] = {0,
- 504,1,542,1024,365,165,326,928,3,5,
- 504,481,170,3,1031,1042,818,1042,813,1042,
- 815,1042,1026,1042,481,482,23,165,476,482,
- 600,600,739,600,482,1024,502,1106,35,235,
- 818,818,27,482,171,227,280,482,32,324,
- 395,328,30,818,332,482,337,482,482,324,
- 32,32,970,479,10,10,17,19,476,482,
- 593,227,502,600,337,597,121,227,600,600,
- 337,274,655,295,506,506,235,235,235,235,
- 481,482,171,970,280,32,31,32,324,73,
- 32,332,332,482,337,324,482,32,818,481,
- 476,80,442,867,476,863,593,337,479,121,
- 121,337,171,655,295,235,646,235,235,235,
- 482,970,970,646,482,280,1118,502,543,1108,
- 280,32,32,176,482,395,482,332,646,230,
- 645,1106,218,1024,502,502,502,502,481,1024,
- 1068,904,426,906,443,443,443,443,443,443,
- 443,443,443,602,608,613,610,617,615,622,
- 620,624,623,625,124,626,1105,482,818,406,
- 485,482,1024,121,640,227,442,865,593,592,
- 1106,597,1106,227,735,723,734,1105,502,586,
- 586,646,646,646,482,274,1110,485,392,177,
- 482,73,646,443,482,479,651,731,730,426,
- 365,365,365,365,482,820,770,602,227,227,
- 426,983,364,274,426,602,273,273,820,442,
- 443,443,443,443,443,443,443,443,443,443,
- 443,443,443,443,443,443,443,443,443,442,
- 442,442,442,442,442,442,442,442,442,442,
- 442,443,426,911,407,481,482,820,488,865,
- 593,913,442,732,732,649,479,690,295,506,
- 295,1104,1104,970,171,19,495,443,1118,18,
- 176,482,481,481,482,218,227,653,655,227,
- 227,1106,1106,1106,1106,324,227,443,550,1048,
- 1048,481,906,121,364,442,171,227,170,172,
- 170,227,121,610,610,608,608,608,615,615,
- 615,615,613,613,620,617,617,623,622,624,
- 1118,625,911,406,1118,443,1118,970,1024,1024,
- 1024,407,1024,482,131,970,970,482,818,227,
- 442,645,913,442,442,653,723,295,365,365,
- 970,1110,443,443,482,482,482,227,655,1024,
- 1024,1024,1024,482,482,482,274,443,365,606,
- 184,227,482,172,274,442,397,1024,397,1118,
- 407,426,426,424,811,426,970,970,926,911,
- 865,915,1105,482,482,973,227,442,442,442,
- 442,1024,1024,324,171,227,606,479,395,482,
- 171,690,227,476,227,424,165,1024,227,911,
- 915,688,973,973,227,227,227,227,820,820,
- 482,606,607,606,442,184,809,602,395,227,
- 227,574,407,926,407,970,165,442,407,404,
- 1024,586,920,973,227,227,561,606,820,443,
- 121,809,818,818,1016,442,405,820,970,227,
- 656,1104,920,920,607,227,121,407,227,970,
- 226,170,920,407,365
+ 624,14,662,903,447,121,315,905,26,673,
+ 624,406,126,26,1027,1038,675,1038,670,1038,
+ 672,1038,1022,1038,406,407,16,121,401,407,
+ 758,758,950,758,407,903,496,1102,132,177,
+ 675,28,407,127,265,268,407,33,313,477,
+ 410,31,675,414,407,419,407,407,313,33,
+ 33,947,404,1,1,8,10,401,407,751,
+ 265,496,758,419,755,77,265,758,758,419,
+ 216,589,284,626,626,177,177,177,406,407,
+ 127,947,268,33,32,33,313,170,33,414,
+ 414,407,419,313,407,33,675,406,401,36,
+ 367,687,401,850,751,419,404,77,77,419,
+ 127,589,284,177,804,177,177,407,947,947,
+ 804,407,268,1114,673,496,663,1104,268,33,
+ 33,677,407,477,407,414,804,317,803,1102,
+ 256,903,496,496,496,496,406,903,1064,724,
+ 351,726,368,368,368,368,368,368,368,368,
+ 368,760,766,771,768,775,773,780,778,782,
+ 781,783,80,784,1101,407,675,331,479,407,
+ 903,77,798,265,367,685,751,750,1102,755,
+ 1102,265,579,567,578,1101,496,20,20,804,
+ 804,407,216,1106,479,474,678,407,170,804,
+ 368,407,404,585,575,574,351,447,447,447,
+ 447,407,807,981,760,265,265,351,862,446,
+ 216,351,760,215,215,807,367,368,368,368,
+ 368,368,368,368,368,368,368,368,368,368,
+ 368,368,368,368,368,368,367,367,367,367,
+ 367,367,367,367,367,367,367,367,368,351,
+ 733,332,406,407,807,482,685,751,735,367,
+ 576,576,583,404,534,284,626,284,1100,1100,
+ 947,127,10,489,368,1114,9,677,407,406,
+ 406,407,256,265,587,589,265,265,1102,1102,
+ 1102,1102,313,265,368,498,1044,1044,406,726,
+ 77,446,367,127,265,126,128,126,265,77,
+ 768,768,766,766,766,773,773,773,773,771,
+ 771,778,775,775,781,780,782,1114,783,733,
+ 331,1114,368,1114,947,903,903,903,332,903,
+ 407,87,947,947,407,675,265,367,803,735,
+ 367,367,587,567,284,447,447,947,1106,368,
+ 368,407,407,407,265,589,903,903,903,903,
+ 407,407,407,216,368,447,764,222,265,407,
+ 128,216,367,322,903,322,1114,332,351,351,
+ 349,731,351,947,947,748,733,685,737,1101,
+ 407,407,852,265,367,367,367,367,903,903,
+ 313,127,265,764,404,477,407,127,534,265,
+ 401,265,349,121,903,265,733,737,622,852,
+ 852,265,265,265,265,807,807,407,764,765,
+ 764,367,222,1020,760,477,265,265,522,332,
+ 748,332,947,121,367,332,329,903,20,742,
+ 852,265,265,509,764,807,368,77,1020,675,
+ 675,895,367,330,807,947,265,590,1100,742,
+ 742,765,265,77,332,265,947,264,126,742,
+ 332,447
};
};
public final static char asb[] = Asb.asb;
@@ -1786,118 +1781,118 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface Asr {
public final static byte asr[] = {0,
- 121,0,30,0,1,2,123,60,0,76,
- 60,63,72,95,73,57,3,70,9,11,
- 64,0,60,72,76,0,60,70,0,4,
- 28,60,72,0,59,35,13,14,61,33,
- 15,66,38,75,12,16,40,41,17,18,
- 42,58,43,19,20,46,68,50,10,69,
- 21,56,31,22,34,23,9,3,8,4,
- 11,60,7,6,5,1,2,29,0,65,
- 67,3,10,37,47,44,36,51,14,23,
- 13,19,17,18,20,21,16,15,22,52,
- 55,53,54,30,49,39,48,5,7,4,
- 26,27,8,6,24,25,32,45,1,2,
- 118,9,0,63,72,95,64,118,73,71,
- 13,14,36,65,15,37,39,16,17,18,
- 67,44,19,20,45,47,48,62,49,51,
- 10,21,22,23,52,53,54,30,26,27,
- 24,25,32,55,9,8,6,11,3,4,
- 7,5,1,2,0,31,1,2,4,114,
- 115,116,0,96,90,24,25,91,92,88,
- 89,28,93,94,97,98,99,100,101,102,
- 117,72,95,70,104,105,106,107,108,109,
- 110,111,112,113,118,71,11,63,1,2,
- 8,6,4,3,57,64,73,9,0,9,
- 64,71,70,0,59,35,13,14,61,33,
- 15,66,38,75,12,16,40,41,17,18,
- 42,58,43,19,20,46,68,50,10,69,
- 21,56,31,22,34,23,9,3,8,6,
- 71,11,4,7,1,2,5,29,0,75,
- 7,114,115,116,56,9,3,8,6,5,
- 72,71,11,74,35,13,14,61,33,15,
- 66,38,12,16,40,41,17,18,42,43,
- 19,20,46,68,50,10,69,21,31,22,
- 34,23,4,1,2,29,0,4,60,72,
- 0,1,2,9,71,0,36,65,37,39,
- 67,7,44,45,47,48,62,49,51,52,
- 53,54,30,26,27,8,6,24,25,5,
- 32,63,55,3,10,66,61,68,69,14,
- 23,13,19,17,18,20,21,16,15,22,
- 35,43,46,12,42,41,38,33,34,40,
- 50,1,2,31,4,0,75,114,115,116,
- 29,72,121,119,122,71,74,76,56,58,
- 59,78,80,86,84,77,82,83,85,87,
- 60,79,81,11,9,35,61,33,66,38,
- 12,40,41,42,43,46,68,50,69,31,
- 34,62,65,67,10,37,47,44,36,51,
- 14,23,13,19,17,18,20,21,16,15,
- 22,52,55,53,54,30,49,39,48,26,
- 27,24,25,32,45,7,5,3,6,8,
- 4,1,2,0,60,64,0,9,72,118,
- 73,11,64,0,72,9,57,3,70,64,
- 11,28,0,121,74,61,33,15,66,38,
+ 76,62,63,71,95,72,57,3,70,9,
+ 11,64,0,121,0,62,71,76,0,63,
+ 70,64,1,2,0,30,0,62,70,0,
+ 4,28,62,71,0,65,67,3,10,37,
+ 47,44,36,51,14,23,13,19,17,18,
+ 20,21,16,15,22,52,55,53,54,30,
+ 49,39,48,5,7,4,26,27,8,6,
+ 24,25,32,45,1,2,118,9,0,63,
+ 71,95,64,118,72,73,13,14,36,65,
+ 15,37,39,16,17,18,67,44,19,20,
+ 45,47,48,61,49,51,10,21,22,23,
+ 52,53,54,30,26,27,24,25,32,55,
+ 9,8,6,11,3,4,7,5,1,2,
+ 0,59,35,13,14,60,33,15,66,38,
+ 75,12,16,40,41,17,18,42,56,43,
+ 19,20,46,68,50,10,69,21,58,31,
+ 22,34,23,9,3,8,4,11,62,7,
+ 6,5,1,2,29,0,59,35,13,14,
+ 60,33,15,66,38,75,12,16,40,41,
+ 17,18,42,56,43,19,20,46,68,50,
+ 10,69,21,58,31,22,34,23,9,3,
+ 8,6,73,11,4,7,1,2,5,29,
+ 0,96,90,24,25,91,92,88,89,28,
+ 93,94,97,98,99,100,101,102,117,71,
+ 95,70,104,105,106,107,108,109,110,111,
+ 112,113,118,73,11,63,1,2,8,6,
+ 4,3,57,64,72,9,0,75,56,7,
+ 114,115,116,58,9,3,8,6,5,71,
+ 73,11,74,35,13,14,60,33,15,66,
+ 38,12,16,40,41,17,18,42,43,19,
+ 20,46,68,50,10,69,21,31,22,34,
+ 23,4,1,2,29,0,9,64,73,70,
+ 0,75,114,115,116,29,71,121,119,122,
+ 73,74,76,58,56,59,78,80,86,84,
+ 77,82,83,85,87,62,79,81,11,9,
+ 35,60,33,66,38,12,40,41,42,43,
+ 46,68,50,69,31,34,61,65,67,10,
+ 37,47,44,36,51,14,23,13,19,17,
+ 18,20,21,16,15,22,52,55,53,54,
+ 30,49,39,48,26,27,24,25,32,45,
+ 7,5,3,6,8,4,1,2,0,4,
+ 62,71,0,1,2,9,73,0,36,65,
+ 37,39,67,7,44,45,47,48,61,49,
+ 51,52,53,54,30,26,27,8,6,24,
+ 25,5,32,63,55,3,10,66,60,68,
+ 69,14,23,13,19,17,18,20,21,16,
+ 15,22,35,43,46,12,42,41,38,33,
+ 34,40,50,1,2,31,4,0,62,64,
+ 0,9,71,118,72,11,64,0,71,9,
+ 57,3,70,64,11,28,0,13,14,15,
+ 16,17,18,19,20,21,22,23,35,33,
+ 38,12,40,41,42,43,46,50,31,34,
+ 11,9,72,7,1,2,57,3,8,6,
+ 5,4,0,35,13,14,60,33,15,66,
+ 38,12,16,40,41,17,18,42,43,19,
+ 20,46,68,50,10,69,21,31,22,34,
+ 23,1,2,4,95,0,8,6,4,5,
+ 7,1,2,3,57,63,70,64,9,72,
+ 95,0,7,5,3,57,6,8,95,35,
+ 13,14,33,15,66,38,12,16,40,41,
+ 17,18,42,43,19,20,46,68,50,10,
+ 69,21,31,22,34,23,1,2,4,72,
+ 9,60,0,121,74,60,33,15,66,38,
16,40,41,17,18,42,43,19,20,46,
68,50,69,21,31,22,34,23,14,13,
- 35,9,3,8,6,11,56,59,75,12,
- 29,58,7,1,2,5,4,10,0,13,
- 14,15,16,17,18,19,20,21,22,23,
- 35,33,38,12,40,41,42,43,46,50,
- 31,34,11,9,73,7,1,2,57,3,
- 8,6,5,4,0,63,70,64,1,2,
- 0,62,33,7,34,5,1,2,4,76,
- 60,120,103,26,27,57,3,96,90,6,
- 91,92,24,25,89,88,28,93,94,97,
- 98,8,99,100,101,63,95,73,70,104,
- 105,106,107,108,109,110,111,112,113,72,
- 118,11,102,117,64,71,9,0,7,5,
- 3,57,6,8,95,35,13,14,33,15,
- 66,38,12,16,40,41,17,18,42,43,
- 19,20,46,68,50,10,69,21,31,22,
- 34,23,1,2,4,73,9,61,0,35,
- 13,14,61,33,15,66,38,12,16,40,
- 41,17,18,42,43,19,20,46,68,50,
- 10,69,21,31,22,34,23,1,2,4,
- 95,0,8,6,4,5,7,1,2,3,
- 57,63,70,64,9,73,95,0,35,13,
- 14,61,33,15,66,38,12,16,40,41,
- 17,18,42,43,19,20,46,68,50,10,
- 69,21,31,22,34,23,1,2,4,67,
- 65,24,25,6,91,92,99,8,100,32,
- 70,28,63,107,108,104,105,106,112,111,
- 113,89,88,109,110,97,98,93,94,101,
- 102,26,27,64,90,103,3,57,5,0,
- 77,0,29,72,4,1,2,60,0,9,
- 73,13,14,36,65,15,37,39,16,17,
- 18,67,7,44,19,20,45,47,48,62,
- 49,51,10,21,22,23,52,53,54,30,
- 1,2,3,26,27,8,24,25,5,32,
- 4,55,6,0,9,71,62,26,27,8,
+ 35,9,3,8,6,11,58,59,75,12,
+ 29,56,7,1,2,5,4,10,0,29,
+ 71,4,1,2,62,0,31,1,2,4,
+ 114,115,116,0,9,73,61,26,27,8,
6,24,25,32,45,3,4,52,55,53,
54,30,49,39,48,14,23,13,19,17,
18,20,21,16,15,22,10,37,47,44,
- 36,51,60,5,7,1,2,67,65,0,
- 119,0,33,34,76,3,60,72,11,62,
- 9,63,95,64,73,70,0,61,33,15,
- 66,38,16,40,41,17,18,42,43,19,
- 20,46,68,50,10,69,21,31,22,34,
- 23,14,13,35,7,3,8,6,5,56,
- 58,59,75,12,28,1,2,4,29,11,
- 9,0,33,62,34,9,63,95,70,64,
- 73,0,65,67,26,27,24,25,32,45,
- 52,55,53,54,30,49,39,48,14,23,
- 13,19,17,18,20,21,16,15,22,10,
- 37,47,44,36,51,8,6,4,57,7,
- 5,1,2,3,0,10,66,61,68,69,
- 14,23,13,19,17,18,20,21,16,15,
- 22,76,60,72,95,118,71,7,43,46,
- 50,31,34,1,2,42,41,40,12,38,
- 5,4,33,35,9,73,11,57,3,120,
- 96,103,90,26,27,8,6,24,25,91,
- 92,88,89,28,93,94,97,98,99,100,
- 101,102,117,104,105,106,107,108,109,110,
- 111,112,113,70,64,63,0,11,9,7,
- 5,3,1,2,6,8,4,72,0
+ 36,51,62,5,7,1,2,67,65,0,
+ 77,0,119,0,33,34,76,3,62,71,
+ 11,61,9,63,95,64,72,70,0,61,
+ 33,7,34,5,1,2,4,76,62,120,
+ 103,26,27,57,3,96,90,6,91,92,
+ 24,25,89,88,28,93,94,97,98,8,
+ 99,100,101,63,95,72,70,104,105,106,
+ 107,108,109,110,111,112,113,71,118,11,
+ 102,117,64,73,9,0,9,72,13,14,
+ 36,65,15,37,39,16,17,18,67,7,
+ 44,19,20,45,47,48,61,49,51,10,
+ 21,22,23,52,53,54,30,1,2,3,
+ 26,27,8,24,25,5,32,4,55,6,
+ 0,33,61,34,9,63,95,70,64,72,
+ 0,65,67,26,27,24,25,32,45,52,
+ 55,53,54,30,49,39,48,14,23,13,
+ 19,17,18,20,21,16,15,22,10,37,
+ 47,44,36,51,8,6,4,57,7,5,
+ 1,2,3,0,60,33,15,66,38,16,
+ 40,41,17,18,42,43,19,20,46,68,
+ 50,10,69,21,31,22,34,23,14,13,
+ 35,7,3,8,6,5,58,56,59,75,
+ 12,28,1,2,4,29,11,9,0,35,
+ 13,14,60,33,15,66,38,12,16,40,
+ 41,17,18,42,43,19,20,46,68,50,
+ 10,69,21,31,22,34,23,1,2,4,
+ 67,65,24,25,6,91,92,99,8,100,
+ 32,70,28,63,107,108,104,105,106,112,
+ 111,113,89,88,109,110,97,98,93,94,
+ 101,102,26,27,64,90,103,3,57,5,
+ 0,10,66,60,68,69,14,23,13,19,
+ 17,18,20,21,16,15,22,76,62,71,
+ 95,118,73,7,43,46,50,31,34,1,
+ 2,42,41,40,12,38,5,4,33,35,
+ 9,72,11,57,3,120,96,103,90,26,
+ 27,8,6,24,25,91,92,88,89,28,
+ 93,94,97,98,99,100,101,102,117,104,
+ 105,106,107,108,109,110,111,112,113,70,
+ 64,63,0,11,9,7,5,3,1,2,
+ 6,8,4,71,0
};
};
public final static byte asr[] = Asr.asr;
@@ -1905,59 +1900,59 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface Nasb {
public final static char nasb[] = {0,
- 102,12,19,12,5,254,12,219,12,239,
- 184,122,122,12,247,248,12,248,193,248,
- 57,248,241,12,10,124,156,115,151,238,
- 12,12,189,12,124,12,12,12,156,156,
- 12,12,12,212,212,13,156,195,156,212,
- 12,156,12,12,156,212,156,124,11,12,
- 156,113,210,121,60,60,46,12,226,124,
- 156,13,12,12,156,41,85,13,12,12,
- 156,109,156,156,219,219,156,143,156,156,
- 122,73,230,210,261,156,156,100,48,53,
- 100,156,239,11,29,48,195,113,163,15,
- 226,80,201,31,151,12,27,29,121,85,
- 85,29,230,134,134,143,69,219,143,143,
- 212,210,210,69,124,210,12,12,19,253,
- 261,100,100,87,195,12,11,239,69,12,
- 12,12,159,12,12,12,12,12,122,12,
- 12,37,204,124,31,31,234,31,31,31,
- 31,31,31,12,12,12,12,12,12,12,
- 12,12,12,12,31,12,12,195,163,75,
- 12,212,12,85,12,13,31,156,156,27,
- 12,175,12,13,12,149,12,12,12,111,
- 111,69,69,69,73,109,115,12,122,98,
- 212,53,69,31,239,121,158,60,60,204,
- 216,216,216,216,124,198,191,12,13,13,
- 1,31,71,109,204,12,21,21,198,181,
- 31,31,31,31,31,31,31,31,31,31,
- 31,31,31,31,31,31,31,31,31,31,
- 31,31,31,31,31,31,31,31,31,31,
- 181,31,29,156,165,15,11,198,12,64,
- 27,156,31,12,12,148,121,134,134,219,
- 156,12,12,210,230,210,12,31,12,62,
- 139,212,122,122,11,173,13,127,156,13,
- 13,12,12,12,12,108,13,31,12,12,
- 12,10,124,85,216,201,230,13,229,124,
- 229,13,85,12,12,12,12,12,12,12,
+ 149,12,53,12,5,265,12,234,12,228,
+ 218,109,109,12,254,255,12,255,154,255,
+ 58,255,248,12,10,125,136,102,131,227,
+ 12,12,244,12,125,12,12,12,136,136,
+ 12,12,168,168,69,136,156,136,168,12,
+ 136,12,12,136,168,136,125,11,12,136,
+ 171,116,108,17,17,80,12,210,125,136,
+ 69,12,12,136,37,91,69,12,12,136,
+ 21,136,136,234,234,136,192,136,109,82,
+ 214,116,257,136,136,84,50,61,84,136,
+ 228,11,42,50,156,171,100,23,210,86,
+ 202,44,131,12,123,42,108,91,91,42,
+ 214,189,189,192,78,234,192,168,116,116,
+ 78,125,116,12,82,12,53,264,257,84,
+ 84,159,156,12,11,228,78,12,12,12,
+ 164,12,12,12,12,12,109,12,12,65,
+ 173,125,44,44,223,44,44,44,44,44,
+ 44,12,12,12,12,12,12,12,12,12,
+ 12,12,44,12,12,156,100,55,12,168,
+ 12,91,12,69,44,136,136,123,12,241,
+ 12,69,12,129,12,12,12,71,71,78,
+ 78,82,21,102,12,109,181,168,61,78,
+ 44,228,108,163,17,17,173,273,273,273,
+ 273,125,205,246,12,69,69,1,44,93,
+ 21,173,12,31,31,205,144,44,44,44,
+ 44,44,44,44,44,44,44,44,44,44,
+ 44,44,44,44,44,44,44,44,44,44,
+ 44,44,44,44,44,44,44,144,44,42,
+ 136,118,23,11,205,12,73,123,136,44,
+ 12,12,128,108,189,189,234,136,12,12,
+ 116,214,116,12,44,12,13,177,168,109,
+ 109,11,239,69,197,136,69,69,12,12,
+ 12,12,20,69,44,12,12,12,10,125,
+ 91,273,202,214,69,213,125,213,69,91,
12,12,12,12,12,12,12,12,12,12,
- 12,12,78,178,12,31,12,210,12,12,
- 12,179,12,239,208,210,210,239,94,13,
- 31,69,27,31,31,127,224,134,216,216,
- 210,151,31,31,11,212,212,13,134,12,
- 12,12,12,195,11,124,109,31,216,156,
- 91,13,124,250,109,31,96,12,12,12,
- 179,272,272,132,12,272,210,210,12,156,
- 64,156,12,11,11,156,13,181,181,181,
- 181,12,12,107,195,13,51,175,12,238,
- 195,216,13,151,13,268,156,12,13,78,
- 44,12,27,156,13,13,13,13,198,198,
- 195,156,137,12,181,175,251,12,12,13,
- 13,156,179,12,179,210,151,181,179,96,
- 12,111,156,27,13,13,12,51,198,31,
- 85,251,94,94,149,31,12,170,210,13,
- 215,12,44,156,137,13,85,179,13,210,
- 13,229,44,179,216
+ 12,12,12,12,12,12,12,12,12,15,
+ 141,12,44,12,116,12,12,12,142,12,
+ 228,114,116,116,228,29,69,44,78,123,
+ 44,44,197,208,189,273,273,116,131,44,
+ 44,11,168,168,69,189,12,12,12,12,
+ 156,11,125,21,44,273,136,95,69,125,
+ 138,21,44,98,12,12,12,142,183,183,
+ 187,12,183,116,116,12,136,73,136,12,
+ 11,11,136,69,144,144,144,144,12,12,
+ 19,156,69,147,241,12,227,156,273,69,
+ 131,69,230,136,12,69,15,27,12,123,
+ 136,69,69,69,69,205,205,156,136,40,
+ 12,144,241,139,12,12,69,69,136,142,
+ 12,142,116,131,144,142,98,12,71,136,
+ 123,69,69,12,147,205,44,91,139,29,
+ 29,129,44,12,111,116,69,272,12,27,
+ 136,40,69,91,142,69,116,69,213,27,
+ 142,273
};
};
public final static char nasb[] = Nasb.nasb;
@@ -1965,34 +1960,34 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface Nasr {
public final static char nasr[] = {0,
- 3,13,7,10,149,147,120,146,145,5,
- 2,0,31,0,167,5,166,0,153,0,
- 5,2,10,7,136,0,60,0,43,4,
- 5,7,10,2,13,0,2,7,3,0,
- 4,190,0,124,0,180,0,2,69,0,
- 140,0,69,135,134,0,5,1,0,77,
- 0,186,0,13,2,10,7,5,67,0,
- 172,0,152,0,4,67,0,158,0,13,
- 2,10,7,5,80,0,5,103,187,0,
- 4,174,0,59,0,114,0,188,0,111,
- 0,171,66,47,4,0,2,53,69,0,
- 110,0,156,0,65,53,7,10,2,4,
- 91,5,0,2,44,0,22,4,5,91,
- 0,39,178,22,4,0,138,0,5,103,
- 163,0,105,4,47,66,0,31,96,95,
- 65,53,7,10,2,4,0,31,95,96,
- 4,0,157,0,4,47,39,176,0,4,
- 175,0,96,95,5,55,0,67,47,81,
- 4,39,0,66,47,4,133,0,4,43,
- 168,0,5,44,2,3,0,4,98,0,
- 4,33,0,4,43,39,0,4,39,38,
- 0,2,61,0,31,4,43,0,4,47,
- 66,68,0,96,95,53,65,55,5,7,
- 10,2,0,5,7,10,13,3,1,0,
- 2,5,120,116,117,118,13,88,0,2,
- 115,0,38,53,7,10,2,4,155,0,
- 4,47,66,103,45,5,0,43,4,177,
- 0,4,43,104,0
+ 3,13,7,10,148,146,119,145,144,5,
+ 2,0,184,0,156,0,72,0,2,53,
+ 71,0,165,5,164,0,123,0,59,0,
+ 5,2,10,7,135,0,4,188,0,137,
+ 0,43,4,5,7,10,2,13,0,2,
+ 71,0,151,0,4,70,0,5,1,0,
+ 71,134,133,0,2,7,3,0,31,0,
+ 107,0,13,2,10,7,5,70,0,178,
+ 0,103,0,108,0,13,2,10,7,5,
+ 78,0,170,0,4,172,0,111,0,155,
+ 0,63,53,7,10,2,4,89,5,0,
+ 4,173,0,4,39,38,0,4,47,39,
+ 174,0,60,0,2,44,0,31,94,93,
+ 63,53,7,10,2,4,0,2,112,0,
+ 70,47,79,4,39,0,139,0,169,69,
+ 47,4,0,5,44,2,3,0,5,101,
+ 185,0,31,93,94,4,0,2,61,0,
+ 154,0,4,43,39,0,5,101,161,0,
+ 186,0,4,43,102,0,39,176,22,4,
+ 0,113,4,47,69,0,22,4,5,89,
+ 0,4,33,0,4,96,0,94,93,53,
+ 63,55,5,7,10,2,0,69,47,4,
+ 132,0,5,7,10,13,3,1,0,43,
+ 4,175,0,4,47,69,73,0,94,93,
+ 5,55,0,4,43,166,0,2,5,119,
+ 115,116,117,13,86,0,4,47,69,101,
+ 45,5,0,38,53,7,10,2,4,153,
+ 0,31,4,43,0
};
};
public final static char nasr[] = Nasr.nasr;
@@ -2005,14 +2000,14 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
104,107,109,12,13,8,9,20,95,114,
106,15,56,108,49,57,63,66,69,72,
75,78,85,86,90,91,92,96,99,100,
- 101,111,112,113,46,105,1,79,48,3,
- 55,97,21,45,60,65,80,93,103,34,
- 121,31,120,123,67,98,110,51,52,58,
+ 101,111,112,113,46,79,1,105,48,55,
+ 97,3,21,45,60,65,80,93,103,34,
+ 31,120,121,123,67,98,110,51,52,58,
59,61,71,73,74,87,94,18,19,7,
16,17,22,23,33,5,24,25,26,27,
28,29,6,35,36,37,38,39,40,41,
42,43,44,82,83,84,30,119,53,4,
- 125,64,124,118
+ 124,64,118
};
};
public final static char terminalIndex[] = TerminalIndex.terminalIndex;
@@ -2020,26 +2015,26 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface NonterminalIndex {
public final static char nonterminalIndex[] = {0,
- 133,138,140,0,0,139,237,137,0,231,
- 136,0,147,135,0,0,146,152,0,0,
- 153,183,162,163,164,165,166,167,168,169,
- 127,170,155,171,172,0,145,129,134,173,
- 0,142,156,141,181,0,0,0,0,0,
- 0,0,0,149,159,0,206,0,176,190,
- 0,0,0,203,207,0,128,132,0,0,
- 0,0,0,0,0,0,208,0,179,126,
- 175,0,0,0,0,0,0,189,0,0,
- 204,214,161,210,211,212,0,0,0,0,
- 150,209,222,178,182,0,0,0,213,0,
- 0,0,242,243,151,192,193,194,195,196,
- 198,201,0,0,216,219,221,0,240,0,
- 241,0,131,143,144,148,0,0,158,160,
- 0,174,0,184,185,186,187,188,191,0,
- 197,199,0,200,205,0,217,218,0,223,
- 226,228,230,0,234,235,236,238,239,0,
- 130,0,154,157,0,177,0,180,0,202,
- 215,220,0,224,225,227,229,0,232,233,
- 244,245,0,0,0
+ 132,137,139,0,0,138,236,136,0,230,
+ 135,0,146,134,0,0,145,151,0,0,
+ 152,182,161,162,163,164,165,166,167,168,
+ 126,169,154,170,171,0,144,128,133,172,
+ 0,141,155,140,180,0,0,0,0,0,
+ 0,0,0,148,158,0,205,0,175,189,
+ 0,202,206,0,0,0,0,0,0,127,
+ 0,207,131,0,178,0,0,125,174,0,
+ 0,0,0,0,0,188,0,0,203,213,
+ 160,209,210,211,0,0,0,0,149,208,
+ 221,177,198,0,0,212,0,0,0,241,
+ 242,150,181,0,191,192,193,194,195,197,
+ 200,0,0,215,218,220,0,239,0,240,
+ 0,130,142,143,147,0,0,157,159,0,
+ 173,0,183,184,185,186,187,190,0,196,
+ 0,199,204,0,216,217,0,222,225,227,
+ 229,0,233,234,235,237,238,0,129,0,
+ 153,156,0,176,0,179,0,201,214,219,
+ 0,223,224,226,228,0,231,232,243,244,
+ 0,0,0
};
};
public final static char nonterminalIndex[] = NonterminalIndex.nonterminalIndex;
@@ -2047,18 +2042,18 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface ScopePrefix {
public final static char scopePrefix[] = {
- 151,578,597,529,545,556,567,362,261,275,
- 297,303,309,42,286,382,420,159,586,472,
- 20,51,71,80,85,90,127,187,292,315,
- 326,337,267,281,500,27,372,337,605,27,
- 209,240,1,14,61,76,106,141,222,320,
- 333,342,351,355,438,465,494,521,525,615,
- 619,623,97,7,97,141,400,416,429,449,
- 513,429,536,552,563,574,199,483,56,56,
- 148,214,217,235,256,217,217,56,359,444,
- 462,469,148,56,636,110,228,404,456,116,
- 116,228,56,228,391,169,104,442,627,634,
- 627,634,65,410,134,104,104,245
+ 151,572,591,523,539,550,561,356,261,275,
+ 297,303,42,286,376,414,159,580,466,20,
+ 51,71,80,85,90,127,187,292,309,320,
+ 331,267,281,494,27,366,331,599,27,209,
+ 240,1,14,61,76,106,141,222,314,327,
+ 336,345,349,432,459,488,515,519,609,613,
+ 617,97,7,97,141,394,410,423,443,507,
+ 423,530,546,557,568,199,477,56,56,148,
+ 214,217,235,256,217,217,56,353,438,456,
+ 463,148,56,630,110,228,398,450,116,116,
+ 228,56,228,385,169,104,436,621,628,621,
+ 628,65,404,134,104,104,245
};
};
public final static char scopePrefix[] = ScopePrefix.scopePrefix;
@@ -2066,18 +2061,18 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface ScopeSuffix {
public final static char scopeSuffix[] = {
- 18,5,5,5,5,5,5,369,132,95,
- 132,132,132,48,272,388,426,165,67,478,
- 25,25,25,59,59,95,132,192,132,132,
- 331,331,272,101,505,38,377,592,610,32,
- 203,203,5,18,5,59,95,132,226,324,
- 324,324,95,95,132,238,5,5,5,5,
- 5,238,226,11,101,145,369,369,369,453,
- 505,433,540,540,540,540,203,487,59,59,
- 5,5,220,238,5,259,259,349,95,447,
- 5,238,5,498,5,113,346,407,459,119,
- 123,231,517,508,394,172,95,95,629,629,
- 631,631,67,412,136,194,179,247
+ 18,5,5,5,5,5,5,363,132,95,
+ 132,132,48,272,382,420,165,67,472,25,
+ 25,25,59,59,95,132,192,132,132,325,
+ 325,272,101,499,38,371,586,604,32,203,
+ 203,5,18,5,59,95,132,226,318,318,
+ 318,95,95,132,238,5,5,5,5,5,
+ 238,226,11,101,145,363,363,363,447,499,
+ 427,534,534,534,534,203,481,59,59,5,
+ 5,220,238,5,259,259,343,95,441,5,
+ 238,5,492,5,113,340,401,453,119,123,
+ 231,511,502,388,172,95,95,623,623,625,
+ 625,67,406,136,194,179,247
};
};
public final static char scopeSuffix[] = ScopeSuffix.scopeSuffix;
@@ -2085,18 +2080,18 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface ScopeLhs {
public final static char scopeLhs[] = {
- 45,17,17,17,17,17,17,84,71,46,
- 76,75,118,62,51,84,83,45,17,19,
- 3,6,9,163,163,160,116,45,74,118,
- 117,119,52,46,136,130,84,17,17,130,
- 97,56,132,87,166,163,160,126,58,117,
- 117,119,179,49,59,140,18,17,17,17,
- 17,17,12,114,160,126,84,83,83,36,
- 136,83,17,17,17,17,97,19,167,163,
- 180,95,102,77,57,155,79,119,85,82,
- 141,140,172,136,16,160,119,104,21,127,
- 127,55,136,136,84,45,160,78,134,44,
- 134,44,166,104,116,45,45,56
+ 45,17,17,17,17,17,17,82,77,46,
+ 67,117,64,51,82,81,45,17,19,3,
+ 6,9,161,161,158,115,45,68,117,116,
+ 118,52,46,135,129,82,17,17,129,95,
+ 56,131,85,164,161,158,125,58,116,116,
+ 118,177,49,59,139,18,17,17,17,17,
+ 17,12,111,158,125,82,81,81,36,135,
+ 81,17,17,17,17,95,19,165,161,178,
+ 93,100,72,57,153,75,118,83,80,140,
+ 139,170,135,16,158,118,102,21,126,126,
+ 55,135,135,82,45,158,74,133,44,133,
+ 44,164,102,115,45,45,56
};
};
public final static char scopeLhs[] = ScopeLhs.scopeLhs;
@@ -2104,18 +2099,18 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface ScopeLa {
public final static byte scopeLa[] = {
- 119,73,73,73,73,73,73,73,71,11,
- 71,71,71,63,1,73,122,60,3,73,
- 63,63,63,1,1,11,71,60,71,71,
- 1,1,1,1,4,63,11,1,1,63,
- 73,73,73,119,73,1,11,71,1,1,
- 1,1,11,11,71,118,73,73,73,73,
- 73,118,1,73,1,64,73,73,73,72,
- 4,73,63,63,63,63,73,3,1,1,
- 73,73,3,118,73,1,1,1,11,72,
- 73,118,73,5,73,1,29,70,73,1,
- 1,6,1,29,77,76,11,11,4,4,
- 4,4,3,1,60,1,1,3
+ 119,72,72,72,72,72,72,72,73,11,
+ 73,73,63,1,72,122,62,3,72,63,
+ 63,63,1,1,11,73,62,73,73,1,
+ 1,1,1,4,63,11,1,1,63,72,
+ 72,72,119,72,1,11,73,1,1,1,
+ 1,11,11,73,118,72,72,72,72,72,
+ 118,1,72,1,64,72,72,72,71,4,
+ 72,63,63,63,63,72,3,1,1,72,
+ 72,3,118,72,1,1,1,11,71,72,
+ 118,72,5,72,1,29,70,72,1,1,
+ 6,1,29,77,76,11,11,4,4,4,
+ 4,3,1,62,1,1,3
};
};
public final static byte scopeLa[] = ScopeLa.scopeLa;
@@ -2124,17 +2119,17 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface ScopeStateSet {
public final static char scopeStateSet[] = {
275,204,204,204,204,204,204,52,286,275,
- 286,286,271,298,277,52,52,275,204,204,
- 137,179,180,37,37,309,271,275,286,271,
- 271,271,277,275,32,40,52,204,204,40,
- 71,118,4,52,44,37,309,267,118,271,
- 271,271,30,277,47,8,204,204,204,204,
- 204,204,199,16,309,267,52,52,52,236,
- 32,52,204,204,204,204,71,204,44,37,
- 65,71,73,67,118,134,123,271,52,52,
- 1,8,35,32,204,309,271,11,205,271,
- 271,79,32,32,52,275,309,21,62,95,
- 62,95,44,11,271,275,275,118
+ 297,271,297,277,52,52,275,204,204,137,
+ 179,180,37,37,307,271,275,297,271,271,
+ 271,277,275,32,40,52,204,204,40,71,
+ 118,4,52,44,37,307,267,118,271,271,
+ 271,30,277,47,8,204,204,204,204,204,
+ 204,199,16,307,267,52,52,52,236,32,
+ 52,204,204,204,204,71,204,44,37,65,
+ 71,73,67,118,134,123,271,52,52,1,
+ 8,35,32,204,307,271,11,205,271,271,
+ 79,32,32,52,275,307,21,62,95,62,
+ 95,44,11,271,275,275,118
};
};
public final static char scopeStateSet[] = ScopeStateSet.scopeStateSet;
@@ -2142,70 +2137,70 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface ScopeRhs {
public final static char scopeRhs[] = {0,
- 316,3,62,0,127,0,315,3,119,0,
- 127,176,0,128,183,76,0,218,0,252,
- 128,28,126,0,21,0,293,128,28,29,
- 0,21,55,0,34,135,0,21,55,0,
- 0,293,128,28,29,190,0,21,132,0,
- 252,128,28,131,0,185,129,0,145,0,
- 222,3,291,0,291,0,2,0,127,0,
- 252,128,28,134,0,185,129,227,0,185,
- 129,31,227,0,185,129,312,31,0,132,
- 193,168,129,0,129,0,193,168,129,0,
- 137,129,0,171,0,308,128,171,0,128,
- 171,0,224,129,0,168,244,0,140,0,
- 0,0,138,0,0,0,307,128,60,251,
- 0,128,0,251,0,3,0,0,128,0,
- 306,128,60,0,45,128,0,157,3,0,
- 128,281,280,128,76,279,171,0,280,128,
- 76,279,171,0,217,0,218,0,279,171,
- 0,98,0,0,217,0,218,0,205,98,
- 0,0,217,0,218,0,280,128,279,171,
- 0,217,0,205,0,0,217,0,231,128,
- 3,0,127,0,0,0,0,0,231,128,
- 3,219,0,226,3,0,215,128,0,210,
- 0,193,168,177,0,137,0,168,129,0,
- 11,0,0,0,217,57,0,126,0,231,
- 128,3,181,0,181,0,2,0,0,127,
- 0,0,0,0,0,203,3,0,203,0,
- 230,128,60,30,12,0,185,129,58,56,
- 0,199,129,0,132,185,129,277,56,0,
- 185,129,277,56,0,185,129,70,125,58,
- 0,230,128,60,58,0,230,128,60,123,
- 58,0,230,128,60,126,58,0,274,128,
- 60,125,66,0,274,128,60,66,0,185,
- 129,66,0,138,0,193,185,129,244,0,
- 140,0,185,129,244,0,193,168,129,10,
- 0,168,129,10,0,95,140,0,150,0,
- 267,128,146,0,267,128,171,0,163,86,
- 0,299,162,301,302,3,83,0,127,175,
- 0,301,302,3,83,0,129,0,127,175,
- 0,163,3,77,205,82,0,127,129,0,
- 205,82,0,110,2,134,127,129,0,228,
- 3,77,0,203,167,0,34,173,0,167,
- 0,179,34,173,0,228,3,87,0,205,
- 155,228,3,85,0,64,175,0,228,3,
- 85,0,127,175,64,175,0,300,128,60,
- 0,163,0,217,79,0,31,0,163,117,
- 159,0,31,173,0,178,3,0,127,153,
- 0,222,3,0,217,57,264,0,163,57,
- 0,178,3,296,67,129,0,127,0,0,
- 0,0,296,67,129,0,2,149,127,0,
- 0,0,0,178,3,45,0,151,0,127,
- 29,168,129,0,32,151,0,95,140,32,
- 151,0,225,185,129,0,150,32,151,0,
- 178,3,51,0,163,3,51,0,163,3,
- 63,178,28,36,0,178,28,36,0,21,
- 2,134,127,0,163,3,63,178,28,44,
- 0,178,28,44,0,163,3,63,178,28,
- 47,0,178,28,47,0,163,3,63,178,
- 28,37,0,178,28,37,0,222,3,127,
- 193,168,129,10,0,127,193,168,129,10,
- 0,140,2,0,127,0,222,3,126,177,
- 168,129,10,0,177,168,129,10,0,138,
- 2,0,127,0,222,3,137,0,222,3,
- 141,0,163,57,141,0,259,0,32,0,
- 32,143,0,166,0,163,3,0
+ 313,3,61,0,126,0,312,3,119,0,
+ 126,175,0,127,182,76,0,217,0,250,
+ 127,28,125,0,21,0,290,127,28,29,
+ 0,21,55,0,34,134,0,21,55,0,
+ 0,290,127,28,29,192,0,21,131,0,
+ 250,127,28,130,0,184,128,0,144,0,
+ 219,3,288,0,288,0,2,0,126,0,
+ 250,127,28,133,0,184,128,224,0,184,
+ 128,31,224,0,184,128,309,31,0,131,
+ 194,167,128,0,128,0,194,167,128,0,
+ 136,128,0,170,0,305,127,170,0,127,
+ 170,0,223,128,0,167,242,0,139,0,
+ 0,0,137,0,0,0,304,127,62,249,
+ 0,127,0,249,0,3,0,0,127,0,
+ 303,127,62,0,45,127,0,156,3,0,
+ 127,278,277,127,76,276,170,0,277,127,
+ 76,276,170,0,216,0,217,0,276,170,
+ 0,98,0,0,216,0,217,0,204,98,
+ 0,0,216,0,217,0,277,127,276,170,
+ 0,216,0,204,0,0,216,0,227,127,
+ 3,0,126,0,0,0,0,0,227,127,
+ 3,216,0,223,3,0,212,127,0,209,
+ 0,194,167,176,0,136,0,167,128,0,
+ 11,0,0,0,214,57,0,125,0,227,
+ 127,3,180,0,180,0,2,0,0,126,
+ 0,0,0,0,0,198,3,0,202,0,
+ 237,127,62,30,12,0,184,128,56,58,
+ 0,198,128,0,131,184,128,274,58,0,
+ 184,128,274,58,0,184,128,70,124,56,
+ 0,237,127,62,56,0,237,127,62,226,
+ 56,0,272,127,62,124,66,0,272,127,
+ 62,66,0,184,128,66,0,137,0,194,
+ 184,128,242,0,139,0,184,128,242,0,
+ 194,167,128,10,0,167,128,10,0,95,
+ 139,0,149,0,265,127,145,0,265,127,
+ 170,0,162,86,0,296,161,298,299,3,
+ 83,0,126,174,0,298,299,3,83,0,
+ 128,0,126,174,0,162,3,77,202,82,
+ 0,126,128,0,202,82,0,110,2,133,
+ 126,128,0,225,3,77,0,198,166,0,
+ 34,172,0,166,0,178,34,172,0,225,
+ 3,87,0,202,154,225,3,85,0,64,
+ 174,0,225,3,85,0,126,174,64,174,
+ 0,297,127,62,0,162,0,214,79,0,
+ 31,0,162,117,158,0,31,172,0,177,
+ 3,0,126,152,0,219,3,0,214,57,
+ 262,0,162,57,0,177,3,293,67,128,
+ 0,126,0,0,0,0,293,67,128,0,
+ 2,148,126,0,0,0,0,177,3,45,
+ 0,150,0,126,29,167,128,0,32,150,
+ 0,95,139,32,150,0,222,184,128,0,
+ 149,32,150,0,177,3,51,0,162,3,
+ 51,0,162,3,63,177,28,36,0,177,
+ 28,36,0,21,2,133,126,0,162,3,
+ 63,177,28,44,0,177,28,44,0,162,
+ 3,63,177,28,47,0,177,28,47,0,
+ 162,3,63,177,28,37,0,177,28,37,
+ 0,219,3,126,194,167,128,10,0,126,
+ 194,167,128,10,0,139,2,0,126,0,
+ 219,3,125,176,167,128,10,0,176,167,
+ 128,10,0,137,2,0,126,0,219,3,
+ 136,0,219,3,140,0,162,57,140,0,
+ 257,0,32,0,32,142,0,165,0,162,
+ 3,0
};
};
public final static char scopeRhs[] = ScopeRhs.scopeRhs;
@@ -2213,38 +2208,37 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface ScopeState {
public final static char scopeState[] = {0,
- 2798,2679,0,817,816,733,0,1124,794,0,
- 4694,4793,4791,4784,0,2937,2815,1956,1287,0,
- 3613,3547,3471,3414,3357,3300,3243,3064,3007,2677,
- 0,799,662,0,991,0,2709,1399,0,3601,
- 3264,3446,0,2933,625,0,2418,1856,1772,3565,
- 2975,3613,3547,3471,3414,3357,3300,3243,3064,3007,
- 0,907,795,0,778,0,1452,1329,1030,850,
- 3959,3062,3525,2737,2805,2867,3031,0,1615,1489,
- 3959,3028,2665,3062,3563,3412,3016,1043,2806,4376,
- 4363,2591,2599,0,4772,4752,4687,4669,4658,4649,
- 4603,4739,4594,4583,4720,3811,4572,3779,3637,4509,
- 3952,3724,3641,3570,2647,3270,0,3959,4482,4376,
- 4363,4524,3525,3423,4450,4343,2737,3016,2867,3252,
- 576,2599,0,4482,4524,0,3363,3277,3036,2723,
- 3340,2658,4461,4772,4752,2610,4687,4669,2614,4658,
- 4649,2265,4603,1410,4739,4594,4583,2429,4720,1176,
- 1266,3811,4572,918,3779,2940,3637,4509,3952,783,
- 3724,3641,3570,656,2647,4354,3270,2585,728,3525,
- 3423,4450,4343,3959,2254,1120,2737,3016,2867,4482,
- 936,3252,4376,636,4363,576,2599,4524,2076,2165,
- 1270,799,662,4032,4321,4299,2269,2306,1044,590,
- 2396,2368,2339,2985,2618,2558,2528,2501,2442,3913,
- 3889,3865,3221,3196,4277,4255,4233,4211,4189,4167,
- 4145,4123,4101,4079,4057,1960,2217,1918,2180,2128,
- 1283,1222,1876,2091,2039,1180,874,1834,1792,1750,
- 1708,1666,1624,1582,1540,1498,1456,1414,534,2002,
- 1132,1362,819,739,1325,684,999,954,1076,0,
- 534,4354,2585,0,4545,4497,3613,3547,3471,3414,
- 3357,3300,3243,3064,3007,3935,2908,2843,3788,2778,
- 2713,3756,3701,3118,3666,2424,0,3935,2908,2843,
- 3788,2778,2713,3756,3701,3118,3666,2424,4545,4497,
- 0
+ 2145,672,0,1350,901,644,0,3285,2837,0,
+ 4119,4714,4706,3266,0,1782,788,1656,563,0,
+ 3404,3351,3265,3212,3159,3106,3053,2823,2725,3268,
+ 0,792,654,0,1479,0,3174,2961,0,4622,
+ 3330,4576,0,2588,621,0,1506,1464,653,2985,
+ 2521,3404,3351,3265,3212,3159,3106,3053,2823,2725,
+ 0,2597,850,0,1030,0,2411,1984,967,571,
+ 3706,4130,3319,2785,3076,2553,2886,0,2821,2652,
+ 3706,3496,3493,4130,1643,1517,2912,1685,1475,3058,
+ 2564,718,2529,0,4698,4690,4628,4616,4612,4606,
+ 4560,4632,4540,4284,4447,3087,4214,2946,2852,4144,
+ 3438,3385,3081,2780,2759,2940,0,3706,4494,3058,
+ 2564,3221,3319,4108,4512,4379,2785,2912,2553,4354,
+ 577,2529,0,4494,3221,0,3648,3464,3415,2991,
+ 3356,3281,2812,4698,4690,2830,4628,4616,2765,4612,
+ 4606,1396,4560,912,4632,4540,4284,1253,4447,1165,
+ 1108,3087,4214,916,2946,989,2852,4144,3438,780,
+ 3385,3081,2780,731,2759,4391,2940,2515,858,3319,
+ 4108,4512,4379,3706,2540,2236,2785,2912,2553,4494,
+ 2149,4354,3058,928,2564,577,2529,3221,2734,2062,
+ 1258,792,654,3717,4086,4064,2249,2286,588,2319,
+ 2379,1035,2350,2703,2677,2488,2461,2434,2407,3682,
+ 3658,3621,3022,2997,4042,4020,3998,3976,3954,3932,
+ 3910,3888,3866,3838,3816,1946,2199,1904,2162,2112,
+ 1271,1211,1862,2075,2025,1169,868,1820,1778,1736,
+ 1694,1652,1610,1568,1526,1484,1442,1400,532,1988,
+ 1121,1352,813,736,1313,681,993,945,1066,0,
+ 532,4391,2515,0,4526,4398,3404,3351,3265,3212,
+ 3159,3106,3053,2823,2725,4301,3543,4267,3490,3457,
+ 4231,4197,3738,4127,2887,0,4301,3543,4267,3490,
+ 3457,4231,4197,3738,4127,2887,4526,4398,0
};
};
public final static char scopeState[] = ScopeState.scopeState;
@@ -2252,59 +2246,59 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public interface InSymb {
public final static char inSymb[] = {0,
- 0,294,56,59,128,171,190,29,12,58,
- 295,58,277,3,268,269,251,270,244,271,
- 66,272,273,126,10,129,279,128,3,5,
- 126,134,7,131,177,181,29,28,30,60,
- 123,126,125,129,129,30,60,168,234,129,
- 166,127,126,125,60,129,28,129,185,168,
- 76,128,267,128,189,181,203,278,215,129,
- 6,203,126,125,28,167,57,3,65,67,
- 28,168,3,28,63,128,60,128,60,60,
- 70,185,185,155,128,127,126,128,185,4,
- 128,60,128,185,128,168,29,128,280,72,
- 215,57,3,70,64,168,128,128,128,57,
- 57,128,193,128,128,128,230,229,128,128,
- 129,276,132,307,129,169,227,29,56,171,
- 309,128,128,72,193,259,193,128,274,125,
- 275,252,167,51,36,44,47,37,10,137,
- 135,4,3,129,45,32,5,25,24,6,
- 8,27,26,141,147,149,148,151,150,153,
- 152,156,154,158,62,159,255,193,280,60,
- 290,129,291,217,159,157,128,60,6,184,
- 252,215,252,231,232,146,233,293,29,10,
- 61,230,230,230,185,168,128,311,227,31,
- 129,4,274,70,64,128,3,220,219,3,
- 28,28,28,28,129,3,7,126,178,163,
- 128,65,67,168,3,127,103,120,3,57,
- 90,96,25,24,92,91,6,94,93,63,
- 28,88,89,8,98,97,100,99,101,113,
- 112,111,110,109,108,107,106,105,104,70,
- 117,102,64,281,128,64,185,3,266,128,
- 128,155,70,226,203,3,128,64,64,63,
- 28,234,234,276,193,308,126,72,286,203,
- 64,129,31,312,185,215,226,128,3,178,
- 163,178,178,178,178,168,222,155,137,127,
- 126,10,129,57,296,3,193,178,29,129,
- 29,222,163,148,148,147,147,147,150,150,
- 150,150,149,149,152,151,151,154,153,156,
- 163,158,128,300,81,79,1,163,87,85,
- 83,82,77,84,86,80,78,58,76,222,
- 64,306,128,70,70,128,215,128,70,70,
- 132,64,72,70,185,129,129,231,128,63,
- 63,63,63,193,177,129,168,204,3,297,
- 167,157,129,185,168,72,282,119,9,217,
- 72,3,3,3,205,3,125,163,125,183,
- 64,223,293,185,185,155,231,3,3,3,
- 3,127,126,168,29,178,128,128,225,5,
- 29,3,228,167,228,302,146,77,228,128,
- 128,63,128,155,163,163,163,163,3,3,
- 193,155,261,264,57,179,4,125,127,95,
- 315,167,155,203,155,301,128,3,155,282,
- 62,61,223,128,222,222,127,128,3,57,
- 163,4,155,155,128,70,205,162,267,163,
- 3,234,128,223,261,222,217,122,299,155,
- 316,70,128,155,64
+ 0,291,58,59,127,170,192,29,12,56,
+ 292,56,274,3,266,267,249,268,242,269,
+ 66,270,271,125,10,128,276,127,3,5,
+ 125,133,7,130,176,180,29,28,30,62,
+ 226,124,128,128,30,62,167,230,128,165,
+ 126,125,124,62,128,28,128,184,167,76,
+ 127,265,127,186,180,198,275,212,128,6,
+ 198,125,124,28,166,57,3,65,67,28,
+ 167,3,28,63,127,62,127,62,70,184,
+ 184,154,127,126,125,127,184,4,127,62,
+ 127,184,127,167,29,127,277,71,212,57,
+ 3,70,64,167,127,127,127,57,57,127,
+ 194,127,127,127,237,236,127,128,226,131,
+ 304,128,168,224,56,29,58,170,306,127,
+ 127,71,194,257,194,127,272,124,273,250,
+ 166,51,36,44,47,37,10,136,134,4,
+ 3,128,45,32,5,25,24,6,8,27,
+ 26,140,146,148,147,150,149,152,151,155,
+ 153,157,61,158,253,194,277,62,287,128,
+ 288,214,158,156,127,62,6,183,250,212,
+ 250,227,228,145,229,290,29,10,60,237,
+ 237,184,167,127,308,224,31,128,4,272,
+ 70,64,127,3,217,216,3,28,28,28,
+ 28,128,3,7,125,177,162,127,65,67,
+ 167,3,126,103,120,3,57,90,96,25,
+ 24,92,91,6,94,93,63,28,88,89,
+ 8,98,97,100,99,101,113,112,111,110,
+ 109,108,107,106,105,104,70,117,102,64,
+ 278,127,64,184,3,264,127,127,154,70,
+ 223,198,3,127,64,64,63,28,230,230,
+ 226,194,305,125,71,283,198,64,128,31,
+ 309,184,212,223,127,3,177,162,177,177,
+ 177,177,167,219,154,136,126,125,10,128,
+ 57,293,3,194,177,29,128,29,219,162,
+ 147,147,146,146,146,149,149,149,149,148,
+ 148,151,150,150,153,152,155,162,157,127,
+ 297,81,79,1,162,87,85,83,82,77,
+ 84,86,80,78,56,76,219,64,303,127,
+ 70,70,127,212,127,70,70,131,64,71,
+ 70,184,128,128,227,127,63,63,63,63,
+ 194,176,128,167,201,3,294,166,156,128,
+ 184,167,71,279,119,9,214,71,3,3,
+ 3,202,3,124,162,124,182,64,220,290,
+ 184,184,154,227,3,3,3,3,126,125,
+ 167,29,177,127,127,222,5,29,3,225,
+ 166,225,299,145,77,225,127,127,63,127,
+ 154,162,162,162,162,3,3,194,154,259,
+ 262,57,178,4,124,126,95,312,166,154,
+ 198,154,298,127,3,154,279,61,60,220,
+ 127,219,219,126,127,3,57,162,4,154,
+ 154,127,70,202,161,265,162,3,230,127,
+ 220,259,219,214,122,296,154,313,70,127,
+ 154,64
};
};
public final static char inSymb[] = InSymb.inSymb;
@@ -2436,7 +2430,6 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
"RightBrace",
"SemiColon",
"ERROR_TOKEN",
- "original_namespace_name",
"EOF_TOKEN",
"]",
")",
@@ -2571,8 +2564,8 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public final static int
ERROR_SYMBOL = 74,
- SCOPE_UBOUND = 117,
- SCOPE_SIZE = 118,
+ SCOPE_UBOUND = 116,
+ SCOPE_SIZE = 117,
MAX_NAME_LENGTH = 37;
public final int getErrorSymbol() { return ERROR_SYMBOL; }
@@ -2581,20 +2574,20 @@ public class CPPParserprs implements lpg.lpgjavaruntime.ParseTable, CPPParsersym
public final int getMaxNameLength() { return MAX_NAME_LENGTH; }
public final static int
- NUM_STATES = 525,
- NT_OFFSET = 124,
- LA_STATE_OFFSET = 5825,
+ NUM_STATES = 522,
+ NT_OFFSET = 123,
+ LA_STATE_OFFSET = 5831,
MAX_LA = 2147483647,
- NUM_RULES = 533,
- NUM_NONTERMINALS = 195,
- NUM_SYMBOLS = 319,
+ NUM_RULES = 531,
+ NUM_NONTERMINALS = 193,
+ NUM_SYMBOLS = 316,
SEGMENT_SIZE = 8192,
- START_STATE = 2424,
+ START_STATE = 2887,
IDENTIFIER_SYMBOL = 0,
EOFT_SYMBOL = 121,
EOLT_SYMBOL = 121,
- ACCEPT_ACTION = 4899,
- ERROR_ACTION = 5292;
+ ACCEPT_ACTION = 4907,
+ ERROR_ACTION = 5300;
public final static boolean BACKTRACK = true;
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java
index 69343102495..e93e0fa85d1 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPParsersym.java
@@ -22,7 +22,7 @@ public interface CPPParsersym {
TK_case = 79,
TK_catch = 119,
TK_char = 14,
- TK_class = 61,
+ TK_class = 60,
TK_const = 33,
TK_const_cast = 36,
TK_continue = 80,
@@ -46,7 +46,7 @@ public interface CPPParsersym {
TK_int = 17,
TK_long = 18,
TK_mutable = 42,
- TK_namespace = 58,
+ TK_namespace = 56,
TK_new = 67,
TK_operator = 7,
TK_private = 114,
@@ -64,7 +64,7 @@ public interface CPPParsersym {
TK_switch = 87,
TK_template = 29,
TK_this = 48,
- TK_throw = 62,
+ TK_throw = 61,
TK_try = 76,
TK_true = 49,
TK_typedef = 50,
@@ -72,7 +72,7 @@ public interface CPPParsersym {
TK_typename = 10,
TK_union = 69,
TK_unsigned = 21,
- TK_using = 56,
+ TK_using = 58,
TK_virtual = 31,
TK_void = 22,
TK_volatile = 34,
@@ -85,10 +85,10 @@ public interface CPPParsersym {
TK_identifier = 1,
TK_Completion = 2,
TK_EndOfCompletion = 9,
- TK_Invalid = 124,
+ TK_Invalid = 123,
TK_LeftBracket = 57,
TK_LeftParen = 3,
- TK_LeftBrace = 60,
+ TK_LeftBrace = 62,
TK_Dot = 120,
TK_DotStar = 96,
TK_Arrow = 103,
@@ -116,7 +116,7 @@ public interface CPPParsersym {
TK_AndAnd = 101,
TK_OrOr = 102,
TK_Question = 117,
- TK_Colon = 72,
+ TK_Colon = 71,
TK_ColonColon = 4,
TK_DotDotDot = 95,
TK_Assign = 70,
@@ -133,11 +133,10 @@ public interface CPPParsersym {
TK_Comma = 64,
TK_zero = 55,
TK_RightBracket = 118,
- TK_RightParen = 73,
- TK_RightBrace = 71,
+ TK_RightParen = 72,
+ TK_RightBrace = 73,
TK_SemiColon = 11,
TK_ERROR_TOKEN = 74,
- TK_original_namespace_name = 123,
TK_EOF_TOKEN = 121;
public final static String orderedTerminalSymbols[] = {
@@ -197,13 +196,13 @@ public interface CPPParsersym {
"floating",
"charconst",
"zero",
- "using",
- "LeftBracket",
"namespace",
+ "LeftBracket",
+ "using",
"asm",
- "LeftBrace",
"class",
"throw",
+ "LeftBrace",
"GT",
"Comma",
"delete",
@@ -212,9 +211,9 @@ public interface CPPParsersym {
"struct",
"union",
"Assign",
- "RightBrace",
"Colon",
"RightParen",
+ "RightBrace",
"ERROR_TOKEN",
"export",
"try",
@@ -264,7 +263,6 @@ public interface CPPParsersym {
"Dot",
"EOF_TOKEN",
"else",
- "original_namespace_name",
"Invalid"
};
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParser.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParser.java
index 355aea49d6d..7c964ed1f80 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParser.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParser.java
@@ -1505,765 +1505,758 @@ public CPPSizeofExpressionParser(String[] mapFrom) { // constructor
}
//
- // Rule 299: original_namespace_definition ::= namespace identifier_name { <openscope-ast> declaration_seq_opt }
+ // Rule 297: named_namespace_definition ::= namespace namespace_name { <openscope-ast> declaration_seq_opt }
//
- case 299: { action.builder.
- consumeNamespaceDefinition(true); break;
- }
-
- //
- // Rule 300: extension_namespace_definition ::= namespace original_namespace_name { <openscope-ast> declaration_seq_opt }
- //
- case 300: { action.builder.
+ case 297: { action.builder.
consumeNamespaceDefinition(true); break;
}
//
- // Rule 301: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
+ // Rule 298: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
//
- case 301: { action.builder.
+ case 298: { action.builder.
consumeNamespaceDefinition(false); break;
}
//
- // Rule 302: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 299: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 302: { action.builder.
+ case 299: { action.builder.
consumeNamespaceAliasDefinition(); break;
}
//
- // Rule 303: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
+ // Rule 300: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
//
- case 303: { action.builder.
+ case 300: { action.builder.
consumeUsingDeclaration(); break;
}
//
- // Rule 304: typename_opt ::= typename
+ // Rule 301: typename_opt ::= typename
//
- case 304: { action.builder.
+ case 301: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 305: typename_opt ::= $Empty
+ // Rule 302: typename_opt ::= $Empty
//
- case 305: { action.builder.
+ case 302: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 306: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 303: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 306: { action.builder.
+ case 303: { action.builder.
consumeUsingDirective(); break;
}
//
- // Rule 307: asm_definition ::= asm ( stringlit ) ;
+ // Rule 304: asm_definition ::= asm ( stringlit ) ;
//
- case 307: { action.builder.
+ case 304: { action.builder.
consumeDeclarationASM(); break;
}
//
- // Rule 308: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
+ // Rule 305: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
//
- case 308: { action.builder.
+ case 305: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 309: linkage_specification ::= extern stringlit <openscope-ast> declaration
+ // Rule 306: linkage_specification ::= extern stringlit <openscope-ast> declaration
//
- case 309: { action.builder.
+ case 306: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 314: init_declarator_complete ::= init_declarator
+ // Rule 311: init_declarator_complete ::= init_declarator
//
- case 314: { action.builder.
+ case 311: { action.builder.
consumeInitDeclaratorComplete(); break;
}
//
- // Rule 316: init_declarator ::= declarator initializer
+ // Rule 313: init_declarator ::= declarator initializer
//
- case 316: { action.builder.
+ case 313: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 318: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 315: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 318: { action.builder.
+ case 315: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 320: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 317: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 320: { action.builder.
+ case 317: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 324: basic_direct_declarator ::= declarator_id_name
+ // Rule 321: basic_direct_declarator ::= declarator_id_name
//
- case 324: { action.builder.
+ case 321: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 325: basic_direct_declarator ::= ( declarator )
+ // Rule 322: basic_direct_declarator ::= ( declarator )
//
- case 325: { action.builder.
+ case 322: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 326: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 323: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 326: { action.builder.
+ case 323: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 327: array_direct_declarator ::= array_direct_declarator array_modifier
+ // Rule 324: array_direct_declarator ::= array_direct_declarator array_modifier
//
- case 327: { action.builder.
+ case 324: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 328: array_direct_declarator ::= basic_direct_declarator array_modifier
+ // Rule 325: array_direct_declarator ::= basic_direct_declarator array_modifier
//
- case 328: { action.builder.
+ case 325: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 329: array_modifier ::= [ constant_expression ]
+ // Rule 326: array_modifier ::= [ constant_expression ]
//
- case 329: { action.builder.
+ case 326: { action.builder.
consumeDirectDeclaratorArrayModifier(true); break;
}
//
- // Rule 330: array_modifier ::= [ ]
+ // Rule 327: array_modifier ::= [ ]
//
- case 330: { action.builder.
+ case 327: { action.builder.
consumeDirectDeclaratorArrayModifier(false); break;
}
//
- // Rule 331: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 328: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
//
- case 331: { action.builder.
+ case 328: { action.builder.
consumePointer(); break;
}
//
- // Rule 332: ptr_operator ::= &
+ // Rule 329: ptr_operator ::= &
//
- case 332: { action.builder.
+ case 329: { action.builder.
consumeReferenceOperator(); break;
}
//
- // Rule 333: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 330: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
//
- case 333: { action.builder.
+ case 330: { action.builder.
consumePointerToMember(); break;
}
//
- // Rule 339: cv_qualifier ::= const
+ // Rule 336: cv_qualifier ::= const
//
- case 339: { action.builder.
+ case 336: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 340: cv_qualifier ::= volatile
+ // Rule 337: cv_qualifier ::= volatile
//
- case 340: { action.builder.
+ case 337: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 342: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
+ // Rule 339: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
//
- case 342: { action.builder.
+ case 339: { action.builder.
consumeQualifiedId(true); break;
}
//
- // Rule 343: type_id ::= type_specifier_seq
+ // Rule 340: type_id ::= type_specifier_seq
//
- case 343: { action.builder.
+ case 340: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 344: type_id ::= type_specifier_seq abstract_declarator
+ // Rule 341: type_id ::= type_specifier_seq abstract_declarator
//
- case 344: { action.builder.
+ case 341: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 347: abstract_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 344: abstract_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 347: { action.builder.
+ case 344: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 348: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
+ // Rule 345: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
//
- case 348: { action.builder.
+ case 345: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 352: basic_direct_abstract_declarator ::= ( abstract_declarator )
+ // Rule 349: basic_direct_abstract_declarator ::= ( abstract_declarator )
//
- case 352: { action.builder.
+ case 349: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 353: basic_direct_abstract_declarator ::= ( )
+ // Rule 350: basic_direct_abstract_declarator ::= ( )
//
- case 353: { action.builder.
+ case 350: { action.builder.
consumeAbstractDeclaratorEmpty(); break;
}
//
- // Rule 354: array_direct_abstract_declarator ::= array_modifier
+ // Rule 351: array_direct_abstract_declarator ::= array_modifier
//
- case 354: { action.builder.
+ case 351: { action.builder.
consumeDirectDeclaratorArrayDeclarator(false); break;
}
//
- // Rule 355: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
+ // Rule 352: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
//
- case 355: { action.builder.
+ case 352: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 356: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
+ // Rule 353: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
//
- case 356: { action.builder.
+ case 353: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 357: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 354: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 357: { action.builder.
+ case 354: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 358: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 355: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 358: { action.builder.
+ case 355: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(false); break;
}
//
- // Rule 359: parameter_declaration_clause ::= parameter_declaration_list_opt ...
+ // Rule 356: parameter_declaration_clause ::= parameter_declaration_list_opt ...
//
- case 359: { action.builder.
+ case 356: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 360: parameter_declaration_clause ::= parameter_declaration_list_opt
+ // Rule 357: parameter_declaration_clause ::= parameter_declaration_list_opt
//
- case 360: { action.builder.
+ case 357: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 361: parameter_declaration_clause ::= parameter_declaration_list , ...
+ // Rule 358: parameter_declaration_clause ::= parameter_declaration_list , ...
//
- case 361: { action.builder.
+ case 358: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 367: abstract_declarator_opt ::= $Empty
+ // Rule 364: abstract_declarator_opt ::= $Empty
//
- case 367: { action.builder.
+ case 364: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 368: parameter_declaration ::= declaration_specifiers parameter_init_declarator
+ // Rule 365: parameter_declaration ::= declaration_specifiers parameter_init_declarator
//
- case 368: { action.builder.
+ case 365: { action.builder.
consumeParameterDeclaration(); break;
}
//
- // Rule 369: parameter_declaration ::= declaration_specifiers
+ // Rule 366: parameter_declaration ::= declaration_specifiers
//
- case 369: { action.builder.
+ case 366: { action.builder.
consumeParameterDeclarationWithoutDeclarator(); break;
}
//
- // Rule 371: parameter_init_declarator ::= declarator = parameter_initializer
+ // Rule 368: parameter_init_declarator ::= declarator = parameter_initializer
//
- case 371: { action.builder.
+ case 368: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 373: parameter_init_declarator ::= abstract_declarator = parameter_initializer
+ // Rule 370: parameter_init_declarator ::= abstract_declarator = parameter_initializer
//
- case 373: { action.builder.
+ case 370: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 374: parameter_init_declarator ::= = parameter_initializer
+ // Rule 371: parameter_init_declarator ::= = parameter_initializer
//
- case 374: { action.builder.
+ case 371: { action.builder.
consumeDeclaratorWithInitializer(false); break;
}
//
- // Rule 375: parameter_initializer ::= assignment_expression
+ // Rule 372: parameter_initializer ::= assignment_expression
//
- case 375: { action.builder.
+ case 372: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 376: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
+ // Rule 373: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
//
- case 376: { action.builder.
+ case 373: { action.builder.
consumeFunctionDefinition(false); break;
}
//
- // Rule 377: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
+ // Rule 374: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
//
- case 377: { action.builder.
+ case 374: { action.builder.
consumeFunctionDefinition(true); break;
}
//
- // Rule 380: initializer ::= ( expression_list )
+ // Rule 377: initializer ::= ( expression_list )
//
- case 380: { action.builder.
+ case 377: { action.builder.
consumeInitializerConstructor(); break;
}
//
- // Rule 381: initializer_clause ::= assignment_expression
+ // Rule 378: initializer_clause ::= assignment_expression
//
- case 381: { action.builder.
+ case 378: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 382: initializer_clause ::= { <openscope-ast> initializer_list , }
+ // Rule 379: initializer_clause ::= { <openscope-ast> initializer_list , }
//
- case 382: { action.builder.
+ case 379: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 383: initializer_clause ::= { <openscope-ast> initializer_list }
+ // Rule 380: initializer_clause ::= { <openscope-ast> initializer_list }
//
- case 383: { action.builder.
+ case 380: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 384: initializer_clause ::= { <openscope-ast> }
+ // Rule 381: initializer_clause ::= { <openscope-ast> }
//
- case 384: { action.builder.
+ case 381: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 389: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
+ // Rule 386: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
//
- case 389: { action.builder.
+ case 386: { action.builder.
consumeClassSpecifier(); break;
}
//
- // Rule 390: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
+ // Rule 387: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
//
- case 390: { action.builder.
+ case 387: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 391: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
+ // Rule 388: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
//
- case 391: { action.builder.
+ case 388: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 392: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
+ // Rule 389: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
//
- case 392: { action.builder.
+ case 389: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 393: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
+ // Rule 390: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
//
- case 393: { action.builder.
+ case 390: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 395: identifier_name_opt ::= $Empty
+ // Rule 392: identifier_name_opt ::= $Empty
//
- case 395: { action.builder.
+ case 392: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 399: visibility_label ::= access_specifier_keyword :
+ // Rule 396: visibility_label ::= access_specifier_keyword :
//
- case 399: { action.builder.
+ case 396: { action.builder.
consumeVisibilityLabel(); break;
}
//
- // Rule 400: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
+ // Rule 397: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
//
- case 400: { action.builder.
+ case 397: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 401: member_declaration ::= declaration_specifiers_opt ;
+ // Rule 398: member_declaration ::= declaration_specifiers_opt ;
//
- case 401: { action.builder.
+ case 398: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 404: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
+ // Rule 401: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
//
- case 404: { action.builder.
+ case 401: { action.builder.
consumeMemberDeclarationQualifiedId(); break;
}
//
- // Rule 409: member_declaration ::= ERROR_TOKEN
+ // Rule 407: member_declaration ::= ERROR_TOKEN
//
- case 409: { action.builder.
+ case 407: { action.builder.
consumeDeclarationProblem(); break;
}
//
- // Rule 417: member_declarator ::= declarator constant_initializer
+ // Rule 415: member_declarator ::= declarator constant_initializer
//
- case 417: { action.builder.
+ case 415: { action.builder.
consumeMemberDeclaratorWithInitializer(); break;
}
//
- // Rule 418: member_declarator ::= bit_field_declarator : constant_expression
+ // Rule 416: member_declarator ::= bit_field_declarator : constant_expression
//
- case 418: { action.builder.
+ case 416: { action.builder.
consumeBitField(true); break;
}
//
- // Rule 419: member_declarator ::= : constant_expression
+ // Rule 417: member_declarator ::= : constant_expression
//
- case 419: { action.builder.
+ case 417: { action.builder.
consumeBitField(false); break;
}
//
- // Rule 420: bit_field_declarator ::= identifier_name
+ // Rule 418: bit_field_declarator ::= identifier_name
//
- case 420: { action.builder.
+ case 418: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 421: constant_initializer ::= = constant_expression
+ // Rule 419: constant_initializer ::= = constant_expression
//
- case 421: { action.builder.
+ case 419: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 427: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 425: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 427: { action.builder.
+ case 425: { action.builder.
consumeBaseSpecifier(false, false); break;
}
//
- // Rule 428: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
+ // Rule 426: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
//
- case 428: { action.builder.
+ case 426: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 429: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
+ // Rule 427: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
//
- case 429: { action.builder.
+ case 427: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 430: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
+ // Rule 428: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
//
- case 430: { action.builder.
+ case 428: { action.builder.
consumeBaseSpecifier(true, false); break;
}
//
- // Rule 431: access_specifier_keyword ::= private
+ // Rule 429: access_specifier_keyword ::= private
//
- case 431: { action.builder.
+ case 429: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 432: access_specifier_keyword ::= protected
+ // Rule 430: access_specifier_keyword ::= protected
//
- case 432: { action.builder.
+ case 430: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 433: access_specifier_keyword ::= public
+ // Rule 431: access_specifier_keyword ::= public
//
- case 433: { action.builder.
+ case 431: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 435: access_specifier_keyword_opt ::= $Empty
+ // Rule 433: access_specifier_keyword_opt ::= $Empty
//
- case 435: { action.builder.
+ case 433: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 437: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
+ // Rule 435: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
//
- case 437: { action.builder.
+ case 435: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 438: conversion_function_id ::= operator conversion_type_id
+ // Rule 436: conversion_function_id ::= operator conversion_type_id
//
- case 438: { action.builder.
+ case 436: { action.builder.
consumeConversionName(); break;
}
//
- // Rule 439: conversion_type_id ::= type_specifier_seq conversion_declarator
+ // Rule 437: conversion_type_id ::= type_specifier_seq conversion_declarator
//
- case 439: { action.builder.
+ case 437: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 440: conversion_type_id ::= type_specifier_seq
+ // Rule 438: conversion_type_id ::= type_specifier_seq
//
- case 440: { action.builder.
+ case 438: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 441: conversion_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 439: conversion_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 441: { action.builder.
+ case 439: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 447: mem_initializer ::= mem_initializer_name ( expression_list_opt )
+ // Rule 445: mem_initializer ::= mem_initializer_name ( expression_list_opt )
//
- case 447: { action.builder.
+ case 445: { action.builder.
consumeConstructorChainInitializer(); break;
}
//
- // Rule 448: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 446: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 448: { action.builder.
+ case 446: { action.builder.
consumeQualifiedId(false); break;
}
//
- // Rule 451: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
+ // Rule 449: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
//
- case 451: { action.builder.
+ case 449: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 452: operator_id_name ::= operator overloadable_operator
+ // Rule 450: operator_id_name ::= operator overloadable_operator
//
- case 452: { action.builder.
+ case 450: { action.builder.
consumeOperatorName(); break;
}
//
- // Rule 495: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
+ // Rule 493: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
//
- case 495: { action.builder.
+ case 493: { action.builder.
consumeTemplateDeclaration(); break;
}
//
- // Rule 496: export_opt ::= export
+ // Rule 494: export_opt ::= export
//
- case 496: { action.builder.
+ case 494: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 497: export_opt ::= $Empty
+ // Rule 495: export_opt ::= $Empty
//
- case 497: { action.builder.
+ case 495: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 501: template_parameter ::= parameter_declaration
+ // Rule 499: template_parameter ::= parameter_declaration
//
- case 501: { action.builder.
+ case 499: { action.builder.
consumeTemplateParamterDeclaration(); break;
}
//
- // Rule 502: type_parameter ::= class identifier_name_opt
+ // Rule 500: type_parameter ::= class identifier_name_opt
//
- case 502: { action.builder.
+ case 500: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 503: type_parameter ::= class identifier_name_opt = type_id
+ // Rule 501: type_parameter ::= class identifier_name_opt = type_id
//
- case 503: { action.builder.
+ case 501: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 504: type_parameter ::= typename identifier_name_opt
+ // Rule 502: type_parameter ::= typename identifier_name_opt
//
- case 504: { action.builder.
+ case 502: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 505: type_parameter ::= typename identifier_name_opt = type_id
+ // Rule 503: type_parameter ::= typename identifier_name_opt = type_id
//
- case 505: { action.builder.
+ case 503: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 506: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
+ // Rule 504: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
//
- case 506: { action.builder.
+ case 504: { action.builder.
consumeTemplatedTypeTemplateParameter(false); break;
}
//
- // Rule 507: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
+ // Rule 505: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
//
- case 507: { action.builder.
+ case 505: { action.builder.
consumeTemplatedTypeTemplateParameter(true); break;
}
//
- // Rule 508: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
+ // Rule 506: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
//
- case 508: { action.builder.
+ case 506: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 516: explicit_instantiation ::= template declaration
+ // Rule 514: explicit_instantiation ::= template declaration
//
- case 516: { action.builder.
+ case 514: { action.builder.
consumeTemplateExplicitInstantiation(); break;
}
//
- // Rule 517: explicit_specialization ::= template < > declaration
+ // Rule 515: explicit_specialization ::= template < > declaration
//
- case 517: { action.builder.
+ case 515: { action.builder.
consumeTemplateExplicitSpecialization(); break;
}
//
- // Rule 518: try_block ::= try compound_statement <openscope-ast> handler_seq
+ // Rule 516: try_block ::= try compound_statement <openscope-ast> handler_seq
//
- case 518: { action.builder.
+ case 516: { action.builder.
consumeStatementTryBlock(); break;
}
//
- // Rule 521: handler ::= catch ( exception_declaration ) compound_statement
+ // Rule 519: handler ::= catch ( exception_declaration ) compound_statement
//
- case 521: { action.builder.
+ case 519: { action.builder.
consumeStatementCatchHandler(false); break;
}
//
- // Rule 522: handler ::= catch ( ... ) compound_statement
+ // Rule 520: handler ::= catch ( ... ) compound_statement
//
- case 522: { action.builder.
+ case 520: { action.builder.
consumeStatementCatchHandler(true); break;
}
//
- // Rule 523: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
+ // Rule 521: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
//
- case 523: { action.builder.
+ case 521: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 524: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
+ // Rule 522: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
//
- case 524: { action.builder.
+ case 522: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 525: exception_declaration ::= type_specifier_seq
+ // Rule 523: exception_declaration ::= type_specifier_seq
//
- case 525: { action.builder.
+ case 523: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 533: no_sizeof_type_name_start ::= ERROR_TOKEN
+ // Rule 531: no_sizeof_type_name_start ::= ERROR_TOKEN
//
- case 533: { action.builder.
+ case 531: { action.builder.
consumeExpressionProblem(); break;
}
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParserprs.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParserprs.java
index e68b7e6fcfe..a3583e53770 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParserprs.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParserprs.java
@@ -29,7 +29,7 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0
+ 0,0,0
};
};
public final static byte isKeyword[] = IsKeyword.isKeyword;
@@ -66,452 +66,444 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,3,4,4,
5,2,4,5,4,5,6,1,3,1,
- 0,1,3,1,1,1,1,1,6,6,
- 5,7,6,1,0,6,5,6,4,1,
- 3,1,0,1,1,2,1,3,1,3,
- 1,1,1,1,3,9,2,2,3,2,
- 3,1,5,1,2,2,1,0,1,1,
- 1,4,1,2,1,1,2,3,1,1,
- 1,3,2,1,2,2,9,8,2,1,
- 3,1,3,1,0,1,0,2,1,1,
- 3,1,3,2,1,5,8,1,2,3,
- 1,5,4,3,1,3,1,1,5,4,
- 4,5,5,1,0,1,1,1,2,4,
- 2,2,1,5,1,1,1,1,1,1,
- 2,1,0,1,3,1,2,3,2,1,
- 2,2,1,0,1,3,3,5,5,4,
- 1,1,1,1,0,1,5,2,2,1,
- 2,2,1,0,1,3,4,3,1,1,
- 5,2,1,1,3,3,1,1,1,1,
+ 0,1,3,1,1,1,6,5,7,6,
+ 1,0,6,5,6,4,1,3,1,0,
+ 1,1,2,1,3,1,3,1,1,1,
+ 1,3,9,2,2,3,2,3,1,5,
+ 1,2,2,1,0,1,1,1,4,1,
+ 2,1,1,2,3,1,1,1,3,2,
+ 1,2,2,9,8,2,1,3,1,3,
+ 1,0,1,0,2,1,1,3,1,3,
+ 2,1,5,8,1,2,3,1,5,4,
+ 3,1,3,1,1,5,4,4,5,5,
+ 1,0,1,1,1,2,4,2,2,1,
+ 5,1,1,1,1,1,1,1,2,1,
+ 0,1,3,1,2,3,2,1,2,2,
+ 1,0,1,3,3,5,5,4,1,1,
+ 1,1,0,1,5,2,2,1,2,2,
+ 1,0,1,3,4,3,1,1,5,2,
+ 1,1,3,3,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,2,2,7,1,0,1,3,1,
- 1,2,4,2,4,7,9,5,1,3,
- 1,0,1,1,1,2,4,4,1,2,
- 5,5,3,3,1,4,3,1,0,1,
- 3,1,1,-63,0,0,0,-54,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-2,0,0,0,
- 0,0,0,0,-53,0,0,-10,0,0,
- 0,0,0,0,0,-324,0,0,0,-267,
- 0,0,0,0,0,0,-178,0,0,-92,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,-4,0,0,0,0,0,0,0,
- -60,0,0,0,-149,0,0,0,0,0,
- 0,0,0,-58,0,-263,0,0,0,-368,
- 0,0,-5,0,0,-177,0,0,0,0,
- 0,0,0,0,0,-6,-72,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-339,0,0,0,0,
- 0,0,-115,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-261,0,0,-244,
- 0,0,0,0,-247,-113,0,-73,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,-116,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-1,0,0,0,0,
- 0,0,0,-7,0,0,-16,0,0,0,
- 0,0,0,0,-327,0,-127,0,0,0,
- 0,0,-136,0,0,0,0,-141,0,0,
- 0,-8,0,0,0,-131,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-66,0,0,-367,
- 0,0,-118,-305,0,0,0,-51,0,0,
- 0,0,0,0,-206,0,-232,0,0,0,
- 0,-61,0,0,-225,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-49,0,0,-296,0,0,-187,
- 0,0,0,-238,0,0,0,-331,0,0,
- 0,0,0,0,-349,0,0,0,-217,-65,
- 0,0,0,0,0,-108,0,-227,-483,0,
- 0,0,-9,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
+ 2,2,7,1,0,1,3,1,1,2,
+ 4,2,4,7,9,5,1,3,1,0,
+ 1,1,1,2,4,4,1,2,5,5,
+ 3,3,1,4,3,1,0,1,3,1,
+ 1,-63,0,0,0,-2,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-129,0,0,-316,0,0,0,0,
- -518,0,0,0,-11,0,0,0,0,0,
- 0,0,0,0,0,0,-337,0,-508,0,
+ 0,0,0,0,0,-66,0,0,0,0,
+ 0,0,-136,0,0,-10,0,0,0,-227,
+ 0,0,0,-178,0,0,-377,0,0,0,
+ 0,-4,0,0,0,0,0,-93,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-114,
+ 0,-54,0,0,0,0,0,0,0,0,
+ 0,-376,0,0,0,-438,0,-5,0,0,
+ 0,0,0,0,-16,0,0,0,0,0,
+ 0,0,-58,-6,0,0,0,0,0,0,
+ 0,-375,-293,-72,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-244,0,
+ 0,0,-7,0,0,0,0,0,0,-115,
0,0,0,0,0,0,0,0,0,0,
- -20,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-3,0,0,0,-12,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-344,0,
+ 0,0,0,-49,0,0,0,0,-51,0,
+ 0,-117,0,0,-137,-349,0,-127,0,0,
+ -319,0,0,0,0,0,0,0,-116,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-435,0,0,0,0,-146,0,0,
- 0,-450,0,0,0,0,0,0,0,-357,
- -280,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-292,0,0,0,0,0,0,
- 0,0,0,0,-515,0,0,0,0,0,
- 0,0,-318,0,0,0,-130,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-8,
+ 0,0,-9,0,0,0,-124,0,0,0,
+ 0,0,0,0,0,0,-398,0,0,0,
+ 0,0,-73,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-60,0,
+ 0,-131,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-152,0,0,-124,
- 0,-210,0,0,0,0,0,-319,0,0,
- 0,-13,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-118,
+ 0,0,0,-11,-206,0,-141,0,0,-53,
+ -50,0,0,-210,0,0,-12,0,0,0,
+ -225,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-311,0,0,-143,0,0,0,0,-427,
+ 0,-129,0,0,0,0,0,0,-145,0,
+ 0,0,0,-119,0,-149,0,0,0,0,
+ -454,0,-177,0,0,0,0,-13,0,-354,
+ 0,0,0,-15,0,0,0,0,0,0,
+ 0,0,-480,0,0,0,-342,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-248,0,-50,0,
- 0,0,0,-39,0,0,0,-15,0,0,
+ 0,-464,0,0,-515,0,0,0,-263,0,
+ 0,0,0,0,0,0,0,-231,0,0,
+ 0,0,-505,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-28,0,0,0,0,0,
- -405,-57,0,0,0,0,-41,0,0,0,
+ 0,0,0,0,0,0,-65,0,0,-236,
+ 0,0,0,0,-20,0,0,0,-297,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-29,
- 0,0,0,0,0,0,0,-30,0,0,
- -42,0,0,0,0,0,0,0,-95,0,
- 0,0,-31,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-3,0,
+ 0,0,-28,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-69,0,0,-32,0,-33,0,0,
- -96,0,0,0,0,0,0,0,0,0,
+ 0,0,-29,0,0,0,0,0,0,0,
+ -381,0,0,0,-187,0,0,0,-57,-30,
+ 0,-31,0,-281,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-75,0,0,-34,0,-35,
- 0,0,-97,0,0,0,-36,0,0,0,
+ 0,0,0,0,-359,0,0,-185,0,0,
+ 0,0,-61,0,0,-321,0,0,0,-108,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-284,
+ 0,0,0,0,0,0,0,0,0,-32,
+ 0,0,-308,0,0,0,0,0,0,-322,
+ 0,0,0,-130,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-106,0,0,-37,
- 0,-38,0,0,-98,0,0,0,0,0,
+ 0,0,0,-247,0,0,0,0,0,0,
+ -33,0,0,-143,0,0,-34,0,-114,0,
+ 0,-430,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-35,0,0,0,0,
+ 0,0,0,0,0,-36,0,0,0,0,
+ 0,0,0,0,-39,0,0,0,-152,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-219,0,
- 0,-40,0,-55,0,0,-99,0,0,0,
- -56,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-37,0,0,-153,0,
+ 0,-314,0,0,0,0,0,-41,0,0,
+ 0,-200,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -220,0,0,-59,0,-67,0,0,-100,0,
- 0,0,-68,0,0,0,0,0,0,0,
+ 0,-38,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-40,-334,0,0,0,-95,
+ 0,0,0,-202,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-221,0,0,-70,0,-71,0,0,
- -101,0,0,0,-109,0,0,0,0,0,
+ -55,0,0,-133,0,0,0,0,0,0,
+ 0,-96,0,0,0,-211,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-56,0,0,0,0,
+ 0,0,-59,0,0,-288,0,0,-67,0,
+ 0,0,0,-97,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-222,0,0,-110,0,-111,
- 0,0,-102,0,0,0,-112,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-68,0,0,-186,0,0,
+ -70,0,0,0,0,-98,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-294,0,0,-120,
- 0,-138,0,0,-103,0,0,0,-139,0,
+ 0,0,0,0,0,0,0,0,0,-71,
+ 0,0,0,0,0,0,-109,0,0,-188,
+ 0,0,-110,0,0,0,0,-99,0,0,
+ 0,-374,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,-111,0,0,0,0,0,0,-112,0,
+ 0,-345,0,0,-449,0,0,0,0,-100,
+ 0,0,0,-239,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-505,0,
- 0,-140,0,-137,0,0,-104,0,0,0,
- -202,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-120,0,0,0,0,0,0,
+ -138,0,0,-183,0,0,-139,0,0,0,
+ 0,-101,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-261,0,0,0,0,
+ 0,0,-140,0,0,-384,0,0,-453,0,
+ 0,0,0,-102,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -295,0,0,-154,0,0,0,0,-105,0,
- 0,0,-153,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-276,0,0,
+ 0,0,0,0,0,0,0,-407,0,0,
+ -154,-155,0,0,0,-103,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-200,
- 0,0,-145,0,0,-155,0,-211,0,0,
- -134,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-317,
+ 0,0,0,0,0,0,-156,0,0,-190,
+ 0,0,-157,0,-491,0,0,-104,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-347,-218,0,
+ 0,-315,0,0,0,0,0,0,0,0,
+ 0,-193,0,0,-158,0,0,0,0,-105,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-156,
- 0,0,0,0,0,-236,0,0,0,0,
- -362,0,0,-373,0,0,0,-157,0,-513,
+ 0,0,0,-159,0,0,0,0,0,0,
+ 0,0,0,-204,0,0,-160,0,0,0,
+ 0,-134,0,0,0,-333,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-158,0,0,0,0,0,0,0,
- 0,0,0,-159,0,0,-237,0,0,0,
- 0,-315,0,0,0,-160,0,0,0,0,
+ 0,0,-411,0,0,-161,0,0,-218,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-275,0,0,0,0,0,
- 0,0,-161,0,0,-239,0,0,-329,0,
- 0,0,-162,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-217,0,0,0,0,0,0,0,
+ 0,0,-162,0,0,-507,0,-209,0,0,
+ 0,0,-403,0,0,0,-361,-163,-510,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-163,0,0,-148,0,0,0,-246,
- 0,0,0,0,0,0,0,0,0,-330,
- -342,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-508,0,0,0,0,0,0,0,
+ 0,0,-229,0,0,0,0,0,0,0,
+ -318,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-164,0,0,-253,0,0,-371,0,0,
+ 0,0,0,0,-164,0,0,0,0,0,
+ 0,0,0,0,-246,0,0,-332,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -165,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-151,0,0,0,-254,0,
- 0,0,0,0,0,0,0,-166,-356,-372,
+ 0,-165,0,0,0,0,0,0,0,0,
+ 0,-166,0,0,-148,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-347,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -167,0,0,-255,0,0,-442,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-363,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-332,0,0,0,-256,-168,0,
- 0,0,0,0,-245,0,0,0,-107,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-185,
- 0,0,-289,0,-283,-94,0,0,0,0,
+ 0,-167,0,0,0,0,0,0,-168,0,
+ 0,-253,0,0,-379,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,-169,0,
- 0,0,0,0,0,0,0,0,-93,0,
- 0,0,-455,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-170,0,
+ 0,-151,0,0,0,-171,0,0,0,0,
+ 0,0,0,0,-380,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-284,0,0,0,0,0,0,-89,0,
+ 0,0,0,0,0,0,0,0,-172,0,
+ 0,0,0,0,0,-268,0,0,-254,0,
+ 0,-441,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-173,0,0,0,0,
+ 0,0,0,0,0,-369,0,0,-146,0,
+ 0,0,-174,-175,0,0,0,0,0,-344,
+ -176,-107,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-90,0,0,
+ 0,0,0,0,0,-179,0,0,0,0,
+ 0,0,-479,0,0,-255,-180,0,-94,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -314,0,0,0,0,-91,0,0,0,0,
+ 0,0,-181,0,0,0,0,0,0,0,
+ 0,-92,0,0,0,-182,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-170,0,
- 0,0,0,-83,0,0,0,-231,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-171,0,0,0,
- -84,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-430,0,0,0,-85,0,0,
- 0,-172,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -173,0,0,0,-86,0,0,0,-392,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-510,0,0,
- 0,-52,0,0,0,-299,0,0,0,0,
- -87,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-174,0,0,-302,0,0,0,
- -260,-241,0,0,0,0,-300,0,0,0,
- 0,0,-251,0,0,0,0,-88,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-252,0,0,0,-175,-14,0,
- 0,0,0,-391,0,-186,0,0,0,0,
- 0,0,0,0,0,-397,0,0,0,0,
- -48,0,0,-366,0,-454,0,0,0,0,
- 0,0,-176,-179,-122,0,0,0,0,0,
- -180,0,0,-181,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -286,0,0,0,0,-459,0,0,0,0,
- 0,0,-182,-420,0,0,0,0,0,-380,
- 0,0,0,0,0,0,0,0,0,0,
- -78,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-464,
- 0,0,0,0,-398,0,0,0,0,0,
- 0,0,0,0,0,0,0,-213,0,0,
- 0,0,0,-408,0,-119,-348,0,-243,-288,
- 0,0,0,0,0,0,0,0,-404,-429,
- -43,0,0,-312,0,0,0,-389,0,0,
- 0,0,0,-191,0,-192,-474,-203,0,0,
- 0,0,0,0,-444,0,0,-197,0,0,
- 0,0,0,0,0,0,0,0,-386,0,
- 0,0,0,0,0,0,-198,0,-322,0,
- 0,-354,0,-419,0,0,0,0,0,-188,
- -201,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-74,0,-462,0,0,0,0,
- -425,0,0,-376,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-212,0,0,
- 0,-323,0,0,0,0,0,0,-128,0,
- 0,0,-463,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-467,-268,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-215,0,
- 0,0,-432,0,-351,0,0,-511,0,-223,
- -401,0,0,0,0,0,0,0,-117,0,
- -190,0,0,0,0,0,0,0,0,0,
- -135,0,0,0,0,0,0,0,-321,0,
- 0,0,0,0,-235,0,-224,0,0,0,
- 0,0,0,0,0,-226,-411,0,0,0,
- 0,0,-274,0,0,0,0,0,0,0,
- -433,0,0,-301,0,0,-364,-240,-413,-242,
- 0,-317,0,0,0,0,0,0,0,0,
- -193,-44,-452,0,0,0,0,0,0,0,
- -228,0,-250,0,0,0,-45,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-355,0,
- 0,-147,0,0,0,0,0,0,0,0,
- -440,0,0,0,0,0,0,0,-264,0,
- 0,0,0,0,0,0,0,0,-18,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-265,0,0,-345,0,0,
- 0,0,0,0,-507,0,0,0,0,0,
- 0,0,0,0,0,0,0,-266,-204,0,
- 0,0,0,0,0,0,0,0,0,-209,
- 0,0,0,0,0,0,0,0,0,0,
- 0,-79,0,0,0,-495,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-307,0,0,0,
- 0,0,0,0,0,0,0,-453,0,0,
- -352,0,0,0,0,0,0,0,0,0,
- 0,-276,-62,-448,-277,-451,0,0,-393,0,
- 0,0,0,0,-365,0,0,0,-465,0,
- 0,0,0,0,0,0,0,-281,0,0,
- 0,0,0,0,0,-233,0,-477,0,0,
- -377,0,0,0,0,-282,-293,0,0,0,
- 0,0,0,0,0,0,0,-421,0,0,
- 0,-490,0,-297,-471,0,-133,0,0,0,
- 0,0,0,0,0,0,-298,0,0,0,
- 0,0,0,0,0,-407,-478,0,-126,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-390,0,0,0,
- 0,0,0,0,0,0,0,-229,-249,0,
- 0,0,-500,0,0,0,0,-273,0,0,
- 0,-230,-456,-121,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-303,
- -482,-257,-234,0,-304,0,0,0,0,-309,
- 0,0,-496,0,0,0,0,0,0,0,
- 0,0,0,0,0,-123,0,0,0,-310,
- -502,0,0,0,0,-278,0,0,0,0,
- -46,-326,0,0,0,-439,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-341,
- -343,0,-183,0,-270,0,0,0,0,0,
- -271,0,0,0,-484,0,0,0,0,0,
- 0,0,0,-358,0,0,0,-258,-506,0,
- -361,0,0,-216,0,0,0,-457,0,0,
- 0,0,0,-381,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-259,0,0,
- -272,0,0,-199,0,0,0,0,0,-383,
0,0,0,0,0,0,0,0,0,0,
- 0,-494,-512,0,0,0,0,0,0,0,
- 0,0,0,-196,0,0,0,-17,0,0,
- -384,0,0,0,0,0,0,0,0,-290,
- 0,0,0,-503,-279,0,0,0,0,-385,
- 0,0,0,-519,-387,0,-125,0,0,-291,
- 0,0,-388,0,0,0,0,0,0,0,
- -394,0,0,-486,0,0,0,0,0,-396,
- 0,0,-328,0,0,0,0,0,0,0,
- 0,0,0,0,-399,-406,0,-416,0,0,
+ 0,0,-89,0,0,0,-191,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-303,0,0,0,
+ 0,-90,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-91,
+ 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,-83,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,-256,0,0,-84,0,0,0,-197,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-290,0,
+ 0,-85,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-285,0,0,-86,0,
0,0,0,0,0,0,0,0,0,0,
- -417,-522,0,0,0,0,0,0,-441,-443,
- -460,-487,-426,0,0,0,0,0,0,0,
- 0,0,0,0,0,-142,0,0,0,-306,
- -489,-445,0,0,0,0,0,-320,-493,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-446,-325,-447,-334,0,0,
- 0,0,0,-449,0,0,-466,0,0,-336,
- 0,0,0,0,-468,0,0,0,0,0,
- 0,0,-80,0,0,0,0,0,0,0,
+ 0,0,-504,0,0,-52,0,0,0,-48,
+ 0,-198,-201,0,-87,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-81,0,0,0,-469,
+ 0,0,0,0,0,0,0,0,-352,0,
+ 0,0,0,0,-212,-147,-241,0,0,0,
+ 0,-300,0,0,0,0,0,-238,0,0,
+ 0,-88,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-82,0,
- 0,0,-470,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-245,0,0,
+ 0,0,0,0,0,-251,0,0,0,-362,
+ -215,0,0,0,0,0,-223,-224,0,0,
+ 0,-113,0,0,0,-226,-216,0,0,0,
+ 0,0,0,0,0,-240,-287,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-333,0,-350,-378,0,-475,0,0,-504,
- 0,0,0,0,-479,0,0,0,0,0,
- -21,0,0,0,0,0,0,0,0,0,
+ 0,0,-18,0,0,0,0,0,0,0,
+ 0,0,0,0,-242,-335,0,0,0,0,
+ 0,0,0,0,0,0,-250,-232,0,0,
+ -122,0,0,0,0,0,0,0,0,0,
+ -301,0,0,0,0,0,-450,-144,0,0,
+ 0,0,0,-325,0,-388,0,0,0,0,
+ 0,0,0,0,0,0,-260,0,-237,0,
+ 0,0,0,0,0,0,-264,0,0,0,
+ 0,0,-360,0,0,0,0,0,0,-422,
+ -324,0,0,0,-196,0,0,0,-357,0,
+ 0,0,-302,0,0,0,0,0,0,0,
+ 0,0,0,0,-353,-121,0,0,0,0,
+ 0,-363,-266,0,-267,-203,0,0,0,0,
+ 0,0,-277,0,0,0,0,0,0,0,
+ 0,0,0,-230,0,-278,-234,0,0,0,
+ 0,-373,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-497,-516,-498,-485,0,0,0,0,
- 0,0,0,0,-359,-287,-340,-521,0,-379,
- 0,0,0,0,0,0,0,0,0,-353,
- 0,0,0,-492,0,-382,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-501,
- -517,-47,0,0,0,0,-509,-514,0,0,
- 0,0,0,0,0,0,0,-402,-400,0,
- 0,0,0,-403,-520,-424,0,0,-422,0,
+ 0,0,-282,-397,-439,0,0,0,0,0,
+ -311,0,0,0,0,0,0,0,0,0,
+ 0,-429,-391,0,-410,0,0,0,0,0,
+ 0,0,0,0,-283,0,0,-213,0,0,
+ 0,0,0,0,0,0,0,-294,-298,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-414,0,0,0,0,0,
+ -299,0,0,0,0,-265,0,0,0,0,
+ 0,0,0,0,0,0,0,-78,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-150,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -414,-409,0,-410,0,0,-415,0,0,0,
- 0,0,0,0,0,0,0,-208,-144,0,
+ 0,-79,0,0,0,-385,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-189,0,0,0,0,
+ 0,0,0,0,0,-310,0,0,0,0,
+ 0,0,0,0,0,0,-135,-305,-306,0,
+ 0,-404,0,0,0,-447,-1,-307,-432,0,
+ 0,-269,0,0,0,0,-312,0,0,0,
+ 0,0,-423,0,0,-313,-413,0,0,0,
+ 0,-62,-233,0,-329,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-431,0,0,0,0,0,-418,
- -458,0,0,0,0,0,0,0,0,0,
- -437,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-184,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-461,-480,-491,-499,
+ 0,-259,0,-271,0,0,0,0,0,-468,
+ -346,-471,0,0,0,0,-424,0,0,0,
+ -330,0,0,0,0,0,0,0,0,0,
+ 0,0,-348,0,-280,0,0,0,0,-350,
+ 0,-273,0,-364,0,-367,0,0,0,0,
+ 0,-389,-390,0,0,0,0,-393,0,0,
+ 0,0,0,0,0,0,0,-394,0,-497,
+ -42,0,-443,0,0,-272,0,-199,0,-451,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-400,0,-402,-128,0,0,0,-405,
+ 0,0,-292,0,-412,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-74,0,0,0,0,0,-499,
+ -304,0,0,0,0,-416,0,0,0,0,
+ 0,-419,0,0,-420,0,0,0,0,0,
+ 0,0,-440,0,0,0,0,-452,0,0,
+ 0,-142,0,0,0,-235,0,0,0,0,
+ 0,0,0,-43,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-512,0,-503,
+ -69,0,-462,0,0,0,0,0,0,0,
+ -442,0,-444,0,0,0,0,0,0,0,
+ 0,0,-445,0,-368,0,0,0,0,0,
+ 0,0,0,-446,0,0,0,0,0,0,
+ 0,0,-249,-289,0,0,0,0,0,0,
+ 0,0,0,-509,0,0,0,0,0,0,
+ 0,0,0,0,-448,-463,0,0,-123,-47,
0,0,0,0,0,0,0,0,0,0,
- 0,-22,0,0,0,0,0,0,0,0,
+ 0,0,-465,-126,0,0,0,-466,0,-150,
+ 0,0,0,-467,-472,0,0,-184,0,0,
+ 0,0,-252,0,0,0,0,0,0,0,
+ 0,0,0,-516,-399,0,0,0,0,0,
+ 0,0,-476,0,0,-326,0,0,0,0,
+ 0,0,0,0,0,-482,-489,0,-309,0,
+ 0,-498,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-125,0,0,
+ 0,-506,0,0,0,0,0,-511,0,0,
+ 0,0,0,-519,0,0,-455,0,0,0,
+ 0,0,0,-274,0,0,0,-456,0,0,
+ 0,0,0,0,0,0,-392,0,0,0,
+ 0,0,0,-474,0,-195,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-279,0,0,0,-434,0,0,
+ 0,0,0,0,0,0,-320,0,0,0,
+ 0,0,0,0,0,0,-80,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-81,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,-82,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-327,0,0,0,-458,
+ 0,0,0,0,0,0,-291,0,0,0,
+ 0,-323,-44,0,0,0,0,-189,0,0,
+ 0,-426,-336,-328,-337,0,0,0,0,-372,
+ -395,0,0,0,0,-492,0,-461,0,0,
+ -45,0,0,0,0,0,0,0,-459,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,-243,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-371,0,0,0,
+ 0,-75,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,-205,0,0,0,0,0,0,-343,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ -428,-396,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,-339,0,-475,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-341,
+ 0,0,0,0,-355,0,0,0,0,0,
+ 0,0,0,0,0,0,-493,0,0,0,
+ 0,0,-386,-387,-406,0,0,0,0,0,
+ 0,0,0,0,0,-484,-409,-418,-421,0,
+ 0,0,0,0,0,0,-21,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-23,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-24,0,0,0,0,
+ 0,0,0,0,0,-22,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-25,0,0,
+ 0,0,0,0,0,0,0,-23,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-26,
+ 0,0,0,0,0,0,0,0,0,-24,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-27,0,0,0,0,0,0,0,0,
+ 0,-25,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-64,0,0,0,0,0,0,
+ 0,0,0,-26,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-76,0,0,0,0,
+ 0,0,0,0,0,-27,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-77,0,0,
+ 0,0,0,0,0,0,0,-64,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-132,
+ 0,0,0,0,0,0,0,0,0,-76,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-207,0,0,0,0,0,0,0,0,
+ 0,-77,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-19,0,0,0,0,0,0,
+ 0,0,0,-132,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-369,0,0,0,0,0,
- 0,0,0,0,0,-428,0,0,0,0,
- 0,0,0,0,0,0,-308,0,0,0,
- 0,0,0,0,0,0,0,-338,0,0,
+ 0,0,0,0,0,-207,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-501,0,0,
+ 0,0,0,0,0,0,0,0,-19,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-457,
+ -106,-338,-257,0,0,0,0,0,0,0,
+ -366,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-481,0,-460,0,
+ 0,0,0,0,-486,0,0,-275,0,0,
+ -194,0,0,0,-490,-477,0,0,0,0,
+ 0,0,0,0,0,-46,-494,0,0,0,
+ -214,0,0,0,0,0,0,0,0,-500,
+ 0,0,0,0,0,0,-365,0,0,0,
+ 0,-495,0,0,0,0,0,-483,0,0,
+ 0,0,0,-316,0,0,0,0,0,0,
+ 0,0,0,0,-248,-513,-258,0,0,0,
+ 0,0,-488,0,-518,0,0,0,0,-514,
+ -370,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-496,0,0,0,0,-340,
0,0,0,0,0,0,0,0,0,0,
+ 0,-270,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-408,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-435,-517,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-417,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-370,0,0,0,0,0,
- 0,0,0,0,0,-488,0,0,0,0,
- 0,0,0,0,0,0,-360,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-269,0,0,0,
- 0,0,0,-194,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-296,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-431,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-313,0,0,
- 0,-335,0,0,0,-346,0,0,0,0,
- 0,0,0,0,0,0,0,-374,0,0,
- 0,0,0,0,0,0,-375,0,0,0,
- -395,0,0,0,0,0,0,0,0,0,
- 0,-436,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-262,0,0,0,0,0,
+ -228,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-412,0,0,0,0,0,
- 0,-434,0,0,0,0,0,0,0,0,
- 0,0,0,0,-195,0,0,0,0,0,
- 0,0,0,0,0,0,-205,0,0,0,
- 0,0,0,0,0,0,0,0,0,-214,
- 0,0,0,0,0,0,-262,0,0,0,
- -423,0,0,0,0,0,0,0,-285,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-472,-473,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-378,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-476,0,0,0,0,0,0,-438,
- 0,0,0,0,0,0,0,-481,0,0,
+ 0,0,-14,-208,-436,0,0,0,0,0,
+ 0,0,0,0,0,-485,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-351,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-382,0,0,0,0,0,0,0,
+ 0,0,0,0,-383,0,0,0,0,-331,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-401,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-415,0,0,0,0,0,-356,0,
+ 0,0,0,0,-433,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-487,
+ -17,0,0,0,0,-286,0,0,0,0,
+ 0,0,0,-358,0,0,0,0,0,-427,
+ 0,0,0,0,0,-469,0,0,-470,0,
+ 0,0,0,0,0,0,-437,0,0,0,
+ 0,0,0,0,0,0,-473,0,0,0,
+ 0,-478,0,0,0,0,0,0,0,0,
+ 0,-219,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-220,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-221,0,-222,
+ 0,0,0,0,0,0,0,0,-295,0,
+ 0,0,0,-425,-502,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
@@ -521,7 +513,7 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0
+ 0
};
};
public final static short baseCheck[] = BaseCheck.baseCheck;
@@ -531,530 +523,522 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface BaseAction {
public final static char baseAction[] = {
- 169,4,53,72,72,34,34,64,64,38,
- 38,192,192,193,193,194,194,1,1,15,
+ 167,4,48,75,75,34,34,64,64,38,
+ 38,190,190,191,191,192,192,1,1,15,
15,15,15,15,15,15,15,16,16,16,
14,11,11,8,8,8,8,8,8,2,
65,65,5,5,12,12,12,12,43,43,
- 133,133,134,61,61,42,17,17,17,17,
+ 132,132,133,61,61,42,17,17,17,17,
17,17,17,17,17,17,17,17,17,17,
- 17,17,17,17,17,135,135,135,115,115,
+ 17,17,17,17,17,134,134,134,112,112,
18,18,18,18,18,18,18,18,18,18,
- 18,18,19,19,170,170,171,171,172,138,
- 138,139,139,136,136,140,137,137,20,20,
- 21,21,22,22,22,24,24,24,24,25,
+ 18,18,19,19,168,168,169,169,170,137,
+ 137,138,138,135,135,139,136,136,20,20,
+ 21,21,22,22,22,23,23,23,23,25,
25,25,26,26,26,27,27,27,27,27,
28,28,28,29,29,30,30,32,32,33,
33,35,35,36,36,41,41,40,40,40,
40,40,40,40,40,40,40,40,40,40,
- 39,31,141,141,98,98,173,173,93,195,
- 195,74,74,74,74,74,74,74,74,74,
- 75,75,75,70,70,59,59,174,174,76,
- 76,76,104,104,175,175,77,77,77,176,
- 176,78,78,78,78,78,79,79,73,73,
- 73,73,73,73,73,48,48,48,48,48,
- 105,105,106,106,49,177,23,23,23,23,
- 23,47,47,88,88,88,88,88,148,148,
- 143,143,143,143,143,144,144,144,145,145,
- 145,146,146,146,147,147,147,89,89,89,
- 89,89,90,90,90,13,13,13,13,13,
- 13,13,13,13,13,13,101,119,119,119,
- 119,119,119,117,117,117,118,118,150,150,
- 149,149,121,121,151,83,83,84,84,86,
- 87,85,51,46,152,152,52,50,82,82,
- 153,153,142,142,122,123,123,71,71,154,
- 154,62,62,62,56,56,55,63,63,68,
- 68,54,54,54,91,91,100,99,99,60,
- 60,57,57,58,58,44,102,102,102,94,
- 94,94,95,95,96,96,96,97,97,107,
- 107,107,109,109,108,108,196,196,92,92,
- 179,179,179,179,179,125,45,45,156,178,
- 178,126,126,126,126,180,180,37,37,116,
- 127,127,127,127,110,110,120,120,120,158,
- 159,159,159,159,159,159,159,159,159,159,
- 183,183,181,181,182,182,160,160,160,160,
- 161,184,112,111,111,185,185,162,162,162,
- 162,103,103,103,186,186,9,9,10,187,
- 187,188,163,155,155,164,164,165,166,166,
- 6,6,7,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,66,69,69,168,168,
- 129,129,130,130,130,130,130,130,3,131,
- 131,128,128,113,113,113,81,67,80,157,
- 157,114,114,189,189,189,132,132,124,124,
- 190,190,169,169,881,39,1762,1729,1715,3636,
- 34,1308,31,35,1222,30,32,1722,29,27,
- 56,1335,110,81,82,112,1370,117,1393,1378,
- 1428,1426,1470,1468,1510,975,1477,1512,1115,1552,
- 147,276,493,3852,162,148,1367,39,1080,36,
- 948,4009,34,1308,341,35,1222,331,39,2997,
- 2317,39,1080,36,235,3109,34,1308,31,35,
- 1222,30,32,995,29,27,56,1335,110,81,
- 82,112,1370,1068,1393,1378,1428,1426,1470,1468,
- 2239,1715,238,233,234,331,1636,2949,38,4659,
- 335,322,2342,324,2061,277,2433,494,318,2285,
- 1376,39,449,29,354,4551,331,39,2949,2960,
- 245,248,251,254,2665,4260,1155,1109,39,1080,
- 36,1720,3903,34,1308,31,35,1222,63,32,
- 348,1764,803,351,402,613,2071,853,2776,3354,
- 3396,3557,3309,1459,39,1080,36,2542,3109,34,
- 1308,31,35,1222,2671,32,995,29,27,56,
- 1335,110,81,82,112,1370,345,1393,1378,1428,
- 1426,1470,1468,1510,400,1477,1512,1512,1552,147,
- 2098,39,280,513,148,2033,859,3223,1295,39,
- 1080,36,854,3903,34,1308,31,35,1222,62,
- 32,514,1459,39,1080,36,2542,3109,34,1308,
- 31,35,1222,2671,32,995,29,27,56,1335,
- 110,81,82,112,1370,345,1393,1378,1428,1426,
- 1470,1468,1510,587,1477,1512,1384,1552,147,587,
- 1076,389,513,148,1487,3540,3223,243,39,1594,
- 47,646,67,46,1308,2033,509,1376,39,282,
- 514,452,4615,1442,442,3571,3580,160,1376,39,
- 282,2664,1649,4627,2674,532,1459,39,1080,36,
- 2542,3109,34,1308,31,35,1222,2671,32,995,
- 29,27,56,1335,110,81,82,112,1370,345,
- 1393,1378,1428,1426,1470,1468,1510,1000,1477,1512,
- 1017,1552,147,2563,1115,509,513,148,941,4522,
- 3223,1154,2969,66,3267,2077,242,2092,39,283,
- 2703,355,1715,2674,514,1729,39,1080,36,2542,
- 3109,34,1308,31,35,1222,2671,32,995,29,
- 27,56,1335,110,81,82,112,1370,345,1393,
- 1378,1428,1426,1470,1468,1510,28,1477,1512,378,
- 1552,147,1118,235,49,513,148,1909,683,3223,
- 331,39,3352,3338,331,39,2949,279,1909,509,
- 1118,2842,3348,514,3267,331,39,1603,388,2000,
- 293,243,233,234,2837,557,1715,2674,1138,1525,
- 39,1080,36,1694,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,427,1393,1378,1428,1426,1470,1468,1510,
- 74,1477,1512,975,1552,147,331,3222,510,381,
- 148,1327,39,1080,36,205,4640,34,1308,31,
- 35,1222,30,32,1118,507,376,2376,2581,1594,
- 39,1080,36,384,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,75,1393,1378,1428,1426,1470,1468,1510,
- 1715,1477,1512,76,1552,147,439,331,337,381,
- 148,2317,39,1080,36,456,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,90,382,59,385,1900,39,1080,36,
- 1757,3109,34,1308,31,35,1222,30,32,995,
- 29,27,56,1335,110,81,82,112,1370,2345,
- 1393,1378,1428,1426,1470,1468,1510,289,1477,1512,
- 3939,1552,147,331,39,294,162,148,1445,39,
- 1080,36,331,3258,34,1308,44,35,1222,3176,
- 2434,1900,39,1080,36,386,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,112,1370,2018,1393,1378,1428,1426,1470,
- 1468,1510,850,1477,1512,2686,1552,147,404,1076,
- 443,375,148,1900,39,1080,36,975,3109,34,
- 1308,31,35,1222,30,32,995,29,27,56,
- 1335,110,81,82,112,1370,160,1393,1378,1428,
- 1426,1470,1468,1510,166,1477,1512,1715,1552,147,
- 1654,2806,1717,375,148,4474,1297,613,1900,39,
- 1080,36,1868,3109,34,1308,31,35,1222,30,
- 32,995,29,27,56,1335,110,81,82,112,
- 1370,58,1393,1378,1428,1426,1470,1468,1510,455,
- 1477,1512,2097,1552,147,975,374,4526,375,148,
- 1840,39,1080,36,3239,3109,34,1308,31,35,
- 1222,30,32,995,29,27,56,1335,110,81,
- 82,112,1370,417,1393,1378,1428,1426,1470,1468,
- 1510,92,1477,1512,106,1552,147,1355,373,49,
- 381,148,4009,742,1663,39,1080,36,2004,3109,
- 34,1308,31,35,1222,30,32,995,29,27,
- 56,1335,110,81,82,112,1370,4282,1393,1378,
- 1428,1426,1470,1468,1510,1962,1477,1512,3875,1552,
- 147,2203,49,371,146,148,816,1900,39,1080,
- 36,1801,3109,34,1308,31,35,1222,30,32,
- 995,29,27,56,1335,110,81,82,112,1370,
- 909,1393,1378,1428,1426,1470,1468,1510,62,1477,
- 1512,49,1552,147,97,1076,379,163,148,1900,
- 39,1080,36,1984,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,160,1393,1378,1428,1426,1470,1468,1510,
- 946,1477,1512,49,1552,147,1250,1076,67,159,
- 148,1900,39,1080,36,98,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,112,1370,160,1393,1378,1428,1426,1470,
- 1468,1510,872,1477,1512,49,1552,147,68,1076,
- 1711,158,148,1900,39,1080,36,326,3109,34,
- 1308,31,35,1222,30,32,995,29,27,56,
- 1335,110,81,82,112,1370,160,1393,1378,1428,
- 1426,1470,1468,1510,1813,1477,1512,49,1552,147,
- 1202,1076,313,157,148,1900,39,1080,36,316,
- 3109,34,1308,31,35,1222,30,32,995,29,
- 27,56,1335,110,81,82,112,1370,160,1393,
- 1378,1428,1426,1470,1468,1510,2457,1477,1512,49,
- 1552,147,1016,1076,597,156,148,1900,39,1080,
- 36,685,3109,34,1308,31,35,1222,30,32,
- 995,29,27,56,1335,110,81,82,112,1370,
- 160,1393,1378,1428,1426,1470,1468,1510,2105,1477,
- 1512,49,1552,147,2156,1076,1434,155,148,1900,
- 39,1080,36,2303,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,160,1393,1378,1428,1426,1470,1468,1510,
- 2149,1477,1512,49,1552,147,953,1076,1069,154,
- 148,1900,39,1080,36,164,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,112,1370,160,1393,1378,1428,1426,1470,
- 1468,1510,2194,1477,1512,49,1552,147,340,1076,
- 428,153,148,1900,39,1080,36,516,3109,34,
- 1308,31,35,1222,30,32,995,29,27,56,
- 1335,110,81,82,112,1370,160,1393,1378,1428,
- 1426,1470,1468,1510,2238,1477,1512,49,1552,147,
- 929,1076,381,152,148,1900,39,1080,36,2551,
- 3109,34,1308,31,35,1222,30,32,995,29,
- 27,56,1335,110,81,82,112,1370,160,1393,
- 1378,1428,1426,1470,1468,1510,2070,1477,1512,49,
- 1552,147,2494,1076,1928,151,148,1900,39,1080,
- 36,1715,3109,34,1308,31,35,1222,30,32,
- 995,29,27,56,1335,110,81,82,112,1370,
- 160,1393,1378,1428,1426,1470,1468,1510,3851,1477,
- 1512,1775,1552,147,2019,352,4009,150,148,1900,
- 39,1080,36,975,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,356,1393,1378,1428,1426,1470,1468,1510,
- 975,1477,1512,49,1552,147,2023,1076,1715,149,
- 148,1795,39,1080,36,1801,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,112,1370,1848,1393,1378,1428,1426,1470,
- 1468,1510,94,1477,1512,57,2851,168,1115,1900,
- 39,1080,36,4538,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,329,1393,1378,1428,1426,1470,1468,1510,
- 2006,1477,1512,330,1552,147,331,39,285,144,
- 148,2015,3550,3531,331,39,1603,388,2043,100,
- 2224,39,1080,36,1840,3109,34,1308,31,35,
- 1222,30,32,995,29,27,56,1335,110,81,
- 82,112,1370,2348,1393,1378,1428,1426,1470,1468,
- 1510,430,1477,1512,249,1552,147,2092,39,280,
- 193,148,2317,39,1080,36,425,3109,34,1308,
- 31,35,1222,30,32,995,29,27,56,1335,
- 110,81,82,112,1370,1512,1393,1378,1428,1426,
- 1470,1468,1510,595,1477,1512,1715,2851,168,2317,
- 39,1080,36,601,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,3406,1393,1378,1428,1426,1470,1468,1510,
- 3545,1477,1512,150,2851,168,1251,39,1080,36,
- 1715,4640,34,1308,31,35,1222,65,32,286,
- 975,2317,39,1080,36,293,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,112,1370,3560,1393,1378,1428,1426,1470,
- 1468,1510,766,1477,1512,1715,2851,168,2317,39,
- 1080,36,2159,3109,34,1308,31,35,1222,30,
- 32,995,29,27,56,1335,110,81,82,112,
- 1370,2007,1393,1378,1428,1426,1470,1468,1510,73,
- 1477,1512,101,2851,168,1251,39,1080,36,1715,
- 4640,34,1308,31,35,1222,64,32,1969,975,
- 2317,39,1080,36,419,3109,34,1308,31,35,
- 1222,30,32,995,29,27,56,1335,110,81,
- 82,112,1370,72,1393,1378,1428,1426,1470,1468,
- 1510,2042,1477,1512,1715,2851,168,2362,39,1080,
- 36,418,3109,34,1308,31,35,1222,30,32,
- 995,29,27,56,1335,110,81,82,112,1370,
- 1294,1393,1378,1428,1426,1470,1468,1510,71,1477,
- 1512,102,2851,168,1445,39,1080,36,1715,1457,
- 34,1308,1130,35,1222,1639,39,2949,279,2317,
- 39,1080,36,421,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,70,1393,1378,1428,1426,1470,1468,1510,
- 49,1477,2492,1715,948,2141,2317,39,1080,36,
- 3743,3109,34,1308,31,35,1222,30,32,995,
- 29,27,56,1335,110,81,82,112,1370,596,
- 1393,1378,1428,1426,1470,1468,1510,3666,2429,2317,
- 39,1080,36,1017,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,2140,1393,1378,1428,1426,1470,2309,2317,
- 39,1080,36,327,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1370,854,1393,1378,1428,1426,2131,2317,39,
- 1080,36,4028,3109,34,1308,31,35,1222,30,
- 32,995,29,27,56,1335,110,81,82,112,
- 1370,1512,1393,1378,1428,2158,2317,39,1080,36,
- 328,3109,34,1308,31,35,1222,30,32,995,
- 29,27,56,1335,110,81,82,112,1370,502,
- 1393,1378,1428,2191,2317,39,1080,36,1131,3109,
- 34,1308,31,35,1222,30,32,995,29,27,
- 56,1335,110,81,82,112,1370,946,1393,1378,
- 1974,2317,39,1080,36,287,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,112,1370,1512,1393,1378,1986,2317,39,
- 1080,36,753,3109,34,1308,31,35,1222,30,
- 32,995,29,27,56,1335,110,81,82,112,
- 1370,557,1393,1378,2013,2317,39,1080,36,1017,
- 3109,34,1308,31,35,1222,30,32,995,29,
- 27,56,1335,110,81,82,112,1370,1017,1393,
- 1378,2023,2407,39,1603,388,1715,2909,301,390,
- 423,2317,39,1080,36,240,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,112,1370,821,1393,2053,1000,378,276,
- 61,1138,1345,39,1080,36,3816,1715,34,1308,
- 341,35,1222,331,3284,2949,79,522,2317,39,
- 1080,36,235,3109,34,1308,31,35,1222,30,
- 32,995,29,27,56,1335,110,81,82,112,
- 1370,60,1393,2102,1639,39,2949,3297,865,1947,
- 238,233,234,2542,2434,4659,49,322,2342,324,
- 3051,2581,2234,277,317,2285,331,39,1603,388,
- 354,1324,345,3266,2376,1076,331,3775,245,248,
- 251,254,2665,1622,780,1217,39,2804,2971,1720,
- 3956,894,303,858,1456,3980,346,1764,803,351,
- 336,337,164,429,3248,853,2776,3354,3396,3557,
- 3309,967,39,1080,36,2902,1512,34,1308,341,
- 35,1222,55,1232,2130,39,449,1596,920,4551,
- 1223,39,1080,36,3817,4009,34,1308,341,35,
- 1222,2317,39,1080,36,353,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,112,1370,4659,1804,322,2342,324,1040,
- 331,39,294,317,2285,331,39,1603,388,354,
- 308,368,2839,4659,334,322,2342,324,331,39,
- 1603,388,317,2285,2641,2850,940,1115,2542,2436,
- 1303,1341,4547,2542,2542,346,1764,803,351,2434,
- 2434,49,428,1771,1774,2542,452,232,1885,39,
- 394,4358,2582,2582,1440,55,939,2524,1356,2519,
- 52,534,2542,4009,345,2434,438,443,1108,209,
- 218,4447,208,215,216,217,219,224,307,1115,
- 4029,2582,310,314,4595,3223,235,1279,160,1715,
- 210,212,2018,3148,177,184,2815,220,534,1645,
- 49,977,2789,183,2438,211,213,214,295,296,
- 297,298,334,3596,247,233,234,232,446,3571,
- 3580,362,363,325,1324,160,1512,199,1076,3974,
- 2484,2657,184,2815,1379,2542,2283,3028,3030,207,
- 218,4447,206,215,216,217,219,434,1738,3494,
- 362,3445,1356,173,232,164,2542,4009,3598,419,
- 39,1603,388,1512,172,2016,3028,3030,187,171,
- 174,175,176,177,178,2582,209,218,4447,208,
- 215,216,217,219,1987,1430,39,1080,36,3197,
- 300,34,1308,341,35,1222,55,210,212,2390,
- 3148,1596,2818,2749,220,2436,334,2542,1017,2542,
- 1784,1379,211,213,214,295,296,297,298,1355,
- 3524,1672,1207,401,4009,3256,232,299,2582,93,
- 2777,1951,106,3282,200,2808,3974,2696,4659,1000,
- 319,3380,324,576,362,1308,3222,1895,209,218,
- 4447,208,215,216,217,219,2020,1115,358,2016,
- 3028,3030,4602,1308,3222,353,528,521,3091,210,
- 212,2765,3148,334,1138,2542,220,2410,1220,2410,
- 1472,2542,1138,2542,211,213,214,295,296,297,
- 298,49,49,2434,232,2995,2542,362,520,354,
- 2582,1191,2582,1945,3211,2542,4647,49,3974,2876,
- 3433,2542,3261,3028,3030,345,209,218,4447,208,
- 215,216,217,219,232,346,1764,803,351,1715,
- 345,202,1233,1771,2581,357,3223,210,212,3640,
- 3148,1,2581,528,220,534,636,405,2935,1891,
- 1678,3223,211,213,214,295,296,297,298,1453,
- 39,1603,388,105,232,1680,288,406,407,501,
- 3148,501,160,333,337,2538,3974,2913,1778,184,
- 2815,3764,337,4518,288,2471,207,218,4447,206,
- 215,216,217,219,2005,3225,55,2768,1473,49,
- 173,1596,847,2779,3099,185,498,500,499,500,
- 49,172,2401,3225,725,188,171,174,175,176,
- 177,178,2317,39,1080,36,1510,3109,34,1308,
- 31,35,1222,30,32,995,29,27,56,1335,
- 110,81,82,112,1370,3555,1846,1084,39,3430,
- 36,3817,4009,34,1308,341,35,1222,2434,408,
- 410,1445,39,1080,36,48,2898,34,1308,342,
- 35,1222,2028,1961,265,1726,2524,3287,534,2455,
- 1076,1252,717,2844,4467,1445,39,1080,36,2434,
- 383,34,1308,2634,35,1222,201,232,2233,520,
- 4659,334,322,2342,324,160,1131,160,2434,317,
- 2285,1715,184,2815,204,3307,2326,2221,1099,207,
- 218,4447,206,215,216,217,219,306,331,39,
- 1603,388,2561,173,2593,353,534,1355,4358,534,
- 426,354,4009,186,172,3869,205,1982,3767,171,
- 174,175,176,177,178,345,1715,2434,232,2465,
- 39,1603,388,160,2909,448,160,346,1764,803,
- 351,192,241,184,2815,344,4436,1885,39,394,
- 207,218,4447,206,215,216,217,219,49,2116,
- 2790,334,3435,441,173,203,276,534,331,39,
- 2949,284,2504,1715,957,172,3441,414,3431,180,
- 171,174,175,176,177,178,232,391,423,235,
- 1591,1379,1324,49,160,2594,1076,3013,3494,676,
- 2083,184,2815,1885,39,394,194,447,207,218,
- 4447,206,215,216,217,219,983,239,233,234,
- 1760,529,173,164,2768,534,331,39,2949,281,
- 277,49,2145,172,235,2542,1971,191,171,174,
- 175,176,177,178,232,246,249,252,255,2665,
- 2085,2419,160,1708,345,1131,1720,3611,4009,184,
- 2815,1131,250,233,234,2434,207,218,4447,206,
- 215,216,217,219,2439,3223,235,3544,1324,617,
- 173,2252,1076,534,1022,39,1603,388,2440,1687,
- 2546,172,50,2898,2623,3858,171,174,175,176,
- 177,178,232,302,253,233,234,335,49,164,
- 160,1778,3024,3857,1505,326,4518,184,2815,4009,
- 2413,276,526,528,207,218,4447,206,215,216,
- 217,219,1971,1643,39,1080,36,3816,173,34,
- 1308,341,35,1222,331,39,1603,388,49,172,
- 519,2415,534,196,171,174,175,176,177,178,
- 331,39,2949,3412,2434,49,393,423,335,3032,
- 2505,345,392,423,705,912,2587,1098,534,160,
- 49,276,354,2640,795,3053,4659,872,322,2342,
- 324,2220,3223,2934,2705,317,2285,232,2542,77,
- 2526,354,1165,1324,523,160,621,1076,348,1764,
- 803,351,184,2815,1252,2527,2371,345,2525,207,
- 218,4447,206,215,216,217,219,346,1764,803,
- 351,2569,793,173,164,524,534,235,4030,2651,
- 2676,1715,1715,49,172,278,519,1076,190,171,
- 174,175,176,177,178,232,1789,39,1603,388,
- 2068,1715,2573,160,1007,256,233,234,49,1715,
- 184,2815,2955,425,3621,380,3343,207,218,4447,
- 206,215,216,217,219,2679,49,2689,49,3135,
- 3830,173,3027,55,2690,3401,3400,1581,1596,865,
- 49,3079,172,3459,2654,2691,198,171,174,175,
- 176,177,178,2317,39,1080,36,3524,3109,34,
- 1308,31,35,1222,30,32,995,29,27,56,
- 1335,110,81,82,112,1920,2317,39,1080,36,
- 89,3109,34,1308,31,35,1222,30,32,995,
- 29,27,56,1335,110,81,82,112,1938,2317,
- 39,1080,36,2704,3109,34,1308,31,35,1222,
- 30,32,995,29,27,56,1335,110,81,82,
- 112,1963,2841,3805,49,49,2542,1871,2884,2961,
- 1570,39,1080,36,3817,2708,34,1308,341,35,
- 1222,2317,1636,1080,1638,232,3109,34,1308,31,
- 35,1222,30,32,995,29,27,56,1335,110,
- 81,82,89,1715,2434,1715,2222,209,218,4447,
- 208,215,216,217,219,2625,1355,1355,2434,2542,
- 2271,4009,4009,4659,3868,322,2342,324,210,212,
- 1138,3148,317,2285,2707,517,49,2538,232,2958,
- 2774,1341,225,211,213,214,295,296,297,298,
- 2714,1715,331,39,1603,388,197,2718,2589,5236,
- 209,218,4447,208,215,216,217,219,2857,49,
- 334,334,2542,3876,49,1715,1138,5236,2881,1324,
- 5236,210,212,1076,3148,3818,5236,5236,516,55,
- 2581,232,310,314,1596,726,211,213,214,295,
- 296,297,298,507,39,1603,388,576,4425,3612,
- 164,5236,3804,209,218,4447,208,215,216,217,
- 219,2873,49,3596,49,2542,2953,49,3021,3765,
- 337,4562,5236,5236,210,212,2581,3148,49,469,
- 55,309,2542,2542,232,1596,939,5236,5236,211,
- 213,214,295,296,297,298,771,39,1603,388,
- 5236,345,345,5236,3464,5236,209,218,4447,208,
- 215,216,217,219,2733,3981,337,3353,2542,5236,
- 49,49,3223,1212,3416,3371,5236,210,212,5236,
- 3148,49,5236,55,495,2542,2060,232,1596,53,
- 5236,5236,211,213,214,295,296,297,298,331,
- 39,1603,388,5236,345,5236,5236,867,5236,209,
- 218,4447,208,215,216,217,219,49,49,49,
- 2611,949,3512,3770,3513,3223,5236,5236,5236,5236,
- 210,212,5236,3148,5236,5236,55,221,5236,505,
- 5236,1596,3006,5236,5236,211,213,214,295,296,
- 297,298,2317,39,1080,36,5236,3109,34,1308,
- 31,35,1222,30,32,995,29,27,56,1335,
- 110,81,82,88,2317,39,1080,36,5236,3109,
- 34,1308,31,35,1222,30,32,995,29,27,
- 56,1335,110,81,82,87,2317,39,1080,36,
- 3160,3109,34,1308,31,35,1222,30,32,995,
- 29,27,56,1335,110,81,82,86,2317,39,
- 1080,36,5236,3109,34,1308,31,35,1222,30,
- 32,995,29,27,56,1335,110,81,82,85,
- 2317,39,1080,36,5236,3109,34,1308,31,35,
- 1222,30,32,995,29,27,56,1335,110,81,
- 82,84,2317,39,1080,36,5236,3109,34,1308,
- 31,35,1222,30,32,995,29,27,56,1335,
- 110,81,82,83,2175,39,1080,36,5236,3109,
- 34,1308,31,35,1222,30,32,995,29,27,
- 56,1335,110,81,82,108,2317,39,1080,36,
- 5236,3109,34,1308,31,35,1222,30,32,995,
- 29,27,56,1335,110,81,82,114,2317,39,
- 1080,36,5236,3109,34,1308,31,35,1222,30,
- 32,995,29,27,56,1335,110,81,82,113,
- 2317,39,1080,36,5236,3109,34,1308,31,35,
- 1222,30,32,995,29,27,56,1335,110,81,
- 82,111,2317,39,1080,36,5236,3109,34,1308,
- 31,35,1222,30,32,995,29,27,56,1335,
- 110,81,82,109,2272,39,1080,36,5236,3109,
- 34,1308,31,35,1222,30,32,995,29,27,
- 56,1335,91,81,82,1585,39,3430,36,3817,
- 5236,34,1308,341,35,1222,1978,39,1080,36,
- 3817,5236,34,1308,341,35,1222,1978,39,1080,
- 36,3817,5236,34,1308,341,35,1222,1099,39,
- 1080,36,5236,4009,34,1308,341,35,1222,5236,
- 5236,5236,5236,5236,5236,5236,5236,5236,4659,5236,
- 322,2342,324,5236,5236,5236,5236,317,2285,4659,
- 5236,322,2342,324,5236,5236,1099,5236,317,2285,
- 4659,5236,322,2342,324,5236,5236,1341,5236,317,
- 2285,4659,335,322,2342,324,5236,5236,2839,5236,
- 320,2285,5236,5236,5236,1099,39,1080,36,5236,
- 4009,34,1308,341,35,1222,1978,39,1080,36,
- 3817,5236,34,1308,341,35,1222,1991,39,1080,
- 36,2710,5236,34,1308,341,35,1222,311,314,
- 5236,5236,5236,5236,5236,5236,5236,1267,5236,5236,
- 5236,2542,4647,5236,419,39,1603,388,4659,335,
- 322,2342,324,5236,5236,415,3431,318,2285,4659,
- 232,322,2342,324,5236,5236,5236,5236,317,2285,
- 4659,5236,319,3380,324,5236,5236,3850,5236,5236,
- 5236,55,636,405,2935,5236,1596,53,1659,39,
- 1603,388,507,39,1603,388,1659,39,1603,388,
- 5236,5236,5236,406,407,1926,3148,5236,1659,39,
- 1603,388,5236,5236,5236,5236,5236,1659,39,1603,
- 388,1659,39,1603,388,55,5236,5236,5236,55,
- 1596,53,2667,55,1596,53,2542,5236,1596,53,
- 3099,5236,5236,5236,5236,55,5236,5236,5236,935,
- 1596,53,5236,3235,55,2582,5236,1934,55,1596,
- 53,5236,5236,1596,53,1966,39,1603,388,2646,
- 5236,3640,2119,39,1603,388,5236,5236,2755,5236,
- 5236,5236,3278,5236,5236,331,39,1603,388,5236,
- 5236,5236,5236,5236,5236,408,411,331,39,1603,
- 388,5236,55,5236,5236,5236,5236,1596,53,55,
- 331,39,1603,388,1596,53,5236,331,39,1603,
- 388,2562,55,5236,501,2542,1113,1596,1977,331,
- 39,1603,388,2750,55,5236,5236,5236,5236,1596,
- 720,5236,5236,5236,345,49,49,55,5236,534,
- 534,5236,1596,847,55,527,5236,5236,5236,1596,
- 2577,498,500,49,5236,3223,55,534,345,345,
- 49,1596,2989,5236,2542,5236,160,160,49,530,
- 5236,5236,2542,5236,192,192,345,5236,5236,4436,
- 4436,5236,5236,345,160,5236,5236,5236,5236,5236,
- 3677,345,192,5236,5236,5236,5236,4436,5236,5236,
- 5236,5236,5236,5236,3223,5236,5236,5236,5236,5236,
- 5236,5236,3223,5236,5236,5236,5236,5236,503,5236,
- 5236,5236,5236,5236,5236,5236,531,5236,5236,5236,
- 5236,5236,5236,5236,5236,5236,5236,5236,5236,3622,
- 3641,5236,5236,5236,5236,5236,5236,5236,5236,5236,
- 5236,5236,5236,5236,5236,5236,5236,3649,5236,5236,
- 5236,5236,5236,5236,5236,5236,5236,5236,5236,5236,
- 5236,5236,5236,5236,5236,5236,5236,5236,5236,5236,
- 5236,5236,5236,5236,5236,5236,5236,5236,5236,5236,
- 5236,5236,5236,5236,5236,5236,5236,5236,5236,5236,
- 5236,3468,5236,0,43,5254,0,43,5253,0,
- 914,33,0,436,1299,0,450,1342,0,42,
- 5254,0,42,5253,0,2488,130,0,1,440,
- 0,454,983,0,453,1177,0,914,45,0,
- 1843,95,0,914,387,0,39,37,0,36,
- 38,0,43,625,0,1,568,0,1,5511,
- 0,1,5510,0,1,5509,0,1,5508,0,
- 1,5507,0,1,5506,0,1,5505,0,1,
- 5504,0,1,5503,0,1,5502,0,1,5501,
- 0,43,1,5254,0,43,1,5253,0,787,
- 1,0,5473,244,0,5472,244,0,5576,244,
- 0,5575,244,0,5500,244,0,5499,244,0,
- 5498,244,0,5497,244,0,5496,244,0,5495,
- 244,0,5494,244,0,5493,244,0,5511,244,
- 0,5510,244,0,5509,244,0,5508,244,0,
- 5507,244,0,5506,244,0,5505,244,0,5504,
- 244,0,5503,244,0,5502,244,0,5501,244,
- 0,43,244,5254,0,43,244,5253,0,5278,
- 244,0,54,5254,0,54,5253,0,5242,1,
- 0,5241,1,0,240,2651,0,388,36,0,
- 36,388,0,387,33,0,33,387,0,49,
- 5276,0,49,41,0,5254,54,0,5253,54,
- 0,2488,132,0,2488,131,0,30,515,0,
- 5568,441,0,2280,441,0,5278,1,0,43,
- 1,0,53,41,0,1,96,0,41,53,
- 0,497,3125,0,5278,231,1,0,43,231,
- 1,0,231,413,0,41,5254,0,41,5253,
- 0,1,5254,2,0,1,5253,2,0,41,
- 5254,2,0,41,5253,2,0,5254,40,0,
- 5253,40,0,5276,51,0,51,41,0,5246,
- 403,0,5245,403,0,1,4347,0,1,625,
- 0,1,2629,0,231,412,0,3648,321,0,
- 5568,99,0,2280,99,0,39,78,0,1,
- 5568,0,1,2280,0,43,1,5254,2,0,
- 43,1,5253,2,0,43,5254,2,0,43,
- 5253,2,0,281,3372,0,497,3815,0,231,
- 1,0,1,2798,0,1,3327,0,5244,1,
- 0,231,223,0,231,1,3620,0,5246,231,
- 0,5245,231,0,231,222,0,3720,231,0,
- 8,10,0,189,3554,0
+ 39,31,140,140,96,96,171,171,91,193,
+ 193,76,76,76,76,76,76,76,76,76,
+ 77,77,77,67,67,59,59,172,172,78,
+ 78,78,102,102,173,173,79,79,79,174,
+ 174,80,80,80,80,80,81,81,83,83,
+ 83,83,83,83,83,49,49,49,49,49,
+ 113,113,114,114,50,175,24,24,24,24,
+ 24,47,47,86,86,86,86,86,147,147,
+ 142,142,142,142,142,143,143,143,144,144,
+ 144,145,145,145,146,146,146,87,87,87,
+ 87,87,88,88,88,13,13,13,13,13,
+ 13,13,13,13,13,13,99,118,118,118,
+ 118,118,118,116,116,116,117,117,149,149,
+ 148,148,120,120,103,71,71,72,73,52,
+ 46,150,150,53,51,85,85,151,151,141,
+ 141,121,122,122,68,68,152,152,62,62,
+ 62,56,56,55,63,63,66,66,54,54,
+ 54,89,89,98,97,97,60,60,57,57,
+ 58,58,44,100,100,100,92,92,92,93,
+ 93,94,94,94,95,95,104,104,104,106,
+ 106,105,105,194,194,90,90,177,177,177,
+ 177,177,124,45,45,154,176,176,125,125,
+ 125,125,178,178,37,37,115,126,126,126,
+ 126,107,107,119,119,119,156,157,157,157,
+ 157,157,157,157,157,157,157,157,181,181,
+ 179,179,180,180,158,158,158,158,159,182,
+ 109,108,108,183,183,160,160,160,160,101,
+ 101,101,184,184,9,9,10,185,185,186,
+ 161,153,153,162,162,163,164,164,6,6,
+ 7,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,69,74,74,166,166,128,128,
+ 129,129,129,129,129,129,3,130,130,127,
+ 127,110,110,110,84,70,82,155,155,111,
+ 111,187,187,187,131,131,123,123,188,188,
+ 167,167,881,39,1663,1627,29,3202,34,934,
+ 31,35,928,30,32,1621,29,27,56,1073,
+ 110,81,82,112,1103,1122,1637,1120,1241,1200,
+ 1276,1247,1326,1882,1286,1362,244,1375,147,276,
+ 1018,3300,162,148,336,39,2628,1548,39,3051,
+ 36,1582,1222,34,934,338,35,928,2277,39,
+ 867,36,235,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,112,
+ 1103,1122,1678,1120,1241,1200,1276,2119,238,233,
+ 234,2219,1029,39,447,4566,2175,4516,1681,352,
+ 2727,277,319,2496,321,1942,39,1453,47,314,
+ 1190,46,934,2024,1429,726,491,245,248,251,
+ 254,2691,2200,2618,941,39,867,36,1614,3320,
+ 34,934,31,35,928,63,32,328,334,2378,
+ 39,280,582,1503,850,914,2776,3299,3388,3314,
+ 1420,39,867,36,2526,2663,34,934,31,35,
+ 928,2267,32,854,29,27,56,1073,110,81,
+ 82,112,1103,1122,342,1120,1241,1200,1276,1247,
+ 1326,375,1286,1362,117,1375,147,574,680,1069,
+ 511,148,1607,722,3012,1540,2655,3328,1029,39,
+ 282,336,2793,3436,3567,413,3073,517,512,1420,
+ 39,867,36,2526,2663,34,934,31,35,928,
+ 2267,32,854,29,27,56,1073,110,81,82,
+ 112,1103,1122,342,1120,1241,1200,1276,1247,1326,
+ 1577,1286,1362,1699,1375,147,331,1946,2414,511,
+ 148,982,4121,3012,440,3133,3135,2200,67,92,
+ 507,353,106,1411,39,867,36,512,3320,34,
+ 934,31,35,928,62,32,373,2256,450,1678,
+ 2293,1624,1420,39,867,36,2526,2663,34,934,
+ 31,35,928,2267,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,342,1120,1241,1200,
+ 1276,1247,1326,4004,1286,1362,375,1375,147,507,
+ 2524,289,511,148,2046,2073,3012,1029,39,282,
+ 929,117,3662,242,1745,739,2306,1911,4185,2293,
+ 512,1690,39,867,36,2526,2663,34,934,31,
+ 35,928,2267,32,854,29,27,56,1073,110,
+ 81,82,112,1103,1122,342,1120,1241,1200,1276,
+ 1247,1326,929,1286,1362,437,1375,147,415,117,
+ 235,511,148,1069,1076,3012,336,1501,2621,38,
+ 2219,2200,507,336,39,2621,2627,66,2064,512,
+ 336,39,1495,385,2119,492,243,233,234,2532,
+ 1426,3769,2293,1486,39,867,36,2581,2663,34,
+ 934,31,35,928,30,32,854,29,27,56,
+ 1073,110,81,82,112,1103,1122,425,1120,1241,
+ 1200,1276,1247,1326,235,1286,1362,454,1375,147,
+ 4126,508,2531,378,148,1095,39,867,36,2084,
+ 4141,34,934,31,35,928,30,32,1849,505,
+ 247,233,234,1560,39,867,36,381,2663,34,
+ 934,31,35,928,30,32,854,29,27,56,
+ 1073,110,81,82,112,1103,1122,399,1120,1241,
+ 1200,1276,1247,1326,97,1286,1362,2062,1375,147,
+ 336,39,285,378,148,2277,39,867,36,1147,
+ 2663,34,934,31,35,928,30,32,854,29,
+ 27,56,1073,110,81,82,90,379,382,1865,
+ 39,867,36,1925,2663,34,934,31,35,928,
+ 30,32,854,29,27,56,1073,110,81,82,
+ 112,1103,1122,518,1120,1241,1200,1276,1247,1326,
+ 652,1286,1362,1177,1375,147,387,421,441,162,
+ 148,336,39,1495,385,336,39,2804,1963,117,
+ 238,3596,1956,812,1865,39,867,36,383,2663,
+ 34,934,31,35,928,30,32,854,29,27,
+ 56,1073,110,81,82,112,1103,1122,428,1120,
+ 1241,1200,1276,1247,1326,2618,1286,1362,117,1375,
+ 147,75,570,1678,372,148,1865,39,867,36,
+ 1678,2663,34,934,31,35,928,30,32,854,
+ 29,27,56,1073,110,81,82,112,1103,1122,
+ 2601,1120,1241,1200,1276,1247,1326,28,1286,1362,
+ 2005,1375,147,244,74,2708,372,148,4220,582,
+ 1865,39,867,36,929,2663,34,934,31,35,
+ 928,30,32,854,29,27,56,1073,110,81,
+ 82,112,1103,1122,2551,1120,1241,1200,1276,1247,
+ 1326,67,1286,1362,929,1375,147,1744,371,1678,
+ 372,148,1801,39,867,36,324,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,866,1120,1241,1200,
+ 1276,1247,1326,59,1286,1362,1148,1375,147,453,
+ 370,93,378,148,106,1624,39,867,36,1678,
+ 2663,34,934,31,35,928,30,32,854,29,
+ 27,56,1073,110,81,82,112,1103,1122,4026,
+ 1120,1241,1200,1276,1247,1326,38,1286,1362,929,
+ 1375,147,1354,58,368,146,148,4468,1865,39,
+ 867,36,929,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,112,
+ 1103,1122,225,1120,1241,1200,1276,1247,1326,653,
+ 1286,1362,2878,1375,147,1170,1147,376,163,148,
+ 1865,39,867,36,1678,2663,34,934,31,35,
+ 928,30,32,854,29,27,56,1073,110,81,
+ 82,112,1103,1122,57,1120,1241,1200,1276,1247,
+ 1326,940,1286,1362,1607,1375,147,326,349,3328,
+ 159,148,1865,39,867,36,1678,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,1499,1120,1241,1200,
+ 1276,1247,1326,2196,1286,1362,1607,1375,147,596,
+ 94,3328,158,148,1865,39,867,36,331,2663,
+ 34,934,31,35,928,30,32,854,29,27,
+ 56,1073,110,81,82,112,1103,1122,76,1120,
+ 1241,1200,1276,1247,1326,2241,1286,1362,117,1375,
+ 147,1107,4371,3118,157,148,1865,39,867,36,
+ 331,2663,34,934,31,35,928,30,32,854,
+ 29,27,56,1073,110,81,82,112,1103,1122,
+ 1223,1120,1241,1200,1276,1247,1326,1111,1286,1362,
+ 117,1375,147,1992,998,3556,156,148,1865,39,
+ 867,36,2581,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,112,
+ 1103,1122,2094,1120,1241,1200,1276,1247,1326,2350,
+ 1286,1362,1607,1375,147,336,3434,3328,155,148,
+ 1865,39,867,36,1678,2663,34,934,31,35,
+ 928,30,32,854,29,27,56,1073,110,81,
+ 82,112,1103,1122,1482,1120,1241,1200,1276,1247,
+ 1326,2108,1286,1362,1735,1375,147,2512,3075,3328,
+ 154,148,1865,39,867,36,331,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,1300,1120,1241,1200,
+ 1276,1247,1326,2455,1286,1362,420,1375,147,336,
+ 3353,4419,153,148,1865,39,867,36,332,2663,
+ 34,934,31,35,928,30,32,854,29,27,
+ 56,1073,110,81,82,112,1103,1122,1300,1120,
+ 1241,1200,1276,1247,1326,787,1286,1362,420,1375,
+ 147,1988,1991,441,152,148,1865,39,867,36,
+ 386,2663,34,934,31,35,928,30,32,854,
+ 29,27,56,1073,110,81,82,112,1103,1122,
+ 1300,1120,1241,1200,1276,1247,1326,1935,1286,1362,
+ 860,1375,147,2432,3013,2175,151,148,1865,39,
+ 867,36,286,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,112,
+ 1103,1122,947,1120,1241,1200,1276,1247,1326,355,
+ 1286,1362,117,1375,147,2523,3206,526,150,148,
+ 1865,39,867,36,287,2663,34,934,31,35,
+ 928,30,32,854,29,27,56,1073,110,81,
+ 82,112,1103,1122,72,1120,1241,1200,1276,1247,
+ 1326,354,1286,1362,117,1375,147,243,3623,526,
+ 149,148,1756,39,867,36,929,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,517,1120,1241,1200,
+ 1276,1247,1326,1926,1286,1362,419,2533,168,1865,
+ 39,867,36,432,2663,34,934,31,35,928,
+ 30,32,854,29,27,56,1073,110,81,82,
+ 112,1103,1122,2058,1120,1241,1200,1276,1247,1326,
+ 2523,1286,1362,595,1375,147,2200,327,117,144,
+ 148,101,1234,336,39,1495,385,929,590,2187,
+ 39,867,36,1342,2663,34,934,31,35,928,
+ 30,32,854,29,27,56,1073,110,81,82,
+ 112,1103,1122,2200,1120,1241,1200,1276,1247,1326,
+ 427,1286,1362,117,1375,147,2775,3044,2219,193,
+ 148,2277,39,867,36,520,2663,34,934,31,
+ 35,928,30,32,854,29,27,56,1073,110,
+ 81,82,112,1103,1122,678,1120,1241,1200,1276,
+ 1247,1326,102,1286,1362,1678,2533,168,2277,39,
+ 867,36,519,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,112,
+ 1103,1122,1078,1120,1241,1200,1276,1247,1326,3143,
+ 1286,1362,2372,2533,168,1012,39,867,36,313,
+ 4141,34,934,31,35,928,65,32,2277,39,
+ 867,36,293,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,112,
+ 1103,1122,2636,1120,1241,1200,1276,1247,1326,214,
+ 1286,1362,1678,2533,168,2277,39,867,36,1927,
+ 2663,34,934,31,35,928,30,32,854,29,
+ 27,56,1073,110,81,82,112,1103,1122,1810,
+ 1120,1241,1200,1276,1247,1326,73,1286,1362,1552,
+ 2533,168,1012,39,867,36,1793,4141,34,934,
+ 31,35,928,64,32,2277,39,867,36,417,
+ 2663,34,934,31,35,928,30,32,854,29,
+ 27,56,1073,110,81,82,112,1103,1122,401,
+ 1120,1241,1200,1276,1247,1326,73,1286,1362,1678,
+ 2533,168,2322,39,867,36,416,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,2405,1120,1241,1200,
+ 1276,1247,1326,72,1286,1362,1114,2533,168,1982,
+ 39,867,36,2406,2450,34,934,44,35,928,
+ 1470,2451,2277,39,867,36,419,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,2427,1120,1241,1200,
+ 1276,1247,1326,420,1286,2169,1678,1851,397,2277,
+ 39,867,36,3324,2663,34,934,31,35,928,
+ 30,32,854,29,27,56,1073,110,81,82,
+ 112,1103,1122,1676,1120,1241,1200,1276,1247,1326,
+ 71,2129,2277,39,867,36,2535,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,1203,1120,1241,1200,
+ 1276,1247,2089,2277,39,867,36,890,2663,34,
+ 934,31,35,928,30,32,854,29,27,56,
+ 1073,110,81,82,112,1103,1122,1637,1120,1241,
+ 1200,2032,2277,39,867,36,1203,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,323,1120,1241,2042,
+ 2277,39,867,36,526,2663,34,934,31,35,
+ 928,30,32,854,29,27,56,1073,110,81,
+ 82,112,1103,1122,1919,1120,1241,2082,2277,39,
+ 867,36,2676,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,112,
+ 1103,1122,1678,1120,1824,2277,39,867,36,2249,
+ 2663,34,934,31,35,928,30,32,854,29,
+ 27,56,1073,110,81,82,112,1103,1122,1678,
+ 1120,1837,2277,39,867,36,70,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,1978,1120,1876,2277,
+ 39,867,36,3584,2663,34,934,31,35,928,
+ 30,32,854,29,27,56,1073,110,81,82,
+ 112,1103,1122,2663,1120,1913,2367,39,1495,385,
+ 1597,3136,2536,1878,1069,2277,39,867,36,240,
+ 2663,34,934,31,35,928,30,32,854,29,
+ 27,56,1073,110,81,82,112,1103,1122,244,
+ 1928,164,325,276,4483,990,2067,979,39,867,
+ 36,1456,1678,34,934,338,35,928,336,39,
+ 2621,279,2277,39,867,36,235,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1122,61,1995,1556,39,
+ 2621,279,238,233,234,4566,336,2879,2621,79,
+ 2096,2331,319,2496,321,277,1249,2481,2550,314,
+ 1190,2868,1156,351,518,2865,62,2076,39,1495,
+ 385,245,248,251,254,2691,1342,1466,39,867,
+ 36,3356,1614,34,934,338,35,928,401,343,
+ 725,563,348,1337,39,1495,385,2833,850,914,
+ 2776,3299,3388,3314,276,2467,1982,39,867,36,
+ 574,350,34,934,2620,35,928,1472,2373,39,
+ 283,991,39,2337,1750,4566,3578,923,48,2565,
+ 55,1678,319,2496,321,1459,556,2614,2404,314,
+ 1190,1069,2526,351,1678,2714,1253,39,867,36,
+ 1582,3328,34,934,338,35,928,1018,55,2373,
+ 39,280,342,1459,1115,60,2687,1863,160,343,
+ 725,563,348,1678,365,204,3714,1384,322,77,
+ 177,1637,864,3414,532,336,39,1495,385,1982,
+ 39,867,36,1018,4566,34,934,339,35,928,
+ 331,319,2496,321,232,244,1136,105,314,1190,
+ 4495,160,1300,2617,1873,2339,1608,2727,184,3113,
+ 2526,3328,276,347,3464,207,218,4091,1540,206,
+ 215,216,217,219,2555,3669,2582,117,3116,173,
+ 2567,4118,1982,39,867,36,2759,172,34,934,
+ 2834,35,928,2727,333,334,187,171,174,175,
+ 176,177,178,699,2096,1,235,307,311,532,
+ 331,1855,39,867,36,1582,298,34,934,338,
+ 35,928,117,244,278,2096,1069,2855,4533,232,
+ 330,334,250,233,234,787,160,3145,336,39,
+ 1495,385,300,184,3113,3118,359,1918,2632,2625,
+ 207,218,4091,3609,206,215,216,217,219,4566,
+ 1594,2646,2675,224,173,244,319,2496,321,185,
+ 4545,1769,172,314,1190,55,1405,39,294,2714,
+ 52,188,171,174,175,176,177,178,2277,39,
+ 867,36,2835,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,112,
+ 1103,1711,2277,39,867,36,1678,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,112,1103,1712,1159,39,3051,36,
+ 1582,3328,34,934,338,35,928,2482,2106,2572,
+ 3755,2786,336,39,1495,385,265,1345,2651,2096,
+ 532,1069,1391,39,867,36,2966,2634,34,934,
+ 338,35,928,1953,39,447,2641,1678,4516,2978,
+ 232,350,1924,1849,4566,2643,1414,160,160,426,
+ 331,319,2496,321,184,3113,530,304,314,1190,
+ 398,207,218,4091,726,206,215,216,217,219,
+ 4566,2989,117,351,1849,173,2763,316,2997,321,
+ 353,1362,2614,172,532,3669,532,336,39,1495,
+ 385,2551,3325,171,174,175,176,177,178,343,
+ 725,563,348,2656,232,117,4193,1384,351,3477,
+ 1941,160,1941,160,742,4174,2654,4174,184,3113,
+ 184,3113,830,2666,446,207,218,4091,2429,206,
+ 215,216,217,219,343,725,563,348,2719,173,
+ 441,117,341,2096,532,1069,1849,172,1262,199,
+ 2096,388,421,3328,412,3073,180,171,174,175,
+ 176,177,178,2668,232,2681,424,39,1495,385,
+ 2720,160,160,117,3369,2736,2230,3061,184,3113,
+ 1170,183,390,421,536,207,218,4091,202,206,
+ 215,216,217,219,1597,444,3133,3135,1069,173,
+ 529,117,332,55,532,3583,1184,172,1459,2449,
+ 2526,1332,2683,1332,351,2699,191,171,174,175,
+ 176,177,178,2661,232,164,1155,2755,2096,2878,
+ 2567,160,1621,39,1495,385,1291,2793,184,3113,
+ 345,725,563,348,117,207,218,4091,2526,206,
+ 215,216,217,219,389,421,4560,200,2630,173,
+ 617,117,1069,2096,532,1069,201,172,342,55,
+ 424,2718,423,2735,1459,855,3398,171,174,175,
+ 176,177,178,2737,232,1405,3093,294,3012,160,
+ 1299,160,160,2755,2752,3006,499,166,184,3113,
+ 1163,303,1537,2394,1382,207,218,4091,2526,206,
+ 215,216,217,219,1670,39,867,36,1456,173,
+ 34,934,338,35,928,2753,2534,172,2567,1252,
+ 336,39,1495,385,497,498,196,171,174,175,
+ 176,177,178,2754,2424,39,1495,385,89,3136,
+ 512,39,1495,385,2761,1738,288,241,336,39,
+ 1495,385,4566,1556,39,2621,2901,55,2868,319,
+ 2496,321,1459,2632,705,1829,314,1190,532,2750,
+ 351,276,521,2739,1698,2806,1608,55,2978,235,
+ 2526,3328,1459,1903,360,55,2705,2759,232,1079,
+ 1459,2636,2758,947,235,160,343,725,563,348,
+ 2567,2637,184,3113,522,253,233,234,1914,207,
+ 218,4091,2764,206,215,216,217,219,49,4265,
+ 239,233,234,173,793,50,2565,1678,532,186,
+ 331,172,5155,277,336,39,2621,284,1408,5155,
+ 190,171,174,175,176,177,178,1300,232,246,
+ 249,252,255,2691,2096,160,336,39,1495,385,
+ 1614,445,184,3113,5155,3556,359,5155,235,207,
+ 218,4091,524,206,215,216,217,219,5155,5155,
+ 1594,2646,2675,173,336,39,2621,281,336,39,
+ 294,172,205,55,256,233,234,1018,1459,2729,
+ 198,171,174,175,176,177,178,2277,39,867,
+ 36,297,2663,34,934,31,35,928,30,32,
+ 854,29,27,56,1073,110,81,82,112,1747,
+ 2277,39,867,36,5155,2663,34,934,31,35,
+ 928,30,32,854,29,27,56,1073,110,81,
+ 82,112,1753,2277,39,867,36,2727,2663,34,
+ 934,31,35,928,30,32,854,29,27,56,
+ 1073,110,81,82,112,1795,1238,39,867,36,
+ 1300,3328,34,934,338,35,928,336,39,2621,
+ 3015,3233,117,117,3735,334,4539,2526,776,39,
+ 1495,385,2626,2585,117,117,2526,2526,4574,3637,
+ 1184,2183,39,391,2526,5155,2034,342,336,39,
+ 294,117,5155,5155,4566,2526,342,232,5155,1678,
+ 332,319,2496,321,2567,55,525,3012,315,1190,
+ 1459,53,351,1074,305,342,3012,2526,209,218,
+ 4091,1543,208,215,216,217,219,2687,5155,2688,
+ 528,2526,117,377,5155,3012,1069,2567,345,725,
+ 563,348,210,212,214,295,296,2785,5155,1572,
+ 380,232,336,39,1495,385,220,211,213,1137,
+ 39,867,36,160,3328,34,934,338,35,928,
+ 499,1329,209,218,4091,5155,208,215,216,217,
+ 219,2708,2183,39,391,2526,4201,2782,3182,55,
+ 5155,4107,5155,5155,1459,669,210,212,214,295,
+ 296,2785,117,359,2096,232,3590,4566,496,498,
+ 220,211,213,332,319,2496,321,2469,2646,2675,
+ 117,317,1190,5155,1552,117,209,218,4091,1666,
+ 208,215,216,217,219,5155,5155,2183,39,391,
+ 4201,3427,203,117,2496,117,3098,1708,4245,4580,
+ 210,212,214,295,296,2785,1678,117,117,117,
+ 3418,3691,4264,626,220,211,213,2277,1501,867,
+ 1530,5155,2663,34,934,31,35,928,30,32,
+ 854,29,27,56,1073,110,81,82,89,3185,
+ 3110,5155,5155,5155,4201,3560,2277,39,867,36,
+ 5155,2663,34,934,31,35,928,30,32,854,
+ 29,27,56,1073,110,81,82,88,2277,39,
+ 867,36,5155,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,87,
+ 2277,39,867,36,3392,2663,34,934,31,35,
+ 928,30,32,854,29,27,56,1073,110,81,
+ 82,86,2277,39,867,36,5155,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,85,2277,39,867,36,5155,2663,
+ 34,934,31,35,928,30,32,854,29,27,
+ 56,1073,110,81,82,84,2277,39,867,36,
+ 5155,2663,34,934,31,35,928,30,32,854,
+ 29,27,56,1073,110,81,82,83,2138,39,
+ 867,36,5155,2663,34,934,31,35,928,30,
+ 32,854,29,27,56,1073,110,81,82,108,
+ 2277,39,867,36,5155,2663,34,934,31,35,
+ 928,30,32,854,29,27,56,1073,110,81,
+ 82,114,2277,39,867,36,5155,2663,34,934,
+ 31,35,928,30,32,854,29,27,56,1073,
+ 110,81,82,113,2277,39,867,36,5155,2663,
+ 34,934,31,35,928,30,32,854,29,27,
+ 56,1073,110,81,82,111,2277,39,867,36,
+ 5155,2663,34,934,31,35,928,30,32,854,
+ 29,27,56,1073,110,81,82,109,1532,39,
+ 867,36,1582,5155,34,934,338,35,928,2232,
+ 39,867,36,5155,2663,34,934,31,35,928,
+ 30,32,854,29,27,56,1073,91,81,82,
+ 117,117,2771,1597,2263,1069,2526,1069,5155,5155,
+ 5155,2037,39,867,36,2716,4566,34,934,338,
+ 35,928,5155,319,2496,321,232,2096,5155,117,
+ 314,1190,160,943,164,1678,1873,5155,1291,2793,
+ 2136,424,39,1495,385,1678,117,209,218,4091,
+ 1755,208,215,216,217,219,117,1678,5155,4566,
+ 2526,336,39,1495,385,299,316,2997,321,3170,
+ 2096,210,212,214,295,296,2785,2603,55,3230,
+ 342,2526,1678,1459,53,515,211,213,2120,307,
+ 311,1916,2526,5155,2101,39,1495,385,55,2572,
+ 3012,232,1040,1459,556,1607,2096,1597,3228,4186,
+ 3328,1069,342,117,1579,2096,1953,4048,5155,3145,
+ 1678,2669,209,218,4091,2526,208,215,216,217,
+ 219,55,4215,5155,5155,2629,1459,53,164,3284,
+ 512,39,1495,385,225,232,210,212,214,295,
+ 296,2785,1035,197,4195,930,2526,4365,288,4326,
+ 514,211,213,3369,5155,2792,209,218,4091,2526,
+ 208,215,216,217,219,5155,232,55,5155,5155,
+ 5155,5155,1459,53,2489,1678,1740,2806,2526,232,
+ 210,212,214,295,296,2785,5155,989,402,2992,
+ 5155,2812,5155,2701,221,211,213,5155,2567,2810,
+ 209,218,4091,2526,208,215,216,217,219,3404,
+ 5155,403,404,405,295,296,2785,5155,5155,5155,
+ 5155,5155,5155,232,210,212,214,295,296,2785,
+ 5155,5155,98,5155,5155,5155,1846,5155,306,211,
+ 213,3328,5155,2737,209,218,4091,5155,208,215,
+ 216,217,219,1855,39,867,36,1582,5155,34,
+ 934,338,35,928,499,4162,5155,5155,210,212,
+ 214,295,296,2785,5155,336,39,1495,385,5155,
+ 5155,952,493,211,213,2526,4365,5155,5155,5155,
+ 4326,5155,5155,5155,5155,5155,5155,5155,406,409,
+ 5155,4566,496,498,5155,232,5155,5155,319,2496,
+ 321,5155,55,5155,5155,314,1190,1459,2357,5155,
+ 5155,1873,5155,5155,5155,5155,989,402,2992,1137,
+ 39,867,36,5155,3328,34,934,338,35,928,
+ 3296,5155,5155,1910,117,117,5155,2526,2526,2526,
+ 403,404,405,295,296,2785,1855,39,867,36,
+ 1582,5155,34,934,338,35,928,342,342,342,
+ 5155,5155,5155,100,308,311,5155,4566,2101,39,
+ 1495,385,2737,332,319,2496,321,719,3012,3012,
+ 5155,315,1190,2101,39,1495,385,5155,5155,5155,
+ 5155,5155,2005,503,4566,2101,39,1495,385,5155,
+ 1597,319,2496,321,1069,55,5155,5155,314,1190,
+ 1459,53,5155,5155,3372,5155,2101,39,1495,385,
+ 55,5155,5155,5155,5155,1459,53,406,408,1111,
+ 5155,164,55,2397,39,1495,385,1459,53,1074,
+ 5155,5155,5155,2526,1923,2401,39,1495,385,5155,
+ 1656,5155,4232,55,5155,5155,2982,5155,1459,53,
+ 2615,117,5155,2567,532,532,336,39,1495,385,
+ 55,5155,5155,5155,1018,1459,53,3057,5155,5155,
+ 1018,5155,55,5155,342,342,117,1459,53,117,
+ 532,160,160,532,3468,5155,2743,117,450,192,
+ 1163,2526,5155,55,4446,3012,3598,117,1459,2751,
+ 342,532,117,342,5155,5155,2526,160,436,809,
+ 160,342,117,5155,5155,192,1069,5155,192,359,
+ 4446,342,5155,4446,2727,117,342,5155,160,1069,
+ 2727,3012,5155,2946,2646,2675,192,5155,117,5155,
+ 117,4446,1069,160,1069,501,3012,5155,5155,117,
+ 5155,2092,194,1069,1597,117,160,5155,1069,1069,
+ 529,3753,334,5155,2179,5155,5155,4080,334,160,
+ 5155,160,5155,5155,5155,5155,5155,2266,3766,2442,
+ 160,4115,5155,5155,5155,164,160,5155,1846,5155,
+ 5155,5155,5155,5155,4200,5155,5155,5155,5155,4125,
+ 5155,5155,5155,5155,5155,5155,5155,5155,5155,5155,
+ 5155,5155,5155,5155,5155,5155,5155,5155,5155,5155,
+ 5155,5155,5155,4150,5155,5155,5155,5155,5155,5155,
+ 5155,5155,5155,5155,5155,5155,5155,5155,5155,5155,
+ 5155,5155,5155,5155,5155,5155,5155,5155,5155,5155,
+ 3407,5155,0,43,5173,0,43,5172,0,714,
+ 33,0,434,861,0,448,1119,0,42,5173,
+ 0,42,5172,0,2472,130,0,1,438,0,
+ 452,902,0,451,1214,0,714,45,0,909,
+ 95,0,714,384,0,39,37,0,36,38,
+ 0,43,916,0,1,566,0,1,5430,0,
+ 1,5429,0,1,5428,0,1,5427,0,1,
+ 5426,0,1,5425,0,1,5424,0,1,5423,
+ 0,1,5422,0,1,5421,0,1,5420,0,
+ 43,1,5173,0,43,1,5172,0,635,1,
+ 0,5392,244,0,5391,244,0,5492,244,0,
+ 5491,244,0,5419,244,0,5418,244,0,5417,
+ 244,0,5416,244,0,5415,244,0,5414,244,
+ 0,5413,244,0,5412,244,0,5430,244,0,
+ 5429,244,0,5428,244,0,5427,244,0,5426,
+ 244,0,5425,244,0,5424,244,0,5423,244,
+ 0,5422,244,0,5421,244,0,5420,244,0,
+ 43,244,5173,0,43,244,5172,0,5197,244,
+ 0,54,5173,0,54,5172,0,5161,1,0,
+ 5160,1,0,240,2530,0,385,36,0,36,
+ 385,0,384,33,0,33,384,0,49,5195,
+ 0,49,41,0,5173,54,0,5172,54,0,
+ 2472,132,0,2472,131,0,30,513,0,5484,
+ 439,0,1158,439,0,5197,1,0,43,1,
+ 0,53,41,0,1,96,0,41,53,0,
+ 495,2783,0,5197,231,1,0,43,231,1,
+ 0,231,411,0,41,5173,0,41,5172,0,
+ 1,5173,2,0,1,5172,2,0,41,5173,
+ 2,0,41,5172,2,0,5173,40,0,5172,
+ 40,0,5195,51,0,51,41,0,5165,400,
+ 0,5164,400,0,1,2841,0,1,916,0,
+ 1,4433,0,231,410,0,3572,318,0,5484,
+ 99,0,1158,99,0,39,78,0,1,5484,
+ 0,1,1158,0,43,1,5173,2,0,43,
+ 1,5172,2,0,43,5173,2,0,43,5172,
+ 2,0,281,4083,0,495,4157,0,231,1,
+ 0,231,223,0,231,222,0,1,3591,0,
+ 1,3692,0,5163,1,0,231,1,3241,0,
+ 5165,231,0,5164,231,0,3318,231,0,8,
+ 10,0,189,3344,0
};
};
public final static char baseAction[] = BaseAction.baseAction;
@@ -1067,303 +1051,297 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 30,3,32,33,34,35,36,37,38,39,
+ 30,31,32,33,34,35,36,0,38,39,
40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,0,62,63,64,65,0,0,68,69,
- 70,71,11,12,74,8,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,0,62,63,64,65,0,6,68,69,
+ 70,0,0,73,74,75,76,77,78,79,
+ 80,81,10,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,0,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,45,46,47,0,49,50,51,
- 52,53,54,55,56,57,58,59,60,0,
- 62,63,64,65,88,89,68,69,70,71,
- 11,12,74,0,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 22,23,24,25,26,27,0,29,30,31,
+ 32,33,34,35,36,0,38,39,40,41,
+ 42,43,44,45,46,47,99,49,50,51,
+ 52,53,54,55,56,57,58,59,60,121,
+ 62,63,64,65,88,89,68,69,70,88,
+ 89,73,74,75,76,77,78,79,80,81,
+ 122,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,29,30,3,32,33,
- 34,35,36,37,38,39,40,41,42,43,
- 44,45,46,47,61,49,50,51,52,53,
- 54,55,56,57,58,59,60,121,62,63,
- 64,65,0,1,2,69,70,71,0,7,
- 74,0,76,77,78,79,80,81,82,83,
+ 24,25,26,27,0,29,30,31,32,33,
+ 34,35,36,0,38,39,40,41,42,43,
+ 44,45,46,47,0,49,50,51,52,53,
+ 54,55,56,57,58,59,60,0,62,63,
+ 64,65,0,0,68,69,70,4,11,12,
+ 74,75,76,77,78,79,80,81,0,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,30,3,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,45,
- 46,47,0,49,50,51,52,53,54,55,
- 56,57,58,59,60,0,62,63,64,65,
- 0,1,2,69,70,71,88,89,74,0,
- 76,77,78,79,80,81,82,83,84,85,
+ 26,27,0,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,45,
+ 46,47,99,49,50,51,52,53,54,55,
+ 56,57,58,59,60,101,62,63,64,65,
+ 88,89,68,69,70,0,1,2,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 0,29,30,3,32,33,34,35,36,37,
+ 0,29,30,31,32,33,34,35,36,0,
38,39,40,41,42,43,44,45,46,47,
- 61,49,50,51,52,53,54,55,56,57,
- 58,59,60,101,62,63,64,65,0,1,
- 2,69,70,71,0,100,74,0,76,77,
- 78,79,80,81,82,83,84,85,86,87,
+ 0,49,50,51,52,53,54,55,56,57,
+ 58,59,60,67,62,63,64,65,0,0,
+ 68,69,70,0,1,2,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 30,3,32,33,34,35,36,37,38,39,
- 40,41,42,43,44,45,46,47,61,49,
+ 30,31,32,33,34,35,36,58,38,39,
+ 40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,0,62,63,64,65,0,1,2,69,
- 70,71,88,89,74,0,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,101,62,63,64,65,88,89,68,69,
+ 70,0,1,2,74,75,76,77,78,79,
+ 80,81,0,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,3,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,45,46,47,61,49,50,51,
+ 22,23,24,25,26,27,0,29,30,31,
+ 32,33,34,35,36,0,38,39,40,41,
+ 42,43,44,45,46,47,0,49,50,51,
52,53,54,55,56,57,58,59,60,0,
- 62,63,64,65,0,0,0,69,70,71,
- 0,100,74,8,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 62,63,64,65,0,0,68,69,70,4,
+ 11,12,74,75,76,77,78,79,80,81,
+ 0,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,48,29,30,0,32,33,
- 34,35,36,37,38,39,40,41,42,43,
+ 24,25,26,27,0,29,30,31,32,33,
+ 34,35,36,0,38,39,40,41,42,43,
44,45,46,47,0,49,50,51,52,53,
54,55,56,57,58,59,60,0,62,63,
- 64,65,88,89,0,69,70,71,88,89,
- 74,0,76,77,78,79,80,81,82,83,
+ 64,65,88,89,68,69,70,0,11,12,
+ 74,75,76,77,78,79,80,81,0,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,48,29,30,0,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,45,
+ 26,27,0,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,45,
46,47,0,49,50,51,52,53,54,55,
- 56,57,58,59,60,0,62,63,64,65,
- 0,1,2,69,70,71,11,12,74,0,
- 76,77,78,79,80,81,82,83,84,85,
+ 56,57,58,59,60,67,62,63,64,65,
+ 29,0,68,69,70,0,1,2,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 0,29,30,3,32,33,34,35,36,37,
+ 0,29,30,31,32,33,34,35,36,0,
38,39,40,41,42,43,44,45,46,47,
- 61,49,50,51,52,53,54,55,56,57,
- 58,59,60,101,62,63,64,65,0,1,
- 2,69,70,71,0,0,74,3,76,77,
- 78,79,80,81,82,83,84,85,86,87,
- 0,1,2,3,4,5,6,7,8,31,
- 10,11,12,0,14,15,16,17,18,19,
+ 0,49,50,51,52,53,54,55,56,57,
+ 58,59,60,67,62,63,64,65,29,0,
+ 68,69,70,4,0,0,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
+ 0,1,2,3,4,5,6,7,8,0,
+ 10,11,12,4,14,15,16,17,18,19,
20,21,22,23,24,25,26,27,0,29,
- 30,0,32,33,34,35,36,37,38,39,
+ 30,31,32,33,34,35,36,28,38,39,
40,41,42,43,44,45,46,47,0,49,
- 50,51,52,53,54,55,56,57,0,0,
- 0,1,2,63,4,0,6,0,8,69,
- 70,71,0,14,61,3,0,10,6,66,
- 8,9,0,11,12,13,0,1,2,3,
- 14,5,61,7,0,9,0,66,26,27,
- 28,0,0,9,45,46,47,59,49,50,
- 51,52,53,54,55,56,14,59,90,0,
- 48,45,46,47,96,49,50,51,52,53,
- 54,55,56,61,48,0,0,72,66,67,
- 68,0,1,2,72,73,5,45,46,47,
- 31,49,50,51,52,53,54,55,56,73,
- 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,0,0,0,117,
- 118,3,120,121,6,59,8,9,102,11,
- 12,13,67,0,1,2,3,4,5,6,
- 7,8,118,117,26,27,28,0,0,1,
- 2,3,4,5,6,7,8,0,0,1,
- 2,14,4,5,0,7,48,102,4,104,
- 105,106,107,108,109,110,111,112,113,61,
- 0,0,117,66,66,67,68,0,31,31,
- 72,73,45,46,47,0,49,50,51,52,
- 53,54,55,56,0,72,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,28,46,47,117,118,0,120,121,
- 0,1,2,3,4,5,6,7,8,9,
- 10,0,72,13,14,15,16,17,18,19,
- 20,21,22,23,24,25,0,1,2,0,
- 4,31,0,1,2,3,4,5,6,7,
- 8,0,0,1,2,45,46,47,0,49,
- 50,51,52,53,54,55,56,31,58,0,
+ 50,51,52,53,54,55,56,9,58,0,
0,1,2,63,4,5,0,7,68,69,
- 70,71,72,31,74,75,0,1,2,3,
- 4,5,6,7,8,9,10,28,0,13,
- 14,15,16,17,18,19,20,21,22,23,
- 24,25,61,0,0,1,2,31,4,5,
- 99,7,0,10,114,115,116,0,1,2,
- 61,45,46,47,95,49,50,51,52,53,
- 54,55,56,0,58,31,0,1,2,63,
- 4,5,9,7,68,69,70,71,72,61,
- 74,75,93,94,0,1,2,3,4,5,
- 6,7,8,60,0,0,1,2,4,4,
- 6,6,8,8,9,0,0,1,2,3,
- 4,5,6,7,8,0,1,2,0,4,
- 114,115,116,0,1,2,3,4,5,6,
- 7,8,48,10,11,12,73,95,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,67,29,30,48,32,33,34,35,36,
- 37,38,39,40,41,42,43,44,73,0,
- 1,2,3,0,5,57,7,4,9,0,
- 57,0,13,4,0,1,2,64,65,5,
- 95,7,0,1,2,0,0,74,0,1,
- 2,3,4,5,6,7,8,28,10,11,
- 12,0,0,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,48,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,31,0,1,2,3,4,0,
- 6,0,8,0,28,57,64,65,9,61,
- 9,66,64,65,0,1,2,3,4,5,
- 6,7,8,9,10,11,12,66,0,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,48,29,30,99,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,0,
- 1,2,3,0,5,66,7,68,9,68,
- 0,57,13,59,0,1,2,3,0,5,
- 0,7,68,0,1,2,3,4,5,6,
- 7,8,9,10,11,12,0,0,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,0,29,30,3,32,33,34,35,36,
- 37,38,39,40,41,42,43,44,0,1,
- 2,61,0,1,2,3,66,5,0,7,
- 57,61,59,0,1,2,72,4,0,1,
- 2,68,0,1,2,3,4,5,6,7,
- 8,0,10,11,12,4,28,15,16,17,
- 18,19,20,21,22,23,24,25,26,27,
- 48,29,30,0,32,33,34,35,36,37,
- 38,39,40,41,42,43,44,0,1,2,
- 0,4,59,6,0,8,0,1,2,57,
- 4,28,6,9,8,0,64,65,0,1,
- 2,3,4,5,6,7,8,0,10,11,
- 12,4,0,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,29,30,0,
- 32,33,34,35,36,37,38,39,40,41,
- 42,43,44,0,0,1,2,0,4,0,
- 6,4,8,0,28,57,3,73,0,1,
- 2,66,64,65,0,1,2,3,4,5,
- 6,7,8,9,10,11,12,97,98,15,
+ 70,0,1,2,3,4,5,6,7,8,
+ 9,10,97,98,13,14,15,16,17,18,
+ 19,20,21,22,23,24,25,37,0,1,
+ 2,3,4,5,6,7,8,48,37,0,
+ 0,1,2,4,4,0,45,46,47,4,
+ 49,50,51,52,53,54,55,56,57,0,
+ 59,0,1,2,63,4,5,0,7,68,
+ 69,70,71,28,73,74,48,37,0,1,
+ 2,0,4,82,0,1,2,3,4,5,
+ 6,7,8,9,10,67,118,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,45,29,30,66,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,0,
+ 114,115,116,46,47,114,115,116,0,1,
+ 2,37,4,0,6,0,8,0,0,45,
+ 46,47,9,49,50,51,52,53,54,55,
+ 56,57,17,59,0,1,2,63,4,5,
+ 0,7,68,69,70,71,0,73,74,3,
+ 0,0,6,0,8,9,82,11,12,13,
+ 45,46,47,10,49,50,51,52,53,54,
+ 55,56,26,27,28,0,0,1,2,3,
+ 4,5,6,7,8,72,0,0,114,115,
+ 116,5,17,75,48,0,1,2,0,1,
+ 2,3,4,5,6,7,8,61,95,0,
+ 57,61,66,67,97,98,0,71,72,73,
+ 45,46,47,0,49,50,51,52,53,54,
+ 55,56,37,10,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,
+ 37,0,0,117,118,3,120,121,6,71,
+ 8,9,0,11,12,13,67,0,1,2,
+ 3,4,5,6,7,8,63,100,26,27,
+ 28,0,0,1,2,3,4,5,6,7,
+ 8,0,1,2,3,4,90,6,17,8,
+ 48,102,96,104,105,106,107,108,109,110,
+ 111,112,113,61,0,48,117,66,66,67,
+ 0,1,2,71,72,73,45,46,47,0,
+ 49,50,51,52,53,54,55,56,9,48,
+ 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,0,1,2,117,
+ 118,0,120,121,0,1,2,3,4,5,
+ 6,7,8,0,10,11,12,4,14,15,
+ 16,0,18,19,20,21,22,23,24,25,
+ 26,27,73,29,30,31,32,33,34,35,
+ 36,0,38,39,40,41,42,43,44,28,
+ 0,1,2,3,0,5,0,7,45,9,
+ 64,65,58,13,0,1,2,0,64,65,
+ 0,1,2,0,4,5,9,7,74,0,
1,2,3,4,5,6,7,8,0,10,
- 11,12,64,65,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,0,29,30,
- 0,32,33,34,35,36,37,38,39,40,
- 41,42,43,44,0,1,2,114,115,116,
- 0,114,115,116,0,28,57,3,59,0,
+ 11,12,71,14,15,16,95,18,19,20,
+ 21,22,23,24,25,26,27,37,29,30,
+ 31,32,33,34,35,36,28,38,39,40,
+ 41,42,43,44,60,0,1,2,3,0,
+ 5,0,7,66,9,4,95,58,9,72,
+ 61,0,13,64,65,0,1,2,3,4,
+ 5,6,7,8,9,10,11,12,0,14,
+ 15,16,0,18,19,20,21,22,23,24,
+ 25,26,27,48,29,30,31,32,33,34,
+ 35,36,0,38,39,40,41,42,43,44,
+ 28,0,1,2,3,66,5,72,7,0,
+ 9,60,3,58,13,60,48,0,1,2,
+ 3,0,5,0,7,0,1,2,73,0,
+ 1,2,3,4,5,6,7,8,9,10,
+ 11,12,0,14,15,16,0,18,19,20,
+ 21,22,23,24,25,26,27,48,29,30,
+ 31,32,33,34,35,36,0,38,39,40,
+ 41,42,43,44,28,9,0,0,1,2,
+ 4,4,6,6,8,8,9,58,71,60,
+ 0,1,2,0,1,2,3,4,5,6,
+ 7,8,73,10,11,12,0,14,15,16,
+ 0,18,19,20,21,22,23,24,25,26,
+ 27,100,29,30,31,32,33,34,35,36,
+ 0,38,39,40,41,42,43,44,72,0,
+ 1,2,3,37,5,0,7,0,0,72,
+ 0,58,4,3,64,65,9,64,65,0,
1,2,3,4,5,6,7,8,0,10,
- 11,12,118,5,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,0,29,30,
- 3,32,33,34,35,36,37,38,39,40,
- 41,42,43,44,0,0,0,77,4,3,
- 0,5,6,3,8,0,57,11,12,9,
- 0,0,72,3,3,0,1,2,0,9,
- 0,0,26,27,28,48,30,0,1,2,
- 3,0,5,0,7,4,0,26,27,6,
- 0,1,2,3,48,5,28,7,48,0,
- 1,2,0,0,5,0,0,61,48,48,
- 64,65,66,67,0,1,2,0,0,0,
- 3,61,0,73,6,6,66,0,6,61,
- 31,28,0,73,88,89,90,91,92,93,
- 94,0,0,97,98,99,100,101,102,103,
- 104,105,106,107,108,109,110,111,112,113,
- 0,93,94,3,103,5,6,0,8,28,
- 0,11,12,59,91,92,0,1,2,9,
- 48,120,0,13,0,3,26,27,28,119,
- 30,0,1,2,67,90,0,0,1,2,
- 4,96,61,97,98,119,0,31,48,91,
- 92,0,28,91,92,0,1,2,0,1,
- 2,61,31,0,64,65,66,67,31,0,
- 1,2,90,4,93,94,66,123,96,0,
- 0,45,3,76,0,0,31,3,88,89,
- 90,91,92,93,94,0,72,97,98,99,
- 100,101,102,103,104,105,106,107,108,109,
- 110,111,112,113,0,1,2,3,4,5,
- 6,7,8,28,10,11,12,48,48,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,0,29,30,3,32,33,34,35,
- 36,37,38,39,40,41,42,43,44,0,
- 0,0,48,0,1,2,3,4,5,6,
- 7,8,0,10,11,12,0,0,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,0,29,30,3,32,33,34,35,36,
- 37,38,39,40,41,42,43,44,48,67,
- 0,0,1,2,3,4,5,6,7,8,
- 57,10,11,12,63,66,15,16,17,18,
- 19,20,21,22,23,24,25,26,27,67,
- 29,30,0,32,33,34,35,36,37,38,
+ 11,12,95,14,15,16,28,18,19,20,
+ 21,22,23,24,25,26,27,48,29,30,
+ 31,32,33,34,35,36,28,38,39,40,
+ 41,42,43,44,0,1,2,0,4,0,
+ 6,66,8,0,0,1,2,58,4,72,
+ 6,8,8,64,65,0,1,2,3,4,
+ 5,6,7,8,9,10,11,12,0,14,
+ 15,16,4,18,19,20,21,22,23,24,
+ 25,26,27,0,29,30,31,32,33,34,
+ 35,36,0,38,39,40,41,42,43,44,
+ 0,1,2,3,4,5,6,7,8,0,
+ 10,11,12,76,14,15,16,8,18,19,
+ 20,21,22,23,24,25,26,27,0,29,
+ 30,31,32,33,34,35,36,9,38,39,
+ 40,41,42,43,44,0,1,2,0,4,
+ 0,6,0,8,0,1,2,3,58,5,
+ 60,7,0,71,0,1,2,3,4,5,
+ 6,7,8,118,10,11,12,0,14,15,
+ 16,0,18,19,20,21,22,23,24,25,
+ 26,27,0,29,30,31,32,33,34,35,
+ 36,73,38,39,40,41,42,43,44,0,
+ 0,61,3,0,5,6,66,8,0,71,
+ 11,12,58,0,0,0,3,3,3,48,
+ 17,0,9,71,0,26,27,28,28,30,
+ 0,0,1,2,4,0,1,2,7,4,
+ 26,27,0,1,2,0,4,48,45,46,
+ 47,6,49,50,51,52,53,54,55,56,
+ 61,48,48,64,65,66,67,0,60,102,
+ 3,0,1,2,61,45,5,0,7,66,
+ 0,0,67,6,117,72,6,88,89,90,
+ 91,92,93,94,0,60,97,98,99,100,
+ 101,102,103,104,105,106,107,108,109,110,
+ 111,112,113,0,90,48,3,103,5,6,
+ 96,8,28,0,11,12,0,1,2,3,
+ 0,5,9,7,120,0,91,92,3,26,
+ 27,28,61,30,114,115,116,0,1,2,
+ 0,0,5,0,3,61,0,1,2,29,
+ 0,48,0,1,2,0,1,2,91,92,
+ 5,91,92,0,61,0,0,64,65,66,
+ 67,28,9,0,37,0,13,93,94,66,
+ 0,1,2,37,9,0,73,0,13,37,
+ 3,88,89,90,91,92,93,94,0,0,
+ 97,98,99,100,101,102,103,104,105,106,
+ 107,108,109,110,111,112,113,0,1,2,
+ 3,4,5,6,7,8,28,10,11,12,
+ 0,14,15,16,61,18,19,20,21,22,
+ 23,24,25,26,27,60,29,30,31,32,
+ 33,34,35,36,0,38,39,40,41,42,
+ 43,44,0,1,2,48,0,1,2,3,
+ 4,5,6,7,8,0,10,11,12,0,
+ 14,15,16,0,18,19,20,21,22,23,
+ 24,25,26,27,95,29,30,31,32,33,
+ 34,35,36,28,38,39,40,41,42,43,
+ 44,0,1,2,3,4,5,6,7,8,
+ 0,10,11,12,58,14,15,16,0,18,
+ 19,20,21,22,23,24,25,26,27,60,
+ 29,30,31,32,33,34,35,36,28,38,
39,40,41,42,43,44,0,1,2,3,
- 4,5,6,7,8,0,10,11,12,59,
- 28,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,29,30,0,32,33,
- 34,35,36,37,38,39,40,41,42,43,
+ 4,5,6,7,8,37,10,11,12,0,
+ 14,15,16,119,18,19,20,21,22,23,
+ 24,25,26,27,0,29,30,31,32,33,
+ 34,35,36,0,38,39,40,41,42,43,
44,0,1,2,3,4,5,6,7,8,
- 0,10,11,12,0,0,15,16,17,18,
+ 0,10,11,12,0,14,15,16,0,18,
19,20,21,22,23,24,25,26,27,0,
- 29,30,67,32,33,34,35,36,37,38,
+ 29,30,31,32,33,34,35,36,28,38,
39,40,41,42,43,44,0,1,2,0,
- 4,67,0,0,0,0,10,28,0,10,
+ 4,0,0,1,2,37,10,0,1,2,
14,15,16,17,18,19,20,21,22,23,
- 24,25,0,0,0,0,66,90,0,0,
- 31,9,9,96,9,13,13,72,9,0,
- 0,45,46,47,0,49,50,51,52,53,
- 54,55,56,9,0,1,2,29,4,63,
- 0,59,63,59,10,69,70,71,14,15,
- 16,17,18,19,20,21,22,23,24,25,
- 72,0,0,0,1,2,3,4,5,6,
- 7,8,9,0,0,66,13,14,73,45,
- 46,47,73,49,50,51,52,53,54,55,
- 56,28,68,0,0,0,0,63,3,3,
- 95,28,9,69,70,71,13,0,45,46,
- 47,48,49,50,51,52,53,54,55,56,
+ 24,25,0,0,1,2,0,1,2,28,
+ 0,1,2,0,0,0,3,3,3,37,
+ 61,45,46,47,37,49,50,51,52,53,
+ 54,55,56,0,1,2,0,4,0,63,
+ 37,0,61,10,68,69,70,14,15,16,
+ 17,18,19,20,21,22,23,24,25,0,
+ 0,0,3,3,0,1,2,3,4,5,
+ 6,7,8,9,93,94,0,13,45,46,
+ 47,17,49,50,51,52,53,54,55,56,
+ 0,0,28,3,3,0,63,61,0,61,
+ 9,68,69,70,66,0,0,0,10,45,
+ 46,47,48,49,50,51,52,53,54,55,
+ 56,0,1,2,3,4,5,6,7,8,
+ 9,90,0,0,13,37,72,96,17,48,
+ 0,0,66,0,0,0,0,14,15,16,
+ 17,18,19,20,21,22,23,24,25,0,
+ 0,63,3,72,0,60,45,46,47,48,
+ 49,50,51,52,53,54,55,56,45,46,
+ 47,0,49,50,51,52,53,54,55,56,
+ 0,0,28,72,0,1,2,3,4,5,
+ 6,7,8,9,61,61,61,13,48,66,
+ 0,17,0,1,2,3,4,5,6,7,
+ 8,9,90,0,0,13,0,0,96,17,
+ 3,37,9,9,0,0,13,13,0,0,
+ 28,0,61,0,9,0,3,9,9,37,
+ 0,57,0,59,28,3,62,66,48,119,
+ 0,71,28,0,0,0,3,73,0,57,
+ 0,59,0,28,62,0,82,0,0,1,
+ 2,3,4,5,6,7,8,9,28,48,
+ 0,13,0,3,82,17,0,1,2,3,
+ 4,5,6,7,8,9,61,72,0,13,
+ 72,72,0,17,0,37,66,0,1,2,
+ 3,4,5,6,7,8,9,0,0,0,
+ 13,67,3,37,17,57,71,59,93,94,
+ 62,71,67,66,0,0,0,3,0,3,
+ 0,73,0,57,37,59,28,0,62,67,
+ 82,0,0,0,3,3,3,0,0,73,
+ 0,3,0,0,57,67,59,63,82,62,
0,1,2,3,4,5,6,7,8,9,
- 0,0,0,13,14,28,73,0,0,9,
- 9,67,0,13,0,3,14,15,16,17,
- 18,19,20,21,22,23,24,25,0,119,
- 0,67,0,0,0,45,46,47,48,49,
- 50,51,52,53,54,55,56,45,46,47,
- 0,49,50,51,52,53,54,55,56,9,
- 28,28,0,73,0,1,2,3,4,5,
- 6,7,8,9,73,67,0,13,14,0,
- 0,1,2,3,4,5,6,7,8,9,
- 0,29,28,13,14,31,0,1,2,3,
- 4,5,6,7,8,9,0,28,0,13,
- 14,31,4,0,0,0,10,4,0,0,
- 0,3,58,73,60,0,62,31,0,0,
- 0,3,3,3,9,0,28,31,58,75,
- 60,28,62,0,0,0,0,0,68,3,
- 122,0,0,0,58,75,60,0,62,0,
- 0,0,72,28,68,0,0,0,0,63,
- 0,75,0,1,2,3,4,5,6,7,
- 8,9,0,0,0,13,14,72,0,1,
- 2,3,4,5,6,7,8,9,73,29,
- 0,13,14,31,0,1,2,3,4,5,
- 6,7,8,9,67,72,0,13,14,31,
- 67,0,0,0,67,0,0,0,0,0,
- 58,0,60,0,62,31,0,0,0,95,
- 68,0,0,0,0,0,58,75,60,0,
- 62,0,0,0,0,0,68,0,0,0,
- 0,0,58,75,60,0,62,0,0,0,
- 0,0,68,0,0,0,0,0,0,75,
- 0,1,2,3,4,5,6,7,8,9,
- 0,0,0,13,14,0,0,1,2,3,
- 4,5,6,7,8,9,0,0,0,13,
- 14,31,0,1,2,3,4,5,6,7,
- 8,9,0,0,0,13,14,31,0,0,
- 0,0,0,0,0,0,0,0,58,0,
- 60,0,62,31,0,0,0,0,0,0,
- 0,0,0,0,58,75,60,0,62,0,
+ 73,119,0,13,0,0,0,17,71,82,
+ 28,0,1,2,3,4,5,6,7,8,
+ 9,66,0,0,13,67,0,37,17,0,
+ 1,2,3,4,5,6,7,8,9,0,
+ 0,0,13,0,67,0,17,57,37,59,
+ 67,71,62,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,37,0,57,0,
+ 59,0,82,62,0,0,0,0,0,0,
+ 0,0,0,0,0,0,57,0,59,0,
+ 0,62,0,82,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 58,75,60,0,62,0,0,0,0,0,
- 0,0,0,0,0,0,0,75,0,0,
+ 0,82,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0
+ 0,0,0
};
};
public final static byte termCheck[] = TermCheck.termCheck;
@@ -1371,301 +1349,296 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface TermAction {
public final static char termAction[] = {0,
- 5236,5214,5199,5199,5199,5199,5199,5199,5199,5227,
- 1,1,1,5221,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,5236,1,
- 1,1381,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,2220,3229,
- 2656,122,3461,1,1,1,125,135,5243,1,
- 1,1,3172,2721,5415,2349,2323,3674,3208,2197,
- 3043,3619,3224,3667,1122,3665,3226,3642,8,5230,
- 5230,5230,5230,5230,5230,5230,5230,5230,5230,5230,
- 5230,5230,5230,5230,5230,5230,5230,5230,5230,5230,
- 5230,5230,5230,5230,5230,5230,5236,5230,5230,5236,
- 5230,5230,5230,5230,5230,5230,5230,5230,5230,5230,
- 5230,5230,5230,5230,5230,5230,5236,5230,5230,5230,
- 5230,5230,5230,5230,5230,5230,5230,5230,5230,124,
- 5230,5230,5230,5230,2551,2598,5230,5230,5230,5230,
- 3172,2721,5230,5236,5230,5230,5230,5230,5230,5230,
- 5230,5230,5230,5230,5230,5230,5236,5214,5199,5199,
- 5199,5199,5199,5199,5199,5218,1,1,1,5221,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5236,1,1,2651,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,2511,1,1,1,1,1,
- 1,1,1,1,2220,3229,2656,4843,3461,1,
- 1,1,42,4862,4859,1,1,1,129,634,
- 5415,5236,2323,3674,3208,2197,3043,3619,3224,3667,
- 1122,3665,3226,3642,5236,5214,5199,5199,5199,5199,
- 5199,5199,5199,5218,1,1,1,5221,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,95,1,1,4880,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,141,1,1,1,1,1,1,1,
- 1,1,2220,3229,2656,139,3461,1,1,1,
- 5236,5253,5254,1,1,1,2551,2598,5415,5236,
- 2323,3674,3208,2197,3043,3619,3224,3667,1122,3665,
- 3226,3642,5236,5214,5199,5199,5199,5199,5199,5199,
- 5199,5218,1,1,1,5221,1,1,1,1,
+ 5155,5136,5118,5118,5118,5118,5118,5118,5118,5146,
+ 1,1,1,5143,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5155,1,
+ 1,1,1,1,1,1,1,137,1,1,
+ 1,1,1,1,1,1,1,1,189,1,
+ 1,1,1,1,1,1,1,1669,1,2216,
+ 3345,5155,3086,1,1,1,125,3042,1,1,
+ 1,129,302,5162,5334,921,3295,3198,2182,3120,
+ 3193,2986,5456,3264,1585,3253,2707,3243,8,5149,
+ 5149,5149,5149,5149,5149,5149,5149,5149,5149,5149,
+ 5149,5149,5149,5149,5149,5149,5149,5149,5149,5149,
+ 5149,5149,5149,5149,5149,5149,1,5149,5149,5149,
+ 5149,5149,5149,5149,5149,5155,5149,5149,5149,5149,
+ 5149,5149,5149,5149,5149,5149,588,5149,5149,5149,
+ 5149,5149,5149,5149,5149,5149,5149,5149,5149,4762,
+ 5149,5149,5149,5149,2535,2582,5149,5149,5149,2535,
+ 2582,5149,5149,5149,5149,5149,5149,5149,5149,5149,
+ 5152,5149,5149,5149,5149,5149,5155,5136,5118,5118,
+ 5118,5118,5118,5118,5118,5140,1,1,1,5143,
1,1,1,1,1,1,1,1,1,1,
- 240,1,1,5034,1,1,1,1,1,1,
+ 1,1,1,1,5155,1,1,1,1,1,
+ 1,1,1,138,1,1,1,1,1,1,
+ 1,1,1,1,141,1,1,1,1,1,
+ 1,1,1,1669,1,2216,3345,122,3086,1,
+ 1,1,128,43,1,1,1,5197,2942,2918,
+ 5334,921,3295,3198,2182,3120,3193,2986,5155,3264,
+ 1585,3253,2707,3243,5155,5136,5118,5118,5118,5118,
+ 5118,5118,5118,5140,1,1,1,5143,1,1,
1,1,1,1,1,1,1,1,1,1,
- 2574,1,1,1,1,1,1,1,1,1,
- 2220,3229,2656,2286,3461,1,1,1,5236,5025,
- 5022,1,1,1,128,590,5415,5236,2323,3674,
- 3208,2197,3043,3619,3224,3667,1122,3665,3226,3642,
- 5236,5214,5199,5199,5199,5199,5199,5199,5199,5218,
- 1,1,1,5221,1,1,1,1,1,1,
+ 1,1,5155,1,1,1,1,1,1,1,
+ 1,5155,1,1,1,1,1,1,1,1,
+ 1,1,588,1,1,1,1,1,1,1,
+ 1,1669,1,2216,3345,2269,3086,1,1,1,
+ 2535,2582,1,1,1,5155,5172,5173,5334,921,
+ 3295,3198,2182,3120,3193,2986,292,3264,1585,3253,
+ 2707,3243,5155,5136,5118,5118,5118,5118,5118,5118,
+ 5118,5140,1,1,1,5143,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,3938,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,2628,1,
- 1,1,1,1,1,1,1,1,2220,3229,
- 2656,140,3461,1,1,1,54,5058,5055,1,
- 1,1,2551,2598,5415,5236,2323,3674,3208,2197,
- 3043,3619,3224,3667,1122,3665,3226,3642,5236,5214,
- 5199,5199,5199,5199,5199,5199,5199,5218,1,1,
- 1,5221,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,5236,1,1,1549,
+ 5155,1,1,1,1,1,1,1,1,5155,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,2663,1,1,1,
- 1,1,1,1,1,1,2220,3229,2656,5236,
- 3461,1,1,1,127,136,454,1,1,1,
- 126,590,5415,2349,2323,3674,3208,2197,3043,3619,
- 3224,3667,1122,3665,3226,3642,5236,5214,5199,5199,
- 5199,5199,5199,5199,5199,5218,1,1,1,5221,
+ 142,1,1,1,1,1,1,1,1,1669,
+ 1,2216,3345,1971,3086,1,1,1,127,527,
+ 1,1,1,5155,4944,4941,5334,921,3295,3198,
+ 2182,3120,3193,2986,5155,3264,1585,3253,2707,3243,
+ 5155,5136,5118,5118,5118,5118,5118,5118,5118,5140,
+ 1,1,1,5143,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5155,1,
+ 1,1,1,1,1,1,1,3140,1,1,
+ 1,1,1,1,1,1,1,1,5155,1,
+ 1,1,1,1,1,1,1,1669,1,2216,
+ 3345,2269,3086,1,1,1,2535,2582,1,1,
+ 1,54,4977,4974,5334,921,3295,3198,2182,3120,
+ 3193,2986,5155,3264,1585,3253,2707,3243,5155,5136,
+ 5118,5118,5118,5118,5118,5118,5118,5140,1,1,
+ 1,5143,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,5155,1,1,1,
+ 1,1,1,1,1,5155,1,1,1,1,
+ 1,1,1,1,1,1,5155,1,1,1,
+ 1,1,1,1,1,1669,1,2216,3345,124,
+ 3086,1,1,1,126,5155,1,1,1,2566,
+ 2942,2918,5334,921,3295,3198,2182,3120,3193,2986,
+ 5155,3264,1585,3253,2707,3243,5155,5136,5118,5118,
+ 5118,5118,5118,5118,5118,5140,1,1,1,5143,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,4871,1,1,5236,1,1,
+ 1,1,1,1,5155,1,1,1,1,1,
+ 1,1,1,5155,1,1,1,1,1,1,
+ 1,1,1,1,5155,1,1,1,1,1,
+ 1,1,1,1669,1,2216,3345,123,3086,1,
+ 1,1,2535,2582,1,1,1,5155,2942,2918,
+ 5334,921,3295,3198,2182,3120,3193,2986,369,3264,
+ 1585,3253,2707,3243,5155,5136,5118,5118,5118,5118,
+ 5118,5118,5118,5140,1,1,1,5143,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5236,1,1,1,1,1,
- 1,1,1,1,2220,3229,2656,5236,3461,1,
- 1,1,2551,2598,453,1,1,1,2551,2598,
- 5415,5236,2323,3674,3208,2197,3043,3619,3224,3667,
- 1122,3665,3226,3642,5236,5214,5199,5199,5199,5199,
- 5199,5199,5199,5218,1,1,1,5221,1,1,
+ 1,1,5155,1,1,1,1,1,1,1,
+ 1,5155,1,1,1,1,1,1,1,1,
+ 1,1,5155,1,1,1,1,1,1,1,
+ 1,1669,1,2216,3345,1166,3086,1,1,1,
+ 3754,5155,1,1,1,54,4944,4941,5334,921,
+ 3295,3198,2182,3120,3193,2986,367,3264,1585,3253,
+ 2707,3243,5155,3241,1,1,1,1,1,1,
+ 1,5165,1,1,1,5164,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,4874,1,1,5236,1,1,1,1,
+ 5155,1,1,1,1,1,1,1,1,5155,
1,1,1,1,1,1,1,1,1,1,
- 1,1,142,1,1,1,1,1,1,1,
- 1,1,2220,3229,2656,123,3461,1,1,1,
- 54,5025,5022,1,1,1,3172,2721,5415,5236,
- 2323,3674,3208,2197,3043,3619,3224,3667,1122,3665,
- 3226,3642,5236,3620,1,1,1,1,1,1,
- 1,5246,1,1,1,5245,1,1,1,1,
+ 5155,1,1,1,1,1,1,1,1,1669,
+ 1,2216,3345,1210,3086,1,1,1,3007,1,
+ 1,1,1,385,5155,133,5334,921,3295,3198,
+ 2182,3120,3193,2986,5155,3264,1585,3253,2707,3243,
+ 43,4766,4763,4561,635,3777,3850,4433,3872,391,
+ 857,3828,3806,384,5422,5420,5429,5415,5428,5424,
+ 5425,5423,5426,5427,5430,5421,3916,3894,5155,5178,
+ 1045,644,773,5180,673,4059,770,714,5181,5179,
+ 628,5174,5176,5177,5175,5418,5491,5492,5155,5412,
+ 5419,5391,5417,5416,5413,5414,5392,5159,1295,452,
+ 5155,4766,4763,5548,635,4811,433,4433,777,5549,
+ 5550,5155,5017,5017,231,5013,231,231,231,231,
+ 5021,1,2390,2362,231,1,1,1,1,1,
+ 1,1,1,1,1,1,1,2045,366,5034,
+ 5030,2647,1,916,1,4433,1,4790,5010,5155,
+ 392,4766,4763,3273,5197,54,1,1,1,5173,
+ 1,1,1,1,1,1,1,1,2906,5155,
+ 2176,5155,4766,4763,1,635,916,335,4433,1,
+ 1,1,231,5173,411,5562,1842,43,5155,4766,
+ 4763,5155,5197,5649,5155,5017,5017,231,5013,231,
+ 231,231,231,5073,1,1124,5158,231,1,1,
1,1,1,1,1,1,1,1,1,1,
- 5236,1,1,1591,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 5744,1,1,1,1,1,1,1,1,1,
- 2220,3229,2656,2286,3461,1,1,1,5236,8465,
- 8465,1,1,1,5236,5236,5415,1633,2323,3674,
- 3208,2197,3043,3619,3224,3667,1122,3665,3226,3642,
- 43,4847,4844,3528,787,3781,4106,2629,4128,5276,
- 808,4084,4062,30,5496,5503,5501,5510,5509,5505,
- 5506,5504,5507,5508,5511,5502,4172,4150,115,5259,
- 1051,5236,656,953,5261,784,4304,812,5262,5260,
- 643,5255,5257,5258,5256,5499,5575,5576,5236,5493,
- 5500,5472,5498,5497,5494,5495,5473,1304,5236,227,
- 440,1,1,5632,1,5236,4868,305,4868,1210,
- 5633,5634,37,5496,5067,4886,228,5540,4886,5067,
- 4886,4886,5236,4886,4886,4886,1,5115,5111,2691,
- 5496,625,3921,2629,5236,5028,143,3029,4886,4886,
- 4886,5236,229,5240,5499,5575,5576,2636,5493,5500,
- 5472,5498,5497,5494,5495,5473,5496,3373,4216,41,
- 4886,5499,5575,5576,4238,5493,5500,5472,5498,5497,
- 5494,5495,5473,4886,1851,143,5236,1889,4886,4886,
- 4886,5236,5253,5254,4886,4886,2593,5499,5575,5576,
- 5276,5493,5500,5472,5498,5497,5494,5495,5473,5031,
- 4886,4886,4886,4886,4886,4886,4886,4886,4886,4886,
- 4886,4886,4886,4886,4886,4886,4886,4886,4886,4886,
- 4886,4886,4886,4886,4886,4886,5236,161,5236,4886,
- 4886,4889,4886,4886,4889,3229,4889,4889,2249,4889,
- 4889,4889,1809,5236,5180,5175,4347,5076,625,5172,
- 2629,5169,5239,1507,4889,4889,4889,230,5236,5189,
- 5185,4347,5278,625,2280,2629,5568,53,5236,4847,
- 4844,5496,787,4892,43,2629,4889,2249,5278,1767,
- 1725,1683,1641,1599,1557,1515,1473,1431,1389,4889,
- 424,5236,1507,1347,4889,4889,4889,338,924,2056,
- 4889,4889,5499,5575,5576,5236,5493,5500,5472,5498,
- 5497,5494,5495,5473,5236,2071,4889,4889,4889,4889,
- 4889,4889,4889,4889,4889,4889,4889,4889,4889,4889,
- 4889,4889,4889,4889,4889,4889,4889,4889,4889,4889,
- 4889,4889,2791,5575,5576,4889,4889,5236,4889,4889,
- 5236,5098,5098,231,5094,231,231,231,231,5102,
- 1,137,3491,231,1,1,1,1,1,1,
- 1,1,1,1,1,1,395,4847,4844,360,
- 5278,5091,313,5180,5175,4347,5076,625,5172,2629,
- 5169,5236,49,5052,5052,1,1,1,5236,1,
- 1,1,1,1,1,1,1,43,580,130,
- 5236,4847,4844,1,787,625,5236,2629,413,1,
- 1,1,231,5049,5645,5732,5236,5098,5098,231,
- 5094,231,231,231,231,5154,1,2515,5236,231,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1,5673,305,5236,4847,4844,5091,787,4892,
- 2319,2629,1,5540,5667,5668,5669,291,5253,5254,
- 4865,1,1,1,5595,1,1,1,1,1,
- 1,1,1,1,580,2145,5236,4847,4844,1,
- 787,625,165,2629,412,1,1,1,231,5687,
- 5645,5732,2461,2434,369,5115,5111,2691,1,625,
- 1,2629,1,2829,43,1,5079,5079,5278,5076,
- 2280,2280,5568,5568,365,5236,347,5189,5185,2691,
- 5278,625,2280,2629,5568,5236,4847,4844,529,5278,
- 5667,5668,5669,5236,1,1,1,1,1,1,
- 1,1,1851,1,1,1,165,5597,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 1,1131,1,1,1851,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,365,1,
- 5115,5111,5145,5236,5148,3595,5151,3082,5246,394,
- 1,350,5245,387,5236,5253,5254,1,1,625,
- 365,2629,5236,5253,5254,511,138,5769,1,4935,
- 4931,3528,4939,3781,4106,2629,4128,914,4895,4084,
- 4062,364,5236,4922,4928,4901,4904,4916,4913,4919,
- 4910,4907,4898,4925,4172,4150,5236,5259,1051,1851,
- 656,953,5261,784,4304,812,5262,5260,643,5255,
- 5257,5258,5256,3375,347,43,43,2981,5278,5236,
- 2280,5236,5568,5236,3042,1304,4194,940,5244,512,
- 5244,875,43,43,43,4847,4844,3528,787,3781,
- 4106,2629,4128,5244,568,4084,4062,2780,5236,5503,
- 5501,5510,5509,5505,5506,5504,5507,5508,5511,5502,
- 4172,4150,1851,5259,1051,2319,656,953,5261,784,
- 4304,812,5262,5260,643,5255,5257,5258,5256,1,
- 5115,5111,4347,5236,625,1009,2629,5243,313,5243,
- 5236,1304,313,4027,1,5115,5111,4347,5236,625,
- 5236,2629,5243,43,4847,4844,3528,787,3781,4106,
- 2629,4128,5244,568,4084,4062,5236,5236,5503,5501,
- 5510,5509,5505,5506,5504,5507,5508,5511,5502,4172,
- 4150,5236,5259,1051,1675,656,953,5261,784,4304,
- 812,5262,5260,643,5255,5257,5258,5256,40,5130,
- 5127,3806,1,5115,5111,2691,3029,625,5236,2629,
- 1304,3762,4027,5236,4847,4844,2071,5278,5236,5058,
- 5055,5243,145,4847,4844,3528,787,3781,4106,2629,
- 4128,1,568,4084,4062,388,3057,5503,5501,5510,
- 5509,5505,5506,5504,5507,5508,5511,5502,4172,4150,
- 1851,5259,1051,5236,656,953,5261,784,4304,812,
- 5262,5260,643,5255,5257,5258,5256,441,43,43,
- 133,5278,3041,5073,5236,5070,96,1,1,1304,
- 1,3411,5085,5242,5085,290,43,43,1,4935,
- 4931,3528,4939,3781,4106,2629,4128,5236,4895,4084,
- 4062,3339,5236,4922,4928,4901,4904,4916,4913,4919,
- 4910,4907,4898,4925,4172,4150,33,5259,1051,422,
- 656,953,5261,784,4304,812,5262,5260,643,5255,
- 5257,5258,5256,435,99,43,43,43,5278,5236,
- 5163,5278,5160,5236,4850,1304,3372,5241,5236,5025,
- 5022,986,43,43,43,4847,4844,3528,787,3781,
- 4106,2629,4128,5240,568,4084,4062,2406,2378,5503,
- 5501,5510,5509,5505,5506,5504,5507,5508,5511,5502,
- 4172,4150,2794,5259,1051,3128,656,953,5261,784,
- 4304,812,5262,5260,643,5255,5257,5258,5256,43,
- 4847,4844,3528,787,3781,4106,2629,4128,5236,568,
- 4084,4062,4194,940,5503,5501,5510,5509,5505,5506,
- 5504,5507,5508,5511,5502,4172,4150,436,5259,1051,
- 5236,656,953,5261,784,4304,812,5262,5260,643,
- 5255,5257,5258,5256,395,5253,5254,5667,5668,5669,
- 5236,5667,5668,5669,5236,4853,1304,3458,4027,43,
- 4847,4844,3528,787,3781,4106,2629,4128,5236,568,
- 4084,4062,5239,2593,5503,5501,5510,5509,5505,5506,
- 5504,5507,5508,5511,5502,4172,4150,349,5259,1051,
- 3149,656,953,5261,784,4304,812,5262,5260,643,
- 5255,5257,5258,5256,5236,5236,1,3834,917,538,
- 1,5701,5695,2981,5699,5236,1304,5693,5694,5028,
- 1,80,5635,2981,2874,5236,8443,8438,132,343,
- 5236,5236,5724,5725,5704,1851,5702,1,5115,5111,
- 4347,5236,625,119,2629,928,377,5304,5305,3739,
- 1,5115,5111,5145,565,5148,2515,5151,1851,41,
- 5088,5088,5236,450,5088,118,134,5705,1851,1465,
- 1554,1561,5726,5703,5236,5253,5254,107,121,5236,
- 3583,343,120,5031,3739,3488,343,292,3739,5061,
- 2624,4856,104,343,5715,5714,5727,5696,5697,5720,
- 5721,131,117,5718,5719,5698,5700,5722,5723,5728,
- 5708,5709,5710,5706,5707,5716,5717,5712,5711,5713,
- 5236,2461,2434,538,657,5701,5695,1,5699,2515,
- 5236,5693,5694,3836,3716,3693,41,5082,5082,5246,
- 1717,728,5236,5245,33,3648,5724,5725,5704,3685,
- 5702,5236,5108,5105,1982,4216,43,5236,5123,5119,
- 5278,4238,5064,2406,2378,3685,5236,2245,565,3716,
- 3693,5236,914,3716,3693,51,5136,5136,5236,8443,
- 8438,5705,5276,5236,1554,1561,5726,5703,5276,5236,
- 4847,4844,4216,5278,2461,2434,4325,3500,4238,321,
- 323,1888,5157,3680,281,5236,5133,5193,5715,5714,
- 5727,5696,5697,5720,5721,45,420,5718,5719,5698,
- 5700,5722,5723,5728,5708,5709,5710,5706,5707,5716,
- 5717,5712,5711,5713,43,4847,4844,3528,787,3781,
- 4106,2629,4128,4877,568,4084,4062,1851,1851,5503,
- 5501,5510,5509,5505,5506,5504,5507,5508,5511,5502,
- 4172,4150,315,5259,1051,3623,656,953,5261,784,
- 4304,812,5262,5260,643,5255,5257,5258,5256,445,
- 103,5236,1255,43,4847,4844,3528,787,3781,4106,
- 2629,4128,372,568,4084,4062,5236,5236,5503,5501,
- 5510,5509,5505,5506,5504,5507,5508,5511,5502,4172,
- 4150,5236,5259,1051,3474,656,953,5261,784,4304,
- 812,5262,5260,643,5255,5257,5258,5256,2019,1260,
- 1,43,4847,4844,1423,787,3781,4106,2629,4128,
- 1304,568,4084,4062,3383,2704,5503,5501,5510,5509,
- 5505,5506,5504,5507,5508,5511,5502,4172,4150,1173,
- 5259,1051,387,656,953,5261,784,4304,812,5262,
- 5260,643,5255,5257,5258,5256,43,4847,4844,3528,
- 787,3781,4106,2629,4128,370,568,4084,4062,3874,
- 4883,5503,5501,5510,5509,5505,5506,5504,5507,5508,
- 5511,5502,4172,4150,416,5259,1051,116,656,953,
- 5261,784,4304,812,5262,5260,643,5255,5257,5258,
- 5256,43,4847,4844,3528,787,3781,4106,2629,4128,
- 312,568,4084,4062,5236,444,5503,5501,5510,5509,
- 5505,5506,5504,5507,5508,5511,5502,4172,4150,5236,
- 5259,1051,1218,656,953,5261,784,4304,812,5262,
- 5260,643,5255,5257,5258,5256,5236,4847,4844,1,
- 5278,2160,5236,5236,5236,5236,797,914,5236,5202,
- 5496,5503,5501,5510,5509,5505,5506,5504,5507,5508,
- 5511,5502,403,5236,5236,1,4336,4216,5236,5236,
- 3563,5139,5246,4238,365,5142,5245,640,5242,5236,
- 5236,5499,5575,5576,1,5493,5500,5472,5498,5497,
- 5494,5495,5473,5208,244,5015,5011,3820,5019,5632,
- 518,3922,5205,3924,797,1210,5633,5634,4966,5002,
- 5008,4981,4984,4996,4993,4999,4990,4987,4978,5005,
- 2108,5236,5236,33,387,387,5043,387,387,5043,
- 387,5043,5046,1,39,4708,5043,387,365,4957,
- 4951,4948,5241,4975,4954,4945,4960,4963,4972,4969,
- 4942,4850,5243,1,504,5236,5236,5632,3879,4651,
- 365,914,5246,1210,5633,5634,5245,5236,387,387,
- 387,5046,387,387,387,387,387,387,387,387,
- 36,388,388,5037,388,388,5037,388,5037,5040,
- 1,1,226,5037,388,3370,5046,5236,502,195,
- 5242,3007,5236,195,5236,4675,5496,5503,5501,5510,
- 5509,5505,5506,5504,5507,5508,5511,5502,189,3685,
- 5236,3991,78,5236,5236,388,388,388,5040,388,
- 388,388,388,388,388,388,388,5499,5575,5576,
- 1,5493,5500,5472,5498,5497,5494,5495,5473,525,
- 5166,3668,5236,5040,1,5199,5199,231,5199,231,
- 231,231,231,231,5241,4700,5236,231,8500,5236,
- 1,5199,5199,231,5199,231,231,231,231,5211,
- 5236,3306,3370,231,8500,5196,1,5199,5199,231,
- 5199,231,231,231,231,5211,1,3927,54,231,
- 8500,5196,5254,54,5236,5236,5202,5253,5236,5236,
- 5236,4676,2220,525,1931,1,3461,5196,5236,5236,
- 5236,2807,4693,3574,167,2,5254,3563,2220,5732,
- 1931,5253,3461,5236,1,5236,5236,5236,223,1759,
- 5233,5236,5236,5236,2220,5732,1931,506,3461,5236,
- 5236,5236,5418,41,223,5236,5236,5236,5236,5205,
- 1,5732,1,5199,5199,231,5199,231,231,231,
- 231,5224,5236,5236,5236,231,8500,3285,1,5199,
- 5199,231,5199,231,231,231,231,5211,167,3454,
- 5236,231,8500,5196,1,5199,5199,231,5199,231,
- 231,231,231,5211,3007,5417,5236,231,8500,5196,
- 1940,5236,5236,5236,991,5236,5236,5236,5236,5236,
- 2220,5236,1931,5236,3461,5196,5236,5236,5236,3803,
- 222,5236,5236,5236,5236,5236,2220,5732,1931,5236,
- 3461,5236,5236,5236,5236,5236,223,5236,5236,5236,
- 5236,5236,2220,5732,1931,5236,3461,5236,5236,5236,
- 5236,5236,223,5236,5236,5236,5236,5236,5236,5732,
- 1,5199,5199,231,5199,231,231,231,231,231,
- 5236,5236,5236,231,8500,5236,1,5199,5199,231,
- 5199,231,231,231,231,231,5236,5236,5236,231,
- 8500,5196,1,5199,5199,231,5199,231,231,231,
- 231,231,5236,5236,5236,231,8500,5196,5236,5236,
- 5236,5236,5236,5236,5236,5236,5236,5236,2220,5236,
- 1931,5236,3461,5196,5236,5236,5236,5236,5236,5236,
- 5236,5236,5236,5236,2220,5732,1931,5236,3461,5236,
- 5236,5236,5236,5236,5236,5236,5236,5236,5236,5236,
- 2220,5732,1931,5236,3461,5236,5236,5236,5236,5236,
- 5236,5236,5236,5236,5236,5236,5236,5732
+ 5584,5585,5586,5491,5492,5584,5585,5586,438,1,
+ 1,5010,1,1,4787,227,4787,134,1,1,
+ 1,1,362,1,1,1,1,1,1,1,
+ 1,2906,5415,2176,5155,4766,4763,1,635,916,
+ 5155,4433,1,1,1,231,37,410,5562,4805,
+ 5155,5155,4805,302,4805,4805,5649,4805,4805,4805,
+ 5418,5491,5492,5456,5412,5419,5391,5417,5416,5413,
+ 5414,5392,4805,4805,4805,228,5155,5108,5104,2841,
+ 5197,916,1158,4433,5484,362,5155,139,5584,5585,
+ 5586,2616,5415,3730,4805,5155,8449,8449,5155,5099,
+ 5094,2841,4995,916,5091,4433,5088,4805,362,143,
+ 2853,2206,4805,4805,2390,2362,115,4805,4805,4805,
+ 5418,5491,5492,1,5412,5419,5391,5417,5416,5413,
+ 5414,5392,5195,5127,4805,4805,4805,4805,4805,4805,
+ 4805,4805,4805,4805,4805,4805,4805,4805,4805,4805,
+ 4805,4805,4805,4805,4805,4805,4805,4805,4805,4805,
+ 3108,161,5155,4805,4805,4808,4805,4805,4808,2058,
+ 4808,4808,5155,4808,4808,4808,1800,344,5108,5104,
+ 2647,5197,916,1158,4433,5484,5130,2302,4808,4808,
+ 4808,229,310,5099,5094,2841,4995,916,5091,4433,
+ 5088,344,43,43,2977,5197,3960,1158,5415,5484,
+ 4808,2232,3982,1758,1716,1674,1632,1590,1548,1506,
+ 1464,1422,1380,4808,5155,1842,4081,1338,4808,4808,
+ 291,5172,5173,4808,4808,4808,5418,5491,5492,5155,
+ 5412,5419,5391,5417,5416,5413,5414,5392,5163,1842,
+ 4808,4808,4808,4808,4808,4808,4808,4808,4808,4808,
+ 4808,4808,4808,4808,4808,4808,4808,4808,4808,4808,
+ 4808,4808,4808,4808,4808,4808,5155,5172,5173,4808,
+ 4808,357,4808,4808,5155,1,1,1,1,1,
+ 1,1,1,43,1,1,1,5197,1,1,
+ 1,33,1,1,1,1,1,1,1,1,
+ 1,1,5162,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,714,
+ 1,5034,5030,5064,5155,5067,5155,5070,2559,5165,
+ 3938,1037,1,5164,5155,5172,5173,5155,1,1,
+ 5155,4766,4763,5155,635,4811,5161,4433,5686,1,
+ 4854,4850,4561,4858,3777,3850,4433,3872,5155,4814,
+ 3828,3806,418,4841,4847,4820,5511,4823,4835,4832,
+ 4838,4829,4826,4817,4844,3916,3894,2132,5178,1045,
+ 644,773,5180,673,4059,770,3214,5181,5179,628,
+ 5174,5176,5177,5175,3171,1,5034,5030,2647,5155,
+ 916,5155,4433,4612,4947,1049,5513,1295,5165,5160,
+ 510,5155,5164,43,43,43,4766,4763,4561,635,
+ 3777,3850,4433,3872,5163,566,3828,3806,451,5422,
+ 5420,5429,5155,5428,5424,5425,5423,5426,5427,5430,
+ 5421,3916,3894,1842,5178,1045,644,773,5180,673,
+ 4059,770,5155,5181,5179,628,5174,5176,5177,5175,
+ 3573,1,5034,5030,2841,577,916,4950,4433,346,
+ 310,1498,1834,1295,310,4109,4793,1,5034,5030,
+ 2841,140,916,5155,4433,40,5049,5046,5162,43,
+ 4766,4763,4561,635,3777,3850,4433,3872,5163,566,
+ 3828,3806,5155,5422,5420,5429,5155,5428,5424,5425,
+ 5423,5426,5427,5430,5421,3916,3894,1842,5178,1045,
+ 644,773,5180,673,4059,770,1,5181,5179,628,
+ 5174,5176,5177,5175,3601,165,43,1,4998,4998,
+ 5197,4995,1158,1158,5484,5484,362,1295,2058,4109,
+ 5155,4944,4941,145,4766,4763,4561,635,3777,3850,
+ 4433,3872,5162,566,3828,3806,41,5422,5420,5429,
+ 5155,5428,5424,5425,5423,5426,5427,5430,5421,3916,
+ 3894,2302,5178,1045,644,773,5180,673,4059,770,
+ 5155,5181,5179,628,5174,5176,5177,5175,165,1,
+ 5034,5030,2647,5195,916,509,4433,5155,54,362,
+ 5155,1295,5172,3111,3938,1037,5161,43,43,1,
+ 4854,4850,4561,4858,3777,3850,4433,3872,5155,4814,
+ 3828,3806,362,4841,4847,4820,5172,4823,4835,4832,
+ 4838,4829,4826,4817,4844,3916,3894,1842,5178,1045,
+ 644,773,5180,673,4059,770,4136,5181,5179,628,
+ 5174,5176,5177,5175,439,43,43,5155,5197,5155,
+ 4992,871,4989,135,96,1,1,1295,1,5160,
+ 5004,2333,5004,43,43,43,4766,4763,4561,635,
+ 3777,3850,4433,3872,5159,566,3828,3806,5155,5422,
+ 5420,5429,1376,5428,5424,5425,5423,5426,5427,5430,
+ 5421,3916,3894,5155,5178,1045,644,773,5180,673,
+ 4059,770,5155,5181,5179,628,5174,5176,5177,5175,
+ 43,4766,4763,4561,635,3777,3850,4433,3872,136,
+ 566,3828,3806,3367,5422,5420,5429,2333,5428,5424,
+ 5425,5423,5426,5427,5430,5421,3916,3894,1,5178,
+ 1045,644,773,5180,673,4059,770,5133,5181,5179,
+ 628,5174,5176,5177,5175,99,43,43,422,5197,
+ 30,5082,5155,5079,1,5034,5030,2841,1295,916,
+ 4109,4433,5155,1879,43,4766,4763,4561,635,3777,
+ 3850,4433,3872,5158,566,3828,3806,143,5422,5420,
+ 5429,347,5428,5424,5425,5423,5426,5427,5430,5421,
+ 3916,3894,5155,5178,1045,644,773,5180,673,4059,
+ 770,5162,5181,5179,628,5174,5176,5177,5175,1,
+ 33,4986,612,230,5618,5612,4986,5616,5155,3082,
+ 5610,5611,1295,1,80,312,2977,3164,2852,1842,
+ 5415,5155,340,5551,118,5641,5642,5621,4769,5619,
+ 43,42,4781,4778,5197,5155,4766,4763,643,5197,
+ 5223,5224,5155,4766,4763,119,5197,860,5418,5491,
+ 5492,3533,5412,5419,5391,5417,5416,5413,5414,5392,
+ 5622,1842,3642,1411,1446,5643,5620,318,2807,2232,
+ 5076,5155,5172,5173,340,1782,916,121,4433,340,
+ 120,5155,1252,3533,4081,340,3533,5632,5631,5644,
+ 5613,5614,5637,5638,130,1792,5635,5636,5615,5617,
+ 5639,5640,5645,5625,5626,5627,5623,5624,5633,5634,
+ 5629,5628,5630,5155,3960,1842,612,654,5618,5612,
+ 3982,5616,2499,5155,5610,5611,1,5034,5030,5064,
+ 1,5067,5163,5070,793,5155,3510,3487,2530,5641,
+ 5642,5621,2223,5619,5584,5585,5586,41,5007,5007,
+ 5155,95,5007,434,4799,4784,49,4971,4971,3084,
+ 5155,860,41,5001,5001,5155,5172,5173,3510,3487,
+ 2616,3510,3487,400,5622,5155,5155,1411,1446,5643,
+ 5620,4772,5058,5155,3333,5155,5061,2445,2418,1003,
+ 5155,4977,4974,4968,5165,5155,5162,240,5164,2608,
+ 4953,5632,5631,5644,5613,5614,5637,5638,448,1,
+ 5635,5636,5615,5617,5639,5640,5645,5625,5626,5627,
+ 5623,5624,5633,5634,5629,5628,5630,43,4766,4763,
+ 4561,635,3777,3850,4433,3872,4775,566,3828,3806,
+ 5155,5422,5420,5429,2224,5428,5424,5425,5423,5426,
+ 5427,5430,5421,3916,3894,3585,5178,1045,644,773,
+ 5180,673,4059,770,5155,5181,5179,628,5174,5176,
+ 5177,5175,392,5172,5173,1244,43,4766,4763,4561,
+ 635,3777,3850,4433,3872,45,566,3828,3806,5155,
+ 5422,5420,5429,5155,5428,5424,5425,5423,5426,5427,
+ 5430,5421,3916,3894,4137,5178,1045,644,773,5180,
+ 673,4059,770,4796,5181,5179,628,5174,5176,5177,
+ 5175,43,4766,4763,3231,635,3777,3850,4433,3872,
+ 384,566,3828,3806,1295,5422,5420,5429,53,5428,
+ 5424,5425,5423,5426,5427,5430,5421,3916,3894,3345,
+ 5178,1045,644,773,5180,673,4059,770,4802,5181,
+ 5179,628,5174,5176,5177,5175,43,4766,4763,4561,
+ 635,3777,3850,4433,3872,2578,566,3828,3806,5155,
+ 5422,5420,5429,3313,5428,5424,5425,5423,5426,5427,
+ 5430,5421,3916,3894,5155,5178,1045,644,773,5180,
+ 673,4059,770,5155,5181,5179,628,5174,5176,5177,
+ 5175,43,4766,4763,4561,635,3777,3850,4433,3872,
+ 5155,566,3828,3806,5155,5422,5420,5429,5155,5428,
+ 5424,5425,5423,5426,5427,5430,5421,3916,3894,5155,
+ 5178,1045,644,773,5180,673,4059,770,714,5181,
+ 5179,628,5174,5176,5177,5175,5155,4766,4763,5155,
+ 5197,132,5155,5027,5024,2988,728,5155,5042,5038,
+ 5422,5420,5429,5415,5428,5424,5425,5423,5426,5427,
+ 5430,5421,5155,51,5055,5055,5155,7365,6682,2499,
+ 5155,7365,6682,1,5155,5155,4434,4622,4635,5195,
+ 2231,5418,5491,5492,5195,5412,5419,5391,5417,5416,
+ 5413,5414,5392,244,4934,4930,5155,4938,5155,5548,
+ 5052,117,4980,728,777,5549,5550,4921,4927,4900,
+ 4885,4903,4915,4912,4918,4909,4906,4897,4924,5155,
+ 5155,5155,4648,4650,33,384,384,4962,384,384,
+ 4962,384,4962,4965,2445,2418,361,4962,4876,4870,
+ 4867,384,4894,4873,4864,4879,4882,4891,4888,4861,
+ 5155,1,4769,4083,2977,5155,5548,5661,1,4289,
+ 4947,777,5549,5550,3176,1,5155,5155,5127,384,
+ 384,384,4965,384,384,384,384,384,384,384,
+ 384,36,385,385,4956,385,385,4956,385,4956,
+ 4959,3960,116,226,4956,3108,4965,3982,385,1842,
+ 374,5155,3274,5155,5155,5155,5155,5422,5420,5429,
+ 5415,5428,5424,5425,5423,5426,5427,5430,5421,5155,
+ 104,5130,4187,4950,1,3767,385,385,385,4959,
+ 385,385,385,385,385,385,385,385,5418,5491,
+ 5492,5155,5412,5419,5391,5417,5416,5413,5414,5392,
+ 442,290,714,4959,1,5118,5118,231,5118,231,
+ 231,231,231,5121,3366,5590,5604,231,4659,3176,
+ 320,7727,1,5118,5118,231,5118,231,231,231,
+ 231,231,3960,1,1,231,5155,107,3982,7727,
+ 4500,5115,5165,195,78,1,5164,195,1,1,
+ 2979,103,4082,5155,5161,131,3572,523,167,5115,
+ 420,3255,281,2216,2979,5112,3086,731,1842,3313,
+ 5155,622,5085,5155,414,5155,3092,223,5155,3255,
+ 5155,2216,516,2499,3086,39,5649,443,1,5118,
+ 5118,231,5118,231,231,231,231,5124,3712,2008,
+ 5155,231,502,4664,5649,7727,1,5118,5118,231,
+ 5118,231,231,231,231,5121,4983,5160,500,231,
+ 523,167,5155,7727,5155,5115,3080,1,5118,5118,
+ 231,5118,231,231,231,231,5121,5155,5155,5155,
+ 231,2145,3582,5115,7727,3255,2095,2216,2445,2418,
+ 3086,5337,2895,3003,5155,309,5155,4586,5155,4589,
+ 5155,222,5155,3255,5115,2216,3768,5155,3086,4435,
+ 5649,5155,5155,5155,3052,4607,4168,5155,5155,223,
+ 5155,4665,2,504,3255,4597,2216,3747,5649,3086,
+ 1,5118,5118,231,5118,231,231,231,231,231,
+ 223,3313,5155,231,5155,5155,5155,7727,3050,5649,
+ 41,1,5118,5118,231,5118,231,231,231,231,
+ 231,4343,5155,5155,231,2895,5155,5115,7727,1,
+ 5118,5118,231,5118,231,231,231,231,231,5155,
+ 5155,5155,231,5155,1929,5155,7727,3255,5115,2216,
+ 985,5336,3086,5155,5155,5155,5155,5155,5155,5155,
+ 5155,5155,5155,5155,5155,5155,5115,5155,3255,5155,
+ 2216,5155,5649,3086,5155,5155,5155,5155,5155,5155,
+ 5155,5155,5155,5155,5155,5155,3255,5155,2216,5155,
+ 5155,3086,5155,5649,5155,5155,5155,5155,5155,5155,
+ 5155,5155,5155,5155,5155,5155,5155,5155,5155,5155,
+ 5155,5649
};
};
public final static char termAction[] = TermAction.termAction;
@@ -1673,59 +1646,58 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface Asb {
public final static char asb[] = {0,
- 9,7,686,1,1116,848,848,848,848,109,
- 1116,319,319,385,319,543,670,545,687,687,
- 687,687,687,687,687,687,687,321,327,332,
- 329,336,334,341,339,343,342,344,160,345,
- 686,686,81,81,81,81,726,505,53,53,
- 316,81,290,157,319,319,53,416,321,157,
- 157,148,670,1075,80,961,111,771,686,319,
- 321,915,915,505,686,687,687,687,687,687,
- 687,687,687,687,687,687,687,687,687,687,
- 687,687,687,687,686,686,686,686,686,686,
- 686,686,686,686,686,686,687,157,836,836,
- 836,836,501,157,53,53,207,760,771,555,
- 771,550,771,552,771,755,109,726,290,290,
- 53,687,207,249,559,377,376,213,778,778,
- 109,545,290,80,686,724,960,723,726,725,
- 723,157,290,329,329,327,327,327,334,334,
- 334,334,332,332,339,336,336,342,341,343,
- 739,344,1116,1116,1116,1116,726,726,836,798,
- 835,836,316,726,312,457,726,639,501,741,
- 637,555,745,726,726,726,501,836,148,290,
- 360,157,561,563,726,961,687,81,325,113,
- 157,111,726,726,848,725,961,686,686,686,
- 686,686,1116,1116,670,211,312,457,639,638,
- 639,501,639,745,745,726,501,726,157,381,
- 369,380,563,501,724,157,325,207,960,111,
- 726,724,157,157,157,157,505,505,312,311,
- 752,726,457,739,848,503,1068,729,457,639,
- 639,850,726,745,752,750,751,726,858,686,
- 378,378,298,298,726,557,207,598,157,726,
- 325,326,325,686,113,1073,321,111,157,157,
- 312,961,836,848,723,871,731,720,1116,838,
- 108,851,726,752,687,726,858,686,686,563,
- 961,157,561,369,858,224,325,505,687,290,
- 1073,724,968,472,724,639,639,720,365,207,
- 841,687,739,306,850,726,109,109,726,1019,
- 563,724,858,326,157,290,366,51,877,202,
- 1116,293,1004,472,724,639,555,109,731,720,
- 687,687,726,726,726,1019,157,1019,922,202,
- 51,967,555,555,868,109,835,848,631,631,
- 366,555,650,838,726,1116,726,726,1116,1012,
- 1019,968,967,366,305,365,157,967,967,967,
- 109,726,472,968,472,834,834,1027,651,109,
- 726,505,564,1012,967,686,1031,720,366,752,
- 967,967,967,726,726,472,81,81,1027,650,
- 739,687,739,366,1116,1116,1116,651,1116,726,
- 168,366,366,726,555,157,156,1014,752,157,
- 1029,752,752,726,366,835,642,1116,642,739,
- 651,670,670,668,875,670,366,366,455,1027,
- 81,1014,1029,366,596,598,157,720,157,668,
- 202,1116,157,1027,751,631,157,157,237,651,
- 455,651,366,202,686,651,648,1029,834,555,
- 555,1108,686,649,505,366,157,723,651,157,
- 366,651
+ 584,7,160,1,949,650,650,650,650,65,
+ 949,529,529,1042,529,450,144,452,161,161,
+ 161,161,161,161,161,161,161,531,537,542,
+ 539,546,544,551,549,553,552,554,216,555,
+ 160,160,37,37,37,37,200,412,9,9,
+ 526,37,404,113,529,529,9,1073,531,113,
+ 113,104,144,908,36,1036,67,767,160,529,
+ 531,711,711,412,160,161,161,161,161,161,
+ 161,161,161,161,161,161,161,161,161,161,
+ 161,161,161,161,160,160,160,160,160,160,
+ 160,160,160,160,160,160,161,113,832,832,
+ 832,832,314,113,9,9,263,756,767,519,
+ 767,514,767,516,767,751,65,200,404,404,
+ 9,161,263,363,475,465,464,318,774,774,
+ 65,452,404,36,160,198,1035,197,200,199,
+ 197,113,404,539,539,537,537,537,544,544,
+ 544,544,542,542,549,546,546,552,551,553,
+ 638,554,949,949,949,949,200,200,832,794,
+ 831,832,526,200,522,269,200,409,314,354,
+ 407,519,358,200,200,200,314,832,104,404,
+ 570,113,477,479,200,1036,161,37,535,69,
+ 113,67,200,200,650,199,1036,160,160,160,
+ 160,160,949,949,144,267,522,269,409,408,
+ 409,314,409,358,358,200,314,200,113,469,
+ 457,468,479,314,198,113,535,263,1035,67,
+ 200,198,113,113,113,113,412,412,522,521,
+ 581,200,269,638,517,650,316,990,628,269,
+ 409,409,662,200,358,581,579,580,200,652,
+ 160,466,466,203,203,200,473,263,718,113,
+ 200,535,536,535,160,69,995,531,67,113,
+ 113,522,1036,673,519,832,650,197,836,630,
+ 194,949,640,64,663,200,581,161,200,652,
+ 160,160,479,1036,113,477,457,652,329,535,
+ 412,161,404,995,198,673,673,847,285,198,
+ 409,409,194,575,263,643,161,638,211,662,
+ 200,65,65,200,898,479,198,652,536,113,
+ 404,576,581,626,997,258,949,517,883,673,
+ 673,285,198,409,519,65,630,194,161,161,
+ 200,200,200,898,113,898,846,258,626,670,
+ 65,581,831,650,840,840,576,519,124,640,
+ 200,949,200,200,949,891,898,847,673,576,
+ 210,575,113,65,200,285,847,285,830,830,
+ 906,125,65,200,412,480,891,673,160,953,
+ 194,576,200,200,285,37,37,906,124,638,
+ 161,638,576,949,949,949,125,949,200,224,
+ 576,576,200,519,113,112,893,581,113,951,
+ 200,576,831,116,949,116,638,125,144,144,
+ 142,834,144,576,576,1112,906,37,893,951,
+ 576,512,718,113,194,113,142,258,949,113,
+ 906,580,840,113,113,342,125,1112,125,576,
+ 258,160,125,122,951,830,519,519,941,160,
+ 123,412,576,113,197,125,113,576,125
};
};
public final static char asb[] = Asb.asb;
@@ -1733,118 +1705,118 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface Asr {
public final static byte asr[] = {0,
- 9,72,118,73,13,66,121,0,15,16,
- 32,64,17,33,34,18,19,20,65,7,
- 35,21,22,36,37,38,57,39,40,10,
- 23,24,25,41,42,43,1,2,3,26,
- 27,8,6,11,12,5,30,4,44,74,
- 29,0,32,64,33,34,65,7,35,36,
- 37,38,57,39,40,41,42,43,29,26,
- 27,8,6,11,12,5,30,61,44,3,
- 49,15,16,63,46,17,69,50,14,18,
- 51,52,19,20,53,54,21,22,55,70,
- 56,10,71,23,24,47,25,45,1,2,
- 4,0,96,90,11,12,91,92,88,89,
- 28,93,94,97,98,99,100,101,102,117,
- 72,95,67,104,105,106,107,108,109,110,
- 111,112,113,118,68,13,121,61,1,2,
- 8,6,4,3,48,66,73,9,0,61,
- 72,95,66,118,73,68,121,15,16,32,
- 64,17,33,34,18,19,20,65,35,21,
- 22,36,37,38,57,39,40,10,23,24,
- 25,41,42,43,29,26,27,11,12,30,
- 44,9,13,7,5,3,1,2,8,4,
- 6,0,15,16,17,18,19,20,21,22,
- 23,24,25,49,46,50,14,51,52,53,
- 54,55,56,45,47,13,9,73,7,1,
- 2,48,3,8,6,5,4,0,64,65,
- 3,10,33,37,35,32,40,16,25,15,
- 21,19,20,22,23,18,17,24,41,44,
- 42,43,29,39,34,38,5,7,4,26,
- 27,8,6,11,12,30,36,1,2,118,
- 9,0,1,2,123,59,0,76,59,61,
- 72,95,73,48,3,9,66,13,67,0,
- 57,46,7,47,5,1,2,4,76,59,
+ 9,71,118,72,13,66,121,0,31,64,
+ 32,33,65,7,34,35,36,38,58,39,
+ 40,41,42,43,29,26,27,8,6,11,
+ 12,5,30,61,44,3,49,14,15,63,
+ 46,16,68,50,17,18,51,52,19,20,
+ 53,54,21,22,55,69,56,10,70,23,
+ 24,47,25,45,1,2,4,0,96,90,
+ 11,12,91,92,88,89,28,93,94,97,
+ 98,99,100,101,102,117,71,95,67,104,
+ 105,106,107,108,109,110,111,112,113,118,
+ 73,13,121,61,1,2,8,6,4,3,
+ 48,66,72,9,0,82,114,115,116,37,
+ 71,119,122,73,74,75,59,57,62,77,
+ 79,86,84,76,81,83,85,87,60,78,
+ 80,13,9,49,63,46,68,50,17,51,
+ 52,53,54,55,69,56,70,45,47,58,
+ 64,65,10,32,36,34,31,40,15,25,
+ 14,21,19,20,22,23,18,16,24,41,
+ 44,42,43,29,39,33,38,26,27,11,
+ 12,30,35,8,6,3,4,7,5,1,
+ 2,0,75,60,61,71,95,72,48,3,
+ 9,66,13,67,0,61,71,95,66,118,
+ 72,73,121,14,15,31,64,16,32,33,
+ 18,19,20,65,34,21,22,35,36,38,
+ 58,39,40,10,23,24,25,41,42,43,
+ 29,26,27,11,12,30,44,9,13,7,
+ 5,3,1,2,8,4,6,0,82,57,
+ 7,114,115,116,59,9,3,8,6,5,
+ 71,73,13,74,49,14,15,63,46,16,
+ 68,50,17,18,51,52,19,20,53,54,
+ 21,22,55,69,56,10,70,23,45,24,
+ 47,25,4,1,2,37,0,14,15,16,
+ 18,19,20,21,22,23,24,25,49,46,
+ 50,17,51,52,53,54,55,56,45,47,
+ 13,9,72,7,1,2,48,3,8,6,
+ 5,4,0,4,60,71,0,1,2,9,
+ 73,0,64,65,3,10,32,36,34,31,
+ 40,15,25,14,21,19,20,22,23,18,
+ 16,24,41,44,42,43,29,39,33,38,
+ 5,7,4,26,27,8,6,11,12,30,
+ 35,1,2,118,9,0,4,28,60,71,
+ 0,9,72,14,15,31,16,32,33,18,
+ 19,20,34,21,22,35,36,38,58,39,
+ 40,10,23,24,25,41,42,43,29,3,
+ 26,27,8,6,11,12,30,4,44,5,
+ 7,1,2,65,64,0,8,6,4,5,
+ 7,1,2,3,48,61,67,66,9,72,
+ 95,0,7,5,3,48,6,8,95,49,
+ 14,15,46,16,68,50,17,18,51,52,
+ 19,20,53,54,21,22,55,69,56,10,
+ 70,23,45,24,47,25,1,2,4,72,
+ 9,63,0,37,71,4,1,2,60,0,
+ 58,46,7,47,5,1,2,4,75,60,
120,103,26,27,48,3,96,90,6,91,
92,11,12,89,88,28,93,94,97,98,
- 8,99,100,101,61,95,73,121,67,104,
- 105,106,107,108,109,110,111,112,113,72,
- 118,68,102,117,66,13,9,0,8,6,
- 4,5,7,1,2,3,48,61,67,66,
- 9,73,95,0,49,15,16,63,46,17,
- 69,50,14,18,51,52,19,20,53,54,
- 21,22,55,70,56,10,71,23,45,24,
- 47,25,1,2,4,65,64,11,12,6,
- 91,92,99,8,100,5,30,28,61,107,
- 108,104,105,106,112,111,113,89,88,109,
- 110,97,98,93,94,101,102,26,27,66,
- 90,103,3,48,67,0,75,7,114,115,
- 116,58,9,3,8,6,5,72,68,13,
- 74,49,15,16,63,46,17,69,50,14,
- 18,51,52,19,20,53,54,21,22,55,
- 70,56,10,71,23,45,24,47,25,4,
- 1,2,31,0,9,73,15,16,32,17,
- 33,34,18,19,20,35,21,22,36,37,
- 38,57,39,40,10,23,24,25,41,42,
- 43,29,3,26,27,8,6,11,12,30,
- 4,44,5,7,1,2,65,64,0,31,
- 72,4,1,2,59,0,7,5,3,48,
- 6,8,95,49,15,16,46,17,69,50,
- 14,18,51,52,19,20,53,54,21,22,
- 55,70,56,10,71,23,45,24,47,25,
- 1,2,4,73,9,63,0,49,15,16,
- 63,46,17,69,50,14,18,51,52,19,
- 20,53,54,21,22,55,70,56,10,71,
+ 8,99,100,101,61,95,72,121,67,104,
+ 105,106,107,108,109,110,111,112,113,71,
+ 118,73,102,117,66,13,9,0,67,66,
+ 73,9,0,14,15,31,64,16,32,33,
+ 18,19,20,65,7,34,21,22,35,36,
+ 38,58,39,40,10,23,24,25,41,42,
+ 43,1,2,3,26,27,8,6,11,12,
+ 5,30,4,44,74,29,0,13,9,7,
+ 5,3,1,2,6,8,4,71,0,60,
+ 66,0,71,9,48,3,67,66,13,28,
+ 0,46,58,47,9,61,95,67,66,72,
+ 0,45,1,2,4,114,115,116,0,60,
+ 67,0,62,49,14,15,63,46,16,68,
+ 50,82,17,18,51,52,19,20,53,57,
+ 54,21,22,55,69,56,10,70,23,59,
+ 45,24,47,25,9,3,8,6,73,13,
+ 7,4,37,5,1,2,0,49,14,15,
+ 63,46,16,68,50,17,18,51,52,19,
+ 20,53,54,21,22,55,69,56,10,70,
23,45,24,47,25,1,2,4,95,0,
- 61,67,66,1,2,0,4,28,59,72,
- 0,75,114,115,116,31,72,119,122,68,
- 74,76,58,60,62,78,80,86,84,77,
- 82,83,85,87,59,79,81,13,9,49,
- 63,46,69,50,14,51,52,53,54,55,
- 70,56,71,45,47,57,64,65,10,33,
- 37,35,32,40,16,25,15,21,19,20,
- 22,23,18,17,24,41,44,42,43,29,
- 39,34,38,26,27,11,12,30,36,8,
- 6,3,4,7,5,1,2,0,13,9,
- 7,5,3,1,2,6,8,4,72,0,
- 4,59,72,0,1,2,9,68,0,67,
- 66,68,9,0,10,69,63,70,71,16,
- 25,15,21,19,20,22,23,18,17,24,
- 76,59,72,95,118,68,121,7,54,55,
- 56,45,47,1,2,53,52,51,14,50,
- 5,4,46,49,9,73,13,48,3,120,
- 96,103,90,26,27,8,6,11,12,91,
- 92,88,89,28,93,94,97,98,99,100,
- 101,102,117,104,105,106,107,108,109,110,
- 111,112,113,67,66,61,0,59,66,0,
- 72,9,48,3,67,66,13,28,0,45,
- 1,2,4,114,115,116,0,46,57,47,
- 9,61,95,67,66,73,0,59,67,0,
- 59,72,76,0,77,0,63,46,17,69,
+ 10,68,63,69,70,15,25,14,21,19,
+ 20,22,23,18,16,24,75,60,71,95,
+ 118,73,121,7,54,55,56,45,47,1,
+ 2,53,52,51,17,50,5,4,46,49,
+ 9,72,13,48,3,120,96,103,90,26,
+ 27,8,6,11,12,91,92,88,89,28,
+ 93,94,97,98,99,100,101,102,117,104,
+ 105,106,107,108,109,110,111,112,113,67,
+ 66,61,0,76,0,60,71,75,0,61,
+ 67,66,1,2,0,60,63,46,16,68,
50,18,51,52,19,20,53,54,21,22,
- 55,70,56,10,71,23,45,24,47,25,
- 16,15,49,9,3,8,6,13,58,60,
- 62,75,14,28,7,4,31,5,1,2,
- 0,62,49,15,16,63,46,17,69,50,
- 75,14,18,51,52,19,20,53,60,54,
- 21,22,55,70,56,10,71,23,58,45,
- 24,47,25,9,3,8,4,13,59,6,
- 7,1,2,5,31,0,68,63,46,17,
- 69,50,18,51,52,19,20,53,54,21,
- 22,55,70,56,71,23,45,24,47,25,
- 16,15,49,9,3,8,6,13,58,62,
- 75,14,31,7,1,2,5,4,10,60,
- 0,46,47,76,3,59,72,13,57,9,
- 61,95,67,66,73,0,119,0,9,68,
- 64,65,57,26,27,8,6,11,12,30,
- 36,3,41,44,42,43,29,39,34,38,
- 16,25,15,21,19,20,22,23,18,17,
- 24,33,37,35,32,40,59,7,1,2,
- 4,10,5,0,64,65,26,27,11,12,
- 30,36,41,44,42,43,29,39,34,38,
- 16,25,15,21,19,20,22,23,18,17,
- 24,10,33,37,35,32,40,8,6,4,
- 48,7,5,1,2,3,0
+ 55,69,56,70,23,45,24,47,25,15,
+ 14,49,9,3,8,6,13,59,62,82,
+ 17,37,7,1,2,5,4,10,57,0,
+ 46,47,75,3,60,71,13,58,9,61,
+ 95,67,66,72,0,119,0,64,65,26,
+ 27,11,12,30,35,41,44,42,43,29,
+ 39,33,38,15,25,14,21,19,20,22,
+ 23,18,16,24,10,32,36,34,31,40,
+ 8,6,4,48,7,5,1,2,3,0,
+ 9,73,64,65,58,26,27,8,6,11,
+ 12,30,35,3,41,44,42,43,29,39,
+ 33,38,15,25,14,21,19,20,22,23,
+ 18,16,24,32,36,34,31,40,60,7,
+ 1,2,4,10,5,0,63,46,16,68,
+ 50,18,51,52,19,20,53,54,21,22,
+ 55,69,56,10,70,23,45,24,47,25,
+ 15,14,49,9,3,8,13,59,57,62,
+ 82,17,28,4,6,7,1,2,5,37,
+ 0,49,14,15,63,46,16,68,50,17,
+ 18,51,52,19,20,53,54,21,22,55,
+ 69,56,10,70,23,45,24,47,25,1,
+ 2,4,65,64,11,12,6,91,92,99,
+ 8,100,5,30,28,61,107,108,104,105,
+ 106,112,111,113,89,88,109,110,97,98,
+ 93,94,101,102,26,27,66,90,103,3,
+ 48,67,0
};
};
public final static byte asr[] = Asr.asr;
@@ -1852,59 +1824,58 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface Nasb {
public final static char nasb[] = {0,
- 52,12,37,12,12,12,12,12,12,204,
- 12,12,12,110,12,55,240,190,37,37,
- 249,37,37,37,37,37,37,12,12,12,
- 12,12,12,12,12,12,12,12,37,12,
- 37,187,214,214,214,214,190,114,130,130,
- 63,5,104,261,12,12,130,112,12,261,
- 261,169,1,37,66,45,12,12,187,12,
- 12,29,29,114,187,37,37,37,37,37,
- 37,37,37,37,37,37,37,37,37,37,
- 37,37,37,37,37,37,37,37,37,37,
- 37,37,37,37,37,187,37,261,12,12,
- 12,12,49,261,35,35,203,223,224,12,
- 224,117,224,88,224,217,10,190,104,104,
- 35,37,203,99,168,59,59,12,12,12,
- 10,190,104,214,96,19,180,18,253,190,
- 18,261,104,12,12,12,12,12,12,12,
+ 164,12,43,12,12,12,12,12,12,157,
+ 12,12,12,251,12,23,259,120,43,43,
+ 232,43,43,43,43,43,43,12,12,12,
+ 12,12,12,12,12,12,12,12,43,12,
+ 43,145,256,256,256,256,120,97,118,118,
+ 49,5,91,223,12,12,118,253,12,223,
+ 223,160,1,43,78,39,12,12,145,12,
+ 12,31,31,97,145,43,43,43,43,43,
+ 43,43,43,43,43,43,43,43,43,43,
+ 43,43,43,43,43,43,43,43,43,43,
+ 43,43,43,43,43,145,43,223,12,12,
+ 12,12,104,223,41,41,156,202,203,12,
+ 203,123,203,54,203,196,10,120,91,91,
+ 41,43,156,86,159,13,13,12,12,12,
+ 10,120,91,256,60,214,100,213,236,120,
+ 213,223,91,12,12,12,12,12,12,12,
12,12,12,12,12,12,12,12,12,12,
- 12,12,12,12,12,12,119,11,12,12,
- 12,12,237,190,130,130,119,130,256,130,
- 12,12,130,256,190,11,12,12,235,104,
- 12,261,146,130,190,45,37,214,130,91,
- 261,12,11,190,12,228,45,37,187,187,
- 187,187,12,12,35,12,68,173,130,130,
- 108,44,108,130,254,11,44,119,261,12,
- 123,12,143,43,119,261,47,237,180,12,
- 253,119,261,261,261,261,114,114,130,68,
- 75,190,208,12,12,12,23,160,173,108,
- 108,231,119,254,75,12,12,119,130,37,
- 12,12,59,59,190,122,203,143,261,119,
- 130,83,12,187,237,229,12,12,261,261,
- 68,45,12,12,204,130,197,125,12,12,
- 204,137,256,75,37,254,68,37,37,130,
- 45,261,146,13,130,12,47,114,37,104,
- 229,19,244,130,256,130,77,15,208,203,
- 12,37,12,79,193,256,204,204,11,130,
- 143,19,68,83,261,104,208,12,244,161,
- 12,254,23,143,19,77,61,25,125,15,
- 37,37,11,256,256,156,261,130,130,197,
- 12,130,12,12,12,204,12,12,139,139,
- 208,61,210,12,256,12,11,11,12,130,
- 156,244,130,208,94,12,261,132,130,130,
- 204,256,143,244,130,12,12,130,151,25,
- 11,114,259,68,132,96,37,125,208,75,
- 244,132,132,256,81,143,214,214,226,184,
- 12,37,12,208,12,12,12,185,12,254,
- 206,208,208,254,106,261,261,130,75,261,
- 130,75,75,81,208,12,158,12,12,12,
- 185,263,263,141,12,263,208,208,12,130,
- 214,156,70,208,12,214,261,125,261,213,
- 130,12,261,226,75,139,261,261,130,185,
- 12,185,208,125,187,185,158,70,12,106,
- 106,123,37,12,85,208,261,18,185,261,
- 208,185
+ 12,12,12,12,12,12,125,11,12,12,
+ 12,12,190,120,118,118,125,118,218,118,
+ 12,12,118,218,120,11,12,12,188,91,
+ 12,223,137,118,120,39,43,256,118,57,
+ 223,12,11,120,12,107,39,43,145,145,
+ 145,145,12,12,41,12,15,244,118,118,
+ 76,38,76,118,237,11,38,125,223,12,
+ 111,12,177,37,125,223,80,190,100,12,
+ 236,125,223,223,223,223,97,97,118,15,
+ 70,120,130,12,148,12,12,95,167,244,
+ 76,76,184,125,237,70,12,12,125,118,
+ 43,12,12,13,13,120,110,156,177,223,
+ 125,118,29,12,145,190,108,12,12,223,
+ 223,15,39,118,12,12,12,157,118,150,
+ 113,12,12,157,84,218,70,43,237,15,
+ 43,43,118,39,223,137,208,118,12,80,
+ 97,43,91,108,214,225,118,239,118,218,
+ 118,72,210,130,156,12,43,12,52,180,
+ 218,157,157,11,118,177,214,15,29,223,
+ 91,130,70,12,239,168,12,237,95,239,
+ 225,177,214,72,27,17,113,210,43,43,
+ 11,218,218,82,223,118,118,150,12,12,
+ 157,70,12,12,230,230,130,27,205,12,
+ 218,12,11,11,12,118,82,239,118,130,
+ 93,12,223,157,218,177,239,118,12,12,
+ 118,132,17,11,97,221,15,225,60,43,
+ 113,130,218,148,177,256,256,21,142,12,
+ 43,12,130,12,12,12,143,12,237,128,
+ 130,130,237,63,223,223,118,70,223,118,
+ 148,130,12,74,12,12,12,143,263,263,
+ 175,12,263,130,130,12,118,256,82,65,
+ 130,12,256,223,113,223,255,118,12,223,
+ 21,70,230,223,223,118,143,12,143,130,
+ 113,145,143,74,65,12,63,63,111,43,
+ 12,193,130,223,213,143,223,130,143
};
};
public final static char nasb[] = Nasb.nasb;
@@ -1912,33 +1883,33 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface Nasr {
public final static char nasr[] = {0,
- 3,13,7,10,148,146,120,145,144,5,
- 2,0,96,95,53,63,54,5,7,10,
- 2,0,152,0,166,5,165,0,5,2,
- 10,7,135,0,44,4,5,7,10,2,
- 13,0,53,2,65,0,139,0,53,65,
- 0,4,169,0,2,7,3,0,68,0,
- 156,0,4,188,0,170,0,60,0,13,
- 2,10,7,5,64,0,155,0,184,0,
- 151,0,137,0,4,173,0,5,1,0,
- 4,172,0,178,0,4,31,0,13,2,
- 10,7,5,72,0,59,0,111,0,4,
- 44,167,0,4,98,0,5,43,2,3,
- 0,34,96,95,63,53,7,10,2,4,
- 0,105,4,47,69,0,186,0,110,0,
- 39,176,23,4,0,23,4,5,91,0,
- 4,47,39,174,0,124,0,114,0,38,
- 53,7,10,2,4,154,0,34,95,96,
- 4,0,4,47,69,103,45,5,0,65,
- 134,133,0,64,47,74,4,39,0,2,
- 43,0,5,103,162,0,2,63,53,7,
- 10,4,91,5,0,4,39,38,0,4,
- 64,0,175,4,44,0,2,5,120,116,
- 117,118,13,88,0,157,0,2,115,0,
- 5,103,185,0,96,95,5,54,0,4,
- 44,39,0,4,47,69,73,0,5,7,
- 10,13,3,1,0,2,61,0,44,4,
- 34,0,4,44,104,0
+ 3,13,7,10,147,145,119,144,143,5,
+ 2,0,66,0,60,0,164,5,163,0,
+ 155,0,2,7,3,0,154,0,136,0,
+ 5,2,10,7,134,0,48,2,65,0,
+ 44,4,5,7,10,2,13,0,4,186,
+ 0,182,0,5,1,0,4,170,0,4,
+ 31,0,59,0,13,2,10,7,5,64,
+ 0,153,0,111,0,108,0,168,0,138,
+ 0,123,0,184,0,13,2,10,7,5,
+ 75,0,176,0,150,0,4,96,0,65,
+ 133,132,0,48,65,0,2,112,0,34,
+ 94,93,63,48,7,10,2,4,0,2,
+ 43,0,5,43,2,3,0,4,39,38,
+ 0,4,47,39,172,0,24,4,5,89,
+ 0,64,47,76,4,39,0,103,0,2,
+ 63,48,7,10,4,89,5,0,34,93,
+ 94,4,0,4,167,0,38,48,7,10,
+ 2,4,152,0,39,174,24,4,0,5,
+ 101,160,0,5,101,183,0,94,93,5,
+ 54,0,4,171,0,2,5,119,115,116,
+ 117,13,86,0,4,64,0,94,93,48,
+ 63,54,5,7,10,2,0,2,61,0,
+ 44,4,34,0,113,4,47,74,0,107,
+ 0,5,7,10,13,3,1,0,4,47,
+ 74,83,0,4,47,74,101,45,5,0,
+ 4,44,165,0,173,4,44,0,4,44,
+ 39,0,4,44,102,0
};
};
public final static char nasr[] = Nasr.nasr;
@@ -1947,18 +1918,18 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface TerminalIndex {
public final static char terminalIndex[] = {0,
115,116,2,32,14,11,81,10,117,102,
- 12,13,122,68,50,54,62,70,76,77,
+ 12,13,122,50,54,62,68,70,76,77,
88,89,104,107,109,8,9,20,114,15,
- 95,57,63,69,86,90,92,96,99,101,
+ 57,63,69,86,90,92,95,96,99,101,
111,112,113,46,106,56,108,1,49,66,
- 72,75,78,85,91,100,97,105,3,79,
- 21,48,55,60,80,45,34,121,65,93,
- 103,31,120,123,67,98,110,51,52,58,
- 59,61,71,73,74,87,94,18,19,7,
+ 72,75,78,85,91,100,79,97,105,3,
+ 21,48,55,60,80,45,34,65,93,103,
+ 31,120,121,123,98,110,51,52,58,59,
+ 61,67,71,73,74,87,94,18,19,7,
16,17,22,23,33,5,24,25,26,27,
28,29,6,35,36,37,38,39,40,41,
42,43,44,82,83,84,30,119,53,4,
- 125,64,124,118
+ 124,64,118
};
};
public final static char terminalIndex[] = TerminalIndex.terminalIndex;
@@ -1966,26 +1937,26 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface NonterminalIndex {
public final static char nonterminalIndex[] = {0,
- 132,137,139,0,0,138,236,136,0,230,
- 135,0,146,134,0,0,145,151,0,0,
- 152,161,182,162,163,164,165,166,167,168,
- 154,169,170,128,171,0,144,130,133,172,
- 0,141,140,155,180,0,0,0,0,0,
- 0,0,0,158,0,205,0,148,175,189,
- 0,202,206,129,0,0,0,207,0,0,
- 178,127,131,174,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,188,0,0,
- 203,213,160,209,210,211,0,0,0,0,
- 149,208,221,177,181,0,0,0,212,0,
- 0,0,241,242,150,191,192,193,194,195,
- 197,200,0,0,215,218,220,0,239,0,
- 240,0,142,143,147,0,0,157,159,0,
- 173,0,183,184,185,186,187,190,0,196,
- 198,0,199,204,0,216,217,0,222,225,
- 227,229,0,233,234,235,237,238,126,0,
- 153,156,0,176,0,179,0,201,214,219,
- 0,223,224,226,228,0,231,232,243,244,
- 0,0,0,0,0,0
+ 131,136,138,0,0,137,235,135,0,229,
+ 134,0,145,133,0,0,144,150,0,0,
+ 151,160,161,181,162,163,164,165,166,167,
+ 153,168,169,127,170,0,143,129,132,171,
+ 0,140,139,154,179,0,0,0,0,0,
+ 0,0,0,157,0,204,0,147,174,188,
+ 0,201,205,128,0,206,0,177,0,0,
+ 0,0,0,0,126,173,0,0,0,0,
+ 0,0,130,0,0,187,0,0,202,212,
+ 159,208,209,210,0,0,0,0,148,207,
+ 220,176,197,0,0,211,0,0,0,240,
+ 241,149,180,0,190,191,192,193,194,196,
+ 199,0,0,214,217,219,0,238,0,239,
+ 0,141,142,146,0,0,156,158,0,172,
+ 0,182,183,184,185,186,189,0,195,0,
+ 198,203,0,215,216,0,221,224,226,228,
+ 0,232,233,234,236,237,125,0,152,155,
+ 0,175,0,178,0,200,213,218,0,222,
+ 223,225,227,0,230,231,242,243,0,0,
+ 0,0,0,0
};
};
public final static char nonterminalIndex[] = NonterminalIndex.nonterminalIndex;
@@ -1993,18 +1964,18 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopePrefix {
public final static char scopePrefix[] = {
- 151,570,589,521,537,548,559,362,261,275,
- 297,303,309,42,286,382,420,159,578,472,
- 20,51,71,80,85,90,127,187,292,315,
- 326,337,267,281,496,27,372,337,597,27,
- 209,240,1,14,61,76,106,141,222,320,
- 333,342,351,355,438,465,517,607,611,615,
- 97,7,97,141,400,416,429,449,509,429,
- 528,544,555,566,199,483,56,56,148,214,
- 217,235,256,217,217,56,359,444,462,469,
- 148,56,628,110,228,404,456,116,116,228,
- 56,228,391,169,104,442,619,626,619,626,
- 65,410,134,104,104,245
+ 151,564,583,515,531,542,553,356,261,275,
+ 297,303,42,286,376,414,159,572,466,20,
+ 51,71,80,85,90,127,187,292,309,320,
+ 331,267,281,490,27,366,331,591,27,209,
+ 240,1,14,61,76,106,141,222,314,327,
+ 336,345,349,432,459,511,601,605,609,97,
+ 7,97,141,394,410,423,443,503,423,522,
+ 538,549,560,199,477,56,56,148,214,217,
+ 235,256,217,217,56,353,438,456,463,148,
+ 56,622,110,228,398,450,116,116,228,56,
+ 228,385,169,104,436,613,620,613,620,65,
+ 404,134,104,104,245
};
};
public final static char scopePrefix[] = ScopePrefix.scopePrefix;
@@ -2012,18 +1983,18 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeSuffix {
public final static char scopeSuffix[] = {
- 18,5,5,5,5,5,5,369,132,95,
- 132,132,132,48,272,388,426,165,67,478,
- 25,25,25,59,59,95,132,192,132,132,
- 331,331,272,101,501,38,377,584,602,32,
- 203,203,5,18,5,59,95,132,226,324,
- 324,324,95,95,132,238,5,5,5,238,
- 226,11,101,145,369,369,369,453,501,433,
- 532,532,532,532,203,487,59,59,5,5,
- 220,238,5,259,259,349,95,447,5,238,
- 5,494,5,113,346,407,459,119,123,231,
- 513,504,394,172,95,95,621,621,623,623,
- 67,412,136,194,179,247
+ 18,5,5,5,5,5,5,363,132,95,
+ 132,132,48,272,382,420,165,67,472,25,
+ 25,25,59,59,95,132,192,132,132,325,
+ 325,272,101,495,38,371,578,596,32,203,
+ 203,5,18,5,59,95,132,226,318,318,
+ 318,95,95,132,238,5,5,5,238,226,
+ 11,101,145,363,363,363,447,495,427,526,
+ 526,526,526,203,481,59,59,5,5,220,
+ 238,5,259,259,343,95,441,5,238,5,
+ 488,5,113,340,401,453,119,123,231,507,
+ 498,388,172,95,95,615,615,617,617,67,
+ 406,136,194,179,247
};
};
public final static char scopeSuffix[] = ScopeSuffix.scopeSuffix;
@@ -2031,18 +2002,18 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeLhs {
public final static char scopeLhs[] = {
- 45,17,17,17,17,17,17,77,82,46,
- 87,86,118,66,51,77,76,45,17,19,
- 3,6,9,162,162,159,116,45,85,118,
- 117,119,52,46,135,130,77,17,17,130,
- 97,55,132,80,165,162,159,126,57,117,
- 117,119,177,49,59,139,17,17,17,17,
- 12,114,159,126,77,76,76,36,135,76,
- 17,17,17,17,97,19,166,162,178,95,
- 102,68,56,154,71,119,78,75,140,139,
- 170,135,16,159,119,104,21,127,127,54,
- 135,135,77,45,159,70,133,43,133,43,
- 165,104,116,45,45,55
+ 45,17,17,17,17,17,17,79,85,46,
+ 72,117,69,52,79,78,45,17,19,3,
+ 6,9,160,160,157,115,45,73,117,116,
+ 118,53,46,134,129,79,17,17,129,95,
+ 55,131,82,163,160,157,125,57,116,116,
+ 118,175,50,59,138,17,17,17,17,12,
+ 111,157,125,79,78,78,36,134,78,17,
+ 17,17,17,95,19,164,160,176,93,100,
+ 66,56,152,68,118,80,77,139,138,168,
+ 134,16,157,118,102,21,126,126,54,134,
+ 134,79,45,157,67,132,43,132,43,163,
+ 102,115,45,45,55
};
};
public final static char scopeLhs[] = ScopeLhs.scopeLhs;
@@ -2050,18 +2021,18 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeLa {
public final static byte scopeLa[] = {
- 119,73,73,73,73,73,73,73,68,13,
- 68,68,68,61,1,73,122,59,3,73,
- 61,61,61,1,1,13,68,59,68,68,
- 1,1,1,1,4,61,13,1,1,61,
- 73,73,73,119,73,1,13,68,1,1,
- 1,1,13,13,68,118,73,73,73,118,
- 1,73,1,66,73,73,73,72,4,73,
- 61,61,61,61,73,3,1,1,73,73,
- 3,118,73,1,1,1,13,72,73,118,
- 73,5,73,1,31,67,73,1,1,6,
- 1,31,77,76,13,13,4,4,4,4,
- 3,1,59,1,1,3
+ 119,72,72,72,72,72,72,72,73,13,
+ 73,73,61,1,72,122,60,3,72,61,
+ 61,61,1,1,13,73,60,73,73,1,
+ 1,1,1,4,61,13,1,1,61,72,
+ 72,72,119,72,1,13,73,1,1,1,
+ 1,13,13,73,118,72,72,72,118,1,
+ 72,1,66,72,72,72,71,4,72,61,
+ 61,61,61,72,3,1,1,72,72,3,
+ 118,72,1,1,1,13,71,72,118,72,
+ 5,72,1,37,67,72,1,1,6,1,
+ 37,76,75,13,13,4,4,4,4,3,
+ 1,60,1,1,3
};
};
public final static byte scopeLa[] = ScopeLa.scopeLa;
@@ -2069,18 +2040,18 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeStateSet {
public final static char scopeStateSet[] = {
- 78,241,241,241,241,241,241,36,89,78,
- 89,89,147,99,80,36,36,78,241,241,
- 174,216,217,53,53,108,147,78,89,147,
- 147,147,80,78,130,46,36,241,241,46,
- 139,62,24,36,28,53,108,304,62,147,
- 147,147,20,80,31,59,241,241,241,241,
- 236,6,108,304,36,36,36,273,130,36,
- 241,241,241,241,139,241,28,53,22,139,
- 141,135,62,56,67,147,36,36,50,59,
- 133,130,241,108,147,1,242,147,147,114,
- 130,130,36,78,108,11,111,151,111,151,
- 28,1,147,78,78,62
+ 92,242,242,242,242,242,242,102,83,92,
+ 81,148,81,94,102,102,92,242,242,175,
+ 217,218,53,53,78,148,92,81,148,148,
+ 148,94,92,131,46,102,242,242,46,140,
+ 62,24,102,28,53,78,305,62,148,148,
+ 148,20,94,31,59,242,242,242,242,237,
+ 6,78,305,102,102,102,274,131,102,242,
+ 242,242,242,140,242,28,53,22,140,142,
+ 136,62,56,67,148,102,102,50,59,134,
+ 131,242,78,148,1,243,148,148,115,131,
+ 131,102,92,78,11,112,152,112,152,28,
+ 1,148,92,92,62
};
};
public final static char scopeStateSet[] = ScopeStateSet.scopeStateSet;
@@ -2088,69 +2059,69 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeRhs {
public final static char scopeRhs[] = {0,
- 314,3,57,0,128,0,313,3,119,0,
- 128,175,0,128,183,76,0,217,0,252,
- 128,28,126,0,21,0,292,128,28,31,
- 0,21,55,0,34,134,0,21,55,0,
- 0,292,128,28,31,193,0,21,131,0,
- 252,128,28,131,0,185,129,0,144,0,
- 222,3,290,0,290,0,2,0,128,0,
- 252,128,28,134,0,185,129,227,0,185,
- 129,45,227,0,185,129,310,45,0,132,
- 189,167,129,0,130,0,189,167,129,0,
- 136,130,0,171,0,306,128,171,0,128,
- 171,0,223,130,0,167,244,0,139,0,
- 0,0,137,0,0,0,305,128,59,251,
- 0,129,0,251,0,3,0,0,129,0,
- 304,128,59,0,45,129,0,155,3,0,
- 128,280,279,128,76,278,171,0,279,128,
- 76,278,171,0,216,0,217,0,278,171,
- 0,98,0,0,216,0,217,0,204,98,
- 0,0,216,0,217,0,279,128,278,171,
- 0,216,0,204,0,0,216,0,231,128,
- 3,0,128,0,0,0,0,0,231,128,
- 3,219,0,226,3,0,215,128,0,209,
- 0,189,167,177,0,136,0,167,129,0,
- 11,0,0,0,217,48,0,127,0,231,
- 128,3,180,0,180,0,2,0,0,128,
- 0,0,0,0,0,195,3,0,202,0,
- 230,128,59,29,14,0,185,129,60,58,
- 0,198,130,0,132,185,129,276,58,0,
- 185,129,276,58,0,185,129,67,125,60,
- 0,230,128,59,60,0,230,128,59,123,
- 60,0,230,128,59,126,60,0,273,128,
- 59,125,69,0,273,128,59,69,0,185,
- 129,69,0,137,0,189,185,129,244,0,
- 139,0,185,129,244,0,189,167,129,10,
- 0,167,129,10,0,95,139,0,149,0,
- 266,128,147,0,266,128,171,0,163,86,
- 0,297,162,299,300,3,83,0,128,174,
- 0,299,300,3,83,0,130,0,128,174,
- 0,163,3,77,198,82,0,128,130,0,
- 198,82,0,110,2,133,128,130,0,228,
- 3,77,0,195,168,0,34,172,0,168,
- 0,178,34,172,0,228,3,87,0,198,
- 158,228,3,85,0,64,174,0,228,3,
- 85,0,128,174,64,174,0,298,128,59,
- 0,163,0,217,79,0,31,0,163,117,
- 159,0,31,172,0,182,3,0,128,152,
- 0,222,3,0,217,48,263,0,163,48,
- 0,182,3,294,65,129,0,128,0,0,
- 0,0,294,65,129,0,2,148,128,0,
- 0,0,0,150,0,127,31,167,129,0,
- 32,150,0,95,139,32,150,0,225,185,
- 129,0,149,32,150,0,163,3,40,0,
- 163,3,61,182,28,32,0,182,28,32,
- 0,21,2,133,128,0,163,3,61,182,
- 28,35,0,182,28,35,0,163,3,61,
- 182,28,37,0,182,28,37,0,163,3,
- 61,182,28,33,0,182,28,33,0,222,
- 3,127,189,167,129,10,0,127,189,167,
- 129,10,0,139,2,0,128,0,222,3,
- 126,177,167,129,10,0,177,167,129,10,
- 0,137,2,0,128,0,222,3,137,0,
- 222,3,141,0,163,48,141,0,258,0,
- 32,0,32,142,0,166,0,163,3,0
+ 311,3,58,0,127,0,310,3,119,0,
+ 127,174,0,127,182,75,0,216,0,250,
+ 127,28,125,0,21,0,289,127,28,37,
+ 0,21,55,0,34,133,0,21,55,0,
+ 0,289,127,28,37,197,0,21,130,0,
+ 250,127,28,130,0,184,128,0,143,0,
+ 219,3,287,0,287,0,2,0,127,0,
+ 250,127,28,133,0,184,128,224,0,184,
+ 128,45,224,0,184,128,307,45,0,131,
+ 188,166,128,0,129,0,188,166,128,0,
+ 135,129,0,170,0,303,127,170,0,127,
+ 170,0,222,129,0,166,242,0,138,0,
+ 0,0,136,0,0,0,302,127,60,249,
+ 0,128,0,249,0,3,0,0,128,0,
+ 301,127,60,0,45,128,0,154,3,0,
+ 127,277,276,127,75,275,170,0,276,127,
+ 75,275,170,0,215,0,216,0,275,170,
+ 0,98,0,0,215,0,216,0,203,98,
+ 0,0,215,0,216,0,276,127,275,170,
+ 0,215,0,203,0,0,215,0,227,127,
+ 3,0,127,0,0,0,0,0,227,127,
+ 3,216,0,223,3,0,212,127,0,208,
+ 0,188,166,171,0,135,0,166,128,0,
+ 11,0,0,0,214,48,0,126,0,227,
+ 127,3,179,0,179,0,2,0,0,127,
+ 0,0,0,0,0,191,3,0,201,0,
+ 237,127,60,29,17,0,184,128,57,59,
+ 0,197,129,0,131,184,128,273,59,0,
+ 184,128,273,59,0,184,128,67,124,57,
+ 0,237,127,60,57,0,237,127,60,226,
+ 57,0,271,127,60,124,68,0,271,127,
+ 60,68,0,184,128,68,0,136,0,188,
+ 184,128,242,0,138,0,184,128,242,0,
+ 188,166,128,10,0,166,128,10,0,95,
+ 138,0,148,0,264,127,147,0,264,127,
+ 170,0,162,86,0,294,161,296,297,3,
+ 83,0,127,173,0,296,297,3,83,0,
+ 129,0,127,173,0,162,3,76,199,81,
+ 0,127,129,0,199,81,0,110,2,132,
+ 127,129,0,225,3,76,0,191,167,0,
+ 34,171,0,167,0,177,34,171,0,225,
+ 3,87,0,199,157,225,3,85,0,64,
+ 173,0,225,3,85,0,127,173,64,173,
+ 0,295,127,60,0,162,0,214,78,0,
+ 31,0,162,117,158,0,31,171,0,181,
+ 3,0,127,151,0,219,3,0,214,48,
+ 261,0,162,48,0,181,3,291,65,128,
+ 0,127,0,0,0,0,291,65,128,0,
+ 2,147,127,0,0,0,0,149,0,126,
+ 37,166,128,0,32,149,0,95,138,32,
+ 149,0,222,184,128,0,148,32,149,0,
+ 162,3,40,0,162,3,61,181,28,31,
+ 0,181,28,31,0,21,2,132,127,0,
+ 162,3,61,181,28,34,0,181,28,34,
+ 0,162,3,61,181,28,36,0,181,28,
+ 36,0,162,3,61,181,28,32,0,181,
+ 28,32,0,219,3,126,188,166,128,10,
+ 0,126,188,166,128,10,0,138,2,0,
+ 127,0,219,3,125,171,166,128,10,0,
+ 171,166,128,10,0,136,2,0,127,0,
+ 219,3,136,0,219,3,140,0,162,48,
+ 140,0,256,0,32,0,32,141,0,165,
+ 0,162,3,0
};
};
public final static char scopeRhs[] = ScopeRhs.scopeRhs;
@@ -2158,37 +2129,37 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface ScopeState {
public final static char scopeState[] = {0,
- 3282,4693,4676,4675,0,3135,3512,2934,3416,0,
- 3612,3554,3459,3401,3343,3285,3224,3091,2844,2807,
- 0,1341,0,3371,2961,2884,0,2704,640,0,
- 2958,2538,2323,2519,850,3612,3554,3459,3401,3343,
- 3285,3224,3091,2844,0,4562,3029,3027,0,2842,
- 1154,0,3128,3491,0,4447,2935,0,795,725,
- 0,4425,4447,4358,576,2935,3513,3770,4436,4336,
- 2710,4325,4347,3197,2691,2582,0,4467,3051,3612,
- 3554,3459,3401,3343,3285,3224,3091,2844,3021,2953,
- 3974,2881,3921,2774,3868,3815,3762,0,3021,2953,
- 3974,2881,3921,2774,3868,3815,3762,4467,3051,0,
- 3339,3082,0,2710,4425,3817,4358,576,2902,3197,
- 1801,3816,1297,2808,3494,3433,3287,2969,0,728,
- 657,0,940,0,2342,2285,1764,803,576,3494,
- 3513,2691,2582,2981,3223,0,3309,534,2542,0,
- 4602,4595,4551,4547,4538,4526,4522,4518,4659,4647,
- 4640,4627,4615,4474,3956,4009,3903,3636,2909,2665,
- 3852,3109,0,4602,3278,4595,2755,2646,4551,4547,
- 4538,1934,935,4526,4522,4518,3540,4659,3406,3348,
- 4647,2624,2593,2245,924,3464,4640,2768,4627,3524,
- 4615,4474,3956,920,4009,646,3903,625,3636,2909,
- 3309,2665,2542,3852,3109,787,3513,3770,4436,4336,
- 2710,4425,4325,3235,4447,3211,4358,2234,576,4347,
- 3197,2691,2935,2582,1118,991,2145,2056,728,657,
- 4304,4282,4260,2249,2286,2319,590,2406,2378,2349,
- 2598,2551,2515,2488,2461,2434,3739,3716,3693,3172,
- 2721,4238,4216,4194,4172,4150,4128,4106,4084,4062,
- 3781,1051,1940,2197,2160,2108,2071,2019,1218,1173,
- 1982,1131,875,1889,1851,816,742,683,1809,1767,
- 1725,1683,1641,1599,1557,1515,1473,1431,1389,534,
- 1347,1304,1076,1009,949,1260,0
+ 4560,4607,4589,4586,0,2523,1755,982,626,0,
+ 3404,3344,3230,3170,3110,3050,2986,2835,2750,3052,
+ 0,1873,0,2263,1708,1666,0,3003,622,0,
+ 3404,3344,1953,1916,3230,3170,3110,3050,921,2986,
+ 2835,2750,787,652,0,4264,3176,3590,0,1155,
+ 653,0,3080,3082,0,4091,2992,0,3061,1234,
+ 0,4419,4091,3669,3556,2992,3284,4048,4446,4343,
+ 2716,577,2841,2966,2647,2567,0,4232,4371,0,
+ 4232,4371,3691,4289,4245,3637,4201,4157,4082,3583,
+ 0,4232,4371,3691,4289,4245,3637,4201,4157,4082,
+ 3583,3404,3344,3230,3170,3110,3050,2986,2835,2750,
+ 0,3273,2566,0,2716,4419,1582,3669,3556,3356,
+ 2966,4326,1456,4185,2786,3118,1624,1414,722,0,
+ 793,654,0,1037,0,2496,1190,725,563,3556,
+ 3118,3284,2647,2567,2977,3012,0,3314,532,2526,
+ 0,4545,4533,4516,4495,4483,4468,4220,4174,4566,
+ 4365,4141,3662,3436,4121,3578,3328,3320,3202,3136,
+ 2691,3300,2663,0,4545,3057,4533,2982,1923,4516,
+ 4495,4483,1111,930,4468,4220,4174,3567,4566,3464,
+ 3414,4365,3333,2616,2608,2578,2637,4141,2868,3662,
+ 2755,3436,4121,3578,1115,3328,923,3320,916,3202,
+ 3136,3314,2691,2526,3300,2663,635,3284,4048,4446,
+ 4343,2716,4419,577,2812,4091,2759,3669,2676,3556,
+ 2841,2966,2647,2992,2567,2219,985,2132,2045,793,
+ 654,4059,4026,4004,2232,2269,588,2302,2390,2362,
+ 2333,2582,2535,2499,2472,2445,2418,3533,3510,3487,
+ 2942,2918,3982,3960,3938,3916,3894,3872,3850,3828,
+ 3806,3777,1045,1929,2182,2145,2095,2058,2008,1210,
+ 1166,1971,1124,871,1879,1842,812,739,680,1800,
+ 1758,1716,1674,1632,1590,1548,1506,1464,1422,1380,
+ 532,1338,1295,1069,1003,943,1252,0
};
};
public final static char scopeState[] = ScopeState.scopeState;
@@ -2196,59 +2167,58 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public interface InSymb {
public final static char inSymb[] = {0,
- 0,293,128,265,40,32,35,37,33,10,
- 137,126,134,7,131,4,3,129,36,30,
- 5,12,11,6,8,27,26,141,146,149,
- 148,151,150,153,152,156,154,157,57,159,
- 66,3,28,28,28,28,129,3,28,28,
- 168,128,48,3,64,65,28,7,126,182,
- 163,168,128,64,65,167,166,126,3,125,
- 127,103,120,3,48,90,96,12,11,92,
+ 0,290,127,263,40,31,34,36,32,10,
+ 136,125,133,7,130,4,3,128,35,30,
+ 5,12,11,6,8,27,26,140,145,148,
+ 146,150,149,152,151,155,153,156,58,158,
+ 66,3,28,28,28,28,128,3,28,28,
+ 167,127,48,3,64,65,28,7,125,181,
+ 162,167,127,64,65,166,165,125,3,124,
+ 126,103,120,3,48,90,96,12,11,92,
91,6,94,93,61,28,88,89,8,98,
97,100,99,101,113,112,111,110,109,108,
- 107,106,105,104,67,117,102,163,182,182,
- 182,182,167,222,128,128,128,267,268,251,
- 269,244,270,69,271,272,10,129,48,48,
- 128,158,128,48,3,220,219,137,127,126,
- 10,129,48,294,3,189,4,31,5,129,
- 31,222,163,148,148,146,146,146,150,150,
- 150,150,149,149,152,151,151,154,153,156,
- 163,157,61,61,61,61,189,177,252,135,
- 255,252,215,129,6,59,167,234,129,127,
- 126,125,59,129,129,185,167,252,215,217,
- 159,226,128,3,129,167,196,3,295,168,
- 155,258,189,129,126,185,167,72,3,3,
- 3,3,127,126,66,167,128,128,127,126,
- 128,185,128,59,128,185,167,31,231,232,
- 147,233,128,167,31,182,128,128,4,225,
- 5,31,163,163,163,163,3,3,6,184,
- 305,129,169,227,31,193,58,171,307,128,
- 128,72,189,128,273,125,274,189,158,67,
- 226,195,187,180,177,3,128,66,231,189,
- 158,260,263,48,178,4,125,127,222,222,
- 128,167,28,31,276,278,128,3,180,309,
- 227,45,129,273,67,66,128,67,67,3,
- 167,195,128,215,158,127,128,3,48,163,
- 4,189,61,28,129,76,128,215,306,128,
- 126,72,285,195,66,129,45,310,185,223,
- 128,189,128,260,222,217,132,14,31,171,
- 62,60,58,128,185,128,279,72,66,215,
- 72,67,185,129,129,128,231,223,29,128,
- 3,59,123,126,125,60,292,31,10,63,
- 132,279,59,289,129,290,185,185,57,158,
- 128,128,59,266,195,277,29,128,59,59,
- 67,129,66,61,28,234,234,280,128,66,
- 185,3,3,128,128,3,67,66,158,230,
- 229,128,128,129,185,128,67,67,128,298,
- 81,79,1,163,87,85,83,82,77,84,
- 86,80,78,60,76,222,314,223,230,155,
- 59,230,230,185,275,292,281,119,9,217,
- 72,3,3,3,198,3,125,163,125,183,
- 66,128,128,275,61,3,228,168,228,300,
- 147,77,228,128,304,63,95,313,168,158,
- 195,158,299,128,3,158,281,66,234,158,
- 158,128,67,198,162,266,163,67,122,297,
- 158,158
+ 107,106,105,104,67,117,102,162,181,181,
+ 181,181,166,219,127,127,127,265,266,249,
+ 267,242,268,68,269,270,10,128,48,48,
+ 127,157,127,48,3,217,216,136,126,125,
+ 10,128,48,291,3,188,4,37,5,128,
+ 37,219,162,146,146,145,145,145,149,149,
+ 149,149,148,148,151,150,150,153,152,155,
+ 162,156,61,61,61,61,188,171,250,134,
+ 253,250,212,128,6,60,166,230,128,126,
+ 125,124,60,128,128,184,166,250,212,214,
+ 158,223,127,3,128,166,198,3,292,167,
+ 154,256,188,128,125,184,166,71,3,3,
+ 3,3,126,125,66,166,127,127,126,125,
+ 127,184,127,60,127,184,166,37,227,228,
+ 147,229,127,166,37,181,127,127,4,222,
+ 5,37,162,162,162,162,3,3,6,183,
+ 302,128,168,224,57,37,197,59,170,304,
+ 127,127,71,188,127,271,124,272,188,157,
+ 67,223,191,186,179,171,3,127,66,227,
+ 188,157,258,261,48,177,4,124,126,219,
+ 219,127,166,60,226,28,37,273,275,127,
+ 3,179,306,224,45,128,271,67,66,127,
+ 67,67,3,166,191,127,212,157,126,127,
+ 3,48,162,4,188,127,60,61,28,128,
+ 75,127,212,303,127,125,71,282,191,66,
+ 128,45,307,184,220,127,188,127,258,219,
+ 214,131,237,17,37,170,62,57,59,236,
+ 127,127,184,127,276,71,66,212,71,67,
+ 184,128,128,127,227,220,29,127,3,124,
+ 57,237,289,37,10,63,131,276,60,286,
+ 128,287,184,184,58,157,127,127,60,264,
+ 191,274,29,67,128,66,61,28,230,230,
+ 277,127,66,184,3,3,127,127,3,67,
+ 66,157,128,184,127,67,67,127,295,80,
+ 78,1,162,87,85,83,81,76,84,86,
+ 79,77,57,75,219,311,220,237,154,60,
+ 184,226,289,278,119,9,214,71,3,3,
+ 3,199,3,124,162,124,182,66,127,127,
+ 226,61,3,225,167,225,297,147,76,225,
+ 127,301,63,95,310,167,157,191,157,296,
+ 127,3,157,278,66,230,157,157,127,67,
+ 199,161,264,162,67,122,294,157,157
};
};
public final static char inSymb[] = InSymb.inSymb;
@@ -2380,7 +2350,6 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
"RightBrace",
"SemiColon",
"ERROR_TOKEN",
- "original_namespace_name",
"EOF_TOKEN",
"no_sizeof_type_name_start",
"]",
@@ -2514,8 +2483,8 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public final static int
ERROR_SYMBOL = 74,
- SCOPE_UBOUND = 115,
- SCOPE_SIZE = 116,
+ SCOPE_UBOUND = 114,
+ SCOPE_SIZE = 115,
MAX_NAME_LENGTH = 37;
public final int getErrorSymbol() { return ERROR_SYMBOL; }
@@ -2524,20 +2493,20 @@ public class CPPSizeofExpressionParserprs implements lpg.lpgjavaruntime.ParseTab
public final int getMaxNameLength() { return MAX_NAME_LENGTH; }
public final static int
- NUM_STATES = 522,
- NT_OFFSET = 124,
- LA_STATE_OFFSET = 5769,
+ NUM_STATES = 519,
+ NT_OFFSET = 123,
+ LA_STATE_OFFSET = 5686,
MAX_LA = 2147483647,
- NUM_RULES = 533,
- NUM_NONTERMINALS = 196,
- NUM_SYMBOLS = 320,
+ NUM_RULES = 531,
+ NUM_NONTERMINALS = 194,
+ NUM_SYMBOLS = 317,
SEGMENT_SIZE = 8192,
- START_STATE = 776,
+ START_STATE = 2987,
IDENTIFIER_SYMBOL = 0,
EOFT_SYMBOL = 121,
EOLT_SYMBOL = 121,
- ACCEPT_ACTION = 4843,
- ERROR_ACTION = 5236;
+ ACCEPT_ACTION = 4762,
+ ERROR_ACTION = 5155;
public final static boolean BACKTRACK = true;
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParsersym.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParsersym.java
index 99802d60289..58510e6db8a 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParsersym.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPSizeofExpressionParsersym.java
@@ -17,26 +17,26 @@ public interface CPPSizeofExpressionParsersym {
public final static int
TK_asm = 62,
TK_auto = 49,
- TK_bool = 15,
- TK_break = 78,
- TK_case = 79,
+ TK_bool = 14,
+ TK_break = 77,
+ TK_case = 78,
TK_catch = 119,
- TK_char = 16,
+ TK_char = 15,
TK_class = 63,
TK_const = 46,
- TK_const_cast = 32,
- TK_continue = 80,
- TK_default = 81,
+ TK_const_cast = 31,
+ TK_continue = 79,
+ TK_default = 80,
TK_delete = 64,
- TK_do = 82,
- TK_double = 17,
- TK_dynamic_cast = 33,
+ TK_do = 81,
+ TK_double = 16,
+ TK_dynamic_cast = 32,
TK_else = 122,
- TK_enum = 69,
+ TK_enum = 68,
TK_explicit = 50,
- TK_export = 75,
- TK_extern = 14,
- TK_false = 34,
+ TK_export = 82,
+ TK_extern = 17,
+ TK_false = 33,
TK_float = 18,
TK_for = 83,
TK_friend = 51,
@@ -46,38 +46,38 @@ public interface CPPSizeofExpressionParsersym {
TK_int = 19,
TK_long = 20,
TK_mutable = 53,
- TK_namespace = 60,
+ TK_namespace = 57,
TK_new = 65,
TK_operator = 7,
TK_private = 114,
TK_protected = 115,
TK_public = 116,
TK_register = 54,
- TK_reinterpret_cast = 35,
+ TK_reinterpret_cast = 34,
TK_return = 86,
TK_short = 21,
TK_signed = 22,
- TK_sizeof = 36,
+ TK_sizeof = 35,
TK_static = 55,
- TK_static_cast = 37,
- TK_struct = 70,
+ TK_static_cast = 36,
+ TK_struct = 69,
TK_switch = 87,
- TK_template = 31,
+ TK_template = 37,
TK_this = 38,
- TK_throw = 57,
- TK_try = 76,
+ TK_throw = 58,
+ TK_try = 75,
TK_true = 39,
TK_typedef = 56,
TK_typeid = 40,
TK_typename = 10,
- TK_union = 71,
+ TK_union = 70,
TK_unsigned = 23,
- TK_using = 58,
+ TK_using = 59,
TK_virtual = 45,
TK_void = 24,
TK_volatile = 47,
TK_wchar_t = 25,
- TK_while = 77,
+ TK_while = 76,
TK_integer = 41,
TK_floating = 42,
TK_charconst = 43,
@@ -85,10 +85,10 @@ public interface CPPSizeofExpressionParsersym {
TK_identifier = 1,
TK_Completion = 2,
TK_EndOfCompletion = 9,
- TK_Invalid = 124,
+ TK_Invalid = 123,
TK_LeftBracket = 48,
TK_LeftParen = 3,
- TK_LeftBrace = 59,
+ TK_LeftBrace = 60,
TK_Dot = 120,
TK_DotStar = 96,
TK_Arrow = 103,
@@ -116,7 +116,7 @@ public interface CPPSizeofExpressionParsersym {
TK_AndAnd = 101,
TK_OrOr = 102,
TK_Question = 117,
- TK_Colon = 72,
+ TK_Colon = 71,
TK_ColonColon = 4,
TK_DotDotDot = 95,
TK_Assign = 67,
@@ -133,11 +133,10 @@ public interface CPPSizeofExpressionParsersym {
TK_Comma = 66,
TK_zero = 44,
TK_RightBracket = 118,
- TK_RightParen = 73,
- TK_RightBrace = 68,
+ TK_RightParen = 72,
+ TK_RightBrace = 73,
TK_SemiColon = 13,
TK_ERROR_TOKEN = 74,
- TK_original_namespace_name = 123,
TK_EOF_TOKEN = 121;
public final static String orderedTerminalSymbols[] = {
@@ -155,10 +154,10 @@ public interface CPPSizeofExpressionParsersym {
"Plus",
"Minus",
"SemiColon",
- "extern",
"bool",
"char",
"double",
+ "extern",
"float",
"int",
"long",
@@ -172,13 +171,13 @@ public interface CPPSizeofExpressionParsersym {
"LT",
"stringlit",
"Bang",
- "template",
"const_cast",
"dynamic_cast",
"false",
"reinterpret_cast",
"sizeof",
"static_cast",
+ "template",
"this",
"true",
"typeid",
@@ -198,10 +197,10 @@ public interface CPPSizeofExpressionParsersym {
"register",
"static",
"typedef",
+ "namespace",
"throw",
"using",
"LeftBrace",
- "namespace",
"GT",
"asm",
"class",
@@ -209,14 +208,13 @@ public interface CPPSizeofExpressionParsersym {
"new",
"Comma",
"Assign",
- "RightBrace",
"enum",
"struct",
"union",
"Colon",
"RightParen",
+ "RightBrace",
"ERROR_TOKEN",
- "export",
"try",
"while",
"break",
@@ -224,6 +222,7 @@ public interface CPPSizeofExpressionParsersym {
"continue",
"default",
"do",
+ "export",
"for",
"goto",
"if",
@@ -264,7 +263,6 @@ public interface CPPSizeofExpressionParsersym {
"Dot",
"EOF_TOKEN",
"else",
- "original_namespace_name",
"Invalid"
};
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParser.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParser.java
index 01a20b60843..a5f3e356473 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParser.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParser.java
@@ -1519,765 +1519,758 @@ public CPPTemplateTypeParameterParser(String[] mapFrom) { // constructor
}
//
- // Rule 301: original_namespace_definition ::= namespace identifier_name { <openscope-ast> declaration_seq_opt }
+ // Rule 299: named_namespace_definition ::= namespace namespace_name { <openscope-ast> declaration_seq_opt }
//
- case 301: { action.builder.
- consumeNamespaceDefinition(true); break;
- }
-
- //
- // Rule 302: extension_namespace_definition ::= namespace original_namespace_name { <openscope-ast> declaration_seq_opt }
- //
- case 302: { action.builder.
+ case 299: { action.builder.
consumeNamespaceDefinition(true); break;
}
//
- // Rule 303: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
+ // Rule 300: unnamed_namespace_definition ::= namespace { <openscope-ast> declaration_seq_opt }
//
- case 303: { action.builder.
+ case 300: { action.builder.
consumeNamespaceDefinition(false); break;
}
//
- // Rule 304: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 301: namespace_alias_definition ::= namespace identifier_token = dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 304: { action.builder.
+ case 301: { action.builder.
consumeNamespaceAliasDefinition(); break;
}
//
- // Rule 305: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
+ // Rule 302: using_declaration ::= using typename_opt dcolon_opt nested_name_specifier_opt unqualified_id_name ;
//
- case 305: { action.builder.
+ case 302: { action.builder.
consumeUsingDeclaration(); break;
}
//
- // Rule 306: typename_opt ::= typename
+ // Rule 303: typename_opt ::= typename
//
- case 306: { action.builder.
+ case 303: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 307: typename_opt ::= $Empty
+ // Rule 304: typename_opt ::= $Empty
//
- case 307: { action.builder.
+ case 304: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 308: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
+ // Rule 305: using_directive ::= using namespace dcolon_opt nested_name_specifier_opt namespace_name ;
//
- case 308: { action.builder.
+ case 305: { action.builder.
consumeUsingDirective(); break;
}
//
- // Rule 309: asm_definition ::= asm ( stringlit ) ;
+ // Rule 306: asm_definition ::= asm ( stringlit ) ;
//
- case 309: { action.builder.
+ case 306: { action.builder.
consumeDeclarationASM(); break;
}
//
- // Rule 310: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
+ // Rule 307: linkage_specification ::= extern stringlit { <openscope-ast> declaration_seq_opt }
//
- case 310: { action.builder.
+ case 307: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 311: linkage_specification ::= extern stringlit <openscope-ast> declaration
+ // Rule 308: linkage_specification ::= extern stringlit <openscope-ast> declaration
//
- case 311: { action.builder.
+ case 308: { action.builder.
consumeLinkageSpecification(); break;
}
//
- // Rule 316: init_declarator_complete ::= init_declarator
+ // Rule 313: init_declarator_complete ::= init_declarator
//
- case 316: { action.builder.
+ case 313: { action.builder.
consumeInitDeclaratorComplete(); break;
}
//
- // Rule 318: init_declarator ::= declarator initializer
+ // Rule 315: init_declarator ::= declarator initializer
//
- case 318: { action.builder.
+ case 315: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 320: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 317: declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 320: { action.builder.
+ case 317: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 322: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
+ // Rule 319: function_declarator ::= <openscope-ast> ptr_operator_seq direct_declarator
//
- case 322: { action.builder.
+ case 319: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 326: basic_direct_declarator ::= declarator_id_name
+ // Rule 323: basic_direct_declarator ::= declarator_id_name
//
- case 326: { action.builder.
+ case 323: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 327: basic_direct_declarator ::= ( declarator )
+ // Rule 324: basic_direct_declarator ::= ( declarator )
//
- case 327: { action.builder.
+ case 324: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 328: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 325: function_direct_declarator ::= basic_direct_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 328: { action.builder.
+ case 325: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 329: array_direct_declarator ::= array_direct_declarator array_modifier
+ // Rule 326: array_direct_declarator ::= array_direct_declarator array_modifier
//
- case 329: { action.builder.
+ case 326: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 330: array_direct_declarator ::= basic_direct_declarator array_modifier
+ // Rule 327: array_direct_declarator ::= basic_direct_declarator array_modifier
//
- case 330: { action.builder.
+ case 327: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 331: array_modifier ::= [ constant_expression ]
+ // Rule 328: array_modifier ::= [ constant_expression ]
//
- case 331: { action.builder.
+ case 328: { action.builder.
consumeDirectDeclaratorArrayModifier(true); break;
}
//
- // Rule 332: array_modifier ::= [ ]
+ // Rule 329: array_modifier ::= [ ]
//
- case 332: { action.builder.
+ case 329: { action.builder.
consumeDirectDeclaratorArrayModifier(false); break;
}
//
- // Rule 333: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 330: ptr_operator ::= * <openscope-ast> cv_qualifier_seq_opt
//
- case 333: { action.builder.
+ case 330: { action.builder.
consumePointer(); break;
}
//
- // Rule 334: ptr_operator ::= &
+ // Rule 331: ptr_operator ::= &
//
- case 334: { action.builder.
+ case 331: { action.builder.
consumeReferenceOperator(); break;
}
//
- // Rule 335: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
+ // Rule 332: ptr_operator ::= dcolon_opt nested_name_specifier * <openscope-ast> cv_qualifier_seq_opt
//
- case 335: { action.builder.
+ case 332: { action.builder.
consumePointerToMember(); break;
}
//
- // Rule 341: cv_qualifier ::= const
+ // Rule 338: cv_qualifier ::= const
//
- case 341: { action.builder.
+ case 338: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 342: cv_qualifier ::= volatile
+ // Rule 339: cv_qualifier ::= volatile
//
- case 342: { action.builder.
+ case 339: { action.builder.
consumeDeclSpecToken(); break;
}
//
- // Rule 344: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
+ // Rule 341: declarator_id_name ::= <empty> nested_name_specifier template_opt unqualified_id_name
//
- case 344: { action.builder.
+ case 341: { action.builder.
consumeQualifiedId(true); break;
}
//
- // Rule 345: type_id ::= type_specifier_seq
+ // Rule 342: type_id ::= type_specifier_seq
//
- case 345: { action.builder.
+ case 342: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 346: type_id ::= type_specifier_seq abstract_declarator
+ // Rule 343: type_id ::= type_specifier_seq abstract_declarator
//
- case 346: { action.builder.
+ case 343: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 349: abstract_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 346: abstract_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 349: { action.builder.
+ case 346: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 350: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
+ // Rule 347: abstract_declarator ::= <openscope-ast> ptr_operator_seq direct_abstract_declarator
//
- case 350: { action.builder.
+ case 347: { action.builder.
consumeDeclaratorWithPointer(true); break;
}
//
- // Rule 354: basic_direct_abstract_declarator ::= ( abstract_declarator )
+ // Rule 351: basic_direct_abstract_declarator ::= ( abstract_declarator )
//
- case 354: { action.builder.
+ case 351: { action.builder.
consumeDirectDeclaratorBracketed(); break;
}
//
- // Rule 355: basic_direct_abstract_declarator ::= ( )
+ // Rule 352: basic_direct_abstract_declarator ::= ( )
//
- case 355: { action.builder.
+ case 352: { action.builder.
consumeAbstractDeclaratorEmpty(); break;
}
//
- // Rule 356: array_direct_abstract_declarator ::= array_modifier
+ // Rule 353: array_direct_abstract_declarator ::= array_modifier
//
- case 356: { action.builder.
+ case 353: { action.builder.
consumeDirectDeclaratorArrayDeclarator(false); break;
}
//
- // Rule 357: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
+ // Rule 354: array_direct_abstract_declarator ::= array_direct_abstract_declarator array_modifier
//
- case 357: { action.builder.
+ case 354: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 358: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
+ // Rule 355: array_direct_abstract_declarator ::= basic_direct_abstract_declarator array_modifier
//
- case 358: { action.builder.
+ case 355: { action.builder.
consumeDirectDeclaratorArrayDeclarator(true); break;
}
//
- // Rule 359: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 356: function_direct_abstract_declarator ::= basic_direct_abstract_declarator ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 359: { action.builder.
+ case 356: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(true); break;
}
//
- // Rule 360: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
+ // Rule 357: function_direct_abstract_declarator ::= ( <openscope-ast> parameter_declaration_clause ) <openscope-ast> cv_qualifier_seq_opt <openscope-ast> exception_specification_opt
//
- case 360: { action.builder.
+ case 357: { action.builder.
consumeDirectDeclaratorFunctionDeclarator(false); break;
}
//
- // Rule 361: parameter_declaration_clause ::= parameter_declaration_list_opt ...
+ // Rule 358: parameter_declaration_clause ::= parameter_declaration_list_opt ...
//
- case 361: { action.builder.
+ case 358: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 362: parameter_declaration_clause ::= parameter_declaration_list_opt
+ // Rule 359: parameter_declaration_clause ::= parameter_declaration_list_opt
//
- case 362: { action.builder.
+ case 359: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 363: parameter_declaration_clause ::= parameter_declaration_list , ...
+ // Rule 360: parameter_declaration_clause ::= parameter_declaration_list , ...
//
- case 363: { action.builder.
+ case 360: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 369: abstract_declarator_opt ::= $Empty
+ // Rule 366: abstract_declarator_opt ::= $Empty
//
- case 369: { action.builder.
+ case 366: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 370: parameter_declaration ::= declaration_specifiers parameter_init_declarator
+ // Rule 367: parameter_declaration ::= declaration_specifiers parameter_init_declarator
//
- case 370: { action.builder.
+ case 367: { action.builder.
consumeParameterDeclaration(); break;
}
//
- // Rule 371: parameter_declaration ::= declaration_specifiers
+ // Rule 368: parameter_declaration ::= declaration_specifiers
//
- case 371: { action.builder.
+ case 368: { action.builder.
consumeParameterDeclarationWithoutDeclarator(); break;
}
//
- // Rule 373: parameter_init_declarator ::= declarator = parameter_initializer
+ // Rule 370: parameter_init_declarator ::= declarator = parameter_initializer
//
- case 373: { action.builder.
+ case 370: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 375: parameter_init_declarator ::= abstract_declarator = parameter_initializer
+ // Rule 372: parameter_init_declarator ::= abstract_declarator = parameter_initializer
//
- case 375: { action.builder.
+ case 372: { action.builder.
consumeDeclaratorWithInitializer(true); break;
}
//
- // Rule 376: parameter_init_declarator ::= = parameter_initializer
+ // Rule 373: parameter_init_declarator ::= = parameter_initializer
//
- case 376: { action.builder.
+ case 373: { action.builder.
consumeDeclaratorWithInitializer(false); break;
}
//
- // Rule 377: parameter_initializer ::= assignment_expression
+ // Rule 374: parameter_initializer ::= assignment_expression
//
- case 377: { action.builder.
+ case 374: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 378: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
+ // Rule 375: function_definition ::= declaration_specifiers_opt function_declarator <openscope-ast> ctor_initializer_list_opt function_body
//
- case 378: { action.builder.
+ case 375: { action.builder.
consumeFunctionDefinition(false); break;
}
//
- // Rule 379: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
+ // Rule 376: function_definition ::= declaration_specifiers_opt function_declarator try <openscope-ast> ctor_initializer_list_opt function_body <openscope-ast> handler_seq
//
- case 379: { action.builder.
+ case 376: { action.builder.
consumeFunctionDefinition(true); break;
}
//
- // Rule 382: initializer ::= ( expression_list )
+ // Rule 379: initializer ::= ( expression_list )
//
- case 382: { action.builder.
+ case 379: { action.builder.
consumeInitializerConstructor(); break;
}
//
- // Rule 383: initializer_clause ::= assignment_expression
+ // Rule 380: initializer_clause ::= assignment_expression
//
- case 383: { action.builder.
+ case 380: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 384: initializer_clause ::= { <openscope-ast> initializer_list , }
+ // Rule 381: initializer_clause ::= { <openscope-ast> initializer_list , }
//
- case 384: { action.builder.
+ case 381: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 385: initializer_clause ::= { <openscope-ast> initializer_list }
+ // Rule 382: initializer_clause ::= { <openscope-ast> initializer_list }
//
- case 385: { action.builder.
+ case 382: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 386: initializer_clause ::= { <openscope-ast> }
+ // Rule 383: initializer_clause ::= { <openscope-ast> }
//
- case 386: { action.builder.
+ case 383: { action.builder.
consumeInitializerList(); break;
}
//
- // Rule 391: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
+ // Rule 388: class_specifier ::= class_head { <openscope-ast> member_declaration_list_opt }
//
- case 391: { action.builder.
+ case 388: { action.builder.
consumeClassSpecifier(); break;
}
//
- // Rule 392: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
+ // Rule 389: class_head ::= class_keyword identifier_name_opt <openscope-ast> base_clause_opt
//
- case 392: { action.builder.
+ case 389: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 393: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
+ // Rule 390: class_head ::= class_keyword template_id_name <openscope-ast> base_clause_opt
//
- case 393: { action.builder.
+ case 390: { action.builder.
consumeClassHead(false); break;
}
//
- // Rule 394: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
+ // Rule 391: class_head ::= class_keyword nested_name_specifier identifier_name <openscope-ast> base_clause_opt
//
- case 394: { action.builder.
+ case 391: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 395: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
+ // Rule 392: class_head ::= class_keyword nested_name_specifier template_id_name <openscope-ast> base_clause_opt
//
- case 395: { action.builder.
+ case 392: { action.builder.
consumeClassHead(true); break;
}
//
- // Rule 397: identifier_name_opt ::= $Empty
+ // Rule 394: identifier_name_opt ::= $Empty
//
- case 397: { action.builder.
+ case 394: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 401: visibility_label ::= access_specifier_keyword :
+ // Rule 398: visibility_label ::= access_specifier_keyword :
//
- case 401: { action.builder.
+ case 398: { action.builder.
consumeVisibilityLabel(); break;
}
//
- // Rule 402: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
+ // Rule 399: member_declaration ::= declaration_specifiers_opt <openscope-ast> member_declarator_list ;
//
- case 402: { action.builder.
+ case 399: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 403: member_declaration ::= declaration_specifiers_opt ;
+ // Rule 400: member_declaration ::= declaration_specifiers_opt ;
//
- case 403: { action.builder.
+ case 400: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 406: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
+ // Rule 403: member_declaration ::= dcolon_opt nested_name_specifier template_opt unqualified_id_name ;
//
- case 406: { action.builder.
+ case 403: { action.builder.
consumeMemberDeclarationQualifiedId(); break;
}
//
- // Rule 411: member_declaration ::= ERROR_TOKEN
+ // Rule 409: member_declaration ::= ERROR_TOKEN
//
- case 411: { action.builder.
+ case 409: { action.builder.
consumeDeclarationProblem(); break;
}
//
- // Rule 419: member_declarator ::= declarator constant_initializer
+ // Rule 417: member_declarator ::= declarator constant_initializer
//
- case 419: { action.builder.
+ case 417: { action.builder.
consumeMemberDeclaratorWithInitializer(); break;
}
//
- // Rule 420: member_declarator ::= bit_field_declarator : constant_expression
+ // Rule 418: member_declarator ::= bit_field_declarator : constant_expression
//
- case 420: { action.builder.
+ case 418: { action.builder.
consumeBitField(true); break;
}
//
- // Rule 421: member_declarator ::= : constant_expression
+ // Rule 419: member_declarator ::= : constant_expression
//
- case 421: { action.builder.
+ case 419: { action.builder.
consumeBitField(false); break;
}
//
- // Rule 422: bit_field_declarator ::= identifier_name
+ // Rule 420: bit_field_declarator ::= identifier_name
//
- case 422: { action.builder.
+ case 420: { action.builder.
consumeDirectDeclaratorIdentifier(); break;
}
//
- // Rule 423: constant_initializer ::= = constant_expression
+ // Rule 421: constant_initializer ::= = constant_expression
//
- case 423: { action.builder.
+ case 421: { action.builder.
consumeInitializer(); break;
}
//
- // Rule 429: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 427: base_specifier ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 429: { action.builder.
+ case 427: { action.builder.
consumeBaseSpecifier(false, false); break;
}
//
- // Rule 430: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
+ // Rule 428: base_specifier ::= virtual access_specifier_keyword_opt dcolon_opt nested_name_specifier_opt class_name
//
- case 430: { action.builder.
+ case 428: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 431: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
+ // Rule 429: base_specifier ::= access_specifier_keyword virtual dcolon_opt nested_name_specifier_opt class_name
//
- case 431: { action.builder.
+ case 429: { action.builder.
consumeBaseSpecifier(true, true); break;
}
//
- // Rule 432: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
+ // Rule 430: base_specifier ::= access_specifier_keyword dcolon_opt nested_name_specifier_opt class_name
//
- case 432: { action.builder.
+ case 430: { action.builder.
consumeBaseSpecifier(true, false); break;
}
//
- // Rule 433: access_specifier_keyword ::= private
+ // Rule 431: access_specifier_keyword ::= private
//
- case 433: { action.builder.
+ case 431: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 434: access_specifier_keyword ::= protected
+ // Rule 432: access_specifier_keyword ::= protected
//
- case 434: { action.builder.
+ case 432: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 435: access_specifier_keyword ::= public
+ // Rule 433: access_specifier_keyword ::= public
//
- case 435: { action.builder.
+ case 433: { action.builder.
consumeAccessKeywordToken(); break;
}
//
- // Rule 437: access_specifier_keyword_opt ::= $Empty
+ // Rule 435: access_specifier_keyword_opt ::= $Empty
//
- case 437: { action.builder.
+ case 435: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 439: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
+ // Rule 437: conversion_function_id_name ::= conversion_function_id < <openscope-ast> template_argument_list_opt >
//
- case 439: { action.builder.
+ case 437: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 440: conversion_function_id ::= operator conversion_type_id
+ // Rule 438: conversion_function_id ::= operator conversion_type_id
//
- case 440: { action.builder.
+ case 438: { action.builder.
consumeConversionName(); break;
}
//
- // Rule 441: conversion_type_id ::= type_specifier_seq conversion_declarator
+ // Rule 439: conversion_type_id ::= type_specifier_seq conversion_declarator
//
- case 441: { action.builder.
+ case 439: { action.builder.
consumeTypeId(true); break;
}
//
- // Rule 442: conversion_type_id ::= type_specifier_seq
+ // Rule 440: conversion_type_id ::= type_specifier_seq
//
- case 442: { action.builder.
+ case 440: { action.builder.
consumeTypeId(false); break;
}
//
- // Rule 443: conversion_declarator ::= <openscope-ast> ptr_operator_seq
+ // Rule 441: conversion_declarator ::= <openscope-ast> ptr_operator_seq
//
- case 443: { action.builder.
+ case 441: { action.builder.
consumeDeclaratorWithPointer(false); break;
}
//
- // Rule 449: mem_initializer ::= mem_initializer_name ( expression_list_opt )
+ // Rule 447: mem_initializer ::= mem_initializer_name ( expression_list_opt )
//
- case 449: { action.builder.
+ case 447: { action.builder.
consumeConstructorChainInitializer(); break;
}
//
- // Rule 450: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
+ // Rule 448: mem_initializer_name ::= dcolon_opt nested_name_specifier_opt class_name
//
- case 450: { action.builder.
+ case 448: { action.builder.
consumeQualifiedId(false); break;
}
//
- // Rule 453: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
+ // Rule 451: operator_function_id_name ::= operator_id_name < <openscope-ast> template_argument_list_opt >
//
- case 453: { action.builder.
+ case 451: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 454: operator_id_name ::= operator overloadable_operator
+ // Rule 452: operator_id_name ::= operator overloadable_operator
//
- case 454: { action.builder.
+ case 452: { action.builder.
consumeOperatorName(); break;
}
//
- // Rule 497: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
+ // Rule 495: template_declaration ::= export_opt template < <openscope-ast> template_parameter_list > declaration
//
- case 497: { action.builder.
+ case 495: { action.builder.
consumeTemplateDeclaration(); break;
}
//
- // Rule 498: export_opt ::= export
+ // Rule 496: export_opt ::= export
//
- case 498: { action.builder.
+ case 496: { action.builder.
consumePlaceHolder(); break;
}
//
- // Rule 499: export_opt ::= $Empty
+ // Rule 497: export_opt ::= $Empty
//
- case 499: { action.builder.
+ case 497: { action.builder.
consumeEmpty(); break;
}
//
- // Rule 503: template_parameter ::= parameter_declaration
+ // Rule 501: template_parameter ::= parameter_declaration
//
- case 503: { action.builder.
+ case 501: { action.builder.
consumeTemplateParamterDeclaration(); break;
}
//
- // Rule 504: type_parameter ::= class identifier_name_opt
+ // Rule 502: type_parameter ::= class identifier_name_opt
//
- case 504: { action.builder.
+ case 502: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 505: type_parameter ::= class identifier_name_opt = type_id
+ // Rule 503: type_parameter ::= class identifier_name_opt = type_id
//
- case 505: { action.builder.
+ case 503: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 506: type_parameter ::= typename identifier_name_opt
+ // Rule 504: type_parameter ::= typename identifier_name_opt
//
- case 506: { action.builder.
+ case 504: { action.builder.
consumeSimpleTypeTemplateParameter(false); break;
}
//
- // Rule 507: type_parameter ::= typename identifier_name_opt = type_id
+ // Rule 505: type_parameter ::= typename identifier_name_opt = type_id
//
- case 507: { action.builder.
+ case 505: { action.builder.
consumeSimpleTypeTemplateParameter(true); break;
}
//
- // Rule 508: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
+ // Rule 506: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt
//
- case 508: { action.builder.
+ case 506: { action.builder.
consumeTemplatedTypeTemplateParameter(false); break;
}
//
- // Rule 509: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
+ // Rule 507: type_parameter ::= template < <openscope-ast> template_parameter_list > class identifier_name_opt = id_expression
//
- case 509: { action.builder.
+ case 507: { action.builder.
consumeTemplatedTypeTemplateParameter(true); break;
}
//
- // Rule 510: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
+ // Rule 508: template_id_name ::= identifier_name < <openscope-ast> template_argument_list_opt >
//
- case 510: { action.builder.
+ case 508: { action.builder.
consumeTemplateId(); break;
}
//
- // Rule 518: explicit_instantiation ::= template declaration
+ // Rule 516: explicit_instantiation ::= template declaration
//
- case 518: { action.builder.
+ case 516: { action.builder.
consumeTemplateExplicitInstantiation(); break;
}
//
- // Rule 519: explicit_specialization ::= template < > declaration
+ // Rule 517: explicit_specialization ::= template < > declaration
//
- case 519: { action.builder.
+ case 517: { action.builder.
consumeTemplateExplicitSpecialization(); break;
}
//
- // Rule 520: try_block ::= try compound_statement <openscope-ast> handler_seq
+ // Rule 518: try_block ::= try compound_statement <openscope-ast> handler_seq
//
- case 520: { action.builder.
+ case 518: { action.builder.
consumeStatementTryBlock(); break;
}
//
- // Rule 523: handler ::= catch ( exception_declaration ) compound_statement
+ // Rule 521: handler ::= catch ( exception_declaration ) compound_statement
//
- case 523: { action.builder.
+ case 521: { action.builder.
consumeStatementCatchHandler(false); break;
}
//
- // Rule 524: handler ::= catch ( ... ) compound_statement
+ // Rule 522: handler ::= catch ( ... ) compound_statement
//
- case 524: { action.builder.
+ case 522: { action.builder.
consumeStatementCatchHandler(true); break;
}
//
- // Rule 525: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
+ // Rule 523: exception_declaration ::= type_specifier_seq <openscope-ast> declarator
//
- case 525: { action.builder.
+ case 523: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 526: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
+ // Rule 524: exception_declaration ::= type_specifier_seq <openscope-ast> abstract_declarator
//
- case 526: { action.builder.
+ case 524: { action.builder.
consumeDeclarationSimple(true); break;
}
//
- // Rule 527: exception_declaration ::= type_specifier_seq
+ // Rule 525: exception_declaration ::= type_specifier_seq
//
- case 527: { action.builder.
+ case 525: { action.builder.
consumeDeclarationSimple(false); break;
}
//
- // Rule 535: type_parameter_start ::= ERROR_TOKEN
+ // Rule 533: type_parameter_start ::= ERROR_TOKEN
//
- case 535: { action.builder.
+ case 533: { action.builder.
consumeDeclarationProblem(); break;
}
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParserprs.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParserprs.java
index ce4349f1f33..ec5ece0a60d 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParserprs.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParserprs.java
@@ -29,7 +29,7 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0
+ 0,0,0
};
};
public final static byte isKeyword[] = IsKeyword.isKeyword;
@@ -66,461 +66,450 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,3,
4,4,5,2,4,5,4,5,6,1,
- 3,1,0,1,3,1,1,1,1,1,
- 6,6,5,7,6,1,0,6,5,6,
- 4,1,3,1,0,1,1,2,1,3,
- 1,3,1,1,1,1,3,9,2,2,
- 3,2,3,1,5,1,2,2,1,0,
- 1,1,1,4,1,2,1,1,2,3,
- 1,1,1,3,2,1,2,2,9,8,
- 2,1,3,1,3,1,0,1,0,2,
- 1,1,3,1,3,2,1,5,8,1,
- 2,3,1,5,4,3,1,3,1,1,
- 5,4,4,5,5,1,0,1,1,1,
- 2,4,2,2,1,5,1,1,1,1,
- 1,1,2,1,0,1,3,1,2,3,
- 2,1,2,2,1,0,1,3,3,5,
- 5,4,1,1,1,1,0,1,5,2,
- 2,1,2,2,1,0,1,3,4,3,
- 1,1,5,2,1,1,3,3,1,1,
+ 3,1,0,1,3,1,1,1,6,5,
+ 7,6,1,0,6,5,6,4,1,3,
+ 1,0,1,1,2,1,3,1,3,1,
+ 1,1,1,3,9,2,2,3,2,3,
+ 1,5,1,2,2,1,0,1,1,1,
+ 4,1,2,1,1,2,3,1,1,1,
+ 3,2,1,2,2,9,8,2,1,3,
+ 1,3,1,0,1,0,2,1,1,3,
+ 1,3,2,1,5,8,1,2,3,1,
+ 5,4,3,1,3,1,1,5,4,4,
+ 5,5,1,0,1,1,1,2,4,2,
+ 2,1,5,1,1,1,1,1,1,1,
+ 2,1,0,1,3,1,2,3,2,1,
+ 2,2,1,0,1,3,3,5,5,4,
+ 1,1,1,1,0,1,5,2,2,1,
+ 2,2,1,0,1,3,4,3,1,1,
+ 5,2,1,1,3,3,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,2,2,7,1,0,1,
- 3,1,1,2,4,2,4,7,9,5,
- 1,3,1,0,1,1,1,2,4,4,
- 1,2,5,5,3,3,1,4,3,1,
- 0,1,3,1,1,-131,0,0,0,-423,
+ 1,1,2,2,7,1,0,1,3,1,
+ 1,2,4,2,4,7,9,5,1,3,
+ 1,0,1,1,1,2,4,4,1,2,
+ 5,5,3,3,1,4,3,1,0,1,
+ 3,1,1,-131,0,0,0,-83,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-191,0,
- 0,0,0,0,0,0,-83,0,-54,0,
- 0,0,0,0,-2,0,0,-102,0,0,
- 0,-87,0,0,0,0,0,0,-196,0,
- 0,-157,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-368,0,0,0,
+ 0,0,0,0,-2,0,-54,0,0,0,
+ 0,0,-3,0,0,-221,0,0,0,-7,
+ 0,0,0,0,0,0,0,0,-22,-158,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-127,0,0,0,0,0,
- 0,0,-3,0,0,0,-380,0,0,-7,
- 0,0,0,0,0,0,0,-261,0,0,
- 0,-175,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-304,-219,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-187,0,0,
- 0,0,0,0,-177,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-388,0,0,-8,-127,0,-59,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-8,0,0,0,0,
- 0,-44,0,0,0,0,0,0,-56,0,
- 0,0,-6,-325,0,0,0,0,0,-178,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-448,-199,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,-459,0,0,-191,0,0,0,0,0,
+ 0,-177,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -12,0,-16,0,0,0,0,0,-19,0,
- 0,0,0,-30,0,0,0,-283,0,0,
- 0,0,0,0,-106,0,0,0,0,-92,
- -137,0,0,0,-20,0,0,0,0,0,
- 0,0,0,0,-1,0,-4,0,0,-27,
- -182,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-12,0,-329,0,0,0,-328,0,
+ -34,0,0,-16,0,-56,0,0,0,-40,
+ 0,0,0,0,0,0,-178,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-28,0,0,0,0,0,-40,0,-33,
- 0,0,0,0,0,-5,0,0,0,0,
- 0,0,0,-133,0,-298,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-31,0,-85,0,
- 0,0,0,-217,0,0,0,0,0,-198,
- 0,0,0,-214,0,0,0,0,0,0,
- -271,0,0,0,0,0,0,-206,-307,0,
- 0,0,0,-36,0,0,0,0,0,0,
- 0,0,-489,0,0,0,0,0,0,0,
+ 0,0,0,-44,0,0,0,0,0,0,
+ 0,-93,0,0,0,0,0,-192,0,0,
+ 0,0,0,-137,0,0,0,-19,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-403,-182,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-176,0,0,0,0,
- 0,0,0,0,0,0,0,-460,0,-368,
- 0,0,0,-48,0,0,-374,0,0,0,
- -475,-338,-512,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-22,0,0,0,0,
- 0,0,0,0,0,-218,0,0,0,0,
- 0,-43,0,0,-60,0,0,0,-23,0,
+ 0,0,0,0,0,-23,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-91,-325,
+ 0,0,0,-6,0,-20,0,0,0,-299,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-49,0,0,
- -18,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-378,0,0,0,0,0,-253,0,0,
- 0,0,0,-46,0,0,0,-258,0,-290,
- -86,0,0,0,0,-81,0,0,0,0,
+ -27,0,-291,0,0,0,0,0,-261,0,
+ 0,0,0,-87,-355,0,0,0,-30,0,
+ 0,0,-373,0,0,0,0,0,-223,0,
+ 0,0,-345,0,0,0,0,0,0,0,
+ 0,-85,0,-387,0,0,0,-486,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-259,0,
- 0,0,0,0,0,0,0,0,-273,0,
- 0,0,0,-89,0,0,0,0,0,-248,
- 0,0,0,-82,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-196,0,0,0,0,-138,
+ 0,0,0,-404,0,0,0,0,0,0,
+ 0,0,0,-248,0,0,0,-509,0,0,
0,0,0,0,0,0,0,0,0,0,
- -93,0,0,0,0,-24,0,0,-208,0,
0,0,0,0,0,0,0,0,0,0,
+ -28,0,0,0,0,0,0,0,-31,0,
+ 0,0,0,0,0,0,0,0,0,-60,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-50,
- 0,0,0,0,0,-51,0,-25,0,0,
- -440,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-18,0,0,0,-350,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-410,0,0,0,0,-52,0,
- 0,0,-21,0,0,0,-363,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-193,0,-36,0,0,
+ 0,-4,0,0,0,0,-259,0,-5,0,
+ 0,-99,-43,0,0,0,-284,0,0,-81,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-53,0,-55,0,0,0,-276,
- 0,0,0,-310,-138,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-99,0,
- -193,-199,0,0,0,-379,0,0,0,0,
- 0,0,0,0,0,0,-333,0,0,0,
- -68,-396,0,0,0,0,0,0,-265,0,
- -69,-79,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-345,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-315,0,
- -70,0,0,-160,0,0,0,-71,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-72,0,0,0,
- 0,0,0,0,-73,0,-90,0,0,0,
- 0,0,0,0,0,-161,0,0,0,0,
+ -133,0,-429,0,0,0,-214,0,0,0,
+ 0,0,-393,0,0,0,-82,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-134,0,
- 0,0,0,0,0,0,0,0,-98,0,
- 0,0,0,0,-74,0,0,-162,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-49,0,0,
+ 0,0,0,0,0,-86,0,0,0,0,
+ -24,-208,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-75,0,
- 0,0,0,0,-464,0,-375,0,0,-163,
+ 0,0,0,0,-134,0,0,0,0,0,
+ 0,0,-364,0,0,0,0,0,-463,0,
+ 0,0,0,-443,0,0,0,-50,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-286,0,0,0,0,0,0,0,
- -76,0,-104,0,0,0,0,-77,0,0,
- 0,-164,0,0,0,-78,0,0,0,0,
+ 0,0,0,0,-51,0,-89,0,0,0,
+ 0,0,-52,0,0,-21,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-293,0,0,0,0,0,
- 0,0,-80,0,-105,0,0,0,0,-84,
- -88,0,0,-165,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-301,0,0,0,
- 0,0,0,0,-94,0,-107,0,0,0,
- 0,-95,-96,0,0,-166,0,0,0,0,
+ 0,0,0,0,0,0,-53,0,0,0,
+ 0,0,-175,0,0,0,-343,-55,0,0,
+ 0,0,0,-420,0,0,0,-157,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-97,0,-109,0,
- 0,0,0,-110,-111,0,0,-167,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-79,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -116,0,0,0,0,0,0,0,-119,0,
- -112,0,0,0,0,-128,-136,0,0,-168,
- 0,0,0,-184,0,0,0,0,0,0,
+ 0,0,0,0,0,-68,0,0,0,0,
+ 0,0,0,-69,0,-33,0,0,0,-472,
+ 0,-70,0,0,-160,0,0,0,-71,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-185,0,0,0,0,0,0,0,
- -186,0,-189,0,0,0,0,-202,-203,0,
- 0,-169,0,0,0,-204,0,0,0,0,
+ 0,0,0,0,0,0,0,-72,0,0,
+ 0,0,0,0,0,-73,0,-46,0,0,
+ 0,-508,0,-74,0,0,-161,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-205,0,0,0,0,0,
- 0,0,-210,0,-190,0,0,0,0,-211,
- -212,0,0,-170,0,0,0,-213,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-226,0,0,0,
- 0,0,0,0,-227,0,-194,0,0,0,
- 0,-228,-229,0,0,-284,0,0,0,-230,
+ 0,0,0,0,0,0,0,0,0,-90,
+ 0,0,0,0,0,-75,0,0,-162,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-231,0,
- 0,0,0,0,0,0,-232,0,-255,0,
- 0,0,0,-233,-234,0,0,-294,0,0,
- 0,-235,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -236,0,0,0,0,0,0,0,-237,0,
- -326,0,0,0,-340,0,-449,0,0,-516,
- 0,0,0,-395,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-76,
+ 0,-98,0,0,0,0,0,-77,0,0,
+ -163,0,0,0,-386,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-238,0,0,0,0,0,0,0,
- -239,0,0,0,0,0,-192,0,0,0,
- 0,-314,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-240,0,0,0,0,0,
- 0,0,-241,0,-242,0,0,0,-343,0,
- 0,0,-243,0,0,0,0,0,0,0,
+ 0,-78,0,-179,0,0,0,-80,0,-1,
+ 0,0,-164,0,0,0,-92,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-244,
- 0,0,0,0,0,-221,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-247,
- -383,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-84,0,0,0,0,
+ 0,0,0,-88,0,-346,0,0,0,-374,
+ 0,-94,0,0,-165,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-95,0,0,
+ 0,0,0,0,0,-96,0,0,0,0,
+ 0,0,0,-97,0,0,-166,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-249,0,-250,0,0,0,-384,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-104,
+ 0,0,0,0,0,0,0,0,-167,0,
+ 0,0,-180,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -251,0,0,0,0,0,0,0,-252,0,
- -254,0,0,0,-223,0,0,0,-262,0,
- 0,0,0,0,0,0,0,-180,-263,-393,
+ 0,-287,0,0,0,0,0,0,0,-110,
+ 0,-405,0,0,0,-111,0,-116,0,0,
+ -168,0,0,0,-119,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-128,0,0,0,0,0,0,
+ 0,-136,0,-253,0,0,0,0,0,-184,
+ 0,0,-169,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-264,0,0,0,0,0,0,0,
- -274,0,-275,0,0,0,-452,0,0,0,
+ 0,0,0,0,0,-294,0,0,0,0,
+ 0,0,0,-185,0,-105,0,0,0,0,
+ -318,0,0,0,-170,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-278,
- 0,0,0,0,0,0,0,-279,0,0,
- 0,0,0,-377,0,0,0,-511,-280,0,
- 0,0,0,0,-350,0,0,0,-172,0,
+ 0,0,0,0,0,0,0,-302,0,0,
+ 0,0,0,0,0,0,0,-107,0,0,
+ 0,0,0,-186,0,0,-285,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-202,
+ 0,0,0,0,0,0,0,-203,0,-109,
+ 0,0,0,0,-204,-205,0,0,-295,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-281,0,0,0,0,0,0,0,-257,
- 0,0,0,0,-369,-159,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-302,0,
- 0,0,0,0,0,0,-303,0,-158,0,
+ 0,-210,0,0,0,0,0,0,0,-211,
+ 0,0,0,0,0,-48,0,0,0,0,
+ -513,0,0,0,-212,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-187,0,0,0,0,0,0,
+ 0,-213,0,-112,0,0,0,0,-226,-266,
+ 0,0,-317,0,0,0,-25,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-308,0,0,0,0,0,0,-154,0,
+ 0,0,0,0,0,-381,0,0,0,0,
+ 0,0,0,-227,0,-228,0,0,0,-348,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-408,0,0,0,0,0,-155,0,0,
- 0,-309,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -313,0,0,0,0,-156,0,0,0,0,
+ -229,0,0,0,0,0,-219,0,0,0,
+ 0,0,0,0,0,0,0,-230,-231,-391,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-320,0,
- 0,0,0,-148,0,0,0,-321,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-327,0,0,0,
- -149,0,0,0,0,0,0,0,0,0,
+ 0,0,-232,0,0,0,0,0,0,0,
+ -233,0,-234,0,0,0,-392,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-397,0,0,0,-150,0,0,
- 0,-443,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -342,0,0,0,-151,0,0,0,-344,0,
+ 0,0,0,0,0,0,0,-235,0,-236,
+ 0,0,0,-336,0,0,0,-237,-100,0,
+ 0,0,0,0,-238,0,-401,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-360,0,0,
- 0,-13,0,0,0,0,-364,0,0,0,
- 0,0,-197,0,0,0,-14,0,0,0,
- -181,0,-365,-297,-465,-152,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-57,0,
- 0,-491,0,0,0,0,-289,0,0,0,
- 0,-101,-100,0,0,0,0,-370,0,0,
- -129,0,0,-373,0,0,0,0,-322,0,
- 0,0,-390,0,0,-518,-311,0,0,0,
- -513,0,0,0,0,0,0,0,0,-130,
- -422,0,0,0,0,0,0,-461,-183,-482,
- -47,0,-409,0,0,-398,0,0,0,-32,
+ 0,0,0,0,0,0,0,-239,0,-240,
+ 0,0,0,-451,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-241,0,0,0,
+ 0,0,0,0,-242,0,-243,0,0,0,
+ -385,0,0,0,-244,-129,0,0,0,0,
+ 0,-414,-181,-172,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-9,0,0,-391,0,0,0,-401,0,
- 0,0,0,0,0,-442,-403,-404,0,0,
- 0,0,0,-405,0,0,0,0,0,0,
- 0,0,0,-282,0,0,0,0,-216,0,
- 0,-400,0,0,0,0,0,0,0,0,
- 0,0,-407,0,0,0,0,0,-45,0,
- 0,0,0,0,0,0,0,-153,0,0,
+ 0,0,0,0,-189,0,-247,0,0,0,
+ -159,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-249,0,0,0,0,0,0,
+ 0,-250,0,-154,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-428,0,0,0,
+ 0,0,-155,0,0,0,-216,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-411,0,0,0,-426,-268,-35,0,0,
- 0,-126,0,-91,0,0,-29,0,0,0,
- 0,-413,0,-424,-108,0,0,0,0,-451,
- -439,0,0,-299,0,0,0,-495,-295,0,
- 0,0,0,0,0,-115,0,0,0,-453,
- 0,0,0,0,0,0,0,0,-296,0,
+ 0,0,0,0,0,-274,0,0,0,0,
+ -156,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-139,0,-433,0,0,0,0,
- 0,-454,0,0,-200,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-348,
- -38,0,0,0,0,0,0,-201,0,0,
- 0,0,-438,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-385,0,
- 0,0,0,0,0,0,-359,0,0,-455,
- -456,0,0,-15,0,0,0,0,-300,0,
- 0,0,0,0,0,0,-457,0,0,0,
- 0,0,0,0,0,0,-266,0,0,0,
- 0,0,0,0,0,0,0,-349,0,0,
- -269,0,0,0,-445,0,-118,-117,0,-207,
+ 0,0,0,-251,0,0,0,0,-148,0,
+ 0,0,-252,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -225,0,-305,0,0,-514,0,0,0,0,
- 0,0,0,-323,0,0,0,0,0,0,
- 0,-173,0,0,0,0,-37,-459,-499,0,
+ 0,0,0,0,0,-149,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-220,0,0,-476,0,0,0,
- 0,0,-446,0,-355,0,0,0,0,-414,
- 0,0,0,-477,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-462,
- -330,0,0,0,0,-478,0,0,-39,0,
+ 0,0,0,0,0,0,0,0,-269,0,
+ 0,0,-150,0,0,0,-254,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-113,0,0,0,-26,
+ 0,0,0,0,0,-225,0,0,0,-151,
+ 0,0,0,-262,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-450,-140,-483,0,0,0,0,0,
- 0,-487,-497,0,0,0,0,0,0,0,
- 0,-505,0,0,-224,0,0,0,0,0,
- -171,0,0,0,0,0,0,0,0,-174,
- 0,0,0,0,-245,-517,0,0,0,0,
+ 0,0,-270,0,0,0,-13,0,0,0,
+ 0,-399,0,0,0,0,0,-106,0,0,
+ 0,-14,0,0,0,-264,0,-265,-130,-32,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-332,0,0,-335,0,0,
- -337,0,0,0,0,0,0,0,0,0,
- 0,0,0,-143,0,0,0,0,0,0,
+ -275,-276,-421,0,0,0,-38,0,0,0,
+ 0,0,-279,-280,0,-281,0,0,0,0,
+ 0,-316,0,0,0,-197,0,0,0,0,
+ -375,-101,0,-282,0,0,0,0,-15,0,
+ -479,0,0,0,0,0,0,0,0,-10,
+ 0,0,0,0,0,0,-304,0,0,0,
+ 0,0,-183,0,-206,-200,0,0,0,0,
+ 0,0,0,0,-26,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-195,0,0,
+ 0,-217,0,0,0,0,0,0,0,0,
+ 0,0,-305,0,0,-307,0,0,0,0,
+ 0,0,0,0,0,-190,0,-313,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-463,0,-144,0,
+ 0,0,0,0,0,0,0,0,0,-152,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-306,0,0,0,0,0,0,
- 0,0,0,0,0,-316,0,0,0,0,
- -58,0,0,0,-246,0,-434,0,0,-10,
- -458,0,-468,0,0,-471,-291,-34,-328,0,
- 0,0,-324,-41,-329,0,0,0,0,-472,
+ 0,0,-402,0,0,-153,0,0,0,-306,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-311,0,
+ 0,-408,0,0,0,0,0,0,0,0,
+ 0,0,-118,-201,-424,-126,0,0,0,0,
+ -198,0,0,0,0,0,-312,-436,-263,0,
+ 0,0,-256,-194,-323,0,0,0,-11,-173,
+ -324,-464,0,0,0,0,0,0,0,0,
+ 0,-45,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-510,0,
+ 0,-416,0,0,0,0,0,0,0,0,
+ 0,0,-438,0,0,0,0,-449,0,0,
+ 0,0,0,0,0,0,-272,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -351,-352,0,0,0,0,0,0,0,0,
- 0,0,0,0,-353,-42,0,0,0,0,
- 0,-479,-195,0,0,0,0,0,0,0,
+ 0,0,0,-330,-347,-511,0,0,0,0,
+ 0,-445,0,0,0,0,0,0,-422,0,
+ -207,0,0,0,0,0,0,0,0,0,
+ 0,-349,0,0,0,0,0,-277,0,0,
+ 0,0,0,-496,0,-437,0,0,-258,0,
+ 0,0,-220,0,0,0,0,0,0,0,
+ -143,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,-416,-188,0,0,0,0,0,-103,0,
- 0,0,0,-354,0,0,0,0,0,0,
+ 0,0,0,0,0,-144,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-317,0,-346,-270,0,-504,
0,0,0,0,0,0,0,0,0,0,
+ -309,0,0,0,0,0,0,0,0,0,
+ 0,-9,-365,-369,-370,0,-283,0,0,0,
+ -384,-218,-415,-29,0,0,-457,0,-140,-255,
+ 0,-376,0,0,0,0,0,-174,-257,-224,
+ -379,0,0,0,0,0,0,0,0,0,
+ -108,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-35,
+ 0,0,0,0,-453,0,0,0,0,0,
+ -314,0,-245,-176,-37,0,-476,0,0,0,
+ 0,-488,0,0,0,0,-290,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-356,0,0,0,
- 0,0,0,0,0,0,0,0,0,-358,
+ 0,0,0,0,0,-42,0,0,0,0,
+ 0,0,-296,-300,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-506,0,0,
- 0,0,0,0,0,0,-272,0,0,0,
- -448,0,0,0,0,0,0,0,0,0,
- 0,-215,0,0,0,-292,0,0,0,-376,
- 0,0,0,0,0,0,0,-331,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- -366,0,0,-318,0,-510,0,0,0,0,
- 0,0,0,0,0,0,-367,0,0,0,
- 0,0,0,0,0,0,0,0,0,-473,
- 0,0,0,0,-179,0,0,-399,0,0,
- -406,0,0,0,0,0,-388,0,0,0,
- 0,0,0,0,0,0,0,0,0,-515,
- 0,0,0,0,0,0,0,0,0,0,
- -256,0,0,-389,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-417,0,
- -521,0,0,0,0,-415,0,0,0,-357,
- 0,0,0,-11,0,0,0,0,0,0,
- -392,0,0,0,0,0,0,0,-394,0,
- -402,0,0,0,0,0,0,0,0,0,
- 0,-418,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-425,0,0,-524,0,
- 0,0,0,0,0,0,0,0,0,-121,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,-222,0,0,0,0,0,0,-421,
- 0,0,0,0,-427,-428,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,-362,0,0,0,-429,0,0,0,0,
- 0,-432,0,0,0,0,0,-470,0,0,
- 0,0,0,0,0,0,0,0,0,-145,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,-146,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-147,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-334,-500,
- 0,0,0,-474,-372,0,0,0,0,-437,
- 0,0,0,0,0,-485,0,-61,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,-466,0,0,0,0,0,0,0,
- 0,-371,0,0,-17,0,-486,0,0,-469,
- 0,0,0,0,0,0,-488,0,-490,0,
- 0,0,-120,0,0,-507,0,0,-492,0,
- 0,0,0,0,0,0,-312,0,0,0,
- 0,-494,0,-519,0,0,0,0,0,0,
- 0,0,0,0,-420,0,0,-341,0,0,
- -496,0,0,0,0,0,0,0,0,0,
- 0,-122,0,0,0,0,0,0,0,-498,
- 0,0,0,0,0,0,0,0,0,-336,
- 0,0,0,-501,0,0,0,0,-502,0,
- 0,0,0,0,0,0,0,-431,0,-503,
- 0,0,0,0,0,-520,-522,0,0,0,
- 0,0,0,0,0,0,0,0,-135,0,
+ 0,0,0,0,0,0,-501,-298,0,0,
+ 0,-461,0,0,-398,0,0,0,0,0,
+ -406,-409,0,0,0,0,0,0,0,0,
+ 0,0,0,-246,-410,0,0,0,-292,0,
+ 0,0,-117,0,0,0,0,0,0,0,
+ -297,0,0,0,0,0,0,0,0,0,
+ -413,0,0,0,0,0,-503,-492,0,0,
+ 0,0,0,0,0,0,0,-412,-273,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-353,0,-327,0,
+ 0,0,0,-301,0,0,0,-417,0,-354,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-347,0,0,0,0,0,0,-523,
+ -293,0,0,0,0,0,-507,-477,-515,0,
0,0,0,0,0,0,0,0,0,0,
- -444,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-123,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-114,0,0,0,0,
+ 0,-268,-419,-467,-462,0,0,0,-139,0,
+ 0,0,0,0,0,0,0,0,-430,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,-435,0,0,0,0,
+ -512,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-471,-450,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-39,
+ -303,-518,-57,-271,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -482,-452,0,0,0,0,0,0,0,-454,
+ 0,-455,0,0,0,0,0,-483,0,0,
+ 0,0,0,-356,0,0,0,0,0,-41,
+ 0,0,0,0,0,-456,0,-308,0,0,
+ 0,0,0,0,0,0,-458,-521,0,-460,
+ 0,0,-47,0,0,0,0,0,0,0,
+ 0,0,0,0,-335,0,0,0,0,0,
+ 0,-326,0,0,0,-338,-411,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-62,0,
+ -473,-474,0,0,0,-333,0,0,0,0,
+ 0,-475,-102,0,0,0,0,0,0,0,
+ 0,0,0,-487,0,0,0,0,0,-58,
0,0,0,0,0,0,0,0,0,0,
+ -331,0,0,0,-171,-480,-484,-494,0,-332,
+ 0,0,0,0,0,0,0,0,-351,-432,
0,0,0,0,0,0,0,0,0,0,
- -63,0,0,0,0,0,0,0,0,0,
+ 0,0,-502,0,0,0,0,0,0,-145,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-64,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-65,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-146,0,
+ 0,0,-334,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-66,0,0,0,
+ 0,-147,0,0,0,-514,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-67,0,
+ 0,0,0,0,-337,-497,0,0,0,0,
+ -362,0,0,0,-357,-115,0,0,0,-380,
+ 0,0,0,-61,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-504,-358,0,
+ 0,0,0,0,0,0,0,0,-383,0,
+ 0,-17,0,-340,0,0,-342,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -132,0,0,0,0,0,0,0,0,0,
+ 0,0,-319,0,0,0,0,0,0,0,
+ 0,0,-310,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-359,0,0,0,
+ 0,0,-441,-120,0,0,0,0,0,0,
+ -442,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-363,0,0,0,0,-367,
+ 0,0,0,0,0,-396,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-141,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-371,0,0,0,
+ 0,0,0,0,-372,-407,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-427,-397,
+ 0,-423,0,-431,0,0,0,0,-62,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-142,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-209,0,0,0,
+ 0,-435,0,-440,0,0,0,0,-63,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,-287,0,
0,0,0,0,0,0,0,0,0,0,
+ -64,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -508,0,0,0,0,0,0,0,0,0,
- 0,-59,0,0,0,0,0,0,0,0,
+ 0,0,-65,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-381,0,0,0,0,0,0,0,
- 0,0,0,0,-480,0,0,0,0,-125,
+ 0,0,0,0,-66,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-67,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-441,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-132,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-339,
0,0,0,0,0,0,0,0,0,0,
- -382,0,0,0,0,0,0,0,0,0,
+ -141,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,-124,0,0,0,
- 0,-267,0,0,0,0,0,0,0,0,
+ 0,0,-142,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,-209,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,-493,0,0,0,0,0,
+ 0,0,0,0,0,0,-288,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,-386,0,0,
- 0,0,0,0,0,-436,0,0,0,0,
- 0,-387,0,0,0,-412,0,0,0,-430,
- 0,0,0,-447,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-505,0,
+ 0,0,0,-465,0,0,0,0,0,-478,
+ -481,-320,-321,0,0,0,0,-469,-339,-485,
+ -493,0,0,0,0,-500,-360,-468,0,0,
+ 0,-489,0,0,0,-113,0,0,0,0,
+ 0,0,0,0,0,0,0,-491,0,0,
+ 0,0,0,0,0,0,0,-516,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-103,0,0,0,0,0,0,
+ -322,-377,0,0,0,0,0,0,0,0,
+ 0,0,0,-425,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-495,-520,-498,
+ 0,0,0,0,-121,0,0,0,0,0,
+ 0,0,0,0,0,-382,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- -419,0,0,0,0,0,0,0,0,0,
- 0,0,-319,0,0,0,0,0,-260,0,
- 0,0,0,0,-481,-484,0,0,0,0,
- 0,0,0,0,0,-277,0,0,0,-285,
+ 0,0,-215,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-122,0,
+ -499,0,0,0,0,0,0,0,0,-426,
0,0,0,0,0,0,0,0,0,0,
- 0,0,-288,0,0,0,0,0,0,0,
- 0,-467,0,0,0,0,-361,0,0,-509,
+ 0,0,0,0,0,0,0,-222,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,-123,0,-517,0,0,-124,0,0,
+ 0,0,0,-434,0,0,0,0,0,0,
+ 0,0,0,0,0,0,-519,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-389,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-366,0,
+ 0,0,0,-447,0,0,0,0,0,-444,
0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-188,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ 0,-315,0,0,0,0,0,-114,0,0,
+ 0,0,0,-344,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
+ -361,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ -390,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-490,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ -267,0,0,0,0,0,0,0,0,0,
+ 0,0,0,-378,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,-341,
+ 0,0,0,0,0,0,0,-400,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,-352,0,0,0,0,0,0,0,
+ 0,0,-394,0,0,0,0,-470,0,0,
+ 0,0,0,0,-395,0,0,0,-418,0,
+ 0,0,-433,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,-135,0,
+ 0,-506,0,0,0,0,0,-446,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,-125,0,0,
+ 0,0,-439,0,0,0,0,0,0,0,
+ 0,0,0,0,0,-260,0,0,0,0,
+ 0,0,0,0,0,0,-278,0,0,0,
+ -286,0,0,0,0,0,0,0,0,0,
+ 0,0,-289,-466,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
- 0,0
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0
};
};
public final static short baseCheck[] = BaseCheck.baseCheck;
@@ -530,529 +519,519 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface BaseAction {
public final static char baseAction[] = {
- 169,4,53,72,72,31,31,64,64,38,
- 38,192,192,193,193,194,194,1,1,15,
+ 167,4,48,75,75,31,31,64,64,38,
+ 38,190,190,191,191,192,192,1,1,15,
15,15,15,15,15,15,15,16,16,16,
14,11,11,8,8,8,8,8,8,2,
65,65,5,5,12,12,12,12,44,44,
- 133,133,134,61,61,42,17,17,17,17,
+ 132,132,133,61,61,42,17,17,17,17,
17,17,17,17,17,17,17,17,17,17,
- 17,17,17,17,17,17,135,135,135,116,
- 116,18,18,18,18,18,18,18,18,18,
- 18,18,18,18,19,19,170,170,171,171,
- 172,138,138,139,139,136,136,140,137,137,
+ 17,17,17,17,17,17,134,134,134,113,
+ 113,18,18,18,18,18,18,18,18,18,
+ 18,18,18,18,19,19,168,168,169,169,
+ 170,137,137,138,138,135,135,139,136,136,
20,20,21,21,22,22,22,24,24,24,
24,25,25,25,26,26,26,27,27,27,
27,27,28,28,28,29,29,30,30,32,
32,34,34,35,35,36,36,41,41,40,
40,40,40,40,40,40,40,40,40,40,
- 40,40,39,33,141,141,98,98,173,173,
- 93,195,195,74,74,74,74,74,74,74,
- 74,74,75,75,75,70,70,59,59,174,
- 174,76,76,76,104,104,175,175,77,77,
- 77,176,176,78,78,78,78,78,79,79,
- 73,73,73,73,73,73,73,48,48,48,
- 48,48,105,105,106,106,49,177,23,23,
- 23,23,23,47,47,88,88,88,88,88,
- 148,148,143,143,143,143,143,144,144,144,
- 145,145,145,146,146,146,147,147,147,89,
- 89,89,89,89,90,90,90,13,13,13,
- 13,13,13,13,13,13,13,13,101,120,
- 120,120,120,120,120,118,118,118,119,119,
- 150,150,149,149,122,122,151,83,83,84,
- 84,86,87,85,51,46,152,152,52,50,
- 82,82,153,153,142,142,123,124,124,71,
- 71,154,154,62,62,62,57,57,56,63,
- 63,68,68,55,55,55,91,91,100,99,
- 99,60,60,58,58,54,54,43,102,102,
- 102,94,94,94,95,95,96,96,96,97,
- 97,107,107,107,109,109,108,108,196,196,
- 92,92,179,179,179,179,179,126,45,45,
- 156,178,178,127,127,127,127,180,180,37,
- 37,117,128,128,128,128,110,110,121,121,
- 121,158,159,159,159,159,159,159,159,159,
- 159,159,183,183,181,181,182,182,160,160,
- 160,160,161,184,112,111,111,185,185,162,
- 162,162,162,103,103,103,186,186,9,9,
- 10,187,187,188,163,155,155,164,164,165,
- 166,166,6,6,7,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,167,167,167,
- 167,167,167,167,167,167,167,66,69,69,
- 168,168,130,130,113,113,113,113,113,113,
- 3,131,131,129,129,114,114,114,81,67,
- 80,157,157,115,115,189,189,189,132,132,
- 125,125,190,190,169,169,881,39,1868,1861,
- 2119,3522,34,820,31,35,852,30,32,1860,
- 29,27,56,1391,112,82,83,114,1401,769,
- 1448,1441,1475,1467,1559,1525,1608,2417,1601,329,
- 1616,1643,149,278,4440,381,164,150,1131,39,
- 907,36,861,3409,34,820,343,35,852,1071,
- 39,287,2204,39,907,36,237,3311,34,820,
- 31,35,852,30,32,1346,29,27,56,1391,
- 112,82,83,114,1401,1947,1448,1441,1475,1467,
- 1559,1525,2055,1149,240,235,236,1891,39,451,
- 993,3150,4606,337,324,1268,326,279,65,331,
- 320,1226,1171,39,907,36,356,642,34,820,
- 344,35,852,247,250,253,256,2941,329,1171,
- 39,907,36,3990,944,34,820,44,35,852,
- 392,425,350,1036,1059,353,404,1853,1457,3328,
- 2848,3067,3129,3334,3376,1339,39,907,36,2607,
- 3311,34,820,31,35,852,2154,32,1346,29,
- 27,56,1391,112,82,83,114,1401,347,1448,
- 1441,1475,1467,1559,1525,1608,1350,1601,318,1616,
- 1643,149,1891,39,284,515,150,4096,2984,1989,
- 39,1776,47,30,1064,46,820,2742,1128,516,
- 1339,39,907,36,2607,3311,34,820,31,35,
- 852,2154,32,1346,29,27,56,1391,112,82,
- 83,114,1401,347,1448,1441,1475,1467,1559,1525,
- 1608,1599,1601,602,1616,1643,149,333,339,1367,
- 515,150,454,2984,1071,1727,1693,38,1071,39,
- 2488,444,2842,2862,516,1071,39,1855,1813,511,
- 2417,938,39,907,36,1380,3723,34,820,31,
- 35,852,63,32,2152,2463,2181,946,39,396,
- 1707,1339,39,907,36,2607,3311,34,820,31,
- 35,852,2154,32,1346,29,27,56,1391,112,
- 82,83,114,1401,347,1448,1441,1475,1467,1559,
- 1525,1608,1956,1601,511,1616,1643,149,1537,1735,
- 1257,515,150,3146,2984,3409,946,39,396,2189,
- 2977,2181,496,2588,681,516,1611,39,907,36,
- 2607,3311,34,820,31,35,852,2154,32,1346,
- 29,27,56,1391,112,82,83,114,1401,347,
- 1448,1441,1475,1467,1559,1525,1608,2187,1601,30,
- 1616,1643,149,3062,857,336,515,150,2607,2984,
- 1071,39,1693,281,1891,39,284,630,534,4680,
- 516,1071,39,1693,286,511,67,347,2325,1849,
- 39,907,36,3958,1096,34,820,343,35,852,
- 2191,578,2181,1406,39,907,36,1130,3311,34,
- 820,31,35,852,30,32,1346,29,27,56,
- 1391,112,82,83,114,1401,716,1448,1441,1475,
- 1467,1559,1525,1608,575,1601,1992,1616,1643,149,
- 512,788,3150,383,150,324,1268,326,1071,3866,
- 2139,319,1226,2774,946,39,396,2474,2764,2758,
- 2653,2002,1848,1475,39,907,36,386,3311,34,
- 820,31,35,852,30,32,1346,29,27,56,
- 1391,112,82,83,114,1401,1289,1448,1441,1475,
- 1467,1559,1525,1608,914,1601,30,1616,1643,149,
- 1229,1180,2233,383,150,2204,39,907,36,421,
- 3311,34,820,31,35,852,30,32,1346,29,
- 27,56,1391,112,82,83,91,384,150,3327,
- 387,1785,39,907,36,2647,3311,34,820,31,
- 35,852,30,32,1346,29,27,56,1391,112,
- 82,83,114,1401,358,1448,1441,1475,1467,1559,
- 1525,1608,1848,1601,1769,1616,1643,149,1666,48,
- 2120,377,150,3409,1257,360,522,357,1457,3409,
- 1770,30,530,3850,1981,3200,1785,39,907,36,
- 388,3311,34,820,31,35,852,30,32,1346,
- 29,27,56,1391,112,82,83,114,1401,2611,
- 1448,1441,1475,1467,1559,1525,1608,1376,1601,2611,
- 1616,1643,149,337,30,445,377,150,685,336,
- 1071,39,1052,390,1785,39,907,36,1128,3311,
- 34,820,31,35,852,30,32,1346,29,27,
- 56,1391,112,82,83,114,1401,376,1448,1441,
- 1475,1467,1559,1525,1608,3028,1601,55,1616,1643,
- 149,1295,52,391,377,150,509,338,339,1785,
- 39,907,36,288,3311,34,820,31,35,852,
- 30,32,1346,29,27,56,1391,112,82,83,
- 114,1401,495,1448,1441,1475,1467,1559,1525,1608,
- 2279,1601,375,1616,1643,149,2390,2703,1468,164,
- 150,1724,39,907,36,445,3311,34,820,31,
- 35,852,30,32,1346,29,27,56,1391,112,
- 82,83,114,1401,329,1448,1441,1475,1467,1559,
- 1525,1608,99,1601,2686,1616,1643,149,2916,2465,
- 373,383,150,1678,39,907,36,2102,3311,34,
- 820,31,35,852,30,32,1346,29,27,56,
- 1391,112,82,83,114,1401,330,1448,1441,1475,
- 1467,1559,1525,1608,2547,1601,590,1616,1650,170,
- 1071,39,1693,283,1184,1276,39,907,36,4043,
- 3723,34,820,31,35,852,62,32,188,1295,
- 1853,769,1601,39,907,36,2420,4676,34,820,
- 31,35,852,30,32,332,509,1171,39,907,
- 36,2574,2139,34,820,2335,35,852,381,1597,
- 354,1736,1544,39,907,36,567,3311,34,820,
- 31,35,852,30,32,1346,29,27,56,1391,
- 112,82,83,114,1401,1573,1448,1441,1475,1467,
- 1559,1525,1608,76,1601,380,1616,1643,149,1071,
- 2241,1043,148,150,1785,39,907,36,1242,3311,
- 34,820,31,35,852,30,32,1346,29,27,
- 56,1391,112,82,83,114,1401,1949,1448,1441,
- 1475,1467,1559,1525,1608,29,1601,30,1616,1643,
- 149,740,393,425,161,150,1785,39,907,36,
- 66,3311,34,820,31,35,852,30,32,1346,
- 29,27,56,1391,112,82,83,114,1401,861,
- 1448,1441,1475,1467,1559,1525,1608,359,1601,30,
- 1616,1643,149,821,530,332,160,150,1785,39,
- 907,36,378,3311,34,820,31,35,852,30,
- 32,1346,29,27,56,1391,112,82,83,114,
- 1401,658,1448,1441,1475,1467,1559,1525,1608,1765,
- 1601,291,1616,1643,149,1071,3172,2157,159,150,
- 1785,39,907,36,659,3311,34,820,31,35,
- 852,30,32,1346,29,27,56,1391,112,82,
- 83,114,1401,2329,1448,1441,1475,1467,1559,1525,
- 1608,678,1601,30,1616,1643,149,678,326,419,
- 158,150,1785,39,907,36,137,3311,34,820,
- 31,35,852,30,32,1346,29,27,56,1391,
- 112,82,83,114,1401,1980,1448,1441,1475,1467,
- 1559,1525,1608,1284,1601,30,1616,1643,149,3403,
- 992,597,157,150,1785,39,907,36,659,3311,
- 34,820,31,35,852,30,32,1346,29,27,
- 56,1391,112,82,83,114,1401,861,1448,1441,
- 1475,1467,1559,1525,1608,685,1601,30,1616,1643,
- 149,559,773,2576,156,150,1785,39,907,36,
- 659,3311,34,820,31,35,852,30,32,1346,
- 29,27,56,1391,112,82,83,114,1401,658,
- 1448,1441,1475,1467,1559,1525,1608,1102,1601,1398,
- 1616,1643,149,1371,1979,1958,155,150,1785,39,
- 907,36,1387,3311,34,820,31,35,852,30,
- 32,1346,29,27,56,1391,112,82,83,114,
- 1401,966,1448,1441,1475,1467,1559,1525,1608,1385,
- 1601,30,1616,1643,149,3383,2585,1218,154,150,
- 1785,39,907,36,854,3311,34,820,31,35,
- 852,30,32,1346,29,27,56,1391,112,82,
- 83,114,1401,513,1448,1441,1475,1467,1559,1525,
- 1608,62,1601,30,1616,1643,149,2847,164,692,
- 153,150,1785,39,907,36,868,3311,34,820,
- 31,35,852,30,32,1346,29,27,56,1391,
- 112,82,83,114,1401,1107,1448,1441,1475,1467,
- 1559,1525,1608,1223,1601,2653,1616,1643,149,3021,
- 777,2448,152,150,1785,39,907,36,2391,3311,
- 34,820,31,35,852,30,32,1346,29,27,
- 56,1391,112,82,83,114,1401,1777,1448,1441,
- 1475,1467,1559,1525,1608,2333,1601,30,1616,1643,
- 149,3507,1858,2525,151,150,1785,39,907,36,
- 2529,3311,34,820,31,35,852,30,32,1346,
- 29,27,56,1391,112,82,83,114,1401,73,
- 1448,1441,1475,1467,1559,1525,1608,156,1601,30,
- 1616,1643,149,2874,205,249,165,150,1785,39,
- 907,36,1151,3311,34,820,31,35,852,30,
- 32,1346,29,27,56,1391,112,82,83,114,
- 1401,1459,1448,1441,1475,1467,1559,1525,1608,1889,
- 1601,1257,1616,1643,149,2344,3409,1840,146,150,
- 2110,39,907,36,2102,3311,34,820,31,35,
- 852,30,32,1346,29,27,56,1391,112,82,
- 83,114,1401,2328,1448,1441,1475,1467,1559,1525,
- 1608,2732,1601,402,1616,1643,149,2004,39,285,
- 195,150,2204,39,907,36,3752,3311,34,820,
- 31,35,852,30,32,1346,29,27,56,1391,
- 112,82,83,114,1401,1018,1448,1441,1475,1467,
- 1559,1525,1608,596,1601,766,1616,1650,170,2204,
- 39,907,36,1042,3311,34,820,31,35,852,
- 30,32,1346,29,27,56,1391,112,82,83,
- 114,1401,931,1448,1441,1475,1467,1559,1525,1608,
- 313,1601,521,1616,1650,170,1601,39,907,36,
- 77,4676,34,820,31,35,852,65,32,100,
- 1831,2204,39,907,36,295,3311,34,820,31,
- 35,852,30,32,1346,29,27,56,1391,112,
- 82,83,114,1401,1011,1448,1441,1475,1467,1559,
- 1525,1608,1529,1601,1733,1616,1650,170,2204,39,
- 907,36,421,3311,34,820,31,35,852,30,
- 32,1346,29,27,56,1391,112,82,83,114,
- 1401,1689,1448,1441,1475,1467,1559,1525,1608,1752,
- 1601,1903,1616,1650,170,1657,39,907,36,1074,
- 4676,34,820,31,35,852,64,32,2417,2661,
- 2204,39,907,36,420,3311,34,820,31,35,
- 852,30,32,1346,29,27,56,1391,112,82,
- 83,114,1401,1623,1448,1441,1475,1467,1559,1525,
- 1608,1486,1601,1887,1616,1650,170,2250,39,907,
- 36,423,3311,34,820,31,35,852,30,32,
- 1346,29,27,56,1391,112,82,83,114,1401,
- 2000,1448,1441,1475,1467,1559,1525,1608,2070,1601,
- 458,1616,1650,170,1171,39,907,36,2717,2259,
- 34,820,2422,35,852,1071,39,1052,390,2204,
- 39,907,36,3682,3311,34,820,31,35,852,
- 30,32,1346,29,27,56,1391,112,82,83,
- 114,1401,2299,1448,1441,1475,1467,1559,1525,1608,
- 30,1601,429,2100,2989,241,2204,39,907,36,
- 3126,3311,34,820,31,35,852,30,32,1346,
- 29,27,56,1391,112,82,83,114,1401,2090,
- 1448,1441,1475,1467,1559,1525,1608,2676,2065,2204,
- 39,907,36,406,3311,34,820,31,35,852,
- 30,32,1346,29,27,56,1391,112,82,83,
- 114,1401,2524,1448,1441,1475,1467,1559,2063,2204,
- 39,907,36,522,3311,34,820,31,35,852,
- 30,32,1346,29,27,56,1391,112,82,83,
- 114,1401,241,1448,1441,1475,1467,1979,2204,39,
- 907,36,2245,3311,34,820,31,35,852,30,
- 32,1346,29,27,56,1391,112,82,83,114,
- 1401,2611,1448,1441,1475,2013,2204,39,907,36,
- 305,3311,34,820,31,35,852,30,32,1346,
- 29,27,56,1391,112,82,83,114,1401,2651,
- 1448,1441,1475,2021,2204,39,907,36,2684,3311,
- 34,820,31,35,852,30,32,1346,29,27,
- 56,1391,112,82,83,114,1401,2530,1448,1441,
- 1929,2204,39,907,36,289,3311,34,820,31,
- 35,852,30,32,1346,29,27,56,1391,112,
- 82,83,114,1401,2139,1448,1441,1937,2204,39,
- 907,36,2611,3311,34,820,31,35,852,30,
- 32,1346,29,27,56,1391,112,82,83,114,
- 1401,1857,1448,1441,1944,2204,39,907,36,2569,
- 3311,34,820,31,35,852,30,32,1346,29,
- 27,56,1391,112,82,83,114,1401,1216,1448,
- 1441,1945,1119,39,907,36,860,2696,34,820,
- 343,35,852,2004,39,282,303,2296,39,1052,
- 390,2417,2799,2698,2334,2420,2204,39,907,36,
- 242,3311,34,820,31,35,852,30,32,1346,
- 29,27,56,1391,112,82,83,114,1401,30,
- 1448,1952,1719,536,278,3150,2607,30,324,1268,
- 326,734,1461,1295,319,1226,2607,3409,1542,328,
- 356,1295,347,805,2726,347,530,237,1350,2433,
- 39,282,162,2727,3917,2592,2650,865,2690,1180,
- 1229,2420,2984,457,327,4010,348,1036,1059,353,
- 1295,241,4347,2661,779,240,235,236,417,1295,
- 417,2458,1229,2420,536,3027,2734,336,279,162,
- 1180,39,907,36,2652,168,34,820,343,35,
- 852,28,788,3961,247,250,253,256,2941,226,
- 1939,162,355,162,3650,944,206,3907,186,2922,
- 524,355,2542,578,364,1064,2607,50,2120,1555,
- 3328,2848,3067,3129,3334,3376,241,2647,2701,2699,
- 1784,1803,380,3150,2404,2592,324,1268,326,356,
- 201,370,319,1226,1071,39,1693,2479,356,2417,
- 436,2653,1267,39,907,36,3958,3409,34,820,
- 343,35,852,1773,309,348,1036,1059,353,1140,
- 39,1052,390,1369,348,1036,1059,353,2204,39,
- 907,36,1369,3311,34,820,31,35,852,30,
- 32,1346,29,27,56,1391,112,82,83,114,
- 1401,3999,1448,1971,503,3150,55,336,324,1268,
- 326,1651,2565,1761,319,1226,2511,769,1106,4017,
- 2607,4369,2301,540,1087,502,1229,1833,3585,3762,
- 2886,2607,2753,3018,2691,1842,39,1052,390,234,
- 2685,30,500,4490,1457,1229,2878,202,505,30,
- 347,3402,536,3121,2588,166,1071,39,1052,390,
- 2728,211,220,3855,210,217,218,219,221,30,
- 2854,347,55,3538,3910,312,316,1651,237,53,
- 771,162,212,214,2301,2233,177,194,1229,222,
- 536,4565,241,278,2691,1295,2027,213,215,216,
- 297,298,299,300,1128,2864,249,235,236,234,
- 329,1061,39,1734,1729,4588,2865,166,1295,162,
- 3030,4061,2542,2555,186,2922,75,2607,395,425,
- 185,209,220,3855,208,217,218,219,221,1071,
- 39,1052,390,3225,339,175,234,2697,55,74,
- 2762,2767,196,1651,2749,795,174,280,1124,1457,
- 189,173,176,177,178,179,180,2771,211,220,
- 3855,210,217,218,219,221,432,1249,39,907,
- 36,3294,3185,34,820,343,35,852,329,212,
- 214,769,2233,4602,454,2631,222,1461,1011,2607,
- 1295,2607,3409,3409,213,215,216,297,298,299,
- 300,2417,441,2156,440,403,2420,1012,234,1128,
- 2592,1687,356,3926,2549,39,1693,281,4061,3323,
- 3150,59,1527,321,2392,326,2607,1247,2772,1840,
- 211,220,3855,210,217,218,219,221,348,1036,
- 1059,353,336,337,1295,2592,346,2773,335,339,
- 3163,212,214,2663,2233,2301,356,2607,222,1229,
- 1071,39,1052,390,89,523,213,215,216,297,
- 298,299,300,57,94,93,234,108,3028,364,
- 241,1457,350,1036,1059,353,2733,237,166,1916,
- 4061,3326,394,425,2699,1784,1803,431,211,220,
- 3855,210,217,218,219,221,1140,39,1052,390,
- 1071,39,1052,390,364,252,235,236,204,212,
- 214,3043,2233,1,30,1255,222,536,1229,3205,
- 1784,1803,2735,2777,213,215,216,297,298,299,
- 300,1128,2761,55,521,1295,234,55,1651,237,
- 53,30,1651,3597,582,1229,162,162,4061,3340,
- 1527,186,2922,3041,2607,1295,1418,589,209,220,
- 3855,208,217,218,219,221,58,255,235,236,
- 3551,339,175,2592,162,30,2288,187,30,1000,
- 2073,30,3530,174,5226,1112,2879,190,173,176,
- 177,178,179,180,2204,39,907,36,5226,3311,
- 34,820,31,35,852,30,32,1346,29,27,
- 56,1391,112,82,83,114,1401,241,1887,2204,
- 39,907,36,5226,3311,34,820,31,35,852,
- 30,32,1346,29,27,56,1391,112,82,83,
- 114,1401,364,1895,983,39,2561,36,3958,3409,
- 34,820,343,35,852,203,30,3315,1784,1803,
- 1229,2303,39,1052,390,1295,5226,1997,39,451,
- 30,265,4606,2611,2607,536,2611,1295,1855,1071,
- 2597,1693,80,1295,1976,2549,39,1693,2613,162,
- 2611,244,5226,347,234,3361,2899,3150,55,336,
- 324,1268,326,1651,162,1509,319,1226,96,186,
- 2922,1295,1295,2984,3480,1425,209,220,3855,208,
- 217,218,219,221,507,1295,2360,39,1052,390,
- 175,2799,353,2018,2241,4490,536,310,237,243,
- 302,174,73,72,237,3165,173,176,177,178,
- 179,180,2697,953,301,234,71,2607,4659,1071,
- 39,1052,390,278,1295,162,245,235,236,5226,
- 186,2922,258,235,236,5226,234,209,220,3855,
- 208,217,218,219,221,30,237,1665,1665,1229,
- 441,175,3937,3937,536,70,55,5226,638,407,
- 3007,1651,174,1811,416,2569,182,173,176,177,
- 178,179,180,234,241,235,236,2301,162,408,
- 409,1229,2233,162,3362,5226,1985,279,186,2922,
- 30,448,2842,2862,2745,209,220,3855,208,217,
- 218,219,221,248,251,254,257,2941,529,175,
- 166,5226,536,5226,944,290,2199,2018,2241,5226,
- 174,1071,39,296,193,173,176,177,178,179,
- 180,234,2322,39,1052,390,996,39,1052,390,
- 2543,162,1169,2243,2607,5226,186,2922,1457,95,
- 1354,1354,108,209,220,3855,208,217,218,219,
- 221,30,5226,2592,30,1392,617,175,1229,55,
- 536,410,412,278,1651,3624,1593,30,174,5226,
- 5226,2534,3206,173,176,177,178,179,180,234,
- 1071,39,296,2886,1159,1257,4532,162,2645,162,
- 3409,329,3955,3375,186,2922,4610,1295,1128,428,
- 427,209,220,3855,208,217,218,219,221,5226,
- 1591,39,907,36,860,175,34,820,343,35,
- 852,1148,503,2432,1295,2607,174,2507,61,290,
- 198,173,176,177,178,179,180,3567,339,1295,
- 336,705,78,502,2592,536,1071,39,1052,390,
- 1071,39,1693,2673,30,60,2451,2243,2607,5226,
- 500,2301,3854,3150,234,1229,324,1268,326,2417,
- 107,30,319,1226,162,2846,1118,347,356,186,
- 2922,525,2417,430,5226,5226,209,220,3855,208,
- 217,218,219,221,166,5226,1295,2984,2793,793,
- 175,5226,5226,536,348,1036,1059,353,505,5226,
- 30,174,526,365,2607,192,173,176,177,178,
- 179,180,234,2468,39,1052,390,2756,5226,5226,
- 30,3919,162,347,2953,30,30,186,2922,3025,
- 3093,103,5226,5226,209,220,3855,208,217,218,
- 219,221,1882,2984,104,5226,329,3409,175,3639,
- 55,4614,30,5226,1818,1651,1987,1635,30,174,
- 5226,5226,953,200,173,176,177,178,179,180,
- 2204,39,907,36,3526,3311,34,820,31,35,
- 852,30,32,1346,29,27,56,1391,112,82,
- 83,114,1902,2204,39,907,36,3752,3311,34,
- 820,31,35,852,30,32,1346,29,27,56,
- 1391,112,82,83,114,1903,2204,39,907,36,
- 5226,3311,34,820,31,35,852,30,32,1346,
- 29,27,56,1391,112,82,83,114,1910,2707,
- 2539,5226,5226,2607,241,1912,39,907,36,2782,
- 2609,34,820,343,35,852,241,5226,2204,1727,
- 907,1777,234,3311,34,820,31,35,852,30,
- 32,1346,29,27,56,1391,112,82,83,90,
- 102,528,308,1295,211,220,3855,210,217,218,
- 219,221,2479,5226,207,2542,2607,241,3150,2607,
- 1295,321,2392,326,385,212,214,30,2233,241,
- 5226,3069,519,30,449,234,241,536,2592,1295,
- 213,215,216,297,298,299,300,2544,39,1052,
- 390,382,1295,5226,241,205,347,211,220,3855,
- 210,217,218,219,221,2739,162,304,1257,2607,
- 3440,30,2948,3409,2676,4391,2984,5226,212,214,
- 5226,2233,30,3498,55,518,2607,2925,234,1651,
- 1295,53,227,213,215,216,297,298,299,300,
- 2468,39,1052,390,1295,347,5226,503,2295,1295,
- 211,220,3855,210,217,218,219,221,2783,3043,
- 2648,3556,2607,336,3610,2984,1295,1295,502,5226,
- 5226,212,214,5226,2233,2681,1819,55,311,30,
- 3046,234,1651,536,53,501,213,215,216,297,
- 298,299,300,2544,39,1052,390,4050,3699,4501,
- 241,2284,347,211,220,3855,210,217,218,219,
- 221,2587,162,5226,5226,2607,5226,5226,2690,5226,
- 5226,5226,2984,5226,212,214,5226,2233,30,5226,
- 55,497,2607,3084,234,1651,5226,53,199,213,
- 215,216,297,298,299,300,1071,39,1052,390,
- 5226,347,5226,5226,2969,5226,211,220,3855,210,
- 217,218,219,221,5226,5226,1071,39,1052,390,
- 5226,2984,5226,5226,5226,5226,5226,212,214,5226,
- 2233,5226,1826,55,223,5226,5226,5226,1651,5226,
- 2603,5226,213,215,216,297,298,299,300,2204,
- 39,907,36,450,3311,34,820,31,35,852,
- 30,32,1346,29,27,56,1391,112,82,83,
- 89,2204,39,907,36,5226,3311,34,820,31,
- 35,852,30,32,1346,29,27,56,1391,112,
- 82,83,88,2204,39,907,36,5226,3311,34,
- 820,31,35,852,30,32,1346,29,27,56,
- 1391,112,82,83,87,2204,39,907,36,5226,
- 3311,34,820,31,35,852,30,32,1346,29,
- 27,56,1391,112,82,83,86,2204,39,907,
- 36,5226,3311,34,820,31,35,852,30,32,
- 1346,29,27,56,1391,112,82,83,85,2204,
- 39,907,36,5226,3311,34,820,31,35,852,
- 30,32,1346,29,27,56,1391,112,82,83,
- 84,2061,39,907,36,5226,3311,34,820,31,
- 35,852,30,32,1346,29,27,56,1391,112,
- 82,83,110,2204,39,907,36,5226,3311,34,
- 820,31,35,852,30,32,1346,29,27,56,
- 1391,112,82,83,116,2204,39,907,36,5226,
- 3311,34,820,31,35,852,30,32,1346,29,
- 27,56,1391,112,82,83,115,2204,39,907,
- 36,5226,3311,34,820,31,35,852,30,32,
- 1346,29,27,56,1391,112,82,83,113,2204,
- 39,907,36,5226,3311,34,820,31,35,852,
- 30,32,1346,29,27,56,1391,112,82,83,
- 111,1521,39,907,36,3958,5226,34,820,343,
- 35,852,2158,39,907,36,5226,3311,34,820,
- 31,35,852,30,32,1346,29,27,56,1391,
- 92,82,83,1453,39,2561,36,3958,5226,34,
- 820,343,35,852,5226,30,5226,5226,5226,536,
- 1071,39,1052,390,3150,5226,5226,324,1268,326,
- 5226,5226,5226,319,1226,5226,5226,5226,347,5226,
- 5226,5226,540,1849,39,907,36,3958,162,34,
- 820,343,35,852,194,5226,3150,55,4565,324,
- 1268,326,1651,5226,938,319,1226,5226,5226,5226,
- 1233,39,907,36,1425,3409,34,820,343,35,
- 852,1233,39,907,36,5226,3409,34,820,343,
- 35,852,5226,5226,312,316,3150,5226,5226,324,
- 1268,326,5226,5226,5226,319,1226,30,5226,5226,
- 5226,2607,1029,3944,540,5226,2607,4659,5226,3929,
- 5226,5226,5226,3150,2864,337,324,1268,326,5226,
- 347,5226,322,1226,3150,234,337,324,1268,326,
- 5226,5226,5226,320,1226,1849,39,907,36,3958,
- 2984,34,820,343,35,852,5226,638,407,3007,
- 5226,1845,5226,417,2569,5226,313,316,2544,39,
- 1052,390,5226,5226,5226,5226,2301,5226,408,409,
- 1229,2233,2544,39,1052,390,2544,39,1052,390,
- 2580,39,1052,390,2626,39,1052,390,3150,5226,
- 5226,324,1268,326,5226,55,5226,319,1226,166,
- 1651,5226,53,5226,5226,2199,3182,5226,5226,55,
- 5226,2332,5226,55,1651,2607,53,55,1651,3100,
- 53,55,1651,30,53,5226,1651,1229,53,1071,
- 39,1052,390,3646,347,30,30,4116,5226,536,
- 536,3511,529,5226,5226,3580,1071,39,1052,390,
- 1071,39,1052,390,2984,5226,162,5226,347,347,
- 410,413,3414,30,3893,532,55,2607,162,162,
- 5226,1651,30,1677,194,194,2607,30,4565,4565,
- 30,1229,5226,55,1229,5226,347,55,1651,5226,
- 1509,5226,1651,5226,2669,347,5226,5226,5226,5226,
- 5226,5226,5226,5226,5226,5226,2984,5226,5226,5226,
- 162,5226,5226,162,5226,2984,3669,3333,5226,4016,
- 5226,5226,5226,5226,5226,5226,533,5226,5226,5226,
- 5226,5226,5226,5226,5226,5226,5226,5226,5226,3942,
- 3980,5226,5226,5226,5226,5226,5226,5226,5226,5226,
- 5226,5226,5226,5226,5226,5226,5226,5226,5226,5226,
- 5226,5226,5226,5226,5226,5226,5226,5226,5226,5226,
- 5226,5226,5226,5226,5226,5226,5226,5226,5226,5226,
- 5226,5226,5226,5226,5226,5226,5226,5226,5226,5226,
- 5226,5226,5226,5226,5226,5226,5226,5226,5226,5226,
- 5226,3860,5226,0,817,1,0,866,1,0,
- 1,2,5244,0,1,2,5243,0,43,5244,
- 0,43,5243,0,1131,323,0,452,1174,0,
- 438,1477,0,1519,33,0,5232,1,0,5231,
- 1,0,5465,246,0,5464,246,0,5568,246,
- 0,5567,246,0,5492,246,0,5491,246,0,
- 5490,246,0,5489,246,0,5488,246,0,5487,
- 246,0,5486,246,0,5485,246,0,5503,246,
- 0,5502,246,0,5501,246,0,5500,246,0,
- 5499,246,0,5498,246,0,5497,246,0,5496,
- 246,0,5495,246,0,5494,246,0,5493,246,
- 0,43,246,5244,0,43,246,5243,0,5268,
- 246,0,1519,389,0,54,5244,0,54,5243,
- 0,42,5244,0,42,5243,0,2538,132,0,
- 1,442,0,456,2208,0,455,2611,0,39,
- 37,0,5268,1,0,43,1,0,43,2,
- 5244,0,43,2,5243,0,1519,45,0,1046,
- 97,0,36,38,0,43,784,0,49,5266,
- 0,49,41,0,1,569,0,1,5503,0,
- 1,5502,0,1,5501,0,1,5500,0,1,
- 5499,0,1,5498,0,1,5497,0,1,5496,
- 0,1,5495,0,1,5494,0,1,5493,0,
- 43,1,5244,0,43,1,5243,0,729,1,
- 0,499,2209,0,5268,233,1,0,43,233,
- 1,0,233,415,0,41,5244,0,41,5243,
- 0,242,2852,0,390,36,0,36,390,0,
- 389,33,0,33,389,0,5244,54,0,5243,
- 54,0,2538,134,0,2538,133,0,30,517,
- 0,5560,443,0,1603,443,0,5236,405,0,
- 5235,405,0,1,939,0,1,784,0,1,
- 2857,0,233,414,0,53,41,0,1,98,
- 0,41,53,0,5266,51,0,51,41,0,
- 1,5560,0,1,1603,0,43,1,2,5244,
- 0,43,1,2,5243,0,41,5244,2,0,
- 41,5243,2,0,5244,40,0,5243,40,0,
- 499,3902,0,233,1,0,5560,101,0,1603,
- 101,0,39,79,0,283,3095,0,5234,1,
- 0,233,225,0,233,1,2890,0,5236,233,
- 0,5235,233,0,233,224,0,3104,233,0,
- 8,10,0,191,3641,0
+ 40,40,39,33,140,140,96,96,171,171,
+ 91,193,193,76,76,76,76,76,76,76,
+ 76,76,77,77,77,67,67,59,59,172,
+ 172,78,78,78,102,102,173,173,79,79,
+ 79,174,174,80,80,80,80,80,81,81,
+ 83,83,83,83,83,83,83,49,49,49,
+ 49,49,114,114,115,115,50,175,23,23,
+ 23,23,23,47,47,86,86,86,86,86,
+ 147,147,142,142,142,142,142,143,143,143,
+ 144,144,144,145,145,145,146,146,146,87,
+ 87,87,87,87,88,88,88,13,13,13,
+ 13,13,13,13,13,13,13,13,99,119,
+ 119,119,119,119,119,117,117,117,118,118,
+ 149,149,148,148,121,121,103,71,71,72,
+ 73,52,46,150,150,53,51,85,85,151,
+ 151,141,141,122,123,123,68,68,152,152,
+ 62,62,62,57,57,56,63,63,66,66,
+ 55,55,55,89,89,98,97,97,60,60,
+ 58,58,54,54,43,100,100,100,92,92,
+ 92,93,93,94,94,94,95,95,104,104,
+ 104,106,106,105,105,194,194,90,90,177,
+ 177,177,177,177,125,45,45,154,176,176,
+ 126,126,126,126,178,178,37,37,116,127,
+ 127,127,127,107,107,120,120,120,156,157,
+ 157,157,157,157,157,157,157,157,157,157,
+ 181,181,179,179,180,180,158,158,158,158,
+ 159,182,109,108,108,183,183,160,160,160,
+ 160,101,101,101,184,184,9,9,10,185,
+ 185,186,161,153,153,162,162,163,164,164,
+ 6,6,7,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,165,165,165,165,165,
+ 165,165,165,165,165,69,74,74,166,166,
+ 129,129,110,110,110,110,110,110,3,130,
+ 130,128,128,111,111,111,84,70,82,155,
+ 155,112,112,187,187,187,131,131,124,124,
+ 188,188,167,167,881,39,2012,1985,929,4193,
+ 34,901,31,35,1031,30,32,1970,29,27,
+ 56,1416,112,82,83,114,1424,1994,1439,1432,
+ 1466,1458,1516,1474,1558,29,1550,684,1592,1598,
+ 149,278,4628,1018,164,150,1472,39,1039,36,
+ 347,4657,34,901,31,35,1031,65,32,1230,
+ 2212,39,1039,36,237,3480,34,901,31,35,
+ 1031,30,32,1348,29,27,56,1416,112,82,
+ 83,114,1424,328,1439,1432,1466,1458,1516,2257,
+ 240,235,236,1015,39,449,435,1954,4579,2166,
+ 39,1039,36,279,3480,34,901,31,35,1031,
+ 30,32,1348,29,27,56,1416,92,82,83,
+ 247,250,253,256,2587,355,1842,1472,39,1039,
+ 36,1108,4657,34,901,31,35,1031,30,32,
+ 76,507,512,3361,1962,992,721,3060,3075,3340,
+ 3390,3106,1344,39,1039,36,2562,3480,34,901,
+ 31,35,1031,2352,32,1348,29,27,56,1416,
+ 112,82,83,114,1424,344,1439,1432,1466,1458,
+ 1516,1474,1558,1095,1550,1400,1592,1598,149,2194,
+ 4124,1862,513,150,1069,2619,1146,39,1794,47,
+ 1923,1766,46,901,244,4086,514,1344,39,1039,
+ 36,2562,3480,34,901,31,35,1031,2352,32,
+ 1348,29,27,56,1416,112,82,83,114,1424,
+ 344,1439,1432,1466,1458,1516,1474,1558,519,1550,
+ 3740,1592,1598,149,1015,39,284,513,150,4388,
+ 2619,237,681,389,423,442,3238,3283,994,39,
+ 285,514,452,509,1532,39,1039,36,523,4238,
+ 34,901,31,35,1031,63,32,245,235,236,
+ 2344,1430,2434,493,1994,1344,39,1039,36,2562,
+ 3480,34,901,31,35,1031,2352,32,1348,29,
+ 27,56,1416,112,82,83,114,1424,344,1439,
+ 1432,1466,1458,1516,1474,1558,1064,1550,509,1592,
+ 1598,149,100,2867,1253,513,150,3003,2619,940,
+ 2310,39,282,1594,31,2443,611,2434,3002,514,
+ 1616,39,1039,36,2562,3480,34,901,31,35,
+ 1031,2352,32,1348,29,27,56,1416,112,82,
+ 83,114,1424,344,1439,1432,1466,1458,1516,1474,
+ 1558,1310,1550,1671,1592,1598,149,715,1127,2532,
+ 513,150,354,2619,860,512,39,1123,387,512,
+ 1684,1676,38,1680,514,3611,509,77,67,1604,
+ 39,1039,36,2554,4657,34,901,31,35,1031,
+ 64,32,31,2497,2677,2434,2810,401,1411,39,
+ 1039,36,427,3480,34,901,31,35,1031,30,
+ 32,1348,29,27,56,1416,112,82,83,114,
+ 1424,399,1439,1432,1466,1458,1516,1474,1558,1343,
+ 1550,510,1592,1598,149,512,39,287,380,150,
+ 1595,39,1039,36,1680,4238,34,901,31,35,
+ 1031,62,32,377,512,39,1123,387,1485,39,
+ 1039,36,383,3480,34,901,31,35,1031,30,
+ 32,1348,29,27,56,1416,112,82,83,114,
+ 1424,1424,1439,1432,1466,1458,1516,1474,1558,1601,
+ 1550,55,1592,1598,149,439,52,357,380,150,
+ 2212,39,1039,36,528,3480,34,901,31,35,
+ 1031,30,32,1348,29,27,56,1416,112,82,
+ 83,91,381,99,384,1792,39,1039,36,1480,
+ 3480,34,901,31,35,1031,30,32,1348,29,
+ 27,56,1416,112,82,83,114,1424,375,1439,
+ 1432,1466,1458,1516,1474,1558,992,1550,1033,1592,
+ 1598,149,424,39,393,374,150,1669,356,424,
+ 39,393,681,1696,66,528,3606,512,39,2811,
+ 1792,39,1039,36,385,3480,34,901,31,35,
+ 1031,30,32,1348,29,27,56,1416,112,82,
+ 83,114,1424,351,1439,1432,1466,1458,1516,1474,
+ 1558,329,1550,2406,1592,1598,149,1015,39,284,
+ 374,150,4661,512,39,1123,387,1792,39,1039,
+ 36,388,3480,34,901,31,35,1031,30,32,
+ 1348,29,27,56,1416,112,82,83,114,1424,
+ 373,1439,1432,1466,1458,1516,1474,1558,62,1550,
+ 430,1592,1598,149,390,423,31,374,150,580,
+ 3028,1173,1792,39,1039,36,626,3480,34,901,
+ 31,35,1031,30,32,1348,29,27,56,1416,
+ 112,82,83,114,1424,860,1439,1432,1466,1458,
+ 1516,1474,1558,2670,1550,372,1592,1598,149,512,
+ 3497,417,164,150,1729,39,1039,36,1872,3480,
+ 34,901,31,35,1031,30,32,1348,29,27,
+ 56,1416,112,82,83,114,1424,326,1439,1432,
+ 1466,1458,1516,1474,1558,1958,1550,31,1592,1598,
+ 149,682,370,1979,380,150,1683,39,1039,36,
+ 2097,3480,34,901,31,35,1031,30,32,1348,
+ 29,27,56,1416,112,82,83,114,1424,2672,
+ 1439,1432,1466,1458,1516,1474,1558,2081,1550,315,
+ 1592,1626,170,1996,39,1039,36,2435,153,34,
+ 901,341,35,1031,512,39,1123,387,2212,39,
+ 1039,36,1962,3480,34,901,31,35,1031,30,
+ 32,1348,29,27,56,1416,112,82,83,114,
+ 1424,329,1439,1432,1466,1458,1516,1474,2230,94,
+ 378,429,108,1549,39,1039,36,538,3480,34,
+ 901,31,35,1031,30,32,1348,29,27,56,
+ 1416,112,82,83,114,1424,2521,1439,1432,1466,
+ 1458,1516,1474,1558,1132,1550,1400,1592,1598,149,
+ 2077,4124,326,148,150,1792,39,1039,36,1782,
+ 3480,34,901,31,35,1031,30,32,1348,29,
+ 27,56,1416,112,82,83,114,1424,1956,1439,
+ 1432,1466,1458,1516,1474,1558,72,1550,1400,1592,
+ 1598,149,2661,4124,1280,161,150,1792,39,1039,
+ 36,333,3480,34,901,31,35,1031,30,32,
+ 1348,29,27,56,1416,112,82,83,114,1424,
+ 944,1439,1432,1466,1458,1516,1474,1558,443,1550,
+ 31,1592,1598,149,737,3463,1385,160,150,1792,
+ 39,1039,36,333,3480,34,901,31,35,1031,
+ 30,32,1348,29,27,56,1416,112,82,83,
+ 114,1424,520,1439,1432,1466,1458,1516,1474,1558,
+ 1154,1550,31,1592,1598,149,815,3173,981,159,
+ 150,1792,39,1039,36,2435,3480,34,901,31,
+ 35,1031,30,32,1348,29,27,56,1416,112,
+ 82,83,114,1424,520,1439,1432,1466,1458,1516,
+ 1474,1558,665,1550,1400,1592,1598,149,1920,4124,
+ 1000,158,150,1792,39,1039,36,929,3480,34,
+ 901,31,35,1031,30,32,1348,29,27,56,
+ 1416,112,82,83,114,1424,1255,1439,1432,1466,
+ 1458,1516,1474,1558,1098,1550,1400,1592,1598,149,
+ 2533,4124,1291,157,150,1792,39,1039,36,333,
+ 3480,34,901,31,35,1031,30,32,1348,29,
+ 27,56,1416,112,82,83,114,1424,1342,1439,
+ 1432,1466,1458,1516,1474,1558,2130,1550,403,1592,
+ 1598,149,494,1804,1107,156,150,1792,39,1039,
+ 36,333,3480,34,901,31,35,1031,30,32,
+ 1348,29,27,56,1416,112,82,83,114,1424,
+ 532,1439,1432,1466,1458,1516,1474,1558,3013,1550,
+ 31,1592,1598,149,2004,4461,443,155,150,1792,
+ 39,1039,36,929,3480,34,901,31,35,1031,
+ 30,32,1348,29,27,56,1416,112,82,83,
+ 114,1424,1246,1439,1432,1466,1458,1516,1474,1558,
+ 2309,1550,1680,1592,1598,149,1778,565,1270,154,
+ 150,1792,39,1039,36,787,3480,34,901,31,
+ 35,1031,30,32,1348,29,27,56,1416,112,
+ 82,83,114,1424,2179,1439,1432,1466,1458,1516,
+ 1474,1558,1223,1550,1540,1592,1598,149,456,4124,
+ 1468,153,150,1792,39,1039,36,2097,3480,34,
+ 901,31,35,1031,30,32,1348,29,27,56,
+ 1416,112,82,83,114,1424,2011,1439,1432,1466,
+ 1458,1516,1474,1558,73,1550,31,1592,1598,149,
+ 4364,512,2581,152,150,1792,39,1039,36,334,
+ 3480,34,901,31,35,1031,30,32,1348,29,
+ 27,56,1416,112,82,83,114,1424,860,1439,
+ 1432,1466,1458,1516,1474,1558,325,1550,31,1592,
+ 1598,149,675,528,1869,151,150,1792,39,1039,
+ 36,2097,3480,34,901,31,35,1031,30,32,
+ 1348,29,27,56,1416,112,82,83,114,1424,
+ 1297,1439,1432,1466,1458,1516,1474,1558,1759,1550,
+ 1403,1592,1598,149,1106,1849,2286,165,150,1792,
+ 39,1039,36,2184,3480,34,901,31,35,1031,
+ 30,32,1348,29,27,56,1416,112,82,83,
+ 114,1424,1513,1439,1432,1466,1458,1516,1474,1558,
+ 417,1550,291,1592,1598,149,424,39,393,146,
+ 150,2117,39,1039,36,2448,3480,34,901,31,
+ 35,1031,30,32,1348,29,27,56,1416,112,
+ 82,83,114,1424,1145,1439,1432,1466,1458,1516,
+ 1474,1558,2391,1550,31,1592,1598,149,2668,2330,
+ 249,195,150,2212,39,1039,36,1289,3480,34,
+ 901,31,35,1031,30,32,1348,29,27,56,
+ 1416,112,82,83,114,1424,238,1439,1432,1466,
+ 1458,1516,1474,1558,2333,1550,1374,1592,1626,170,
+ 2212,39,1039,36,2929,3480,34,901,31,35,
+ 1031,30,32,1348,29,27,56,1416,112,82,
+ 83,114,1424,1775,1439,1432,1466,1458,1516,1474,
+ 1558,1743,1550,327,1592,1626,170,1996,39,1039,
+ 36,330,336,34,901,44,35,1031,1806,875,
+ 2212,39,1039,36,295,3480,34,901,31,35,
+ 1031,30,32,1348,29,27,56,1416,112,82,
+ 83,114,1424,1194,1439,1432,1466,1458,1516,1474,
+ 1558,1697,1550,2299,1592,1626,170,2212,39,1039,
+ 36,419,3480,34,901,31,35,1031,30,32,
+ 1348,29,27,56,1416,112,82,83,114,1424,
+ 2686,1439,1432,1466,1458,1516,1474,1558,2458,1550,
+ 2460,1592,1626,170,1996,39,1039,36,1401,681,
+ 34,901,1640,35,1031,2564,2686,2212,39,1039,
+ 36,418,3480,34,901,31,35,1031,30,32,
+ 1348,29,27,56,1416,112,82,83,114,1424,
+ 324,1439,1432,1466,1458,1516,1474,1558,2718,1550,
+ 997,1592,1626,170,2258,39,1039,36,421,3480,
+ 34,901,31,35,1031,30,32,1348,29,27,
+ 56,1416,112,82,83,114,1424,2341,1439,1432,
+ 1466,1458,1516,1474,1558,1613,1550,1790,1592,1626,
+ 170,1996,39,1039,36,911,681,34,901,2282,
+ 35,1031,2533,929,2212,39,1039,36,2785,3480,
+ 34,901,31,35,1031,30,32,1348,29,27,
+ 56,1416,112,82,83,114,1424,4005,1439,1432,
+ 1466,1458,1516,1474,1558,31,1550,2334,2275,2489,
+ 302,2212,39,1039,36,3462,3480,34,901,31,
+ 35,1031,30,32,1348,29,27,56,1416,112,
+ 82,83,114,1424,2488,1439,1432,1466,1458,1516,
+ 1474,1558,1780,2265,2212,39,1039,36,455,3480,
+ 34,901,31,35,1031,30,32,1348,29,27,
+ 56,1416,112,82,83,114,1424,2533,1439,1432,
+ 1466,1458,2188,2212,39,1039,36,929,3480,34,
+ 901,31,35,1031,30,32,1348,29,27,56,
+ 1416,112,82,83,114,1424,1669,1439,1432,1466,
+ 2195,2212,39,1039,36,226,3480,34,901,31,
+ 35,1031,30,32,1348,29,27,56,1416,112,
+ 82,83,114,1424,1515,1439,1432,1466,2228,2212,
+ 39,1039,36,2527,3480,34,901,31,35,1031,
+ 30,32,1348,29,27,56,1416,112,82,83,
+ 114,1424,4027,1439,1432,2109,2212,39,1039,36,
+ 288,3480,34,901,31,35,1031,30,32,1348,
+ 29,27,56,1416,112,82,83,114,1424,992,
+ 1439,1432,2133,2212,39,1039,36,2544,3480,34,
+ 901,31,35,1031,30,32,1348,29,27,56,
+ 1416,112,82,83,114,1424,929,1439,1432,2141,
+ 2212,39,1039,36,1899,3480,34,901,31,35,
+ 1031,30,32,1348,29,27,56,1416,112,82,
+ 83,114,1424,992,1439,1432,2143,1391,39,1039,
+ 36,1426,2194,34,901,340,35,1031,512,39,
+ 2696,2315,2304,39,1123,387,2390,2822,2096,681,
+ 1121,39,1039,36,2612,242,34,901,340,35,
+ 1031,1114,1857,512,39,1123,387,1256,39,1760,
+ 1930,57,3041,593,769,2655,1478,392,423,278,
+ 28,352,1669,321,2027,323,994,39,282,316,
+ 1221,1669,1775,353,2364,866,2562,4124,2655,2738,
+ 428,2543,237,1468,55,534,321,2027,323,1634,
+ 31,2558,316,1221,2562,2547,353,1859,2189,345,
+ 589,846,350,681,4071,1099,681,798,240,235,
+ 236,391,423,344,162,512,39,1123,387,186,
+ 3065,279,345,589,846,350,289,333,978,2581,
+ 1122,2918,505,2619,3020,300,2562,75,247,250,
+ 253,256,2587,2642,505,353,684,2899,201,1108,
+ 3003,4530,55,1127,1888,344,2225,1634,2348,914,
+ 2543,3463,361,4553,721,3060,3075,3340,3390,3106,
+ 3007,345,589,846,350,903,2643,1810,1844,343,
+ 2212,39,1039,36,367,3480,34,901,31,35,
+ 1031,30,32,1348,29,27,56,1416,112,82,
+ 83,114,1424,929,1439,2178,2212,39,1039,36,
+ 2555,3480,34,901,31,35,1031,30,32,1348,
+ 29,27,56,1416,112,82,83,114,1424,2505,
+ 1439,2180,1237,39,1039,36,1636,4124,34,901,
+ 340,35,1031,1775,681,929,1466,2562,4124,290,
+ 1222,512,39,1676,281,3198,202,2267,177,2038,
+ 39,296,534,1662,31,2634,2547,2562,3209,31,
+ 241,2659,2677,2562,2562,74,2406,2582,103,166,
+ 2655,234,600,39,1123,387,2547,333,321,2027,
+ 323,162,344,2547,316,1221,186,3065,333,2677,
+ 1163,3087,2553,209,220,4504,2798,208,217,218,
+ 219,221,2619,512,39,1123,387,175,1,55,
+ 104,4394,534,503,1634,174,1768,512,39,1676,
+ 286,4070,3173,361,189,173,176,177,178,179,
+ 180,234,2901,3616,2664,1964,2677,2643,1810,1844,
+ 448,162,2533,362,309,313,186,3065,522,2670,
+ 361,681,2637,209,220,4504,188,208,217,218,
+ 219,221,2653,2377,3073,1810,1844,175,512,39,
+ 1676,283,187,3299,1842,174,2342,39,449,1145,
+ 306,4579,59,681,190,173,176,177,178,179,
+ 180,2212,39,1039,36,521,3480,34,901,31,
+ 35,1031,30,32,1348,29,27,56,1416,112,
+ 82,83,114,1424,93,2019,2212,39,1039,36,
+ 2858,3480,34,901,31,35,1031,30,32,1348,
+ 29,27,56,1416,112,82,83,114,1424,2929,
+ 2054,1182,39,2885,36,1636,4124,34,901,340,
+ 35,1031,2528,2240,2620,2672,2562,512,39,1676,
+ 2805,2639,31,2677,1840,2562,1222,265,2562,31,
+ 31,534,1926,1222,3114,2547,335,336,241,31,
+ 681,2722,2562,3234,2547,95,519,344,108,2655,
+ 234,776,39,1123,387,3169,333,321,2027,323,
+ 162,2547,162,316,1221,186,3065,859,2516,1079,
+ 1111,58,209,220,4504,2533,208,217,218,219,
+ 221,1061,377,681,864,1252,175,353,55,1472,
+ 4394,534,2036,1634,174,53,2562,31,446,3238,
+ 3283,719,501,3496,173,176,177,178,179,180,
+ 234,501,788,185,3113,344,2361,39,1123,387,
+ 162,2822,500,31,1145,186,3065,3456,361,243,
+ 237,500,209,220,4504,4076,208,217,218,219,
+ 221,498,3164,1810,1844,237,175,441,2004,1004,
+ 498,534,2533,278,174,2752,249,235,236,414,
+ 2912,2757,2560,182,173,176,177,178,179,180,
+ 234,252,235,236,681,2420,237,3822,713,681,
+ 162,933,434,1261,2929,186,3065,3191,4124,452,
+ 204,31,209,220,4504,3563,208,217,218,219,
+ 221,2271,241,235,236,3181,175,529,2631,438,
+ 96,534,534,1004,174,279,48,2317,1669,978,
+ 2581,3425,336,193,173,176,177,178,179,180,
+ 234,344,248,251,254,257,2587,684,334,681,
+ 162,162,4563,1108,1145,186,3065,194,2403,353,
+ 684,4478,209,220,4504,4575,208,217,218,219,
+ 221,1027,39,1123,387,3240,175,617,31,2651,
+ 3735,534,534,1222,174,347,589,846,350,4211,
+ 50,2317,299,3586,173,176,177,178,179,180,
+ 234,344,1035,2758,1669,2533,2562,4646,278,1466,
+ 162,162,162,1222,2929,186,3065,194,168,2565,
+ 196,4478,209,220,4504,234,208,217,218,219,
+ 221,1663,39,1039,36,1426,175,34,901,340,
+ 35,1031,166,203,174,2533,2716,909,404,4491,
+ 290,332,336,198,173,176,177,178,179,180,
+ 1922,31,705,31,1894,3605,534,534,307,4382,
+ 2884,405,406,407,297,298,2568,2602,2582,2655,
+ 4082,2533,2744,305,78,234,344,321,2027,323,
+ 2764,3648,2768,316,1221,162,162,353,2533,523,
+ 186,3065,2569,2524,681,3030,2619,209,220,4504,
+ 2633,208,217,218,219,221,2772,2276,1892,207,
+ 237,175,1347,345,589,846,350,2778,793,174,
+ 2543,524,534,2742,1222,73,205,2783,192,173,
+ 176,177,178,179,180,31,255,235,236,923,
+ 4277,234,2315,39,1676,281,31,684,408,411,
+ 3659,162,4583,162,352,2698,186,3065,206,3378,
+ 237,2791,89,209,220,4504,1145,208,217,218,
+ 219,221,2759,983,39,1039,36,175,4124,34,
+ 901,340,35,1031,2533,174,258,235,236,353,
+ 2368,39,1123,387,200,173,176,177,178,179,
+ 180,512,3004,1676,80,31,2145,2766,2792,1222,
+ 2315,39,1676,3005,425,345,589,846,350,1894,
+ 684,2655,301,1122,4382,4608,2929,55,334,321,
+ 2027,323,1634,2770,1245,317,1221,2797,162,353,
+ 2212,39,1039,36,2267,3480,34,901,31,35,
+ 1031,30,32,1348,29,27,56,1416,112,82,
+ 83,114,2056,3767,336,347,589,846,350,2212,
+ 39,1039,36,1145,3480,34,901,31,35,1031,
+ 30,32,1348,29,27,56,1416,112,82,83,
+ 114,2091,2212,39,1039,36,49,3480,34,901,
+ 31,35,1031,30,32,1348,29,27,56,1416,
+ 112,82,83,114,2108,2477,1603,5124,5124,2562,
+ 2698,512,39,1676,3145,681,512,39,1123,387,
+ 2038,3165,296,2929,2212,1684,1039,1802,234,3480,
+ 34,901,31,35,1031,30,32,1348,29,27,
+ 56,1416,112,82,83,90,72,5124,2533,681,
+ 211,220,4504,278,210,217,218,219,221,2593,
+ 3775,336,2528,2562,31,5124,2562,31,3011,426,
+ 382,1565,5124,5124,212,214,216,297,298,2568,
+ 71,5124,234,31,5124,2547,3259,1222,222,213,
+ 215,5124,5124,1853,39,1039,36,1636,5124,34,
+ 901,340,35,1031,211,220,4504,681,210,217,
+ 218,219,221,2608,31,280,162,2562,534,4176,
+ 2611,31,3384,2637,5124,1222,5124,5124,212,214,
+ 216,297,298,2568,5124,31,234,344,70,2552,
+ 1889,2655,222,213,215,4124,681,162,5124,321,
+ 2027,323,501,2784,4078,316,1221,2619,211,220,
+ 4504,2189,210,217,218,219,221,31,2646,5124,
+ 5124,994,500,4176,3208,31,2702,61,5124,1762,
+ 4220,5124,212,214,216,297,298,2568,5124,31,
+ 681,499,681,3713,681,3740,222,213,215,2212,
+ 39,1039,36,5124,3480,34,901,31,35,1031,
+ 30,32,1348,29,27,56,1416,112,82,83,
+ 89,60,31,107,1526,2892,656,4176,3284,2212,
+ 39,1039,36,5124,3480,34,901,31,35,1031,
+ 30,32,1348,29,27,56,1416,112,82,83,
+ 88,2212,39,1039,36,526,3480,34,901,31,
+ 35,1031,30,32,1348,29,27,56,1416,112,
+ 82,83,87,2212,39,1039,36,102,3480,34,
+ 901,31,35,1031,30,32,1348,29,27,56,
+ 1416,112,82,83,86,2212,39,1039,36,5124,
+ 3480,34,901,31,35,1031,30,32,1348,29,
+ 27,56,1416,112,82,83,85,2212,39,1039,
+ 36,5124,3480,34,901,31,35,1031,30,32,
+ 1348,29,27,56,1416,112,82,83,84,2068,
+ 39,1039,36,5124,3480,34,901,31,35,1031,
+ 30,32,1348,29,27,56,1416,112,82,83,
+ 110,2212,39,1039,36,5124,3480,34,901,31,
+ 35,1031,30,32,1348,29,27,56,1416,112,
+ 82,83,116,2212,39,1039,36,5124,3480,34,
+ 901,31,35,1031,30,32,1348,29,27,56,
+ 1416,112,82,83,115,2212,39,1039,36,5124,
+ 3480,34,901,31,35,1031,30,32,1348,29,
+ 27,56,1416,112,82,83,113,2212,39,1039,
+ 36,5124,3480,34,901,31,35,1031,30,32,
+ 1348,29,27,56,1416,112,82,83,111,1272,
+ 39,1039,36,1636,681,34,901,340,35,1031,
+ 31,31,31,31,534,534,1222,1222,31,2691,
+ 31,31,948,2562,2924,4049,2645,1466,681,5124,
+ 3311,1222,681,344,344,447,600,39,1123,387,
+ 5124,5124,234,162,162,162,162,2655,681,194,
+ 194,3615,3649,4478,4478,321,2027,323,2533,379,
+ 166,316,1221,3137,211,220,4504,1163,210,217,
+ 218,219,221,55,512,39,1123,387,1634,3197,
+ 53,31,2509,5124,5124,1222,2562,5124,212,214,
+ 216,297,298,2568,2459,5124,227,985,2562,5124,
+ 5124,5124,517,213,215,234,5124,5124,681,2533,
+ 681,55,4098,4158,162,31,1634,344,1894,2562,
+ 3707,309,313,3746,5124,527,2573,211,220,4504,
+ 2562,210,217,218,219,221,5124,2619,344,3257,
+ 4108,2839,5124,2464,39,1123,387,199,530,234,
+ 3299,212,214,216,297,298,2568,5124,2619,31,
+ 5124,681,5124,2562,5124,516,213,215,5124,1920,
+ 2706,211,220,4504,2562,210,217,218,219,221,
+ 55,5124,344,5124,5124,1634,5124,1752,1863,39,
+ 1123,387,2886,234,5124,212,214,216,297,298,
+ 2568,5124,2619,31,3616,681,5124,2562,31,223,
+ 213,215,2562,1928,2726,211,220,4504,2562,210,
+ 217,218,219,221,5124,55,344,681,5124,5124,
+ 1634,344,1836,5124,5124,5124,4159,234,5124,212,
+ 214,216,297,298,2568,5124,2619,5124,5124,3251,
+ 5124,2619,5124,308,213,215,5124,1935,3408,211,
+ 220,4504,1936,210,217,218,219,221,1460,39,
+ 2885,36,1636,5124,34,901,340,35,1031,5124,
+ 5124,5124,3824,212,214,216,297,298,2568,31,
+ 5124,5124,5124,1222,512,39,296,495,213,215,
+ 1853,39,1039,36,1636,5124,34,901,340,35,
+ 1031,5124,5124,5124,952,5124,2655,5124,2562,4646,
+ 5124,5124,162,5124,321,2027,323,5124,2743,5124,
+ 316,1221,2163,39,1123,387,1079,234,512,39,
+ 1123,387,5124,5124,1136,39,1039,36,2655,4124,
+ 34,901,340,35,1031,5124,321,2027,323,909,
+ 404,4491,316,1221,5124,5124,5124,5124,1163,55,
+ 5124,5124,5124,5124,1634,55,53,5124,5124,5124,
+ 1634,5124,2606,405,406,407,297,298,2568,5124,
+ 5124,1466,2655,915,5124,1222,5124,3325,5124,334,
+ 321,2027,323,5124,5124,5124,319,1221,5124,5124,
+ 5124,1136,39,1039,36,2524,4124,34,901,340,
+ 35,1031,310,313,166,5124,415,2912,1853,39,
+ 1039,36,1636,5124,34,901,340,35,1031,5124,
+ 5124,1070,39,1039,36,2991,5124,34,901,340,
+ 35,1031,5124,5124,1988,39,1039,36,2772,2655,
+ 34,901,340,35,1031,5124,334,321,2027,323,
+ 408,410,5124,317,1221,5124,2655,5124,5124,400,
+ 1863,39,1123,387,321,2027,323,3790,1466,2655,
+ 316,1221,1222,1117,5124,3282,3523,318,2769,323,
+ 5124,5124,2655,2163,39,1123,387,5124,5124,5124,
+ 318,2769,323,2163,39,1123,387,55,512,39,
+ 296,166,1634,5124,53,2163,39,1123,387,2163,
+ 39,1123,387,2426,39,1123,387,5124,5124,5124,
+ 55,2271,5124,5124,5124,1634,5124,53,5124,31,
+ 55,5124,31,534,5124,1634,1222,53,2474,39,
+ 1123,387,55,5124,1173,5124,55,1634,5124,53,
+ 55,1634,344,53,1354,1634,5124,53,512,39,
+ 1123,387,162,1466,3792,162,2583,1222,2569,5124,
+ 2853,4255,2619,3398,4344,55,512,39,1123,387,
+ 1634,5124,53,2933,5124,5124,3398,512,39,1123,
+ 387,512,39,1123,387,55,166,5124,5124,4568,
+ 1634,3474,2645,31,31,5124,5124,2562,2562,5124,
+ 5124,5124,5124,55,5124,5124,5124,5124,1634,5124,
+ 1878,5124,5124,5124,55,5124,344,344,55,1634,
+ 5124,1245,5124,1634,5124,860,5124,5124,5124,5124,
+ 5124,5124,5124,5124,5124,5124,2619,2619,5124,5124,
+ 5124,5124,5124,5124,5124,5124,5124,3229,531,4054,
+ 5124,0,1112,1,0,1119,1,0,1,2,
+ 5142,0,1,2,5141,0,43,5142,0,43,
+ 5141,0,1216,320,0,450,1297,0,436,1510,
+ 0,1552,33,0,5130,1,0,5129,1,0,
+ 5363,246,0,5362,246,0,5463,246,0,5462,
+ 246,0,5390,246,0,5389,246,0,5388,246,
+ 0,5387,246,0,5386,246,0,5385,246,0,
+ 5384,246,0,5383,246,0,5401,246,0,5400,
+ 246,0,5399,246,0,5398,246,0,5397,246,
+ 0,5396,246,0,5395,246,0,5394,246,0,
+ 5393,246,0,5392,246,0,5391,246,0,43,
+ 246,5142,0,43,246,5141,0,5166,246,0,
+ 1552,386,0,54,5142,0,54,5141,0,42,
+ 5142,0,42,5141,0,2493,132,0,1,440,
+ 0,454,1733,0,453,2283,0,39,37,0,
+ 5166,1,0,43,1,0,43,2,5142,0,
+ 43,2,5141,0,1552,45,0,3012,97,0,
+ 36,38,0,43,919,0,49,5164,0,49,
+ 41,0,1,567,0,1,5401,0,1,5400,
+ 0,1,5399,0,1,5398,0,1,5397,0,
+ 1,5396,0,1,5395,0,1,5394,0,1,
+ 5393,0,1,5392,0,1,5391,0,43,1,
+ 5142,0,43,1,5141,0,726,1,0,497,
+ 2566,0,5166,233,1,0,43,233,1,0,
+ 233,413,0,41,5142,0,41,5141,0,242,
+ 2786,0,387,36,0,36,387,0,386,33,
+ 0,33,386,0,5142,54,0,5141,54,0,
+ 2493,134,0,2493,133,0,30,515,0,5455,
+ 441,0,1720,441,0,5134,402,0,5133,402,
+ 0,1,3693,0,1,919,0,1,3014,0,
+ 233,412,0,53,41,0,1,98,0,41,
+ 53,0,5164,51,0,51,41,0,1,5455,
+ 0,1,1720,0,43,1,2,5142,0,43,
+ 1,2,5141,0,41,5142,2,0,41,5141,
+ 2,0,5142,40,0,5141,40,0,497,4132,
+ 0,233,1,0,233,225,0,5455,101,0,
+ 1720,101,0,39,79,0,233,224,0,283,
+ 4077,0,5132,1,0,233,1,3362,0,5134,
+ 233,0,5133,233,0,3452,233,0,8,10,
+ 0,191,3342,0
};
};
public final static char baseAction[] = BaseAction.baseAction;
@@ -1064,295 +1043,296 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public final static byte termCheck[] = {0,
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
- 20,21,22,23,24,25,26,27,0,0,
- 30,31,32,33,34,35,36,37,38,39,
+ 20,21,22,23,24,25,26,27,0,29,
+ 0,31,32,33,34,35,36,37,38,39,
40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,0,62,63,0,65,66,6,68,69,
- 70,71,0,9,74,11,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,0,62,63,3,65,66,0,68,69,
+ 70,0,0,73,74,75,76,77,78,79,
+ 80,81,0,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,88,89,30,31,
+ 22,23,24,25,26,27,0,29,0,31,
32,33,34,35,36,37,38,39,40,41,
- 42,43,44,45,46,47,0,49,50,51,
- 52,53,54,55,56,57,58,59,60,0,
- 62,63,3,65,66,0,68,69,70,71,
- 88,89,74,0,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 42,43,44,45,46,47,64,49,50,51,
+ 52,53,54,55,56,57,58,59,60,121,
+ 62,63,0,65,66,3,68,69,70,88,
+ 89,73,74,75,76,77,78,79,80,81,
+ 122,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,0,30,31,32,33,
+ 24,25,26,27,0,29,0,31,32,33,
34,35,36,37,38,39,40,41,42,43,
- 44,45,46,47,61,49,50,51,52,53,
- 54,55,56,57,58,59,60,101,62,63,
- 0,65,66,88,89,69,70,71,0,9,
- 74,11,76,77,78,79,80,81,82,83,
+ 44,45,46,47,0,49,50,51,52,53,
+ 54,55,56,57,58,59,60,0,62,63,
+ 0,65,66,0,68,69,70,10,0,9,
+ 74,75,76,77,78,79,80,81,10,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,88,89,30,31,32,33,34,35,
+ 26,27,0,29,57,31,32,33,34,35,
36,37,38,39,40,41,42,43,44,45,
- 46,47,0,49,50,51,52,53,54,55,
+ 46,47,72,49,50,51,52,53,54,55,
56,57,58,59,60,0,62,63,0,65,
- 66,0,4,69,70,71,88,89,74,8,
- 76,77,78,79,80,81,82,83,84,85,
+ 66,3,68,69,70,95,11,12,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 0,0,30,31,32,33,34,35,36,37,
+ 0,29,0,31,32,33,34,35,36,37,
38,39,40,41,42,43,44,45,46,47,
0,49,50,51,52,53,54,55,56,57,
- 58,59,60,101,62,63,0,65,66,0,
- 0,69,70,71,99,9,74,11,76,77,
- 78,79,80,81,82,83,84,85,86,87,
+ 58,59,60,67,62,63,0,65,66,3,
+ 68,69,70,0,1,2,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
0,1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18,19,
- 20,21,22,23,24,25,26,27,48,0,
- 30,31,32,33,34,35,36,37,38,39,
+ 20,21,22,23,24,25,26,27,0,29,
+ 0,31,32,33,34,35,36,37,38,39,
40,41,42,43,44,45,46,47,0,49,
50,51,52,53,54,55,56,57,58,59,
- 60,121,62,63,0,65,66,0,0,69,
- 70,71,0,9,74,11,76,77,78,79,
- 80,81,82,83,84,85,86,87,0,1,
+ 60,67,62,63,0,65,66,3,68,69,
+ 70,0,1,2,74,75,76,77,78,79,
+ 80,81,0,83,84,85,86,87,0,1,
2,3,4,5,6,7,8,9,10,11,
12,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,48,0,30,31,
+ 22,23,24,25,26,27,0,29,0,31,
32,33,34,35,36,37,38,39,40,41,
- 42,43,44,45,46,47,64,49,50,51,
- 52,53,54,55,56,57,58,59,60,0,
- 62,63,3,65,66,0,0,69,70,71,
- 4,0,74,8,76,77,78,79,80,81,
- 82,83,84,85,86,87,0,1,2,3,
+ 42,43,44,45,46,47,0,49,50,51,
+ 52,53,54,55,56,57,58,59,60,67,
+ 62,63,0,65,66,3,68,69,70,0,
+ 1,2,74,75,76,77,78,79,80,81,
+ 0,83,84,85,86,87,0,1,2,3,
4,5,6,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,
- 24,25,26,27,0,0,30,31,32,33,
+ 24,25,26,27,0,29,0,31,32,33,
34,35,36,37,38,39,40,41,42,43,
- 44,45,46,47,63,49,50,51,52,53,
- 54,55,56,57,58,59,60,0,62,63,
- 0,65,66,3,0,69,70,71,0,0,
- 74,0,76,77,78,79,80,81,82,83,
+ 44,45,46,47,0,49,50,51,52,53,
+ 54,55,56,57,58,59,60,67,62,63,
+ 0,65,66,0,68,69,70,4,0,9,
+ 74,75,76,77,78,79,80,81,0,83,
84,85,86,87,0,1,2,3,4,5,
6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,48,0,30,31,32,33,34,35,
+ 26,27,0,29,0,31,32,33,34,35,
36,37,38,39,40,41,42,43,44,45,
- 46,47,61,49,50,51,52,53,54,55,
- 56,57,58,59,60,0,62,63,0,65,
- 66,0,0,69,70,71,0,100,74,3,
- 76,77,78,79,80,81,82,83,84,85,
+ 46,47,72,49,50,51,52,53,54,55,
+ 56,57,58,59,60,101,62,63,0,65,
+ 66,3,68,69,70,0,1,2,74,75,
+ 76,77,78,79,80,81,0,83,84,85,
86,87,0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,16,17,
18,19,20,21,22,23,24,25,26,27,
- 48,0,30,31,32,33,34,35,36,37,
+ 0,29,0,31,32,33,34,35,36,37,
38,39,40,41,42,43,44,45,46,47,
- 72,49,50,51,52,53,54,55,56,57,
- 58,59,60,0,62,63,0,65,66,3,
- 0,69,70,71,0,100,74,0,76,77,
- 78,79,80,81,82,83,84,85,86,87,
- 0,1,2,3,4,5,6,7,8,29,
- 10,0,12,13,14,15,16,17,18,19,
- 20,21,22,23,24,25,26,27,0,0,
- 30,31,32,33,34,35,36,37,38,39,
- 40,41,42,43,44,45,46,47,61,49,
- 50,51,52,53,54,55,56,0,1,2,
- 60,4,5,63,7,0,1,2,95,69,
- 70,71,0,1,2,3,4,5,6,7,
- 8,9,10,11,12,0,29,15,16,17,
- 18,19,20,21,22,23,24,25,114,115,
- 116,29,0,1,2,3,4,5,6,7,
- 8,0,0,41,29,0,1,2,46,47,
- 5,49,50,51,52,53,54,55,56,57,
- 0,1,2,3,4,63,6,0,8,0,
- 68,69,70,71,72,0,74,75,0,1,
- 2,3,4,5,6,7,8,9,10,11,
- 12,0,0,15,16,17,18,19,20,21,
- 22,23,24,25,72,13,14,29,48,67,
- 0,1,2,0,4,0,114,115,116,41,
- 0,1,2,0,46,47,0,49,50,51,
- 52,53,54,55,56,57,0,1,2,29,
- 4,63,6,102,8,0,68,69,70,71,
- 72,0,74,75,3,0,0,6,117,8,
- 9,48,11,72,13,14,99,12,0,1,
- 2,3,4,5,6,7,8,26,27,28,
- 0,1,2,3,4,5,6,7,8,0,
- 1,2,114,115,116,72,41,0,0,48,
- 0,46,47,58,49,50,51,52,53,54,
- 55,56,61,13,14,64,48,61,67,68,
- 0,1,2,72,73,5,28,7,48,0,
- 1,2,3,0,5,67,7,4,9,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,0,0,0,117,118,
- 3,120,0,6,41,8,9,48,11,0,
- 13,14,0,1,2,3,4,5,6,7,
- 8,0,95,26,27,28,0,6,0,1,
- 2,3,73,5,0,7,0,9,12,11,
- 4,0,6,48,8,48,0,1,2,3,
- 4,5,6,7,8,0,1,2,61,4,
- 5,64,7,0,67,68,64,41,0,72,
- 73,3,46,47,0,49,50,51,52,53,
- 54,55,56,9,29,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,77,91,92,117,118,48,120,0,1,
- 2,3,4,5,6,7,8,0,10,0,
- 67,13,14,15,16,17,18,19,20,21,
- 22,23,24,25,26,27,0,73,30,31,
- 32,33,34,35,36,37,38,39,40,0,
- 42,43,44,45,0,102,0,104,105,106,
- 107,108,109,110,111,112,113,0,60,61,
- 117,4,0,65,66,0,1,2,3,4,
- 5,6,7,8,9,10,67,0,13,14,
- 15,16,17,18,19,20,21,22,23,24,
- 25,26,27,67,0,30,31,32,33,34,
- 35,36,37,38,39,40,67,42,43,44,
- 45,67,0,1,2,3,0,5,0,7,
- 0,1,2,58,4,60,6,0,8,9,
- 3,13,14,68,0,1,2,3,4,5,
- 6,7,8,9,10,0,0,13,14,15,
+ 0,49,50,51,52,53,54,55,56,57,
+ 58,59,60,67,62,63,0,65,66,0,
+ 68,69,70,0,1,2,74,75,76,77,
+ 78,79,80,81,0,83,84,85,86,87,
+ 0,1,2,3,4,5,6,7,8,30,
+ 10,11,12,30,14,15,16,17,18,19,
+ 20,21,22,23,24,25,26,27,0,29,
+ 0,31,32,33,34,35,36,37,38,39,
+ 40,41,42,43,44,45,46,47,0,49,
+ 50,51,52,53,54,55,56,9,58,0,
+ 1,2,62,4,0,6,0,8,68,69,
+ 70,0,1,2,3,4,5,6,7,8,
+ 9,10,88,89,13,14,15,16,17,18,
+ 19,20,21,22,23,24,25,0,1,2,
+ 0,30,0,1,2,3,4,5,6,7,
+ 8,0,41,0,1,2,0,46,47,0,
+ 49,50,51,52,53,54,55,56,57,10,
+ 59,101,0,62,0,1,2,0,4,68,
+ 69,70,71,30,73,74,0,1,2,30,
+ 48,5,0,82,0,1,2,3,4,5,
+ 6,7,8,9,10,28,118,13,14,15,
16,17,18,19,20,21,22,23,24,25,
- 26,27,46,47,30,31,32,33,34,35,
- 36,37,38,39,40,48,42,43,44,45,
- 0,1,2,3,72,5,0,7,0,9,
- 0,11,58,73,60,9,0,1,2,122,
- 4,0,68,0,1,2,3,4,5,6,
- 7,8,67,10,0,95,13,14,15,16,
+ 0,62,71,0,30,114,115,116,0,0,
+ 1,2,3,74,5,41,7,0,9,99,
+ 46,47,13,49,50,51,52,53,54,55,
+ 56,57,60,59,0,99,62,0,0,1,
+ 2,4,68,69,70,71,0,73,74,3,
+ 0,48,6,0,8,9,82,11,12,13,
+ 0,1,2,3,14,5,0,7,30,9,
+ 62,0,26,27,28,0,1,2,3,4,
+ 5,6,7,8,0,0,1,2,114,115,
+ 116,41,7,0,48,61,46,47,64,49,
+ 50,51,52,53,54,55,56,61,48,0,
+ 64,0,0,67,114,115,116,71,72,73,
+ 67,0,1,2,3,4,5,6,7,8,
+ 46,47,72,0,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,
+ 48,90,0,117,118,3,120,96,6,0,
+ 8,9,3,11,12,13,0,1,2,3,
+ 4,5,6,7,8,0,1,2,26,27,
+ 28,0,71,100,0,0,1,2,0,4,
+ 0,1,2,3,4,14,6,0,8,0,
+ 48,0,1,2,3,30,5,48,7,0,
+ 9,88,89,61,13,30,64,8,0,67,
+ 0,3,41,71,72,73,0,46,47,30,
+ 49,50,51,52,53,54,55,56,48,0,
+ 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,48,28,48,117,
+ 118,0,120,0,1,2,3,4,5,6,
+ 7,8,0,10,11,12,102,61,15,16,
17,18,19,20,21,22,23,24,25,26,
- 27,30,0,30,31,32,33,34,35,36,
- 37,38,39,40,30,42,43,44,45,61,
- 0,1,2,3,58,5,0,7,0,73,
- 0,1,2,60,4,5,10,7,65,66,
+ 27,117,29,0,31,32,33,34,35,36,
+ 37,38,39,40,0,42,43,44,45,48,
0,1,2,3,4,5,6,7,8,0,
- 10,95,0,13,14,15,16,17,18,19,
- 20,21,22,23,24,25,26,27,48,67,
- 30,31,32,33,34,35,36,37,38,39,
- 40,29,42,43,44,45,0,1,2,61,
- 4,5,64,7,0,0,1,2,4,4,
- 60,6,0,8,0,65,66,0,1,2,
- 3,4,5,6,7,8,9,10,0,0,
- 13,14,15,16,17,18,19,20,21,22,
- 23,24,25,26,27,41,0,30,31,32,
- 33,34,35,36,37,38,39,40,0,42,
- 43,44,45,0,1,2,3,4,5,6,
- 7,8,0,10,28,0,13,14,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,0,64,30,31,32,33,34,35,36,
- 37,38,39,40,0,42,43,44,45,0,
- 1,2,0,4,0,6,0,8,114,115,
- 116,58,6,60,0,1,2,3,4,5,
- 6,7,8,61,10,118,64,13,14,15,
- 16,17,18,19,20,21,22,23,24,25,
- 26,27,61,95,30,31,32,33,34,35,
- 36,37,38,39,40,90,42,43,44,45,
- 0,96,0,61,4,3,64,5,6,0,
- 8,0,1,2,60,13,14,0,0,1,
- 2,3,0,5,0,7,0,0,26,27,
- 28,97,98,31,0,0,12,91,92,15,
+ 0,58,0,4,61,6,4,8,65,66,
+ 0,1,2,3,4,5,6,7,8,9,
+ 10,11,12,0,0,15,16,17,18,19,
+ 20,21,22,23,24,25,26,27,48,29,
+ 0,31,32,33,34,35,36,37,38,39,
+ 40,28,42,43,44,45,0,67,0,0,
+ 1,2,3,90,5,0,7,0,58,96,
+ 60,0,1,2,9,4,5,0,7,0,
+ 3,97,98,73,0,1,2,3,4,5,
+ 6,7,8,9,10,11,12,97,98,15,
16,17,18,19,20,21,22,23,24,25,
- 48,0,1,2,28,4,0,6,0,8,
- 0,1,2,61,4,41,64,65,66,67,
- 46,47,0,49,50,51,52,53,54,55,
- 56,0,1,2,3,0,5,0,7,72,
- 88,89,90,91,92,93,94,12,72,97,
- 98,99,100,101,102,103,104,105,106,107,
- 108,109,110,111,112,113,0,90,0,3,
- 64,5,6,96,8,0,41,0,119,13,
- 14,46,47,61,49,50,51,52,53,54,
- 55,56,26,27,28,0,28,31,0,0,
- 1,2,4,28,5,97,98,12,0,1,
- 2,0,1,2,48,7,0,1,2,0,
- 4,0,3,0,1,2,28,61,29,61,
- 64,65,66,67,0,58,41,0,1,2,
- 29,46,47,0,49,50,51,52,53,54,
- 55,56,29,0,88,89,90,91,92,93,
- 94,93,94,97,98,99,100,101,102,103,
- 104,105,106,107,108,109,110,111,112,113,
- 0,1,2,3,4,5,6,7,8,0,
- 10,0,3,13,14,15,16,17,18,19,
- 20,21,22,23,24,25,26,27,0,0,
- 30,31,32,33,34,35,36,37,38,39,
- 40,0,42,43,44,45,5,0,48,0,
- 1,2,3,4,5,6,7,8,0,10,
- 119,3,13,14,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,30,0,30,
- 31,32,33,34,35,36,37,38,39,40,
- 61,42,43,44,45,0,0,0,1,2,
- 3,4,5,6,7,8,10,10,0,60,
- 13,14,15,16,17,18,19,20,21,22,
- 23,24,25,26,27,67,0,30,31,32,
- 33,34,35,36,37,38,39,40,60,42,
- 43,44,45,0,1,2,3,4,5,6,
- 7,8,0,10,28,59,13,14,15,16,
- 17,18,19,20,21,22,23,24,25,26,
- 27,76,0,30,31,32,33,34,35,36,
- 37,38,39,40,0,42,43,44,45,0,
- 1,2,3,4,5,6,7,8,0,10,
- 28,3,13,14,15,16,17,18,19,20,
- 21,22,23,24,25,26,27,0,0,30,
- 31,32,33,34,35,36,37,38,39,40,
- 0,42,43,44,45,0,1,2,0,4,
- 0,3,0,1,2,10,28,12,64,9,
+ 26,27,0,29,0,31,32,33,34,35,
+ 36,37,38,39,40,0,42,43,44,45,
+ 71,0,1,2,9,4,5,72,7,0,
+ 1,2,58,4,60,6,67,8,0,1,
+ 2,3,4,5,6,7,8,73,10,11,
+ 12,30,95,15,16,17,18,19,20,21,
+ 22,23,24,25,26,27,64,29,64,31,
+ 32,33,34,35,36,37,38,39,40,64,
+ 42,43,44,45,0,1,2,72,4,5,
+ 0,7,0,0,1,2,58,4,5,0,
+ 7,9,0,65,66,0,1,2,3,4,
+ 5,6,7,8,30,10,11,12,28,0,
15,16,17,18,19,20,21,22,23,24,
- 25,0,1,2,0,1,2,0,0,1,
- 2,0,0,0,1,2,41,0,6,0,
- 9,46,47,0,49,50,51,52,53,54,
- 55,56,9,29,11,28,0,29,63,0,
- 1,2,29,4,69,70,71,65,66,10,
- 0,12,0,73,15,16,17,18,19,20,
- 21,22,23,24,25,0,65,66,61,0,
+ 25,26,27,0,29,0,31,32,33,34,
+ 35,36,37,38,39,40,0,42,43,44,
+ 45,0,0,1,2,3,64,5,0,7,
+ 0,1,2,58,4,73,6,9,8,0,
+ 65,66,0,1,2,3,4,5,6,7,
+ 8,9,10,11,12,0,0,15,16,17,
+ 18,19,20,21,22,23,24,25,26,27,
+ 48,29,100,31,32,33,34,35,36,37,
+ 38,39,40,28,42,43,44,45,0,1,
+ 2,3,4,5,6,7,8,58,10,11,
+ 12,73,0,15,16,17,18,19,20,21,
+ 22,23,24,25,26,27,95,29,0,31,
+ 32,33,34,35,36,37,38,39,40,0,
+ 42,43,44,45,0,1,2,0,4,0,
+ 6,0,8,9,88,89,58,6,60,0,
+ 0,0,1,2,3,4,5,6,7,8,
+ 118,10,11,12,0,0,15,16,17,18,
+ 19,20,21,22,23,24,25,26,27,61,
+ 29,0,31,32,33,34,35,36,37,38,
+ 39,40,90,42,43,44,45,60,96,0,
+ 61,0,3,64,5,6,72,8,0,58,
+ 11,12,0,1,2,3,0,5,0,7,
+ 71,0,0,1,2,26,27,28,0,95,
+ 31,0,91,92,6,14,15,16,17,18,
+ 19,20,21,22,23,24,25,48,0,1,
+ 2,0,4,0,6,90,8,4,0,28,
+ 61,96,41,64,65,66,67,46,47,61,
+ 49,50,51,52,53,54,55,56,60,0,
+ 64,0,0,1,2,0,4,88,89,90,
+ 91,92,93,94,41,14,97,98,99,100,
+ 101,102,103,104,105,106,107,108,109,110,
+ 111,112,113,0,29,0,3,0,5,6,
+ 119,8,41,0,11,12,75,46,47,71,
+ 49,50,51,52,53,54,55,56,0,26,
+ 27,28,60,28,31,28,67,0,1,2,
+ 3,28,5,0,7,0,1,2,5,0,
+ 5,48,7,0,1,2,28,114,115,116,
+ 0,1,2,0,61,5,61,64,65,66,
+ 67,102,0,104,105,106,107,108,109,110,
+ 111,112,113,30,71,0,117,0,1,2,
+ 30,88,89,90,91,92,93,94,93,94,
+ 97,98,99,100,101,102,103,104,105,106,
+ 107,108,109,110,111,112,113,0,1,2,
+ 3,4,5,6,7,8,0,10,11,12,
+ 0,0,15,16,17,18,19,20,21,22,
+ 23,24,25,26,27,0,29,60,31,32,
+ 33,34,35,36,37,38,39,40,28,42,
+ 43,44,45,0,0,48,0,1,2,3,
+ 4,5,6,7,8,30,10,11,12,0,
+ 95,15,16,17,18,19,20,21,22,23,
+ 24,25,26,27,0,29,0,31,32,33,
+ 34,35,36,37,38,39,40,28,42,43,
+ 44,45,0,1,2,0,1,2,3,4,
+ 5,6,7,8,58,10,11,12,0,0,
+ 15,16,17,18,19,20,21,22,23,24,
+ 25,26,27,0,29,119,31,32,33,34,
+ 35,36,37,38,39,40,28,42,43,44,
+ 45,0,1,2,3,4,5,6,7,8,
+ 76,10,11,12,0,0,15,16,17,18,
+ 19,20,21,22,23,24,25,26,27,0,
+ 29,48,31,32,33,34,35,36,37,38,
+ 39,40,28,42,43,44,45,0,1,2,
+ 3,4,5,6,7,8,0,10,11,12,
+ 0,0,15,16,17,18,19,20,21,22,
+ 23,24,25,26,27,0,29,48,31,32,
+ 33,34,35,36,37,38,39,40,0,42,
+ 43,44,45,0,1,2,0,4,0,0,
+ 1,2,4,10,0,1,2,14,15,16,
+ 17,18,19,20,21,22,23,24,25,0,
+ 64,61,0,0,64,6,28,4,6,30,
+ 0,0,1,2,41,4,61,0,8,46,
+ 47,4,49,50,51,52,53,54,55,56,
+ 0,1,2,0,4,62,3,0,1,2,
+ 10,68,69,70,14,15,16,17,18,19,
+ 20,21,22,23,24,25,88,89,41,0,
0,1,2,3,4,5,6,7,8,9,
- 41,11,12,0,73,46,47,64,49,50,
- 51,52,53,54,55,56,0,28,28,0,
- 93,94,63,91,92,9,0,0,69,70,
- 71,41,0,1,2,0,46,47,48,49,
+ 0,41,0,13,14,0,46,47,3,49,
+ 50,51,52,53,54,55,56,28,28,0,
+ 91,92,62,91,92,0,1,2,68,69,
+ 70,41,65,66,0,0,46,47,48,49,
50,51,52,53,54,55,56,0,1,2,
- 3,4,5,6,7,8,9,0,11,12,
- 3,29,0,73,0,0,9,0,1,2,
- 67,0,10,0,1,2,0,58,0,1,
- 2,3,4,5,6,7,8,9,41,11,
- 12,29,28,46,47,48,49,50,51,52,
- 53,54,55,56,0,48,28,29,4,0,
- 0,1,2,3,4,5,6,7,8,9,
- 73,11,12,0,0,63,3,0,0,0,
- 73,58,28,4,118,57,74,59,0,29,
- 62,0,0,0,1,2,0,9,0,1,
- 2,10,10,75,0,1,2,3,4,5,
- 6,7,8,9,0,11,12,57,0,59,
- 29,29,62,0,28,0,3,0,68,0,
- 1,2,0,29,0,75,0,1,2,3,
- 4,5,6,7,8,9,123,11,12,26,
- 27,0,64,28,63,63,68,0,0,0,
- 0,57,28,59,90,29,62,9,90,9,
- 96,48,68,0,96,0,1,2,64,75,
+ 3,4,5,6,7,8,9,0,0,0,
+ 13,14,72,0,1,2,64,9,11,12,
+ 11,12,67,0,1,2,0,1,2,3,
+ 4,5,6,7,8,9,67,0,41,13,
+ 14,0,0,46,47,48,49,50,51,52,
+ 53,54,55,56,0,71,30,3,0,1,
+ 2,3,4,5,6,7,8,9,0,72,
+ 0,13,14,3,0,0,0,0,65,66,
+ 72,0,0,57,0,59,28,10,30,63,
+ 9,9,0,0,13,13,26,27,61,73,
+ 0,9,0,0,0,13,0,30,82,0,
+ 4,9,9,0,0,57,13,59,48,0,
+ 0,63,0,1,2,3,4,5,6,7,
+ 8,9,28,0,28,13,14,61,29,62,
+ 82,28,0,1,2,3,4,5,6,7,
+ 8,9,30,0,61,13,14,0,1,2,
+ 3,4,5,6,7,8,9,64,0,0,
+ 13,14,30,103,61,73,0,0,64,57,
+ 0,59,0,0,0,63,3,30,0,9,
+ 120,0,0,13,0,73,14,28,10,57,
+ 0,59,0,9,82,63,93,94,0,9,
+ 0,3,28,0,57,73,59,4,30,0,
+ 63,0,3,41,82,4,0,0,46,47,
+ 73,49,50,51,52,53,54,55,56,82,
0,1,2,3,4,5,6,7,8,9,
- 72,11,12,57,0,59,0,0,62,0,
- 0,0,0,3,68,4,9,0,9,29,
- 0,75,0,1,2,3,4,5,6,7,
- 8,9,64,11,12,0,103,0,68,28,
- 28,73,0,0,0,0,3,57,28,59,
- 0,29,62,120,9,0,0,0,68,3,
- 0,4,58,28,58,75,0,1,2,3,
- 4,5,6,7,8,9,0,11,12,57,
- 73,59,73,28,62,0,0,0,3,3,
- 68,0,0,0,0,29,3,75,0,1,
- 2,3,4,5,6,7,8,9,0,11,
- 12,3,0,68,64,3,72,9,58,28,
- 0,0,0,57,3,59,0,29,62,3,
- 0,0,0,3,3,3,0,0,0,3,
- 0,75,0,1,2,3,4,5,6,7,
- 8,9,61,11,12,57,48,59,0,72,
- 62,67,0,0,72,28,0,0,0,61,
- 0,29,64,75,0,0,0,0,0,0,
- 0,73,0,0,93,94,0,67,0,0,
- 0,0,0,0,0,119,0,0,0,57,
- 0,59,0,0,62,0,0,0,0,0,
- 0,0,0,0,0,0,0,75,0,0,
- 0,0,0,0,0,0,0,0,0,121,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0
+ 62,0,61,13,14,0,1,2,3,4,
+ 5,6,7,8,9,0,72,0,13,14,
+ 30,0,72,71,3,0,1,2,3,4,
+ 5,6,7,8,9,30,60,0,13,14,
+ 3,0,0,0,3,28,9,57,0,59,
+ 9,0,4,63,3,30,0,0,0,3,
+ 3,60,57,0,59,0,3,0,63,0,
+ 3,0,82,0,3,0,28,0,61,119,
+ 3,0,57,0,59,48,71,82,63,48,
+ 0,0,0,3,3,0,0,0,61,0,
+ 0,64,29,0,0,0,0,82,0,72,
+ 93,94,0,72,71,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,71,
+ 0,0,67,0,0,0,67,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,121,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0
};
};
public final static byte termCheck[] = TermCheck.termCheck;
@@ -1360,293 +1340,292 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface TermAction {
public final static char termAction[] = {0,
- 5226,5204,5183,5183,5183,5183,5183,5183,5183,5217,
- 1,5211,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,127,1,
+ 5124,5105,5081,5081,5081,5081,5081,5081,5081,5115,
+ 1,1,1,5112,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5124,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,5226,1,
- 1,1,1,1,1,1,1,1567,1304,1565,
- 1,5226,2664,1,405,1,1,2330,5233,1,
- 1,1,131,5117,5407,5120,2615,3068,3267,2247,
- 3120,2870,3321,2997,998,2981,2698,2980,8,5220,
- 5220,5220,5220,5220,5220,5220,5220,5220,5220,5220,
- 5220,5220,5220,5220,5220,5220,5220,5220,5220,5220,
- 5220,5220,5220,5220,5220,5220,2616,2808,5220,5220,
- 5220,5220,5220,5220,5220,5220,5220,5220,5220,5220,
- 5220,5220,5220,5220,5220,5220,143,5220,5220,5220,
- 5220,5220,5220,5220,5220,5220,5220,5220,5220,5226,
- 5220,5220,3923,5220,5220,130,5220,5220,5220,5220,
- 2616,2808,5220,5226,5220,5220,5220,5220,5220,5220,
- 5220,5220,5220,5220,5220,5220,5226,5204,5183,5183,
- 5183,5183,5183,5183,5183,5208,1,5211,1,1,
+ 1,1,1,1,1,1,1,1,191,1,
+ 1,1,1,1,1,1,1,1259,1,2046,
+ 2842,5124,1,3031,3714,1,1,5124,1,1,
+ 1,127,363,5131,5305,2812,3407,3285,2234,3142,
+ 3326,3017,5124,3396,672,3372,3410,3370,8,5118,
+ 5118,5118,5118,5118,5118,5118,5118,5118,5118,5118,
+ 5118,5118,5118,5118,5118,5118,5118,5118,5118,5118,
+ 5118,5118,5118,5118,5118,5118,5124,5118,5124,5118,
+ 5118,5118,5118,5118,5118,5118,5118,5118,5118,5118,
+ 5118,5118,5118,5118,5118,5118,2803,5118,5118,5118,
+ 5118,5118,5118,5118,5118,5118,5118,5118,5118,4731,
+ 5118,5118,5124,5118,5118,2786,5118,5118,5118,2720,
+ 2746,5118,5118,5118,5118,5118,5118,5118,5118,5118,
+ 5121,5118,5118,5118,5118,5118,5124,5105,5081,5081,
+ 5081,5081,5081,5081,5081,5109,1,1,1,5112,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,129,5226,1,1,1,1,
+ 1,1,1,1,5124,1,5124,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,2270,1,1,1,1,1,
- 1,1,1,1567,1304,1565,1,2336,2664,1,
- 5226,1,1,2616,2808,1,1,1,128,5236,
- 5407,5235,2615,3068,3267,2247,3120,2870,3321,2997,
- 998,2981,2698,2980,5226,5204,5183,5183,5183,5183,
- 5183,5183,5183,5208,1,5211,1,1,1,1,
+ 1,1,1,1,5124,1,1,1,1,1,
+ 1,1,1,1259,1,2046,2842,304,1,3031,
+ 1,1,1,5124,1,1,1,5427,304,364,
+ 5305,2812,3407,3285,2234,3142,3326,3017,5427,3396,
+ 672,3372,3410,3370,5124,5105,5081,5081,5081,5081,
+ 5081,5081,5081,5109,1,1,1,5112,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,2616,2808,1,1,1,1,1,1,
+ 1,1,5124,1,3437,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,144,1,1,1,1,1,1,1,
- 1,1567,1304,1565,1,139,2664,1,43,1,
- 1,137,5268,1,1,1,2616,2808,5407,2399,
- 2615,3068,3267,2247,3120,2870,3321,2997,998,2981,
- 2698,2980,5226,5204,5183,5183,5183,5183,5183,5183,
- 5183,5208,1,5211,1,1,1,1,1,1,
+ 1,1,364,1,1,1,1,1,1,1,
+ 1,1259,1,2046,2842,124,1,3031,97,1,
+ 1,4897,1,1,1,364,2966,2941,5305,2812,
+ 3407,3285,2234,3142,3326,3017,504,3396,672,3372,
+ 3410,3370,5124,5105,5081,5081,5081,5081,5081,5081,
+ 5081,5109,1,1,1,5112,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 5226,5226,1,1,1,1,1,1,1,1,
+ 5124,1,5124,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 5226,1,1,1,1,1,1,1,1,1567,
- 1304,1565,1,2336,2664,1,1,1,1,5226,
- 352,1,1,1,2369,5236,5407,5235,2615,3068,
- 3267,2247,3120,2870,3321,2997,998,2981,2698,2980,
- 5226,5204,5183,5183,5183,5183,5183,5183,5183,5208,
- 1,5211,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1313,5226,
+ 5124,1,1,1,1,1,1,1,1,1259,
+ 1,2046,2842,2630,1,3031,242,1,1,4979,
+ 1,1,1,394,5141,5142,5305,2812,3407,3285,
+ 2234,3142,3326,3017,502,3396,672,3372,3410,3370,
+ 5124,5105,5081,5081,5081,5081,5081,5081,5081,5109,
+ 1,1,1,5112,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5124,1,
+ 5124,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,5124,1,
+ 1,1,1,1,1,1,1,1259,1,2046,
+ 2842,2809,1,3031,1,1,1,4673,1,1,
+ 1,5124,5141,5142,5305,2812,3407,3285,2234,3142,
+ 3326,3017,371,3396,672,3372,3410,3370,5124,5105,
+ 5081,5081,5081,5081,5081,5081,5081,5109,1,1,
+ 1,5112,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,5124,1,5124,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,5226,1,
- 1,1,1,1,1,1,1,1567,1304,1565,
- 1,4833,2664,1,1,1,1,5226,325,1,
- 1,1,366,197,5407,197,2615,3068,3267,2247,
- 3120,2870,3321,2997,998,2981,2698,2980,5226,5204,
- 5183,5183,5183,5183,5183,5183,5183,5208,1,5211,
+ 1,1,1,1,1,1,5124,1,1,1,
+ 1,1,1,1,1,1259,1,2046,2842,1130,
+ 1,3031,5124,1,1,3683,1,1,1,5124,
+ 4856,4853,5305,2812,3407,3285,2234,3142,3326,3017,
+ 369,3396,672,3372,3410,3370,5124,5105,5081,5081,
+ 5081,5081,5081,5081,5081,5109,1,1,1,5112,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1313,5226,1,1,
+ 1,1,1,1,5124,1,5124,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,3621,1,1,1,
- 1,1,1,1,1,1567,1304,1565,1,5226,
- 2664,1,2852,1,1,138,5226,1,1,1,
- 986,5226,5407,2399,2615,3068,3267,2247,3120,2870,
- 3321,2997,998,2981,2698,2980,5226,5204,5183,5183,
- 5183,5183,5183,5183,5183,5208,1,5211,1,1,
+ 1,1,1,1,143,1,1,1,1,1,
+ 1,1,1,1259,1,2046,2842,1177,1,3031,
+ 5124,1,1,43,1,1,1,5166,5124,5130,
+ 5305,2812,3407,3285,2234,3142,3326,3017,5124,3396,
+ 672,3372,3410,3370,5124,5105,5081,5081,5081,5081,
+ 5081,5081,5081,5109,1,1,1,5112,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,5226,5226,1,1,1,1,
+ 1,1,5124,1,5124,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1004,1,1,1,1,1,
- 1,1,1,1567,1304,1565,1,141,2664,1,
- 97,1,1,4999,456,1,1,1,5226,5226,
- 5407,5226,2615,3068,3267,2247,3120,2870,3321,2997,
- 998,2981,2698,2980,5226,5204,5183,5183,5183,5183,
- 5183,5183,5183,5208,1,5211,1,1,1,1,
+ 1,1,5129,1,1,1,1,1,1,1,
+ 1,1259,1,2046,2842,2321,1,3031,5124,1,
+ 1,4062,1,1,1,54,4856,4853,5305,2812,
+ 3407,3285,2234,3142,3326,3017,506,3396,672,3372,
+ 3410,3370,5124,3362,1,1,1,1,1,1,
+ 1,5134,1,1,1,5133,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,4973,5226,1,1,1,1,1,1,
+ 5124,1,5124,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,
- 1,1,2278,1,1,1,1,1,1,1,
- 1,1567,1304,1565,1,142,2664,1,426,1,
- 1,5226,455,1,1,1,242,592,5407,5081,
- 2615,3068,3267,2247,3120,2870,3321,2997,998,2981,
- 2698,2980,5226,2890,1,1,1,1,1,1,
- 1,5236,1,5235,1,1,1,1,1,1,
+ 5124,1,1,1,1,1,1,1,1,1259,
+ 1,2046,2842,657,1,3031,5124,1,1,41,
+ 1,1,1,49,4909,4909,5305,2812,3407,3285,
+ 2234,3142,3326,3017,131,3396,672,3372,3410,3370,
+ 43,4749,4746,3343,726,3624,3851,3014,3873,5164,
+ 1167,3829,3799,4906,5386,5393,5391,5400,5399,5395,
+ 5396,5394,5397,5398,5401,5392,3917,3895,5124,5147,
+ 144,1050,1268,1337,5149,1295,629,1303,5150,5148,
+ 1208,5389,5143,5145,5146,5144,5462,5463,5124,5383,
+ 5390,5362,5388,5387,5384,5385,5363,5128,1393,440,
+ 1,1,5519,1,5124,4868,5124,4868,730,5520,
+ 5521,5124,4966,4966,233,4962,233,233,233,233,
+ 4970,1,2720,2746,233,1,1,1,1,1,
+ 1,1,1,1,1,1,1,293,5141,5142,
+ 139,4959,346,4890,4886,2570,5166,919,1720,3014,
+ 5455,424,1,5124,4976,4973,140,1,1,5124,
+ 1,1,1,1,1,1,1,1,2799,1112,
+ 2020,2321,5124,1,5124,4749,4746,5124,5166,1,
+ 1,1,233,5164,413,5533,5124,5141,5142,573,
+ 1306,3491,5124,5620,5124,4966,4966,233,4962,233,
+ 233,233,233,5030,1,864,5127,233,1,1,
1,1,1,1,1,1,1,1,1,1,
- 4976,5226,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,
- 3438,1,1,1,1,1,1,1,1,1567,
- 1304,1565,1,362,2664,1,1,1,1,4693,
- 41,1,1,1,437,592,5407,5226,2615,3068,
- 3267,2247,3120,2870,3321,2997,998,2981,2698,2980,
- 43,4851,4848,2639,729,3868,4193,2857,4215,5266,
- 924,5226,5488,4171,4149,5495,5493,5502,5501,5497,
- 5498,5496,5499,5500,5503,5494,4259,4237,5226,5226,
- 5249,1055,1260,1344,5251,1266,4402,1309,5252,5250,
- 1078,5491,5245,5247,5248,5246,5567,5568,2289,5485,
- 5492,5464,5490,5489,5486,5487,5465,5226,4851,4848,
- 1402,729,5005,5624,2857,397,5243,5244,5587,858,
- 5625,5626,5226,5068,5068,233,5064,233,233,233,
- 233,5072,1,233,1,53,2106,1,1,1,
- 1,1,1,1,1,1,1,1,5659,5660,
- 5661,5061,5226,5161,5156,939,4982,784,5153,2857,
- 5150,145,506,1,920,5226,5243,5244,1,1,
- 3329,1,1,1,1,1,1,1,1,1399,
- 349,43,43,2701,5268,1,1603,140,5560,5226,
- 415,1,1,1,233,5226,5637,5724,5226,5068,
- 5068,233,5064,233,233,233,233,5132,1,233,
- 1,5226,124,1,1,1,1,1,1,1,
- 1,1,1,1,2069,3269,3244,5061,1313,3320,
- 397,4851,4848,106,5268,5226,5659,5660,5661,1,
- 5226,5243,5244,5226,1,1,5226,1,1,1,
- 1,1,1,1,1,1399,442,1,1,43,
- 1,1,4970,2299,4970,5226,414,1,1,1,
- 233,37,5637,5724,4979,229,5226,4979,3191,4979,
- 4979,4707,4979,1948,4979,4979,2369,5488,371,4844,
- 4840,2710,1,784,1,2857,1,4979,4979,4979,
- 349,4992,4988,2710,5268,784,1603,2857,5560,5226,
- 4958,4955,5659,5660,5661,5627,5491,1,5226,4979,
- 126,5567,5568,1645,5485,5492,5464,5490,5489,5486,
- 5487,5465,4979,3269,3244,4979,1313,2322,4979,4979,
- 5226,5243,5244,4979,4979,784,733,2857,1313,1,
- 4844,4840,2710,43,784,1081,2857,5268,4866,4979,
- 4979,4979,4979,4979,4979,4979,4979,4979,4979,4979,
- 4979,4979,4979,4979,4979,4979,4979,4979,4979,4979,
- 4979,4979,4979,4979,4979,105,5226,5226,4979,4979,
- 5002,4979,163,5002,2940,5002,5002,1313,5002,5226,
- 5002,5002,5226,4992,4988,939,5268,784,1603,2857,
- 5560,121,5589,5002,5002,5002,230,3826,1,4844,
- 4840,5123,4869,5126,5226,5129,43,5236,5488,5235,
- 5268,5226,1603,2210,5560,5002,315,5161,5156,939,
- 4982,784,5153,2857,5150,5226,4851,4848,5002,729,
- 5005,5002,2857,145,5002,5002,1906,5491,351,5002,
- 5002,909,5567,5568,5226,5485,5492,5464,5490,5489,
- 5486,5487,5465,5232,2195,5002,5002,5002,5002,5002,
- 5002,5002,5002,5002,5002,5002,5002,5002,5002,5002,
- 5002,5002,5002,5002,5002,5002,5002,5002,5002,5002,
- 5002,3173,3803,3780,5002,5002,1313,5002,1,5054,
- 5050,2639,5058,3868,4193,2857,4215,5226,5014,504,
- 1864,4171,4149,5041,5047,5020,5023,5035,5032,5038,
- 5029,5026,5017,5044,4259,4237,374,5231,5249,1055,
- 1260,1344,5251,1266,4402,1309,5252,5250,1078,372,
- 5245,5247,5248,5246,508,2299,5226,1822,1780,1738,
- 1696,1654,1612,1570,1528,1486,1444,1,1402,514,
- 3191,390,5226,43,43,43,4851,4848,2639,729,
- 3868,4193,2857,4215,5234,569,3654,191,4171,4149,
- 5495,5493,5502,5501,5497,5498,5496,5499,5500,5503,
- 5494,4259,4237,1136,5226,5249,1055,1260,1344,5251,
- 1266,4402,1309,5252,5250,1078,1184,5245,5247,5248,
- 5246,1372,1,4844,4840,939,340,784,125,2857,
- 1,4985,4985,3768,4982,1402,1603,323,5560,367,
- 4854,3269,3244,5233,43,4851,4848,2639,729,3868,
- 4193,2857,4215,5234,569,294,5226,4171,4149,5495,
- 5493,5502,5501,5497,5498,5496,5499,5500,5503,5494,
- 4259,4237,5567,5568,5249,1055,1260,1344,5251,1266,
- 4402,1309,5252,5250,1078,1313,5245,5247,5248,5246,
- 1,4844,4840,939,2069,784,1,2857,5226,315,
- 5226,315,3768,367,1402,367,5226,4851,4848,5223,
- 5268,5226,5233,147,4851,4848,2639,729,3868,4193,
- 2857,4215,2032,569,5226,367,4171,4149,5495,5493,
- 5502,5501,5497,5498,5496,5499,5500,5503,5494,4259,
- 4237,3588,418,5249,1055,1260,1344,5251,1266,4402,
- 1309,5252,5250,1078,3696,5245,5247,5248,5246,5679,
- 1,4844,4840,2710,1771,784,307,2857,5226,367,
- 5226,4851,4848,1402,729,784,5532,2857,43,43,
- 1,5054,5050,2639,5058,3868,4193,2857,4215,5226,
- 5014,367,5226,4171,4149,5041,5047,5020,5023,5035,
- 5032,5038,5029,5026,5017,5044,4259,4237,1313,2158,
- 5249,1055,1260,1344,5251,1266,4402,1309,5252,5250,
- 1078,2367,5245,5247,5248,5246,5226,4851,4848,773,
- 729,784,3905,2857,43,443,43,43,5268,5268,
- 1402,5114,5226,5111,5226,43,43,43,4851,4848,
- 2639,729,3868,4193,2857,4215,5230,569,513,5226,
- 4171,4149,5495,5493,5502,5501,5497,5498,5496,5499,
- 5500,5503,5494,4259,4237,2677,452,5249,1055,1260,
- 1344,5251,1266,4402,1309,5252,5250,1078,1,5245,
- 5247,5248,5246,43,4851,4848,2639,729,3868,4193,
- 2857,4215,30,569,4857,117,4171,4149,5495,5493,
- 5502,5501,5497,5498,5496,5499,5500,5503,5494,4259,
- 4237,5226,876,5249,1055,1260,1344,5251,1266,4402,
- 1309,5252,5250,1078,135,5245,5247,5248,5246,98,
- 1,1,5226,1,5226,5138,123,5138,5659,5660,
- 5661,3768,3826,1402,43,4851,4848,2639,729,3868,
- 4193,2857,4215,5108,569,5229,5108,4171,4149,5495,
- 5493,5502,5501,5497,5498,5496,5499,5500,5503,5494,
- 4259,4237,5665,3994,5249,1055,1260,1344,5251,1266,
- 4402,1309,5252,5250,1078,4303,5245,5247,5248,5246,
- 5226,4325,1,4008,2614,1221,3905,5693,5687,5226,
- 5691,54,4958,4955,1402,5685,5686,446,1,4844,
- 4840,939,5226,784,228,2857,33,120,5716,5717,
- 5696,2456,2428,5694,5226,5226,5488,3803,3780,5495,
- 5493,5502,5501,5497,5498,5496,5499,5500,5503,5494,
- 800,101,43,43,1519,5268,292,5189,136,5186,
- 5226,4851,4848,5697,5268,5491,5718,1685,1692,5695,
- 5567,5568,5226,5485,5492,5464,5490,5489,5486,5487,
- 5465,1,4844,4840,5123,231,5126,5226,5129,627,
- 5707,5706,5719,5688,5689,5712,5713,5488,422,5710,
- 5711,5690,5692,5714,5715,5720,5700,5701,5702,5698,
- 5699,5708,5709,5704,5703,5705,5226,4303,132,1221,
- 1439,5693,5687,4325,5691,438,5491,5226,3087,5685,
- 5686,5567,5568,5736,5485,5492,5464,5490,5489,5486,
- 5487,5465,5716,5717,5696,232,2565,5694,396,41,
- 5141,5141,389,4860,5141,2456,2428,5488,42,4964,
- 4961,49,5011,5011,800,615,5226,4851,4848,5226,
- 5268,379,3306,5226,5078,5075,1519,5697,3335,4967,
- 5718,1685,1692,5695,5226,1897,5491,293,5243,5244,
- 5008,5567,5568,5226,5485,5492,5464,5490,5489,5486,
- 5487,5465,5266,5226,5707,5706,5719,5688,5689,5712,
- 5713,2511,2484,5710,5711,5690,5692,5714,5715,5720,
- 5700,5701,5702,5698,5699,5708,5709,5704,5703,5705,
- 43,4851,4848,2639,729,3868,4193,2857,4215,5226,
- 569,5226,3435,4171,4149,5495,5493,5502,5501,5497,
- 5498,5496,5499,5500,5503,5494,4259,4237,5226,5226,
- 5249,1055,1260,1344,5251,1266,4402,1309,5252,5250,
- 1078,5226,5245,5247,5248,5246,3329,1,2779,43,
- 4851,4848,2639,729,3868,4193,2857,4215,317,569,
- 3087,2871,4171,4149,5495,5493,5502,5501,5497,5498,
- 5496,5499,5500,5503,5494,4259,4237,2658,531,5249,
- 1055,1260,1344,5251,1266,4402,1309,5252,5250,1078,
- 3849,5245,5247,5248,5246,1,307,43,4851,4848,
- 4029,729,3868,4193,2857,4215,5532,569,5226,1402,
- 4171,4149,5495,5493,5502,5501,5497,5498,5496,5499,
- 5500,5503,5494,4259,4237,1271,33,5249,1055,1260,
- 1344,5251,1266,4402,1309,5252,5250,1078,2706,5245,
- 5247,5248,5246,43,4851,4848,2639,729,3868,4193,
- 2857,4215,5226,569,4863,3591,4171,4149,5495,5493,
- 5502,5501,5497,5498,5496,5499,5500,5503,5494,4259,
- 4237,3231,389,5249,1055,1260,1344,5251,1266,4402,
- 1309,5252,5250,1078,424,5245,5247,5248,5246,43,
- 4851,4848,2639,729,3868,4193,2857,4215,5226,569,
- 4952,3554,4171,4149,5495,5493,5502,5501,5497,5498,
- 5496,5499,5500,5503,5494,4259,4237,5226,5226,5249,
- 1055,1260,1344,5251,1266,4402,1309,5252,5250,1078,
- 5226,5245,5247,5248,5246,5226,4851,4848,5226,5268,
- 1,4653,5226,5243,5244,722,3710,5488,3437,167,
- 5495,5493,5502,5501,5497,5498,5496,5499,5500,5503,
- 5494,5226,4958,4955,5226,8539,8539,134,41,5135,
- 5135,1,122,51,5147,5147,5491,5226,3826,5226,
- 5232,5567,5568,5226,5485,5492,5464,5490,5489,5486,
- 5487,5465,5236,5266,5235,2565,5226,3054,5624,246,
- 4945,4941,5144,4949,858,5625,5626,4281,874,722,
- 5226,4896,5226,167,4932,4938,4911,4914,4926,4923,
- 4929,4920,4917,4908,4935,5226,4281,874,5102,5226,
- 33,389,389,5090,389,389,5090,389,5090,5093,
- 4887,5090,389,39,5231,4881,4878,4423,4905,4884,
- 4875,4890,4893,4902,4899,4872,5226,3972,4863,5226,
- 2511,2484,5624,3803,3780,5230,5226,5226,858,5625,
- 5626,389,5226,5170,5166,5226,389,389,5093,389,
- 389,389,389,389,389,389,389,36,390,390,
- 5084,390,390,5084,390,5084,5087,1,5084,390,
- 2701,5266,5226,5093,5226,5226,4866,54,5099,5096,
- 3756,5226,817,5226,5243,5244,5226,1304,1,5183,
- 5183,233,5183,233,233,233,233,233,390,233,
- 7869,623,4078,390,390,5087,390,390,390,390,
- 390,390,390,390,54,1313,2359,5180,5244,5226,
- 1,5183,5183,233,5183,233,233,233,233,5201,
- 5087,233,7869,5226,119,866,1131,5226,118,5226,
- 4869,3671,5244,1317,5229,1567,5761,1007,5226,5180,
- 2664,1,1,5226,5099,5096,5226,5234,40,5177,
- 5174,4834,4834,5724,1,5183,5183,233,5183,233,
- 233,233,233,5201,447,233,7869,1567,5226,1007,
- 623,623,2664,81,4527,5226,2914,5226,225,5226,
- 8413,8266,5226,5180,45,5724,1,5183,5183,233,
- 5183,233,233,233,233,5214,2757,233,7869,5294,
- 5295,5226,1013,1519,4837,4837,5233,5226,5226,5226,
- 5226,1567,4996,1007,4303,5180,2664,5232,4303,5234,
- 4325,3164,225,5226,4325,5226,8413,8266,3317,5724,
- 1,5183,5183,233,5183,233,233,233,233,5201,
- 2121,233,7869,1567,1,1007,5226,1,2664,1,
- 5226,54,1,3095,224,5243,527,5226,169,5180,
- 5226,5724,1,5183,5183,233,5183,233,233,233,
- 233,5201,4702,233,7869,5226,801,5226,5233,5243,
- 1519,5231,5226,5226,5226,1,3467,1567,2359,1007,
- 314,5180,2664,1355,5198,79,109,5226,225,3661,
- 5226,1994,3730,3228,3735,5724,1,5183,5183,233,
- 5183,233,233,233,233,233,520,233,7869,1567,
- 527,1007,169,5192,2664,5226,283,5226,2749,5195,
- 225,133,5226,5226,5226,5180,4641,5724,1,5183,
- 5183,233,5183,233,233,233,233,233,1,233,
- 7869,2701,5226,5233,4463,4596,5410,345,3736,2565,
- 5226,5226,5226,1567,4435,1007,5226,5180,2664,4665,
- 5226,5226,5226,2700,4666,2642,5226,2,5226,4710,
- 5226,5724,1,5183,5183,233,5183,233,233,233,
- 233,233,5105,233,7869,1567,1313,1007,5226,3382,
- 2664,3756,5226,5226,5409,41,5226,5226,5226,345,
- 5226,5180,345,5724,5226,5226,5226,5226,5226,5226,
- 5226,345,5226,5226,2511,2484,5226,1990,5226,5226,
- 5226,5226,5226,5226,5226,3087,5226,5226,5226,1567,
- 5226,1007,5226,5226,2664,5226,5226,5226,5226,5226,
- 5226,5226,5226,5226,5226,5226,5226,5724,5226,5226,
- 5226,5226,5226,5226,5226,5226,5226,5226,5226,345
+ 435,1119,3344,349,4959,5555,5556,5557,5124,1,
+ 4742,4738,5021,5657,5024,1,5027,5124,5134,590,
+ 1,1,5133,1,1,1,1,1,1,1,
+ 1,2799,1846,2020,5124,590,1,5124,5124,8292,
+ 8292,3074,1,1,1,233,37,412,5533,4877,
+ 229,1306,4877,294,4877,4877,5620,4877,4877,4877,
+ 1,4742,4738,2570,5386,919,5124,3014,5164,4764,
+ 1976,117,4877,4877,4877,5124,4890,4886,3693,5166,
+ 919,1720,3014,5455,337,42,4862,4859,5555,5556,
+ 5557,5389,627,141,4877,724,5462,5463,3662,5383,
+ 5390,5362,5388,5387,5384,5385,5363,4877,1306,5124,
+ 4877,5124,322,4877,5555,5556,5557,4877,4877,4877,
+ 2023,5124,5059,5054,3693,4880,919,5051,3014,5048,
+ 5462,5463,4767,130,4877,4877,4877,4877,4877,4877,
+ 4877,4877,4877,4877,4877,4877,4877,4877,4877,4877,
+ 4877,4877,4877,4877,4877,4877,4877,4877,4877,4877,
+ 1306,3961,5124,4877,4877,4900,4877,3983,4900,348,
+ 4900,4900,942,4900,4900,4900,312,5059,5054,3693,
+ 4880,919,5051,3014,5048,41,5033,5033,4900,4900,
+ 4900,230,2060,1358,145,394,4749,4746,5124,5166,
+ 346,43,43,3413,5166,5386,1720,5124,5455,53,
+ 4900,1,4742,4738,3693,3432,919,1306,3014,137,
+ 312,2720,2746,4900,312,43,4900,2354,320,4900,
+ 454,4752,5389,4900,4900,4900,5124,5462,5463,2791,
+ 5383,5390,5362,5388,5387,5384,5385,5363,1306,450,
+ 4900,4900,4900,4900,4900,4900,4900,4900,4900,4900,
+ 4900,4900,4900,4900,4900,4900,4900,4900,4900,4900,
+ 4900,4900,4900,4900,4900,4900,1306,4755,4871,4900,
+ 4900,453,4900,1,4952,4948,3343,4956,3624,3851,
+ 3014,3873,5124,4912,3829,3799,2284,2593,4939,4945,
+ 4918,4921,4933,4930,4936,4927,4924,4915,4942,3917,
+ 3895,3495,5147,120,1050,1268,1337,5149,1295,629,
+ 1303,5150,5148,1208,135,5143,5145,5146,5144,4874,
+ 368,4742,4738,2570,1,919,1,3014,1,43,
+ 136,1393,1,5166,512,1720,387,5455,43,43,
+ 43,4749,4746,3343,726,3624,3851,3014,3873,5132,
+ 567,3829,3799,436,5124,5393,5391,5400,5399,5395,
+ 5396,5394,5397,5398,5401,5392,3917,3895,1306,5147,
+ 5124,1050,1268,1337,5149,1295,629,1303,5150,5148,
+ 1208,4758,5143,5145,5146,5144,5124,1075,5124,1,
+ 4742,4738,3693,3961,919,1,3014,359,1393,3983,
+ 4068,5124,4749,4746,167,726,919,5124,3014,416,
+ 4063,2411,2383,5131,43,4749,4746,3343,726,3624,
+ 3851,3014,3873,5132,567,3829,3799,2411,2383,5393,
+ 5391,5400,5399,5395,5396,5394,5397,5398,5401,5392,
+ 3917,3895,163,5147,511,1050,1268,1337,5149,1295,
+ 629,1303,5150,5148,1208,5124,5143,5145,5146,5144,
+ 2060,5124,4749,4746,5130,726,4903,167,3014,441,
+ 43,43,1393,5166,4068,5012,2147,5009,147,4749,
+ 4746,3343,726,3624,3851,3014,3873,5131,567,3829,
+ 3799,576,5482,5393,5391,5400,5399,5395,5396,5394,
+ 5397,5398,5401,5392,3917,3895,1897,5147,870,1050,
+ 1268,1337,5149,1295,629,1303,5150,5148,1208,4674,
+ 5143,5145,5146,5144,5124,4749,4746,5129,726,4903,
+ 33,3014,5124,5124,4749,4746,1393,726,919,5124,
+ 3014,5132,142,43,43,1,4952,4948,3343,4956,
+ 3624,3851,3014,3873,929,4912,3829,3799,4761,5124,
+ 4939,4945,4918,4921,4933,4930,4936,4927,4924,4915,
+ 4942,3917,3895,5124,5147,5124,1050,1268,1337,5149,
+ 1295,629,1303,5150,5148,1208,5124,5143,5145,5146,
+ 5144,1,1,4742,4738,2570,1008,919,5124,3014,
+ 98,1,1,1393,1,5131,5036,5132,5036,529,
+ 43,43,43,4749,4746,3343,726,3624,3851,3014,
+ 3873,5128,567,3829,3799,386,129,5393,5391,5400,
+ 5399,5395,5396,5394,5397,5398,5401,5392,3917,3895,
+ 1306,5147,1358,1050,1268,1337,5149,1295,629,1303,
+ 5150,5148,1208,4850,5143,5145,5146,5144,43,4749,
+ 4746,3343,726,3624,3851,3014,3873,3151,567,3829,
+ 3799,5131,119,5393,5391,5400,5399,5395,5396,5394,
+ 5397,5398,5401,5392,3917,3895,5484,5147,5124,1050,
+ 1268,1337,5149,1295,629,1303,5150,5148,1208,5124,
+ 5143,5145,5146,5144,1,4883,4883,5124,4880,30,
+ 1720,121,5455,364,2720,2746,1393,3582,4068,5124,
+ 5124,43,4749,4746,3343,726,3624,3851,3014,3873,
+ 5127,567,3829,3799,5124,118,5393,5391,5400,5399,
+ 5395,5396,5394,5397,5398,5401,5392,3917,3895,2594,
+ 5147,5124,1050,1268,1337,5149,1295,629,1303,5150,
+ 5148,1208,3961,5143,5145,5146,5144,2804,3983,1,
+ 5006,5124,782,5006,5589,5583,364,5587,5124,1393,
+ 5581,5582,1,4742,4738,3693,292,919,5124,3014,
+ 1939,228,54,4997,4994,5612,5613,5592,5124,364,
+ 5590,5124,3559,3530,3029,5386,5393,5391,5400,5399,
+ 5395,5396,5394,5397,5398,5401,5392,1607,101,43,
+ 43,1,5166,43,5090,3961,5087,5166,5124,4165,
+ 5593,3983,5389,5614,1642,1668,5591,5462,5463,2596,
+ 5383,5390,5362,5388,5387,5384,5385,5363,3436,145,
+ 1851,231,5124,4749,4746,5124,5166,5603,5602,5615,
+ 5584,5585,5608,5609,3071,5386,5606,5607,5586,5588,
+ 5610,5611,5616,5596,5597,5598,5594,5595,5604,5605,
+ 5600,5599,5601,5124,3776,132,782,5124,5589,5583,
+ 3451,5587,5389,33,5581,5582,3667,5462,5463,5522,
+ 5383,5390,5362,5388,5387,5384,5385,5363,5124,5612,
+ 5613,5592,2014,2520,5590,4209,1855,1,4742,4738,
+ 5021,1552,5024,5124,5027,5124,5141,5142,3491,5124,
+ 919,1607,3014,51,5045,5045,4253,5555,5556,5557,
+ 41,5039,5039,5124,5593,5039,4865,5614,1642,1668,
+ 5591,2284,5124,1813,1771,1729,1687,1645,1603,1561,
+ 1519,1477,1435,5042,420,1,3495,5124,5141,5142,
+ 3500,5603,5602,5615,5584,5585,5608,5609,2466,2439,
+ 5606,5607,5586,5588,5610,5611,5616,5596,5597,5598,
+ 5594,5595,5604,5605,5600,5599,5601,43,4749,4746,
+ 3343,726,3624,3851,3014,3873,376,567,3829,3799,
+ 5124,5124,5393,5391,5400,5399,5395,5396,5394,5397,
+ 5398,5401,5392,3917,3895,5124,5147,3341,1050,1268,
+ 1337,5149,1295,629,1303,5150,5148,1208,4258,5143,
+ 5145,5146,5144,5124,5124,2387,43,4749,4746,3343,
+ 726,3624,3851,3014,3873,2750,567,3829,3799,5124,
+ 4160,5393,5391,5400,5399,5395,5396,5394,5397,5398,
+ 5401,5392,3917,3895,5124,5147,5124,1050,1268,1337,
+ 5149,1295,629,1303,5150,5148,1208,1552,5143,5145,
+ 5146,5144,5124,4997,4994,43,4749,4746,4599,726,
+ 3624,3851,3014,3873,1393,567,3829,3799,45,5124,
+ 5393,5391,5400,5399,5395,5396,5394,5397,5398,5401,
+ 5392,3917,3895,106,5147,3451,1050,1268,1337,5149,
+ 1295,629,1303,5150,5148,1208,4894,5143,5145,5146,
+ 5144,43,4749,4746,3343,726,3624,3851,3014,3873,
+ 3498,567,3829,3799,1,5124,5393,5391,5400,5399,
+ 5395,5396,5394,5397,5398,5401,5392,3917,3895,105,
+ 5147,4339,1050,1268,1337,5149,1295,629,1303,5150,
+ 5148,1208,1552,5143,5145,5146,5144,43,4749,4746,
+ 3343,726,3624,3851,3014,3873,422,567,3829,3799,
+ 5124,5124,5393,5391,5400,5399,5395,5396,5394,5397,
+ 5398,5401,5392,3917,3895,5124,5147,2197,1050,1268,
+ 1337,5149,1295,629,1303,5150,5148,1208,128,5143,
+ 5145,5146,5144,5124,4749,4746,5124,5166,393,5124,
+ 5068,5064,386,774,40,5075,5072,5386,5393,5391,
+ 5400,5399,5395,5396,5394,5397,5398,5401,5392,123,
+ 3509,4264,122,5124,3662,3582,1552,3138,3582,5164,
+ 138,5124,4749,4746,5389,5166,2614,43,2354,5462,
+ 5463,5166,5383,5390,5362,5388,5387,5384,5385,5363,
+ 246,4843,4839,5124,4847,5519,4131,5124,5141,5142,
+ 774,730,5520,5521,4794,4830,4836,4809,4812,4824,
+ 4821,4827,4818,4815,4806,4833,2720,2746,3227,5124,
+ 33,386,386,4988,386,386,4988,386,4988,4991,
+ 5124,4785,445,4988,386,314,4779,4776,3721,4803,
+ 4782,4773,4788,4791,4800,4797,4770,2683,4761,39,
+ 3559,3530,5519,3559,3530,5124,8406,8214,730,5520,
+ 5521,386,3939,1161,444,5124,386,386,4991,386,
+ 386,386,386,386,386,386,386,36,387,387,
+ 4982,387,387,4982,387,4982,4985,126,1,125,
+ 4982,387,4991,5124,4856,4853,2926,5130,2966,2941,
+ 2966,2941,1264,5124,8406,8214,1,5081,5081,233,
+ 5081,233,233,233,233,5084,3510,5124,387,233,
+ 8431,5124,5124,387,387,4985,387,387,387,387,
+ 387,387,387,387,5124,623,5078,1216,1,5081,
+ 5081,233,5081,233,233,233,233,233,5124,4985,
+ 81,233,8431,3289,5124,5124,5124,1,3939,1161,
+ 5129,402,5124,3620,5124,2046,2683,4732,5078,3031,
+ 5015,5134,1,5124,5018,5133,5192,5193,5575,225,
+ 5124,5134,1,5124,5124,5133,54,573,5620,5124,
+ 5142,5102,5134,134,311,3620,5133,2046,3019,5124,
+ 5124,3031,1,5081,5081,233,5081,233,233,233,
+ 233,5096,3664,5124,5142,233,8431,5561,3794,4735,
+ 5620,2520,1,5081,5081,233,5081,233,233,233,
+ 233,5084,5078,5124,5632,233,8431,1,5081,5081,
+ 233,5081,233,233,233,233,5084,4318,5124,79,
+ 233,8431,5078,794,5000,5131,5124,5124,4350,3620,
+ 1,2046,232,5124,2,3031,4077,5078,1,197,
+ 990,5124,5124,197,1,224,5386,5093,4732,3620,
+ 1,2046,5124,525,5620,3031,2466,2439,5124,169,
+ 518,4441,41,5124,3620,225,2046,557,573,109,
+ 3031,5124,4538,5389,5620,814,5124,5124,5462,5463,
+ 225,5383,5390,5362,5388,5387,5384,5385,5363,5620,
+ 1,5081,5081,233,5081,233,233,233,233,233,
+ 4735,1,4069,233,8431,1,5081,5081,233,5081,
+ 233,233,233,233,233,5124,525,133,233,8431,
+ 5078,5124,169,2110,3152,1,5081,5081,233,5081,
+ 233,233,233,233,233,5078,2842,1,233,8431,
+ 3413,1,5124,5124,3413,2520,342,3620,54,2046,
+ 4764,283,5141,3031,5099,5078,5124,5124,5124,4144,
+ 4633,3789,3620,5124,2046,5124,3258,5124,3031,5124,
+ 4060,5124,5620,1,2621,5124,5141,5124,5003,3451,
+ 4061,5124,3620,5124,2046,1306,5308,5620,3031,1306,
+ 5124,5124,5124,3082,4602,5124,5124,5124,342,5124,
+ 5124,342,3022,5124,5124,5124,5124,5620,5124,342,
+ 2466,2439,5124,4767,3077,5124,5124,5124,5124,5124,
+ 5124,5124,5124,5124,5124,5124,5124,5124,5124,5307,
+ 5124,5124,3510,5124,5124,5124,1981,5124,5124,5124,
+ 5124,5124,5124,5124,5124,5124,5124,5124,5124,5124,
+ 5124,5124,5124,5124,5124,5124,5124,5124,342
};
};
public final static char termAction[] = TermAction.termAction;
@@ -1654,59 +1633,59 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface Asb {
public final static char asb[] = {0,
- 1,724,443,6,6,403,499,499,403,247,
- 247,820,512,247,713,907,403,62,521,521,
- 292,105,106,279,279,102,123,123,619,102,
- 123,530,382,745,756,711,756,706,756,708,
- 756,740,756,275,102,382,532,6,1088,443,
- 443,443,443,275,1088,612,46,614,63,63,
- 63,63,63,63,63,63,63,126,132,137,
- 134,141,139,146,144,148,147,149,336,150,
- 62,62,333,164,536,536,870,277,219,219,
- 120,333,568,123,123,443,123,219,568,568,
- 534,512,102,116,388,102,703,432,436,440,
- 711,445,102,102,102,432,713,534,499,46,
- 247,247,247,247,102,574,650,125,568,568,
- 46,1047,246,870,46,126,1040,1040,574,62,
- 63,63,63,63,63,63,63,63,63,63,
- 63,63,63,63,63,63,63,63,63,62,
- 62,62,62,62,62,62,62,62,62,62,
- 62,63,536,536,100,869,219,219,382,333,
- 333,219,568,288,523,386,116,388,703,441,
- 703,432,703,445,445,102,432,102,99,568,
- 568,821,821,821,821,432,568,62,63,450,
- 457,763,763,275,614,333,246,62,100,568,
- 99,101,99,568,333,134,134,132,132,132,
- 139,139,139,139,137,137,144,141,141,147,
- 146,148,704,149,568,568,277,102,821,783,
- 820,821,120,821,493,876,116,115,506,102,
- 388,704,443,434,995,726,388,703,703,823,
- 102,445,506,504,505,102,102,1088,1088,1088,
- 1088,102,102,62,102,870,63,247,130,173,
- 568,101,870,62,493,691,869,46,493,116,
- 870,821,443,99,702,728,96,1088,509,274,
- 824,102,506,63,102,62,62,62,62,1088,
- 1088,432,100,568,130,382,277,102,100,493,
- 691,495,100,910,403,100,703,703,96,169,
- 382,210,63,704,214,823,102,275,275,102,
- 568,568,568,568,574,574,102,130,131,130,
- 62,173,1000,126,277,495,693,495,170,528,
- 1002,377,1088,13,946,403,100,703,711,275,
- 728,96,63,63,102,102,102,568,568,468,
- 130,574,63,333,1000,495,693,1088,831,377,
- 528,909,711,711,571,275,820,170,711,26,
- 509,102,1088,102,102,131,568,333,537,910,
- 909,170,213,169,568,909,909,909,275,102,
- 910,954,27,275,102,574,524,909,62,958,
- 96,170,506,909,909,909,102,102,954,26,
- 704,63,704,170,1088,1088,1088,27,1088,102,
- 343,170,170,102,711,568,247,506,568,956,
- 506,506,102,170,18,1088,18,704,27,46,
- 46,44,738,46,170,170,689,954,956,170,
- 876,568,96,568,44,377,1088,568,954,505,
- 568,568,481,27,689,27,170,377,62,27,
- 24,956,711,711,1080,62,25,574,170,568,
- 27,568,170,27
+ 320,511,328,57,57,346,730,730,346,105,
+ 105,817,431,105,500,592,346,277,440,440,
+ 137,1,2,64,64,317,602,602,652,317,
+ 602,447,227,742,753,498,753,493,753,495,
+ 753,737,753,133,317,227,449,57,981,328,
+ 328,328,328,133,981,551,261,553,278,278,
+ 278,278,278,278,278,278,278,605,611,616,
+ 613,620,618,625,623,627,626,628,181,629,
+ 277,277,178,643,453,453,1068,135,77,77,
+ 599,178,485,602,602,328,602,77,485,485,
+ 451,431,317,595,330,317,835,375,379,325,
+ 498,426,317,317,317,375,500,451,730,261,
+ 105,105,105,105,317,513,683,604,485,485,
+ 261,940,104,1068,261,605,876,876,513,277,
+ 278,278,278,278,278,278,278,278,278,278,
+ 278,278,278,278,278,278,278,278,278,277,
+ 277,277,277,277,277,277,277,277,277,277,
+ 277,278,453,453,315,1067,77,77,227,178,
+ 178,77,485,73,442,231,595,330,835,326,
+ 835,375,835,426,426,317,375,317,314,485,
+ 485,818,818,818,818,375,485,277,278,383,
+ 390,760,760,133,553,178,104,277,315,485,
+ 314,316,314,485,178,613,613,611,611,611,
+ 618,618,618,618,616,616,623,620,620,626,
+ 625,627,836,628,485,485,135,317,818,780,
+ 817,818,599,818,724,561,595,594,490,317,
+ 330,836,496,328,377,1022,1074,330,835,835,
+ 883,317,426,490,488,489,317,317,981,981,
+ 981,981,317,317,277,317,1068,278,105,609,
+ 11,485,316,1068,277,724,823,1067,261,724,
+ 595,1068,838,498,818,328,314,834,1076,311,
+ 981,558,132,884,317,490,278,317,277,277,
+ 277,277,981,981,375,315,485,609,227,135,
+ 317,315,724,823,726,315,838,838,894,346,
+ 315,835,835,311,648,227,48,278,836,52,
+ 883,317,133,133,317,485,485,485,485,513,
+ 513,317,609,610,609,277,11,1027,605,135,
+ 726,825,726,649,490,735,1029,222,981,496,
+ 930,838,838,346,315,835,498,133,1076,311,
+ 278,278,317,317,317,485,485,401,609,513,
+ 278,178,1027,726,825,981,893,222,735,820,
+ 133,490,817,649,498,241,558,317,981,317,
+ 317,610,485,178,454,894,838,649,51,648,
+ 485,133,317,894,938,242,133,317,513,443,
+ 838,277,985,311,649,317,317,938,241,836,
+ 278,836,649,981,981,981,242,981,317,188,
+ 649,649,317,498,485,105,490,485,983,317,
+ 649,233,981,233,836,242,261,261,259,891,
+ 261,649,649,722,938,983,649,561,485,311,
+ 485,259,222,981,485,938,489,485,485,414,
+ 242,722,242,649,222,277,242,239,983,498,
+ 498,973,277,240,513,649,485,242,485,649,
+ 242
};
};
public final static char asb[] = Asb.asb;
@@ -1714,115 +1693,115 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface Asr {
public final static byte asr[] = {0,
- 63,10,29,74,0,61,67,64,121,1,
- 2,0,1,2,123,58,0,75,114,115,
- 116,29,72,119,122,68,74,76,57,59,
- 62,78,80,86,84,77,82,83,85,87,
- 58,79,81,11,9,49,63,46,69,50,
- 12,51,52,53,54,55,70,56,71,41,
- 47,60,65,66,10,33,37,35,32,40,
- 16,25,15,21,19,20,22,23,18,17,
- 24,42,45,43,44,30,39,34,38,26,
- 27,13,14,31,36,8,6,3,4,7,
- 5,1,2,0,3,9,61,95,67,64,
- 73,121,48,0,60,46,7,47,5,1,
- 2,4,76,58,121,120,103,26,27,48,
- 3,96,90,6,91,92,13,14,89,88,
- 28,93,94,97,98,8,99,100,101,61,
- 95,73,67,104,105,106,107,108,109,110,
- 111,112,113,72,118,68,102,117,64,11,
- 9,0,96,90,13,14,91,92,88,89,
- 61,93,94,97,98,99,100,101,102,117,
- 95,104,105,106,107,108,109,110,111,112,
- 113,118,73,68,1,2,4,8,6,72,
- 48,28,3,9,64,11,67,0,32,65,
- 33,34,66,7,35,36,37,38,60,39,
- 40,42,43,44,30,26,27,8,6,13,
- 14,5,31,61,45,3,49,15,16,63,
- 46,17,69,50,12,18,51,52,19,20,
- 53,54,21,22,55,70,56,10,71,23,
- 24,47,25,41,1,2,4,0,76,3,
- 58,61,72,67,64,11,48,9,73,95,
- 0,65,66,3,10,33,37,35,32,40,
- 16,25,15,21,19,20,22,23,18,17,
- 24,42,45,43,44,30,39,34,38,5,
- 7,4,26,27,8,6,13,14,31,36,
- 1,2,118,9,0,61,72,95,64,118,
- 73,68,15,16,32,65,17,33,34,18,
- 19,20,66,35,21,22,36,37,38,60,
- 39,40,10,23,24,25,42,43,44,30,
- 26,27,13,14,31,45,9,11,7,5,
- 3,1,2,8,4,6,0,75,7,114,
- 115,116,57,9,3,8,6,5,72,68,
- 11,74,49,15,16,63,46,17,69,50,
- 12,18,51,52,19,20,53,54,21,22,
- 55,70,56,10,71,23,41,24,47,25,
- 4,1,2,29,0,4,58,72,0,4,
- 58,72,28,0,1,2,9,68,0,9,
- 72,118,73,11,64,0,15,16,17,18,
- 19,20,21,22,23,24,25,49,46,50,
- 12,51,52,53,54,55,56,41,47,11,
- 9,73,7,1,2,48,3,8,6,5,
- 4,0,46,47,60,9,95,73,61,64,
- 121,67,0,67,64,68,9,0,58,64,
- 0,8,6,4,3,5,7,48,1,2,
- 61,67,95,73,9,64,0,30,0,7,
- 5,3,48,6,8,95,49,15,16,63,
- 46,17,69,50,12,18,51,52,19,20,
- 53,54,21,22,55,70,56,10,71,23,
- 41,24,47,25,1,2,4,73,9,0,
- 58,67,0,9,73,15,16,32,17,33,
- 34,18,19,20,35,21,22,36,37,38,
- 60,39,40,10,23,24,25,42,43,44,
- 30,3,26,27,8,6,13,14,31,4,
- 45,5,7,1,2,66,65,0,49,15,
- 16,63,46,17,69,50,12,18,51,52,
- 19,20,53,54,21,22,55,70,56,10,
- 71,23,41,24,47,25,1,2,4,66,
- 65,13,14,6,91,92,99,8,100,5,
- 31,28,61,107,108,104,105,106,112,111,
- 113,89,88,109,110,97,98,93,94,101,
- 102,26,27,64,90,103,3,48,67,0,
- 46,47,60,9,3,61,95,67,64,73,
- 11,76,58,72,0,29,72,4,1,2,
- 58,0,9,61,64,73,1,2,8,6,
- 4,3,48,121,0,11,9,72,7,5,
- 3,1,2,6,8,4,0,77,0,10,
- 69,63,70,71,16,25,15,21,19,20,
- 22,23,18,17,24,76,58,72,95,118,
- 68,121,7,54,55,56,41,47,1,2,
- 53,52,51,12,50,5,4,46,49,9,
- 73,11,48,3,120,96,103,90,26,27,
- 8,6,13,14,91,92,88,89,28,93,
- 94,97,98,99,100,101,102,117,67,104,
- 105,106,107,108,109,110,111,112,113,64,
- 61,0,41,1,2,4,114,115,116,0,
- 62,49,15,16,63,46,17,69,50,75,
- 12,18,51,52,19,20,53,59,54,21,
- 22,55,70,56,10,71,23,57,41,24,
- 47,25,9,3,8,4,11,58,6,7,
- 1,2,5,29,0,49,15,16,46,17,
- 69,50,12,18,51,52,19,20,53,54,
- 21,22,55,70,56,10,71,23,41,24,
- 47,25,1,2,4,95,63,0,68,63,
- 46,17,69,50,18,51,52,19,20,53,
- 54,21,22,55,70,56,71,23,41,24,
- 47,25,16,15,49,9,3,8,6,11,
- 57,62,75,12,29,7,1,2,5,4,
- 10,59,0,119,0,9,68,65,66,60,
- 26,27,8,6,13,14,31,36,3,42,
- 45,43,44,30,39,34,38,16,25,15,
- 21,19,20,22,23,18,17,24,33,37,
- 35,32,40,58,7,1,2,4,10,5,
- 0,63,46,17,69,50,18,51,52,19,
- 20,53,54,21,22,55,70,56,10,71,
- 23,41,24,47,25,16,15,49,9,3,
- 8,6,11,57,59,62,75,12,28,7,
- 4,29,5,1,2,0,65,66,26,27,
- 13,14,31,36,42,45,43,44,30,39,
- 34,38,16,25,15,21,19,20,22,23,
- 18,17,24,10,33,37,35,32,40,8,
- 6,4,48,7,5,1,2,3,0
+ 3,9,61,95,67,64,72,121,48,0,
+ 96,90,11,12,91,92,88,89,61,93,
+ 94,97,98,99,100,101,102,117,95,104,
+ 105,106,107,108,109,110,111,112,113,118,
+ 72,73,1,2,4,8,6,71,48,28,
+ 3,9,64,13,67,0,61,67,64,121,
+ 1,2,0,75,3,60,61,71,67,64,
+ 13,48,9,72,95,0,32,65,33,34,
+ 66,7,35,36,37,38,58,39,40,42,
+ 43,44,29,26,27,8,6,11,12,5,
+ 31,61,45,3,49,15,16,62,46,17,
+ 68,50,14,18,51,52,19,20,53,54,
+ 21,22,55,69,56,10,70,23,24,47,
+ 25,41,1,2,4,0,65,66,3,10,
+ 33,37,35,32,40,16,25,15,21,19,
+ 20,22,23,18,17,24,42,45,43,44,
+ 29,39,34,38,5,7,4,26,27,8,
+ 6,11,12,31,36,1,2,118,9,0,
+ 61,71,95,64,118,72,73,15,16,32,
+ 65,17,33,34,18,19,20,66,35,21,
+ 22,36,37,38,58,39,40,10,23,24,
+ 25,42,43,44,29,26,27,11,12,31,
+ 45,9,13,7,5,3,1,2,8,4,
+ 6,0,82,114,115,116,30,71,119,122,
+ 73,74,75,59,57,63,77,79,86,84,
+ 76,81,83,85,87,60,78,80,13,9,
+ 49,62,46,68,50,14,51,52,53,54,
+ 55,69,56,70,41,47,58,65,66,10,
+ 33,37,35,32,40,16,25,15,21,19,
+ 20,22,23,18,17,24,42,45,43,44,
+ 29,39,34,38,26,27,11,12,31,36,
+ 8,6,3,4,7,5,1,2,0,62,
+ 10,30,74,0,4,60,71,28,0,82,
+ 57,7,114,115,116,59,9,3,8,6,
+ 5,71,73,13,74,49,15,16,62,46,
+ 17,68,50,14,18,51,52,19,20,53,
+ 54,21,22,55,69,56,10,70,23,41,
+ 24,47,25,4,1,2,30,0,4,60,
+ 71,0,9,71,118,72,13,64,0,15,
+ 16,17,18,19,20,21,22,23,24,25,
+ 49,46,50,14,51,52,53,54,55,56,
+ 41,47,13,9,72,7,1,2,48,3,
+ 8,6,5,4,0,1,2,9,73,0,
+ 8,6,4,3,5,7,48,1,2,61,
+ 67,95,72,9,64,0,7,5,3,48,
+ 6,8,95,49,15,16,62,46,17,68,
+ 50,14,18,51,52,19,20,53,54,21,
+ 22,55,69,56,10,70,23,41,24,47,
+ 25,1,2,4,72,9,0,67,64,73,
+ 9,0,30,71,4,1,2,60,0,9,
+ 61,64,72,1,2,8,6,4,3,48,
+ 121,0,9,72,15,16,32,17,33,34,
+ 18,19,20,35,21,22,36,37,38,58,
+ 39,40,10,23,24,25,42,43,44,29,
+ 3,26,27,8,6,11,12,31,4,45,
+ 5,7,1,2,66,65,0,60,64,0,
+ 49,15,16,46,17,68,50,14,18,51,
+ 52,19,20,53,54,21,22,55,69,56,
+ 10,70,23,41,24,47,25,1,2,4,
+ 95,62,0,58,46,7,47,5,1,2,
+ 4,75,60,121,120,103,26,27,48,3,
+ 96,90,6,91,92,11,12,89,88,28,
+ 93,94,97,98,8,99,100,101,61,95,
+ 72,67,104,105,106,107,108,109,110,111,
+ 112,113,71,118,73,102,117,64,13,9,
+ 0,49,15,16,62,46,17,68,50,14,
+ 18,51,52,19,20,53,54,21,22,55,
+ 69,56,10,70,23,41,24,47,25,1,
+ 2,4,66,65,11,12,6,91,92,99,
+ 8,100,5,31,28,61,107,108,104,105,
+ 106,112,111,113,89,88,109,110,97,98,
+ 93,94,101,102,26,27,64,90,103,3,
+ 48,67,0,46,47,58,9,95,72,61,
+ 64,121,67,0,29,0,10,68,62,69,
+ 70,16,25,15,21,19,20,22,23,18,
+ 17,24,75,60,71,95,118,73,121,7,
+ 54,55,56,41,47,1,2,53,52,51,
+ 14,50,5,4,46,49,9,72,13,48,
+ 3,120,96,103,90,26,27,8,6,11,
+ 12,91,92,88,89,28,93,94,97,98,
+ 99,100,101,102,117,67,104,105,106,107,
+ 108,109,110,111,112,113,64,61,0,60,
+ 67,0,46,47,58,9,3,61,95,67,
+ 64,72,13,75,60,71,0,63,49,15,
+ 16,62,46,17,68,50,82,14,18,51,
+ 52,19,20,53,57,54,21,22,55,69,
+ 56,10,70,23,59,41,24,47,25,9,
+ 3,8,6,73,13,7,4,30,5,1,
+ 2,0,41,1,2,4,114,115,116,0,
+ 76,0,60,62,46,17,68,50,18,51,
+ 52,19,20,53,54,21,22,55,69,56,
+ 70,23,41,24,47,25,16,15,49,9,
+ 3,8,6,13,59,63,82,14,30,7,
+ 1,2,5,4,10,57,0,119,0,65,
+ 66,26,27,11,12,31,36,42,45,43,
+ 44,29,39,34,38,16,25,15,21,19,
+ 20,22,23,18,17,24,10,33,37,35,
+ 32,40,8,6,4,48,7,5,1,2,
+ 3,0,9,73,65,66,58,26,27,8,
+ 6,11,12,31,36,3,42,45,43,44,
+ 29,39,34,38,16,25,15,21,19,20,
+ 22,23,18,17,24,33,37,35,32,40,
+ 60,7,1,2,4,10,5,0,62,46,
+ 17,68,50,18,51,52,19,20,53,54,
+ 21,22,55,69,56,10,70,23,41,24,
+ 47,25,16,15,49,9,3,8,13,59,
+ 57,63,82,14,28,4,6,7,1,2,
+ 5,30,0,13,9,71,7,5,3,1,
+ 2,6,8,4,0
};
};
public final static byte asr[] = Asr.asr;
@@ -1830,59 +1809,59 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface Nasb {
public final static char nasb[] = {0,
- 56,12,12,58,58,150,12,12,134,171,
- 171,12,143,5,138,12,134,35,12,12,
- 90,79,79,79,79,199,12,12,163,47,
- 12,142,214,223,224,12,224,179,224,255,
- 224,217,12,10,199,214,137,58,12,12,
- 12,12,12,215,12,41,110,199,35,35,
- 251,35,35,35,35,35,35,12,12,12,
- 12,12,12,12,12,12,12,12,35,12,
- 35,35,95,12,150,150,121,12,150,150,
- 160,95,264,12,12,12,12,150,264,264,
- 114,17,199,150,150,181,150,167,150,12,
- 12,150,167,199,11,12,194,114,12,110,
- 171,171,171,171,199,157,165,12,264,264,
- 1,35,60,121,110,12,50,50,157,205,
- 35,35,35,35,35,35,35,35,35,35,
- 35,35,35,35,35,35,35,35,35,35,
- 35,35,35,35,35,35,35,35,35,35,
- 205,35,134,134,23,69,33,33,214,95,
- 95,33,264,12,12,12,31,226,150,150,
- 15,105,15,150,256,11,105,181,22,264,
- 264,12,12,12,12,120,264,35,35,12,
- 12,12,12,10,199,95,171,81,23,264,
- 22,199,22,264,95,12,12,12,12,12,
+ 91,12,12,72,72,105,12,12,119,186,
+ 186,12,98,5,212,12,119,25,12,12,
+ 80,13,13,13,13,122,12,12,158,56,
+ 12,97,152,177,178,12,178,107,178,239,
+ 178,171,12,10,122,152,211,72,12,12,
+ 12,12,12,153,12,33,199,122,25,25,
+ 235,25,25,25,25,25,25,12,12,12,
+ 12,12,12,12,12,12,12,12,25,12,
+ 25,25,85,12,105,105,51,12,105,105,
+ 46,85,249,12,12,12,12,105,249,249,
+ 112,216,122,105,105,109,105,162,105,12,
+ 12,105,162,122,11,12,180,112,12,199,
+ 186,186,186,186,122,125,160,12,249,249,
+ 1,25,74,51,199,12,40,40,125,143,
+ 25,25,25,25,25,25,25,25,25,25,
+ 25,25,25,25,25,25,25,25,25,25,
+ 25,25,25,25,25,25,25,25,25,25,
+ 143,25,119,119,222,167,23,23,152,85,
+ 85,23,249,12,12,12,93,251,105,105,
+ 21,37,21,105,240,11,37,109,221,249,
+ 249,12,12,12,12,50,249,25,25,12,
+ 12,12,12,10,122,85,186,155,222,249,
+ 221,122,221,249,85,12,12,12,12,12,
12,12,12,12,12,12,12,12,12,12,
- 12,12,12,12,264,264,12,11,12,12,
- 12,12,196,12,150,134,150,31,67,199,
- 130,12,12,12,99,186,226,15,15,237,
- 181,256,67,12,12,181,199,12,12,12,
- 12,181,11,35,199,121,35,171,150,84,
- 264,243,121,35,150,150,69,33,31,31,
- 121,12,12,215,150,208,145,12,12,215,
- 126,167,67,35,256,205,205,205,205,12,
- 12,119,181,264,45,196,12,47,181,31,
- 31,150,23,246,150,167,150,77,19,130,
- 214,12,35,12,101,233,167,215,215,11,
- 264,264,264,264,157,157,181,150,184,12,
- 205,196,244,12,12,150,150,73,130,12,
- 246,187,12,256,99,134,23,77,97,27,
- 145,19,35,35,11,167,167,264,264,12,
- 45,157,35,95,244,73,73,12,150,208,
- 12,150,12,12,12,215,12,130,97,87,
- 12,167,12,11,11,184,264,95,262,246,
- 150,130,13,12,264,152,150,150,215,167,
- 246,150,174,27,11,157,264,152,81,35,
- 145,130,67,246,152,152,167,241,103,202,
- 12,35,12,130,12,12,12,203,12,256,
- 128,130,130,256,108,264,171,67,264,150,
- 67,67,241,130,75,12,12,12,203,258,
- 258,132,12,258,130,130,12,150,62,130,
- 171,264,145,264,170,150,12,264,103,67,
- 264,264,150,203,12,203,130,145,205,203,
- 75,62,108,108,143,35,12,123,130,264,
- 203,264,130,203
+ 12,12,12,12,249,249,12,11,12,12,
+ 12,12,182,12,105,119,105,93,68,122,
+ 209,12,133,12,12,95,258,251,21,21,
+ 203,109,240,68,12,12,109,122,12,12,
+ 12,12,109,11,25,122,51,25,186,105,
+ 53,249,189,51,25,105,105,167,23,93,
+ 93,51,105,12,12,12,153,105,146,100,
+ 12,12,153,165,162,68,25,240,143,143,
+ 143,143,12,12,49,109,249,31,182,12,
+ 56,109,93,93,105,222,230,105,242,105,
+ 162,105,87,218,209,152,12,25,12,70,
+ 226,162,153,153,11,249,249,249,249,125,
+ 125,109,105,78,12,143,182,190,12,12,
+ 105,105,59,209,68,12,242,259,12,240,
+ 95,242,230,119,222,87,61,15,100,218,
+ 25,25,11,162,162,249,249,12,31,125,
+ 25,85,190,59,59,12,105,146,12,12,
+ 153,68,12,209,61,137,12,162,12,11,
+ 11,78,249,85,247,242,105,209,76,12,
+ 249,153,162,242,105,128,15,11,125,249,
+ 230,155,25,100,209,162,133,19,140,12,
+ 25,12,209,12,12,12,141,12,240,207,
+ 209,209,240,135,249,186,68,249,105,133,
+ 209,89,12,12,12,141,192,192,117,12,
+ 192,209,209,12,105,63,209,186,249,100,
+ 249,185,105,12,249,19,68,249,249,105,
+ 141,12,141,209,100,143,141,89,63,135,
+ 135,98,25,12,196,209,249,141,249,209,
+ 141
};
};
public final static char nasb[] = Nasb.nasb;
@@ -1890,33 +1869,33 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface Nasr {
public final static char nasr[] = {0,
- 3,13,7,10,148,146,121,145,144,5,
- 2,0,178,0,111,0,96,95,53,63,
- 55,5,7,10,2,0,166,5,165,0,
- 60,0,43,4,5,7,10,2,13,0,
- 2,7,3,0,139,0,1,3,0,5,
- 2,10,7,135,0,169,0,110,0,170,
- 0,13,2,10,7,5,64,0,65,134,
- 133,0,125,0,115,0,155,0,68,0,
- 4,33,0,4,172,0,4,64,0,13,
- 2,10,7,5,72,0,156,0,152,0,
- 184,0,157,0,2,65,0,59,0,4,
- 43,39,0,23,4,5,91,0,2,53,
- 65,0,4,173,0,186,0,4,39,38,
- 0,39,176,4,23,0,31,95,96,4,
- 0,31,96,95,63,53,7,10,2,4,
- 0,105,4,47,69,0,4,98,0,4,
- 188,0,4,43,167,0,2,61,0,175,
- 4,43,0,4,47,39,174,0,5,44,
- 2,3,0,137,0,38,53,7,10,2,
- 4,154,0,96,95,5,55,0,2,44,
- 0,64,47,74,4,39,0,2,63,53,
- 7,10,4,91,5,0,2,5,121,117,
- 118,119,13,88,0,4,47,69,103,45,
- 5,0,5,103,162,0,5,103,185,0,
- 151,0,2,116,0,4,47,69,73,0,
- 7,10,3,13,5,1,0,4,43,104,
- 0,43,4,31,0
+ 3,13,7,10,147,145,120,144,143,5,
+ 2,0,66,0,164,5,163,0,155,0,
+ 108,0,43,4,5,7,10,2,13,0,
+ 138,0,2,7,3,0,2,65,0,5,
+ 2,10,7,134,0,4,186,0,2,48,
+ 65,0,4,170,0,1,3,0,124,0,
+ 154,0,13,2,10,7,5,64,0,182,
+ 0,107,0,168,0,176,0,136,0,13,
+ 2,10,7,5,75,0,153,0,112,0,
+ 167,0,60,0,150,0,31,94,93,63,
+ 48,7,10,2,4,0,5,44,2,3,
+ 0,23,4,5,89,0,39,174,4,23,
+ 0,2,44,0,4,96,0,4,47,39,
+ 172,0,103,0,59,0,4,64,0,64,
+ 47,76,4,39,0,2,63,48,7,10,
+ 4,89,5,0,4,33,0,4,43,165,
+ 0,2,61,0,184,0,65,133,132,0,
+ 2,5,120,116,117,118,13,86,0,94,
+ 93,5,55,0,173,4,43,0,2,113,
+ 0,4,43,102,0,4,171,0,4,43,
+ 39,0,5,101,183,0,4,39,38,0,
+ 31,93,94,4,0,94,93,48,63,55,
+ 5,7,10,2,0,5,101,160,0,114,
+ 4,47,74,0,7,10,3,13,5,1,
+ 0,4,47,74,83,0,43,4,31,0,
+ 4,47,74,101,45,5,0,38,48,7,
+ 10,2,4,152,0
};
};
public final static char nasr[] = Nasr.nasr;
@@ -1925,18 +1904,18 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface TerminalIndex {
public final static char terminalIndex[] = {0,
115,116,2,32,14,11,81,10,117,102,
- 122,68,12,13,50,54,62,70,76,77,
- 88,89,104,107,109,8,9,20,95,114,
+ 12,13,122,68,50,54,62,70,76,77,
+ 88,89,104,107,109,8,9,20,114,95,
15,57,63,69,86,90,92,96,99,101,
106,111,112,113,46,56,108,1,49,66,
- 72,75,78,85,91,100,105,3,79,97,
- 21,48,55,45,60,80,34,121,65,93,
- 103,31,120,123,67,98,110,51,52,58,
- 59,61,71,73,74,87,94,18,19,7,
+ 72,75,78,85,91,100,79,97,105,3,
+ 21,55,48,45,60,80,34,65,93,103,
+ 31,120,121,123,98,110,51,52,58,59,
+ 61,67,71,73,74,87,94,18,19,7,
16,17,22,23,33,5,24,25,26,27,
28,29,6,35,36,37,38,39,40,41,
42,43,44,82,83,84,30,119,53,4,
- 125,64,124,118
+ 124,64,118
};
};
public final static char terminalIndex[] = TerminalIndex.terminalIndex;
@@ -1944,26 +1923,26 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface NonterminalIndex {
public final static char nonterminalIndex[] = {0,
- 132,137,139,0,0,138,236,136,0,230,
- 135,0,146,134,0,0,145,151,0,0,
- 152,161,182,162,163,164,165,166,167,168,
- 128,169,154,170,171,0,144,130,133,172,
- 0,141,155,140,180,0,0,0,0,0,
- 0,0,0,148,158,0,205,0,175,189,
- 0,202,206,129,0,0,0,207,0,0,
- 178,127,131,174,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,188,0,0,
- 203,213,160,209,210,211,0,0,0,0,
- 149,208,221,177,181,0,0,0,212,0,
- 0,0,0,241,242,150,191,192,193,194,
- 195,197,200,0,0,215,218,220,0,239,
- 240,0,142,143,147,0,0,157,159,0,
- 173,0,183,184,185,186,187,190,0,196,
- 198,0,199,204,0,216,217,0,222,225,
- 227,229,0,233,234,235,237,238,126,0,
- 153,156,0,176,0,179,0,201,214,219,
- 0,223,224,226,228,0,231,232,243,244,
- 0,0,0,0,0,0
+ 131,136,138,0,0,137,235,135,0,229,
+ 134,0,145,133,0,0,144,150,0,0,
+ 151,160,181,161,162,163,164,165,166,167,
+ 127,168,153,169,170,0,143,129,132,171,
+ 0,140,154,139,179,0,0,0,0,0,
+ 0,0,0,147,157,0,204,0,174,188,
+ 0,201,205,128,0,206,0,177,0,0,
+ 0,0,0,0,126,173,0,0,0,0,
+ 0,0,130,0,0,187,0,0,202,212,
+ 159,208,209,210,0,0,0,0,148,207,
+ 220,176,197,0,0,211,0,0,0,0,
+ 240,241,149,180,0,190,191,192,193,194,
+ 196,199,0,0,214,217,219,0,238,239,
+ 0,141,142,146,0,0,156,158,0,172,
+ 0,182,183,184,185,186,189,0,195,0,
+ 198,203,0,215,216,0,221,224,226,228,
+ 0,232,233,234,236,237,125,0,152,155,
+ 0,175,0,178,0,200,213,218,0,222,
+ 223,225,227,0,230,231,242,243,0,0,
+ 0,0,0,0
};
};
public final static char nonterminalIndex[] = NonterminalIndex.nonterminalIndex;
@@ -1971,18 +1950,18 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface ScopePrefix {
public final static char scopePrefix[] = {
- 151,578,597,529,545,556,567,362,261,275,
- 297,303,309,42,286,382,420,159,586,472,
- 20,51,71,80,85,90,127,187,292,315,
- 326,337,267,281,500,27,372,337,605,27,
- 209,240,1,14,61,76,106,141,222,320,
- 333,342,351,355,438,465,494,521,525,615,
- 619,623,97,7,97,141,400,416,429,449,
- 513,429,536,552,563,574,199,483,56,56,
- 148,214,217,235,256,217,217,56,359,444,
- 462,469,148,56,636,110,228,404,456,116,
- 116,228,56,228,391,169,104,442,627,634,
- 627,634,65,410,134,104,104,245
+ 151,572,591,523,539,550,561,356,261,275,
+ 297,303,42,286,376,414,159,580,466,20,
+ 51,71,80,85,90,127,187,292,309,320,
+ 331,267,281,494,27,366,331,599,27,209,
+ 240,1,14,61,76,106,141,222,314,327,
+ 336,345,349,432,459,488,515,519,609,613,
+ 617,97,7,97,141,394,410,423,443,507,
+ 423,530,546,557,568,199,477,56,56,148,
+ 214,217,235,256,217,217,56,353,438,456,
+ 463,148,56,630,110,228,398,450,116,116,
+ 228,56,228,385,169,104,436,621,628,621,
+ 628,65,404,134,104,104,245
};
};
public final static char scopePrefix[] = ScopePrefix.scopePrefix;
@@ -1990,18 +1969,18 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface ScopeSuffix {
public final static char scopeSuffix[] = {
- 18,5,5,5,5,5,5,369,132,95,
- 132,132,132,48,272,388,426,165,67,478,
- 25,25,25,59,59,95,132,192,132,132,
- 331,331,272,101,505,38,377,592,610,32,
- 203,203,5,18,5,59,95,132,226,324,
- 324,324,95,95,132,238,5,5,5,5,
- 5,238,226,11,101,145,369,369,369,453,
- 505,433,540,540,540,540,203,487,59,59,
- 5,5,220,238,5,259,259,349,95,447,
- 5,238,5,498,5,113,346,407,459,119,
- 123,231,517,508,394,172,95,95,629,629,
- 631,631,67,412,136,194,179,247
+ 18,5,5,5,5,5,5,363,132,95,
+ 132,132,48,272,382,420,165,67,472,25,
+ 25,25,59,59,95,132,192,132,132,325,
+ 325,272,101,499,38,371,586,604,32,203,
+ 203,5,18,5,59,95,132,226,318,318,
+ 318,95,95,132,238,5,5,5,5,5,
+ 238,226,11,101,145,363,363,363,447,499,
+ 427,534,534,534,534,203,481,59,59,5,
+ 5,220,238,5,259,259,343,95,441,5,
+ 238,5,492,5,113,340,401,453,119,123,
+ 231,511,502,388,172,95,95,623,623,625,
+ 625,67,406,136,194,179,247
};
};
public final static char scopeSuffix[] = ScopeSuffix.scopeSuffix;
@@ -2009,18 +1988,18 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface ScopeLhs {
public final static char scopeLhs[] = {
- 45,17,17,17,17,17,17,77,82,46,
- 87,86,119,66,51,77,76,45,17,19,
- 3,6,9,162,162,159,117,45,85,119,
- 118,120,52,46,135,113,77,17,17,113,
- 97,56,132,80,165,162,159,127,58,118,
- 118,120,177,49,59,139,18,17,17,17,
- 17,17,12,115,159,127,77,76,76,36,
- 135,76,17,17,17,17,97,19,166,162,
- 178,95,102,68,57,154,71,120,78,75,
- 140,139,170,135,16,159,120,104,21,128,
- 128,55,135,135,77,45,159,70,133,44,
- 133,44,165,104,117,45,45,56
+ 45,17,17,17,17,17,17,79,85,46,
+ 72,118,69,52,79,78,45,17,19,3,
+ 6,9,160,160,157,116,45,73,118,117,
+ 119,53,46,134,110,79,17,17,110,95,
+ 56,131,82,163,160,157,126,58,117,117,
+ 119,175,50,59,138,18,17,17,17,17,
+ 17,12,112,157,126,79,78,78,36,134,
+ 78,17,17,17,17,95,19,164,160,176,
+ 93,100,66,57,152,68,119,80,77,139,
+ 138,168,134,16,157,119,102,21,127,127,
+ 55,134,134,79,45,157,67,132,44,132,
+ 44,163,102,116,45,45,56
};
};
public final static char scopeLhs[] = ScopeLhs.scopeLhs;
@@ -2028,18 +2007,18 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface ScopeLa {
public final static byte scopeLa[] = {
- 119,73,73,73,73,73,73,73,68,11,
- 68,68,68,61,1,73,122,58,3,73,
- 61,61,61,1,1,11,68,58,68,68,
- 1,1,1,1,4,61,11,1,1,61,
- 73,73,73,119,73,1,11,68,1,1,
- 1,1,11,11,68,118,73,73,73,73,
- 73,118,1,73,1,64,73,73,73,72,
- 4,73,61,61,61,61,73,3,1,1,
- 73,73,3,118,73,1,1,1,11,72,
- 73,118,73,5,73,1,29,67,73,1,
- 1,6,1,29,77,76,11,11,4,4,
- 4,4,3,1,58,1,1,3
+ 119,72,72,72,72,72,72,72,73,13,
+ 73,73,61,1,72,122,60,3,72,61,
+ 61,61,1,1,13,73,60,73,73,1,
+ 1,1,1,4,61,13,1,1,61,72,
+ 72,72,119,72,1,13,73,1,1,1,
+ 1,13,13,73,118,72,72,72,72,72,
+ 118,1,72,1,64,72,72,72,71,4,
+ 72,61,61,61,61,72,3,1,1,72,
+ 72,3,118,72,1,1,1,13,71,72,
+ 118,72,5,72,1,30,67,72,1,1,
+ 6,1,30,76,75,13,13,4,4,4,
+ 4,3,1,60,1,1,3
};
};
public final static byte scopeLa[] = ScopeLa.scopeLa;
@@ -2047,18 +2026,18 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface ScopeStateSet {
public final static char scopeStateSet[] = {
- 58,225,225,225,225,225,225,32,69,58,
- 69,69,138,79,60,32,32,58,225,225,
- 158,200,201,52,52,88,138,58,69,138,
- 138,138,60,58,94,304,32,225,225,304,
- 296,142,42,32,24,52,88,288,142,138,
- 138,138,20,60,27,49,225,225,225,225,
- 225,225,220,6,88,288,32,32,32,257,
- 94,32,225,225,225,225,296,225,24,52,
- 22,296,298,292,142,55,147,138,32,32,
- 46,49,97,94,225,88,138,1,226,138,
- 138,99,94,94,32,58,88,11,91,115,
- 91,115,24,1,138,58,58,142
+ 72,226,226,226,226,226,226,82,63,72,
+ 61,139,61,74,82,82,72,226,226,159,
+ 201,202,52,52,58,139,72,61,139,139,
+ 139,74,72,95,305,82,226,226,305,297,
+ 143,42,82,24,52,58,289,143,139,139,
+ 139,20,74,27,49,226,226,226,226,226,
+ 226,221,6,58,289,82,82,82,258,95,
+ 82,226,226,226,226,297,226,24,52,22,
+ 297,299,293,143,55,148,139,82,82,46,
+ 49,98,95,226,58,139,1,227,139,139,
+ 100,95,95,82,72,58,11,92,116,92,
+ 116,24,1,139,72,72,143
};
};
public final static char scopeStateSet[] = ScopeStateSet.scopeStateSet;
@@ -2066,70 +2045,70 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface ScopeRhs {
public final static char scopeRhs[] = {0,
- 314,3,60,0,128,0,313,3,119,0,
- 128,175,0,128,183,76,0,217,0,253,
- 128,28,126,0,21,0,292,128,28,29,
- 0,21,55,0,34,134,0,21,55,0,
- 0,292,128,28,29,193,0,21,131,0,
- 253,128,28,131,0,185,129,0,144,0,
- 222,3,290,0,290,0,2,0,128,0,
- 253,128,28,134,0,185,129,227,0,185,
- 129,41,227,0,185,129,310,41,0,132,
- 189,168,129,0,130,0,189,168,129,0,
- 136,130,0,171,0,306,128,171,0,128,
- 171,0,223,130,0,168,245,0,139,0,
- 0,0,137,0,0,0,305,128,58,252,
- 0,129,0,252,0,3,0,0,129,0,
- 304,128,58,0,45,129,0,157,3,0,
- 128,280,279,128,76,278,171,0,279,128,
- 76,278,171,0,216,0,217,0,278,171,
- 0,98,0,0,216,0,217,0,204,98,
- 0,0,216,0,217,0,279,128,278,171,
- 0,216,0,204,0,0,216,0,231,128,
- 3,0,128,0,0,0,0,0,231,128,
- 3,219,0,226,3,0,215,128,0,209,
- 0,189,168,177,0,136,0,168,129,0,
- 11,0,0,0,217,48,0,127,0,231,
- 128,3,181,0,181,0,2,0,0,128,
- 0,0,0,0,0,195,3,0,202,0,
- 230,128,58,30,12,0,185,129,59,57,
- 0,198,130,0,132,185,129,276,57,0,
- 185,129,276,57,0,185,129,67,125,59,
- 0,230,128,58,59,0,230,128,58,123,
- 59,0,230,128,58,126,59,0,273,128,
- 58,125,69,0,273,128,58,69,0,185,
- 129,69,0,137,0,189,185,129,245,0,
- 139,0,185,129,245,0,189,168,129,10,
- 0,168,129,10,0,95,139,0,149,0,
- 266,128,147,0,266,128,171,0,163,86,
- 0,297,162,299,300,3,83,0,128,174,
- 0,299,300,3,83,0,130,0,128,174,
- 0,163,3,77,198,82,0,128,130,0,
- 198,82,0,110,2,133,128,130,0,228,
- 3,77,0,195,167,0,34,172,0,167,
- 0,178,34,172,0,228,3,87,0,198,
- 155,228,3,85,0,64,174,0,228,3,
- 85,0,128,174,64,174,0,298,128,58,
- 0,163,0,217,79,0,31,0,163,117,
- 159,0,31,172,0,178,3,0,128,152,
- 0,222,3,0,217,48,263,0,163,48,
- 0,178,3,294,66,129,0,128,0,0,
- 0,0,294,66,129,0,2,148,128,0,
- 0,0,0,178,3,36,0,150,0,127,
- 29,168,129,0,32,150,0,95,139,32,
- 150,0,225,185,129,0,149,32,150,0,
- 178,3,40,0,163,3,40,0,163,3,
- 61,178,28,32,0,178,28,32,0,21,
- 2,133,128,0,163,3,61,178,28,35,
- 0,178,28,35,0,163,3,61,178,28,
- 37,0,178,28,37,0,163,3,61,178,
- 28,33,0,178,28,33,0,222,3,127,
- 189,168,129,10,0,127,189,168,129,10,
- 0,139,2,0,128,0,222,3,126,177,
- 168,129,10,0,177,168,129,10,0,137,
- 2,0,128,0,222,3,137,0,222,3,
- 141,0,163,48,141,0,258,0,32,0,
- 32,142,0,166,0,163,3,0
+ 311,3,58,0,127,0,310,3,119,0,
+ 127,174,0,127,182,75,0,216,0,251,
+ 127,28,125,0,21,0,289,127,28,30,
+ 0,21,55,0,34,133,0,21,55,0,
+ 0,289,127,28,30,197,0,21,130,0,
+ 251,127,28,130,0,184,128,0,143,0,
+ 219,3,287,0,287,0,2,0,127,0,
+ 251,127,28,133,0,184,128,224,0,184,
+ 128,41,224,0,184,128,307,41,0,131,
+ 188,167,128,0,129,0,188,167,128,0,
+ 135,129,0,170,0,303,127,170,0,127,
+ 170,0,222,129,0,167,243,0,138,0,
+ 0,0,136,0,0,0,302,127,60,250,
+ 0,128,0,250,0,3,0,0,128,0,
+ 301,127,60,0,45,128,0,156,3,0,
+ 127,277,276,127,75,275,170,0,276,127,
+ 75,275,170,0,215,0,216,0,275,170,
+ 0,98,0,0,215,0,216,0,203,98,
+ 0,0,215,0,216,0,276,127,275,170,
+ 0,215,0,203,0,0,215,0,227,127,
+ 3,0,127,0,0,0,0,0,227,127,
+ 3,216,0,223,3,0,212,127,0,208,
+ 0,188,167,171,0,135,0,167,128,0,
+ 11,0,0,0,214,48,0,126,0,227,
+ 127,3,180,0,180,0,2,0,0,127,
+ 0,0,0,0,0,191,3,0,201,0,
+ 238,127,60,29,14,0,184,128,57,59,
+ 0,197,129,0,131,184,128,273,59,0,
+ 184,128,273,59,0,184,128,67,124,57,
+ 0,238,127,60,57,0,238,127,60,226,
+ 57,0,271,127,60,124,68,0,271,127,
+ 60,68,0,184,128,68,0,136,0,188,
+ 184,128,243,0,138,0,184,128,243,0,
+ 188,167,128,10,0,167,128,10,0,95,
+ 138,0,148,0,264,127,146,0,264,127,
+ 170,0,162,86,0,294,161,296,297,3,
+ 83,0,127,173,0,296,297,3,83,0,
+ 129,0,127,173,0,162,3,76,199,81,
+ 0,127,129,0,199,81,0,110,2,132,
+ 127,129,0,225,3,76,0,191,166,0,
+ 34,171,0,166,0,177,34,171,0,225,
+ 3,87,0,199,154,225,3,85,0,64,
+ 173,0,225,3,85,0,127,173,64,173,
+ 0,295,127,60,0,162,0,214,78,0,
+ 31,0,162,117,158,0,31,171,0,177,
+ 3,0,127,151,0,219,3,0,214,48,
+ 261,0,162,48,0,177,3,291,66,128,
+ 0,127,0,0,0,0,291,66,128,0,
+ 2,147,127,0,0,0,0,177,3,36,
+ 0,149,0,126,30,167,128,0,32,149,
+ 0,95,138,32,149,0,222,184,128,0,
+ 148,32,149,0,177,3,40,0,162,3,
+ 40,0,162,3,61,177,28,32,0,177,
+ 28,32,0,21,2,132,127,0,162,3,
+ 61,177,28,35,0,177,28,35,0,162,
+ 3,61,177,28,37,0,177,28,37,0,
+ 162,3,61,177,28,33,0,177,28,33,
+ 0,219,3,126,188,167,128,10,0,126,
+ 188,167,128,10,0,138,2,0,127,0,
+ 219,3,125,171,167,128,10,0,171,167,
+ 128,10,0,136,2,0,127,0,219,3,
+ 136,0,219,3,140,0,162,48,140,0,
+ 256,0,32,0,32,141,0,165,0,162,
+ 3,0
};
};
public final static char scopeRhs[] = ScopeRhs.scopeRhs;
@@ -2137,37 +2116,37 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface ScopeState {
public final static char scopeState[] = {0,
- 2878,4666,4665,4435,0,2288,3069,1011,1987,0,
- 3699,3641,3556,3498,3440,3382,3321,3163,2916,2700,
- 0,540,0,3317,627,0,3046,2681,2615,2703,
- 1376,3699,3641,3556,3498,3440,3382,3321,3163,2916,
- 0,2534,1392,1000,0,3402,2977,0,2745,734,
- 0,3437,3438,0,3855,3007,0,4532,3403,3699,
- 3641,3556,3498,3440,3382,3321,3163,2916,3093,3025,
- 4061,2953,4008,2846,3955,3902,3849,0,3093,3025,
- 4061,2953,4008,2846,3955,3902,3849,4532,3403,0,
- 2614,986,0,1355,801,0,874,0,2782,4501,
- 3752,3958,4490,1981,3294,1118,3585,3027,3028,578,
- 2652,1124,860,0,4614,4610,4606,4602,4588,4043,
- 3990,3937,4680,4676,4659,3723,3522,4440,4096,3146,
- 2865,3409,3311,2799,2941,3150,0,536,3376,2607,
- 0,4501,3855,4490,3007,578,3610,4391,4565,4463,
- 2782,4423,939,3294,2710,2592,0,4614,4116,4610,
- 3646,3100,4606,4602,4588,2969,3650,2295,4043,3990,
- 3335,3329,3054,3937,3526,4680,2774,4676,1350,931,
- 4659,1180,3723,3522,920,4440,2886,4096,3146,2865,
- 795,3409,3311,2799,3376,2941,784,3150,2607,729,
- 3610,4391,4565,4463,2782,4501,4423,2284,3855,4490,
- 1387,939,3294,3007,659,642,578,2710,2592,2195,
- 2106,1372,1355,801,4402,4369,4347,2299,2336,2369,
- 592,2456,2428,2399,2808,2616,2565,2538,2511,2484,
- 3826,3803,3780,3269,3244,4325,4303,4281,4259,4237,
- 4215,4193,4171,4149,3868,1055,1990,2247,2210,2158,
- 2121,2069,2032,876,1948,1906,1229,821,740,685,
- 1864,1822,1780,1738,1696,1654,1612,1570,1528,1486,
- 1444,536,1184,1136,1402,1313,1081,1013,953,1271,
- 0,1268,1226,1059,1036,3028,578,3610,2701,2710,
- 2984,2592,0,3530,3905,2742,815,0
+ 3198,4061,4060,3258,0,1472,2924,1430,656,0,
+ 3408,3342,3257,3197,3137,3077,3017,2858,2798,2621,
+ 0,1163,0,2926,623,0,3408,3342,2886,2839,
+ 3257,3197,3137,3077,2812,3017,2858,2798,3013,944,
+ 0,1762,994,923,0,2899,1253,0,2552,719,
+ 0,3509,3344,0,4504,4491,0,3282,4364,0,
+ 3282,4364,3713,4264,4220,3659,4176,4132,4069,3605,
+ 0,3282,4364,3713,4264,4220,3659,4176,4132,4069,
+ 3605,3408,3342,3257,3197,3137,3077,3017,2858,2798,
+ 0,3138,3074,0,990,794,0,1161,0,2772,
+ 4461,3740,1636,4394,715,2991,1804,1594,2783,3173,
+ 3463,2612,1468,1426,0,4608,4583,4579,4575,4563,
+ 4553,4530,4382,4661,4657,4646,4238,4193,4628,4388,
+ 4086,3041,4124,3480,2822,2587,2655,0,534,3106,
+ 2562,0,4461,4504,4394,4491,3463,3311,4049,4478,
+ 4350,2772,4318,3693,2991,2570,2547,0,4608,2853,
+ 4583,2583,1354,4579,4575,4563,1173,3611,915,4553,
+ 4530,3500,3491,3432,4382,3251,4661,3007,4657,2918,
+ 2867,4646,1004,4238,4193,2791,4628,3616,4388,4086,
+ 3041,2558,4124,3480,2822,3106,2587,919,2655,2562,
+ 726,3311,4049,4478,4350,2772,4461,4318,2271,4504,
+ 4394,2184,3693,2991,4491,2097,1343,3463,2570,2547,
+ 929,576,657,990,794,629,4027,4005,2284,2321,
+ 590,1358,2411,2383,2354,2746,2720,2520,2493,2466,
+ 2439,3582,3559,3530,2966,2941,3983,3961,3939,3917,
+ 3895,3873,3851,3829,3799,3624,1050,1981,2234,2197,
+ 2147,2110,2060,2023,870,1939,1897,1222,815,737,
+ 682,1855,1813,1771,1729,1687,1645,1603,1561,1519,
+ 1477,1435,534,1177,1130,1393,1306,1075,1008,948,
+ 1264,0,2027,1221,846,589,3173,3463,3311,3413,
+ 2570,2619,2547,0,3011,3662,3002,1600,0
};
};
public final static char scopeState[] = ScopeState.scopeState;
@@ -2175,59 +2154,59 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public interface InSymb {
public final static char inSymb[] = {0,
- 0,293,29,10,63,28,234,234,128,67,
- 67,292,147,128,167,61,64,67,226,195,
- 48,219,220,187,181,177,131,134,7,5,
- 126,3,128,267,268,252,269,245,270,69,
- 271,272,126,10,129,128,3,63,40,32,
- 35,37,33,10,137,4,3,129,36,31,
- 5,14,13,6,8,27,26,141,146,149,
- 148,151,150,153,152,156,154,158,60,159,
- 67,67,217,159,3,3,168,166,28,28,
- 167,48,3,65,66,126,125,28,226,195,
- 128,215,129,6,58,168,234,129,127,126,
- 125,58,129,129,185,168,215,128,234,3,
- 28,28,28,28,129,3,7,126,178,163,
- 128,65,66,168,3,127,103,120,3,48,
- 90,96,14,13,92,91,6,94,93,61,
+ 0,290,30,10,62,28,230,230,127,67,
+ 67,289,146,127,166,61,64,67,223,191,
+ 48,216,217,186,180,171,130,133,7,5,
+ 125,3,127,265,266,250,267,243,268,68,
+ 269,270,125,10,128,127,3,62,40,32,
+ 35,37,33,10,136,4,3,128,36,31,
+ 5,12,11,6,8,27,26,140,145,148,
+ 147,150,149,152,151,155,153,157,58,158,
+ 67,67,214,158,3,3,167,165,28,28,
+ 166,48,3,65,66,125,124,28,223,191,
+ 127,212,128,6,60,167,230,128,126,125,
+ 124,60,128,128,184,167,212,127,230,3,
+ 28,28,28,28,128,3,7,125,177,162,
+ 127,65,66,167,3,126,103,120,3,48,
+ 90,96,12,11,92,91,6,94,93,61,
28,88,89,8,98,97,100,99,101,113,
112,111,110,109,108,107,106,105,104,67,
- 117,102,128,128,189,4,128,128,128,48,
- 48,128,231,232,233,168,128,128,127,126,
- 128,185,128,58,128,185,168,29,67,178,
- 163,178,178,178,178,168,222,128,155,265,
- 137,127,126,10,129,48,294,3,189,178,
- 29,129,29,222,163,148,148,146,146,146,
- 150,150,150,150,149,149,152,151,151,154,
- 153,156,163,158,231,231,258,189,253,135,
- 255,253,215,253,155,64,6,184,305,129,
- 169,227,29,193,57,171,307,128,128,72,
- 189,128,273,125,274,189,129,61,61,61,
- 61,189,177,64,129,168,196,3,295,167,
- 157,185,168,72,155,155,4,64,128,128,
- 168,28,29,276,278,128,3,181,309,227,
- 41,129,273,67,64,3,3,3,3,127,
- 126,168,29,178,128,128,225,5,29,128,
- 128,223,189,61,28,129,76,128,215,306,
- 128,126,72,285,195,64,129,41,310,185,
- 163,163,163,163,3,3,189,155,260,263,
- 48,179,4,125,127,223,223,128,132,12,
- 29,171,62,59,57,128,185,128,279,72,
- 64,215,72,67,185,129,129,222,222,127,
- 128,3,48,163,4,128,128,60,30,128,
- 3,58,123,126,125,59,292,132,279,58,
- 289,129,290,185,185,260,222,217,3,128,
- 58,266,195,277,30,128,58,58,67,129,
- 61,280,128,64,185,3,314,128,3,67,
- 64,155,230,229,128,128,129,185,128,298,
- 81,79,1,163,87,85,83,82,77,84,
- 86,80,78,59,76,222,64,230,157,58,
- 230,230,185,275,281,119,9,217,72,3,
- 3,3,198,3,125,163,125,183,128,275,
- 3,228,167,228,300,147,77,228,128,304,
- 95,313,167,155,195,155,299,128,3,155,
- 281,64,155,155,128,67,198,162,266,163,
- 122,297,155,155
+ 117,102,127,127,188,4,127,127,127,48,
+ 48,127,227,228,229,167,127,127,126,125,
+ 127,184,127,60,127,184,167,30,67,177,
+ 162,177,177,177,177,167,219,127,154,263,
+ 136,126,125,10,128,48,291,3,188,177,
+ 30,128,30,219,162,147,147,145,145,145,
+ 149,149,149,149,148,148,151,150,150,153,
+ 152,155,162,157,227,227,256,188,251,134,
+ 253,251,212,251,154,64,6,183,302,128,
+ 168,224,57,30,197,59,170,304,127,127,
+ 71,188,127,271,124,272,188,128,61,61,
+ 61,61,188,171,64,128,167,198,3,292,
+ 166,156,184,167,71,154,154,4,64,127,
+ 127,167,60,226,28,30,273,275,127,3,
+ 180,306,224,41,128,271,67,64,3,3,
+ 3,3,126,125,167,30,177,127,127,222,
+ 5,30,127,127,220,188,127,60,61,28,
+ 128,75,127,212,303,127,125,71,282,191,
+ 64,128,41,307,184,162,162,162,162,3,
+ 3,188,154,258,261,48,178,4,124,126,
+ 220,220,127,131,238,14,30,170,63,57,
+ 59,237,127,127,184,127,276,71,64,212,
+ 71,67,184,128,128,219,219,126,127,3,
+ 48,162,4,127,127,58,29,127,3,124,
+ 57,238,289,131,276,60,286,128,287,184,
+ 184,258,219,214,3,127,60,264,191,274,
+ 29,67,128,61,277,127,64,184,3,311,
+ 127,3,67,64,154,128,184,127,295,80,
+ 78,1,162,87,85,83,81,76,84,86,
+ 79,77,57,75,219,64,238,156,60,184,
+ 226,278,119,9,214,71,3,3,3,199,
+ 3,124,162,124,182,127,226,3,225,166,
+ 225,297,146,76,225,127,301,95,310,166,
+ 154,191,154,296,127,3,154,278,64,154,
+ 154,127,67,199,161,264,162,122,294,154,
+ 154
};
};
public final static char inSymb[] = InSymb.inSymb;
@@ -2359,7 +2338,6 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
"RightBrace",
"SemiColon",
"ERROR_TOKEN",
- "original_namespace_name",
"EOF_TOKEN",
"type_parameter_start",
"]",
@@ -2493,8 +2471,8 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public final static int
ERROR_SYMBOL = 74,
- SCOPE_UBOUND = 117,
- SCOPE_SIZE = 118,
+ SCOPE_UBOUND = 116,
+ SCOPE_SIZE = 117,
MAX_NAME_LENGTH = 37;
public final int getErrorSymbol() { return ERROR_SYMBOL; }
@@ -2503,20 +2481,20 @@ public class CPPTemplateTypeParameterParserprs implements lpg.lpgjavaruntime.Par
public final int getMaxNameLength() { return MAX_NAME_LENGTH; }
public final static int
- NUM_STATES = 524,
- NT_OFFSET = 124,
- LA_STATE_OFFSET = 5761,
+ NUM_STATES = 521,
+ NT_OFFSET = 123,
+ LA_STATE_OFFSET = 5657,
MAX_LA = 2147483647,
- NUM_RULES = 535,
- NUM_NONTERMINALS = 196,
- NUM_SYMBOLS = 320,
+ NUM_RULES = 533,
+ NUM_NONTERMINALS = 194,
+ NUM_SYMBOLS = 317,
SEGMENT_SIZE = 8192,
- START_STATE = 815,
+ START_STATE = 1600,
IDENTIFIER_SYMBOL = 0,
EOFT_SYMBOL = 121,
EOLT_SYMBOL = 121,
- ACCEPT_ACTION = 4833,
- ERROR_ACTION = 5226;
+ ACCEPT_ACTION = 4731,
+ ERROR_ACTION = 5124;
public final static boolean BACKTRACK = true;
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParsersym.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParsersym.java
index 400b269ae80..68952b31ecc 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParsersym.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPTemplateTypeParameterParsersym.java
@@ -15,27 +15,27 @@ package org.eclipse.cdt.internal.core.dom.lrparser.cpp;
public interface CPPTemplateTypeParameterParsersym {
public final static int
- TK_asm = 62,
+ TK_asm = 63,
TK_auto = 49,
TK_bool = 15,
- TK_break = 78,
- TK_case = 79,
+ TK_break = 77,
+ TK_case = 78,
TK_catch = 119,
TK_char = 16,
- TK_class = 63,
+ TK_class = 62,
TK_const = 46,
TK_const_cast = 32,
- TK_continue = 80,
- TK_default = 81,
+ TK_continue = 79,
+ TK_default = 80,
TK_delete = 65,
- TK_do = 82,
+ TK_do = 81,
TK_double = 17,
TK_dynamic_cast = 33,
TK_else = 122,
- TK_enum = 69,
+ TK_enum = 68,
TK_explicit = 50,
- TK_export = 75,
- TK_extern = 12,
+ TK_export = 82,
+ TK_extern = 14,
TK_false = 34,
TK_float = 18,
TK_for = 83,
@@ -46,7 +46,7 @@ public interface CPPTemplateTypeParameterParsersym {
TK_int = 19,
TK_long = 20,
TK_mutable = 53,
- TK_namespace = 59,
+ TK_namespace = 57,
TK_new = 66,
TK_operator = 7,
TK_private = 114,
@@ -60,35 +60,35 @@ public interface CPPTemplateTypeParameterParsersym {
TK_sizeof = 36,
TK_static = 55,
TK_static_cast = 37,
- TK_struct = 70,
+ TK_struct = 69,
TK_switch = 87,
- TK_template = 29,
+ TK_template = 30,
TK_this = 38,
- TK_throw = 60,
- TK_try = 76,
+ TK_throw = 58,
+ TK_try = 75,
TK_true = 39,
TK_typedef = 56,
TK_typeid = 40,
TK_typename = 10,
- TK_union = 71,
+ TK_union = 70,
TK_unsigned = 23,
- TK_using = 57,
+ TK_using = 59,
TK_virtual = 41,
TK_void = 24,
TK_volatile = 47,
TK_wchar_t = 25,
- TK_while = 77,
+ TK_while = 76,
TK_integer = 42,
TK_floating = 43,
TK_charconst = 44,
- TK_stringlit = 30,
+ TK_stringlit = 29,
TK_identifier = 1,
TK_Completion = 2,
TK_EndOfCompletion = 9,
- TK_Invalid = 124,
+ TK_Invalid = 123,
TK_LeftBracket = 48,
TK_LeftParen = 3,
- TK_LeftBrace = 58,
+ TK_LeftBrace = 60,
TK_Dot = 120,
TK_DotStar = 96,
TK_Arrow = 103,
@@ -97,8 +97,8 @@ public interface CPPTemplateTypeParameterParsersym {
TK_MinusMinus = 27,
TK_And = 8,
TK_Star = 6,
- TK_Plus = 13,
- TK_Minus = 14,
+ TK_Plus = 11,
+ TK_Minus = 12,
TK_Tilde = 5,
TK_Bang = 31,
TK_Slash = 91,
@@ -116,7 +116,7 @@ public interface CPPTemplateTypeParameterParsersym {
TK_AndAnd = 101,
TK_OrOr = 102,
TK_Question = 117,
- TK_Colon = 72,
+ TK_Colon = 71,
TK_ColonColon = 4,
TK_DotDotDot = 95,
TK_Assign = 67,
@@ -133,11 +133,10 @@ public interface CPPTemplateTypeParameterParsersym {
TK_Comma = 64,
TK_zero = 45,
TK_RightBracket = 118,
- TK_RightParen = 73,
- TK_RightBrace = 68,
- TK_SemiColon = 11,
+ TK_RightParen = 72,
+ TK_RightBrace = 73,
+ TK_SemiColon = 13,
TK_ERROR_TOKEN = 74,
- TK_original_namespace_name = 123,
TK_EOF_TOKEN = 121;
public final static String orderedTerminalSymbols[] = {
@@ -152,10 +151,10 @@ public interface CPPTemplateTypeParameterParsersym {
"And",
"EndOfCompletion",
"typename",
- "SemiColon",
- "extern",
"Plus",
"Minus",
+ "SemiColon",
+ "extern",
"bool",
"char",
"double",
@@ -170,8 +169,8 @@ public interface CPPTemplateTypeParameterParsersym {
"PlusPlus",
"MinusMinus",
"LT",
- "template",
"stringlit",
+ "template",
"Bang",
"const_cast",
"dynamic_cast",
@@ -198,25 +197,24 @@ public interface CPPTemplateTypeParameterParsersym {
"register",
"static",
"typedef",
- "using",
- "LeftBrace",
"namespace",
"throw",
+ "using",
+ "LeftBrace",
"GT",
- "asm",
"class",
+ "asm",
"Comma",
"delete",
"new",
"Assign",
- "RightBrace",
"enum",
"struct",
"union",
"Colon",
"RightParen",
+ "RightBrace",
"ERROR_TOKEN",
- "export",
"try",
"while",
"break",
@@ -224,6 +222,7 @@ public interface CPPTemplateTypeParameterParsersym {
"continue",
"default",
"do",
+ "export",
"for",
"goto",
"if",
@@ -264,7 +263,6 @@ public interface CPPTemplateTypeParameterParsersym {
"Dot",
"EOF_TOKEN",
"else",
- "original_namespace_name",
"Invalid"
};

Back to the top