diff --git a/oap-formats/oap-template/README.md b/oap-formats/oap-template/README.md index 2c06da6487..066a2d9b38 100644 --- a/oap-formats/oap-template/README.md +++ b/oap-formats/oap-template/README.md @@ -204,42 +204,49 @@ Supported literal types: ### Concatenation -Concatenation combines multiple fields and string literals into a single output without a separator. +`+` is the string concatenation operator. All items are rendered as strings and joined without any separator character between them. Items can be: field names, double-quoted strings, single-quoted strings, decimal integers, floats. -Root concatenation (the whole expression is a concat): +> **`+` is string concatenation** when the left operand is a non-numeric field, or when more than two items are joined. When the left is a numeric field and the right is a single numeric literal, `+` is numeric addition (see [Math](#math)). + +Top-level concatenation (no braces needed): ``` -${ {field1, "/", field2} } +{{ field1 + "/" + field2 }} +${ field1 + "/" + field2 } +{{ stringField + 'x' + 10 + intField }} → "strx10456" ``` -Suffix concatenation after a path: +Scoped concatenation — items resolved relative to a scope path: ``` -{{ child{field1, "x", field2} }} -{{ child.{field1, "x", field2} }} +{{ child{field1 + "x" + field2} }} +{{ child.{field1 + "x" + field2} }} ``` -Items inside `{}` can be: field names, double-quoted strings, single-quoted strings, decimal integers, floats. - ``` -{{ {scheme, "://", host, "/", path} }} → "https://example.com/api" +{{ scheme + "://" + host + "/" + path }} → "https://example.com/api" +{{ child{intField + "_" + field} }} → "42_hello" ``` ### Math ``` -{{ numericField + 12.45 }} +{{ intField + 10 }} +{{ doubleField + 3.3 }} {{ intField * 2 }} {{ price - discount }} {{ total / count }} {{ value % 100 }} ``` -Operators: `+`, `-`, `*`, `/`, `%`. The right-hand operand must be a numeric literal. The result type is widened as needed. +Operators: `+`, `-`, `*`, `/`, `%`. The right-hand operand must be a numeric literal (integer or float). The result type is widened as needed. + +> **`+` is numeric addition when the left operand is a numeric field** (int, long, float, double, etc.). When the left operand is a non-numeric field or there are more than two items, `+` is string concatenation — see [Concatenation](#concatenation). ``` -{{ score + 100 }} → score value + 100 -{{ price * 1.1 }} → price * 1.1 +{{ intField + 10 }} → intField value + 10 +{{ price * 1.1 }} → price × 1.1 +{{ score - 5 }} → score - 5 ``` ### If / then / else (inline) @@ -401,19 +408,19 @@ Any field type may appear in a `{{% if … }}` condition. The field value is coe ### With scope (inline) -`{{ with (scopePath) bodyExpr end }}` — evaluates `bodyExpr` relative to the object resolved by `scopePath`. At compile time the scope path is prepended to each body expression, so this is purely syntactic sugar for chained field access. +`{{ scope{bodyExpr} }}` — evaluates `bodyExpr` relative to the object resolved by `scope`. At compile time the scope path is prepended to each body expression, so this is purely syntactic sugar for chained field access. ``` -{{ with (child) field end }} +{{ child{field} }} ``` is equivalent to `{{ child.field }}`. -If `scopePath` resolves to null, the body expression renders its default value, or empty string if no default is set. +If `scope` resolves to null, the body expression renders its default value, or empty string if no default is set. **With a default:** ``` -{{ with (child) field ?? 'n/a' end }} +{{ child{field} ?? 'n/a' }} ``` Renders `n/a` when `child` is null or `child.field` is null. @@ -421,19 +428,26 @@ Renders `n/a` when `child` is null or `child.field` is null. **Fallback chain in body:** ``` -{{ with (child) field | default field2 end }} +{{ child{field | default field2} }} ``` Both alternatives are evaluated against `child` (expanded to `child.field | default child.field2`); the first non-null result is used. -**Root scope (`$`):** prefix any body expression with `$.` to resolve it from the root object instead of the `with` scope: +**Root scope (`$`):** prefix any body expression with `$.` to resolve it from the root object instead of the scope: ``` -{{ with (child) field | default $.rootField end }} +{{ child{field | default $.rootField} }} ``` When `child.field` is null, `$.rootField` is resolved from the root object. +**Concatenation inside scope:** when `+` separates two or more items inside `{}`, the result is a string concatenation of all items rendered in the context of `scope`: + +``` +{{ child{field1 + "-" + field2} }} +{{ parent{str1 + 'f' + str2 + 6} }} +``` + ### With scope (block) `{{% with scopePath }} … {{% end %}}` — all `{{ expr }}` blocks inside the body are resolved relative to the object at `scopePath`. diff --git a/oap-formats/oap-template/src/main/antlr4/TemplateGrammarExpression.g4 b/oap-formats/oap-template/src/main/antlr4/TemplateGrammarExpression.g4 index 3734856f3a..8423764a5f 100644 --- a/oap-formats/oap-template/src/main/antlr4/TemplateGrammarExpression.g4 +++ b/oap-formats/oap-template/src/main/antlr4/TemplateGrammarExpression.g4 @@ -60,13 +60,38 @@ ifCode returns [IfCondition ret] ; withCode returns [WithCondition ret] - : WITH LPAREN scopePath=exprs RPAREN bodyExprs=exprsCode END { + : scopePath=exprs LBRACE concatItems=concatBody RBRACE { + Exprs bodyExprs = new Exprs(); + bodyExprs.concatenation = new Concatenation( $concatItems.ret ); + ArrayList body = new ArrayList<>(); + body.add( bodyExprs ); + $ret = new WithCondition( $scopePath.ret, body ); + } + | scopePath=exprs LBRACE bodyExprs=exprsCode RBRACE { $ret = new WithCondition( $scopePath.ret, $bodyExprs.ret ); } ; +concatBody returns [ArrayList ret = new ArrayList<>()] + : citem { $ret.add( $citem.ret ); } + ( PLUS citem { $ret.add( $citem.ret ); } )+ + ; + +topLevelConcat returns [Exprs ret = new Exprs()] + : first=citem { + $ret.concatenation = new Concatenation( new ArrayList<>() ); + $ret.concatenation.items.add( $first.ret ); + } + ( PLUS next=citem { + $ret.concatenation.items.add( $next.ret ); + } )+ + ; + exprsCode returns [ArrayList ret = new ArrayList<>()] - : exprs orExprs { + : topLevelConcat { + $ret.add( $topLevelConcat.ret ); + } + | exprs orExprs { $ret.add( $exprs.ret ); $ret.addAll( $orExprs.ret ); } @@ -171,7 +196,6 @@ exprs returns [Exprs ret = new Exprs()] DOT expr { $ret.exprs.add( $expr.ret ); } DOT? concatenation { $ret.concatenation = $concatenation.ret; } math? { if( $math.ctx != null ) $ret.math = $math.ret; } - | concatenation { $ret.concatenation = $concatenation.ret; } ; expr returns [Expr ret] @@ -184,16 +208,16 @@ concatenation returns [Concatenation ret] ; citems returns [ArrayList ret = new ArrayList<>()] - : citem { $ret.add($citem.ret); } - ( COMMA citem { $ret.add($citem.ret); } )* + : citem { $ret.add( $citem.ret ); } + ( PLUS citem { $ret.add( $citem.ret ); } )* ; citem returns [Object ret] : ID { $ret = new Expr( $ID.text, false, List.of() ); } | DSTRING { $ret = sdStringToString( $DSTRING.text ); } | SSTRING { $ret = sdStringToString( $SSTRING.text ); } - | DECDIGITS { $ret = String.valueOf( $DECDIGITS.text ); } - | FLOAT { $ret = String.valueOf( $FLOAT.text ); } + | DECDIGITS { $ret = new NumericLiteral( $DECDIGITS.text ); } + | FLOAT { $ret = new NumericLiteral( $FLOAT.text ); } ; math returns [Math ret] @@ -209,7 +233,6 @@ mathOperation : STAR | SLASH | PERCENT - | PLUS | MINUS ; diff --git a/oap-formats/oap-template/src/main/antlr4/TemplateLexerExpression.g4 b/oap-formats/oap-template/src/main/antlr4/TemplateLexerExpression.g4 index 1894bd3f5a..1557a3cd31 100644 --- a/oap-formats/oap-template/src/main/antlr4/TemplateLexerExpression.g4 +++ b/oap-formats/oap-template/src/main/antlr4/TemplateLexerExpression.g4 @@ -85,7 +85,6 @@ IF : 'if' ; THEN : 'then' ; ELSE : 'else' ; END : 'end' ; -WITH : 'with' ; AND : 'and' ; OR : 'or' ; NOT : 'not' ; @@ -144,7 +143,11 @@ C_HORZ_WS : Hws+ -> skip ; C_VERT_WS : Vws+ -> skip ; CRBRACE : RBrace -> popMode, type(RBRACE) ; -CCOMMA : Comma -> type(COMMA) ; +CPLUS : Plus -> type(PLUS) ; +CDOT : Dot -> type(DOT) ; +CDEFAULT : Pipe Hws* Default -> type(DEFAULT) ; +CVAR_ID : '$' NameChar (NameChar|DecDigit)* -> type(VAR_ID) ; +CROOT : '$' -> type(ROOT) ; CID : NameChar (NameChar|DecDigit)* -> type(ID) ; CDSTRING : DQuoteLiteral -> type(DSTRING) ; diff --git a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.interp b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.interp index 06127925c2..02e3740389 100644 --- a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.interp +++ b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.interp @@ -5,7 +5,6 @@ null 'then' 'else' 'end' -'with' 'and' 'or' 'not' @@ -21,7 +20,7 @@ null '>' '<' null -'$' +null null null null @@ -59,7 +58,6 @@ IF THEN ELSE END -WITH AND OR NOT @@ -110,6 +108,8 @@ rule names: expression ifCode withCode +concatBody +topLevelConcat exprsCode ifCondition conditionOr @@ -135,4 +135,4 @@ mathOperation atn: -[4, 1, 51, 387, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 1, 0, 3, 0, 52, 8, 0, 1, 0, 3, 0, 55, 8, 0, 1, 0, 1, 0, 1, 0, 3, 0, 60, 8, 0, 1, 0, 3, 0, 63, 8, 0, 1, 0, 3, 0, 66, 8, 0, 1, 0, 1, 0, 3, 0, 70, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 80, 8, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 106, 8, 5, 10, 5, 12, 5, 109, 9, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 117, 8, 6, 10, 6, 12, 6, 120, 9, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 129, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 144, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 162, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 182, 8, 11, 1, 12, 3, 12, 185, 8, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 193, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 204, 8, 14, 10, 14, 12, 14, 207, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 223, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 232, 8, 16, 10, 16, 12, 16, 235, 9, 16, 1, 16, 3, 16, 238, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 248, 8, 17, 10, 17, 12, 17, 251, 9, 17, 1, 17, 3, 17, 254, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 264, 8, 17, 10, 17, 12, 17, 267, 9, 17, 1, 17, 3, 17, 270, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 276, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 283, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 294, 8, 17, 10, 17, 12, 17, 297, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 303, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 313, 8, 17, 10, 17, 12, 17, 316, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 322, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 327, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 334, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 339, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 346, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 359, 8, 20, 10, 20, 12, 20, 362, 9, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 374, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 3, 23, 383, 8, 23, 1, 24, 1, 24, 1, 24, 0, 0, 25, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 0, 3, 1, 0, 9, 10, 1, 0, 11, 20, 1, 0, 36, 40, 421, 0, 51, 1, 0, 0, 0, 2, 73, 1, 0, 0, 0, 4, 84, 1, 0, 0, 0, 6, 92, 1, 0, 0, 0, 8, 96, 1, 0, 0, 0, 10, 99, 1, 0, 0, 0, 12, 110, 1, 0, 0, 0, 14, 128, 1, 0, 0, 0, 16, 143, 1, 0, 0, 0, 18, 161, 1, 0, 0, 0, 20, 163, 1, 0, 0, 0, 22, 181, 1, 0, 0, 0, 24, 184, 1, 0, 0, 0, 26, 188, 1, 0, 0, 0, 28, 197, 1, 0, 0, 0, 30, 222, 1, 0, 0, 0, 32, 237, 1, 0, 0, 0, 34, 333, 1, 0, 0, 0, 36, 345, 1, 0, 0, 0, 38, 347, 1, 0, 0, 0, 40, 352, 1, 0, 0, 0, 42, 373, 1, 0, 0, 0, 44, 375, 1, 0, 0, 0, 46, 382, 1, 0, 0, 0, 48, 384, 1, 0, 0, 0, 50, 52, 5, 23, 0, 0, 51, 50, 1, 0, 0, 0, 51, 52, 1, 0, 0, 0, 52, 54, 1, 0, 0, 0, 53, 55, 5, 47, 0, 0, 54, 53, 1, 0, 0, 0, 54, 55, 1, 0, 0, 0, 55, 59, 1, 0, 0, 0, 56, 60, 3, 2, 1, 0, 57, 60, 3, 4, 2, 0, 58, 60, 3, 6, 3, 0, 59, 56, 1, 0, 0, 0, 59, 57, 1, 0, 0, 0, 59, 58, 1, 0, 0, 0, 60, 62, 1, 0, 0, 0, 61, 63, 3, 20, 10, 0, 62, 61, 1, 0, 0, 0, 62, 63, 1, 0, 0, 0, 63, 65, 1, 0, 0, 0, 64, 66, 3, 26, 13, 0, 65, 64, 1, 0, 0, 0, 65, 66, 1, 0, 0, 0, 66, 69, 1, 0, 0, 0, 67, 68, 5, 2, 0, 0, 68, 70, 3, 8, 4, 0, 69, 67, 1, 0, 0, 0, 69, 70, 1, 0, 0, 0, 70, 71, 1, 0, 0, 0, 71, 72, 6, 0, -1, 0, 72, 1, 1, 0, 0, 0, 73, 74, 5, 2, 0, 0, 74, 75, 3, 8, 4, 0, 75, 76, 5, 3, 0, 0, 76, 79, 3, 34, 17, 0, 77, 78, 5, 4, 0, 0, 78, 80, 3, 34, 17, 0, 79, 77, 1, 0, 0, 0, 79, 80, 1, 0, 0, 0, 80, 81, 1, 0, 0, 0, 81, 82, 5, 5, 0, 0, 82, 83, 6, 1, -1, 0, 83, 3, 1, 0, 0, 0, 84, 85, 5, 6, 0, 0, 85, 86, 5, 29, 0, 0, 86, 87, 3, 34, 17, 0, 87, 88, 5, 30, 0, 0, 88, 89, 3, 6, 3, 0, 89, 90, 5, 5, 0, 0, 90, 91, 6, 2, -1, 0, 91, 5, 1, 0, 0, 0, 92, 93, 3, 34, 17, 0, 93, 94, 3, 32, 16, 0, 94, 95, 6, 3, -1, 0, 95, 7, 1, 0, 0, 0, 96, 97, 3, 10, 5, 0, 97, 98, 6, 4, -1, 0, 98, 9, 1, 0, 0, 0, 99, 100, 3, 12, 6, 0, 100, 107, 6, 5, -1, 0, 101, 102, 5, 8, 0, 0, 102, 103, 3, 12, 6, 0, 103, 104, 6, 5, -1, 0, 104, 106, 1, 0, 0, 0, 105, 101, 1, 0, 0, 0, 106, 109, 1, 0, 0, 0, 107, 105, 1, 0, 0, 0, 107, 108, 1, 0, 0, 0, 108, 11, 1, 0, 0, 0, 109, 107, 1, 0, 0, 0, 110, 111, 3, 14, 7, 0, 111, 118, 6, 6, -1, 0, 112, 113, 5, 7, 0, 0, 113, 114, 3, 14, 7, 0, 114, 115, 6, 6, -1, 0, 115, 117, 1, 0, 0, 0, 116, 112, 1, 0, 0, 0, 117, 120, 1, 0, 0, 0, 118, 116, 1, 0, 0, 0, 118, 119, 1, 0, 0, 0, 119, 13, 1, 0, 0, 0, 120, 118, 1, 0, 0, 0, 121, 122, 7, 0, 0, 0, 122, 123, 3, 14, 7, 0, 123, 124, 6, 7, -1, 0, 124, 129, 1, 0, 0, 0, 125, 126, 3, 16, 8, 0, 126, 127, 6, 7, -1, 0, 127, 129, 1, 0, 0, 0, 128, 121, 1, 0, 0, 0, 128, 125, 1, 0, 0, 0, 129, 15, 1, 0, 0, 0, 130, 131, 5, 29, 0, 0, 131, 132, 3, 8, 4, 0, 132, 133, 5, 30, 0, 0, 133, 134, 6, 8, -1, 0, 134, 144, 1, 0, 0, 0, 135, 136, 3, 34, 17, 0, 136, 137, 7, 1, 0, 0, 137, 138, 3, 18, 9, 0, 138, 139, 6, 8, -1, 0, 139, 144, 1, 0, 0, 0, 140, 141, 3, 34, 17, 0, 141, 142, 6, 8, -1, 0, 142, 144, 1, 0, 0, 0, 143, 130, 1, 0, 0, 0, 143, 135, 1, 0, 0, 0, 143, 140, 1, 0, 0, 0, 144, 17, 1, 0, 0, 0, 145, 146, 5, 42, 0, 0, 146, 162, 6, 9, -1, 0, 147, 148, 5, 41, 0, 0, 148, 162, 6, 9, -1, 0, 149, 150, 5, 43, 0, 0, 150, 162, 6, 9, -1, 0, 151, 152, 5, 40, 0, 0, 152, 153, 5, 43, 0, 0, 153, 162, 6, 9, -1, 0, 154, 155, 5, 44, 0, 0, 155, 162, 6, 9, -1, 0, 156, 157, 5, 40, 0, 0, 157, 158, 5, 44, 0, 0, 158, 162, 6, 9, -1, 0, 159, 160, 5, 45, 0, 0, 160, 162, 6, 9, -1, 0, 161, 145, 1, 0, 0, 0, 161, 147, 1, 0, 0, 0, 161, 149, 1, 0, 0, 0, 161, 151, 1, 0, 0, 0, 161, 154, 1, 0, 0, 0, 161, 156, 1, 0, 0, 0, 161, 159, 1, 0, 0, 0, 162, 19, 1, 0, 0, 0, 163, 164, 5, 33, 0, 0, 164, 165, 3, 22, 11, 0, 165, 166, 6, 10, -1, 0, 166, 21, 1, 0, 0, 0, 167, 168, 5, 42, 0, 0, 168, 182, 6, 11, -1, 0, 169, 170, 5, 41, 0, 0, 170, 182, 6, 11, -1, 0, 171, 172, 3, 24, 12, 0, 172, 173, 6, 11, -1, 0, 173, 182, 1, 0, 0, 0, 174, 175, 5, 44, 0, 0, 175, 182, 6, 11, -1, 0, 176, 177, 5, 45, 0, 0, 177, 182, 6, 11, -1, 0, 178, 179, 5, 31, 0, 0, 179, 180, 5, 32, 0, 0, 180, 182, 6, 11, -1, 0, 181, 167, 1, 0, 0, 0, 181, 169, 1, 0, 0, 0, 181, 171, 1, 0, 0, 0, 181, 174, 1, 0, 0, 0, 181, 176, 1, 0, 0, 0, 181, 178, 1, 0, 0, 0, 182, 23, 1, 0, 0, 0, 183, 185, 5, 40, 0, 0, 184, 183, 1, 0, 0, 0, 184, 185, 1, 0, 0, 0, 185, 186, 1, 0, 0, 0, 186, 187, 5, 43, 0, 0, 187, 25, 1, 0, 0, 0, 188, 189, 5, 34, 0, 0, 189, 190, 5, 46, 0, 0, 190, 192, 5, 29, 0, 0, 191, 193, 3, 28, 14, 0, 192, 191, 1, 0, 0, 0, 192, 193, 1, 0, 0, 0, 193, 194, 1, 0, 0, 0, 194, 195, 5, 30, 0, 0, 195, 196, 6, 13, -1, 0, 196, 27, 1, 0, 0, 0, 197, 198, 3, 30, 15, 0, 198, 205, 6, 14, -1, 0, 199, 200, 5, 35, 0, 0, 200, 201, 3, 30, 15, 0, 201, 202, 6, 14, -1, 0, 202, 204, 1, 0, 0, 0, 203, 199, 1, 0, 0, 0, 204, 207, 1, 0, 0, 0, 205, 203, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 29, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 208, 209, 5, 43, 0, 0, 209, 223, 6, 15, -1, 0, 210, 211, 5, 40, 0, 0, 211, 212, 5, 43, 0, 0, 212, 223, 6, 15, -1, 0, 213, 214, 5, 44, 0, 0, 214, 223, 6, 15, -1, 0, 215, 216, 5, 40, 0, 0, 216, 217, 5, 44, 0, 0, 217, 223, 6, 15, -1, 0, 218, 219, 5, 42, 0, 0, 219, 223, 6, 15, -1, 0, 220, 221, 5, 41, 0, 0, 221, 223, 6, 15, -1, 0, 222, 208, 1, 0, 0, 0, 222, 210, 1, 0, 0, 0, 222, 213, 1, 0, 0, 0, 222, 215, 1, 0, 0, 0, 222, 218, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 223, 31, 1, 0, 0, 0, 224, 225, 5, 1, 0, 0, 225, 226, 3, 34, 17, 0, 226, 233, 6, 16, -1, 0, 227, 228, 5, 1, 0, 0, 228, 229, 3, 34, 17, 0, 229, 230, 6, 16, -1, 0, 230, 232, 1, 0, 0, 0, 231, 227, 1, 0, 0, 0, 232, 235, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 238, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 236, 238, 1, 0, 0, 0, 237, 224, 1, 0, 0, 0, 237, 236, 1, 0, 0, 0, 238, 33, 1, 0, 0, 0, 239, 240, 5, 22, 0, 0, 240, 241, 5, 28, 0, 0, 241, 242, 3, 36, 18, 0, 242, 249, 6, 17, -1, 0, 243, 244, 5, 28, 0, 0, 244, 245, 3, 36, 18, 0, 245, 246, 6, 17, -1, 0, 246, 248, 1, 0, 0, 0, 247, 243, 1, 0, 0, 0, 248, 251, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 253, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 252, 254, 3, 44, 22, 0, 253, 252, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 256, 6, 17, -1, 0, 256, 334, 1, 0, 0, 0, 257, 258, 5, 21, 0, 0, 258, 265, 6, 17, -1, 0, 259, 260, 5, 28, 0, 0, 260, 261, 3, 36, 18, 0, 261, 262, 6, 17, -1, 0, 262, 264, 1, 0, 0, 0, 263, 259, 1, 0, 0, 0, 264, 267, 1, 0, 0, 0, 265, 263, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 268, 270, 3, 44, 22, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 334, 6, 17, -1, 0, 272, 273, 3, 36, 18, 0, 273, 275, 6, 17, -1, 0, 274, 276, 3, 44, 22, 0, 275, 274, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 277, 1, 0, 0, 0, 277, 278, 6, 17, -1, 0, 278, 334, 1, 0, 0, 0, 279, 280, 3, 36, 18, 0, 280, 282, 6, 17, -1, 0, 281, 283, 5, 28, 0, 0, 282, 281, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 3, 38, 19, 0, 285, 286, 6, 17, -1, 0, 286, 334, 1, 0, 0, 0, 287, 288, 3, 36, 18, 0, 288, 295, 6, 17, -1, 0, 289, 290, 5, 28, 0, 0, 290, 291, 3, 36, 18, 0, 291, 292, 6, 17, -1, 0, 292, 294, 1, 0, 0, 0, 293, 289, 1, 0, 0, 0, 294, 297, 1, 0, 0, 0, 295, 293, 1, 0, 0, 0, 295, 296, 1, 0, 0, 0, 296, 298, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 298, 299, 5, 28, 0, 0, 299, 300, 3, 36, 18, 0, 300, 302, 6, 17, -1, 0, 301, 303, 3, 44, 22, 0, 302, 301, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 6, 17, -1, 0, 305, 334, 1, 0, 0, 0, 306, 307, 3, 36, 18, 0, 307, 314, 6, 17, -1, 0, 308, 309, 5, 28, 0, 0, 309, 310, 3, 36, 18, 0, 310, 311, 6, 17, -1, 0, 311, 313, 1, 0, 0, 0, 312, 308, 1, 0, 0, 0, 313, 316, 1, 0, 0, 0, 314, 312, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 317, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 317, 318, 5, 28, 0, 0, 318, 319, 3, 36, 18, 0, 319, 321, 6, 17, -1, 0, 320, 322, 5, 28, 0, 0, 321, 320, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 324, 3, 38, 19, 0, 324, 326, 6, 17, -1, 0, 325, 327, 3, 44, 22, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 329, 6, 17, -1, 0, 329, 334, 1, 0, 0, 0, 330, 331, 3, 38, 19, 0, 331, 332, 6, 17, -1, 0, 332, 334, 1, 0, 0, 0, 333, 239, 1, 0, 0, 0, 333, 257, 1, 0, 0, 0, 333, 272, 1, 0, 0, 0, 333, 279, 1, 0, 0, 0, 333, 287, 1, 0, 0, 0, 333, 306, 1, 0, 0, 0, 333, 330, 1, 0, 0, 0, 334, 35, 1, 0, 0, 0, 335, 336, 5, 46, 0, 0, 336, 338, 5, 29, 0, 0, 337, 339, 3, 28, 14, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 341, 5, 30, 0, 0, 341, 342, 1, 0, 0, 0, 342, 346, 6, 18, -1, 0, 343, 344, 5, 46, 0, 0, 344, 346, 6, 18, -1, 0, 345, 335, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 346, 37, 1, 0, 0, 0, 347, 348, 5, 26, 0, 0, 348, 349, 3, 40, 20, 0, 349, 350, 6, 19, -1, 0, 350, 351, 5, 27, 0, 0, 351, 39, 1, 0, 0, 0, 352, 353, 3, 42, 21, 0, 353, 360, 6, 20, -1, 0, 354, 355, 5, 35, 0, 0, 355, 356, 3, 42, 21, 0, 356, 357, 6, 20, -1, 0, 357, 359, 1, 0, 0, 0, 358, 354, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 41, 1, 0, 0, 0, 362, 360, 1, 0, 0, 0, 363, 364, 5, 46, 0, 0, 364, 374, 6, 21, -1, 0, 365, 366, 5, 41, 0, 0, 366, 374, 6, 21, -1, 0, 367, 368, 5, 42, 0, 0, 368, 374, 6, 21, -1, 0, 369, 370, 5, 43, 0, 0, 370, 374, 6, 21, -1, 0, 371, 372, 5, 44, 0, 0, 372, 374, 6, 21, -1, 0, 373, 363, 1, 0, 0, 0, 373, 365, 1, 0, 0, 0, 373, 367, 1, 0, 0, 0, 373, 369, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 374, 43, 1, 0, 0, 0, 375, 376, 3, 48, 24, 0, 376, 377, 3, 46, 23, 0, 377, 378, 6, 22, -1, 0, 378, 45, 1, 0, 0, 0, 379, 383, 1, 0, 0, 0, 380, 383, 5, 43, 0, 0, 381, 383, 5, 44, 0, 0, 382, 379, 1, 0, 0, 0, 382, 380, 1, 0, 0, 0, 382, 381, 1, 0, 0, 0, 383, 47, 1, 0, 0, 0, 384, 385, 7, 2, 0, 0, 385, 49, 1, 0, 0, 0, 36, 51, 54, 59, 62, 65, 69, 79, 107, 118, 128, 143, 161, 181, 184, 192, 205, 222, 233, 237, 249, 253, 265, 269, 275, 282, 295, 302, 314, 321, 326, 333, 338, 345, 360, 373, 382] \ No newline at end of file +[4, 1, 50, 419, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 1, 0, 3, 0, 56, 8, 0, 1, 0, 3, 0, 59, 8, 0, 1, 0, 1, 0, 1, 0, 3, 0, 64, 8, 0, 1, 0, 3, 0, 67, 8, 0, 1, 0, 3, 0, 70, 8, 0, 1, 0, 1, 0, 3, 0, 74, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 84, 8, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 101, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 4, 3, 109, 8, 3, 11, 3, 12, 3, 110, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 4, 4, 119, 8, 4, 11, 4, 12, 4, 120, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 130, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 141, 8, 7, 10, 7, 12, 7, 144, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 152, 8, 8, 10, 8, 12, 8, 155, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 164, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 179, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 197, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 217, 8, 13, 1, 14, 3, 14, 220, 8, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 228, 8, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 239, 8, 16, 10, 16, 12, 16, 242, 9, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 258, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 267, 8, 18, 10, 18, 12, 18, 270, 9, 18, 1, 18, 3, 18, 273, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 283, 8, 19, 10, 19, 12, 19, 286, 9, 19, 1, 19, 3, 19, 289, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 299, 8, 19, 10, 19, 12, 19, 302, 9, 19, 1, 19, 3, 19, 305, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 311, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 318, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 329, 8, 19, 10, 19, 12, 19, 332, 9, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 338, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 348, 8, 19, 10, 19, 12, 19, 351, 9, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 357, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 362, 8, 19, 1, 19, 1, 19, 3, 19, 366, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 371, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 378, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 391, 8, 22, 10, 22, 12, 22, 394, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 406, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 415, 8, 25, 1, 26, 1, 26, 1, 26, 0, 0, 27, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 0, 3, 1, 0, 8, 9, 1, 0, 10, 19, 2, 0, 35, 37, 39, 39, 454, 0, 55, 1, 0, 0, 0, 2, 77, 1, 0, 0, 0, 4, 100, 1, 0, 0, 0, 6, 102, 1, 0, 0, 0, 8, 112, 1, 0, 0, 0, 10, 129, 1, 0, 0, 0, 12, 131, 1, 0, 0, 0, 14, 134, 1, 0, 0, 0, 16, 145, 1, 0, 0, 0, 18, 163, 1, 0, 0, 0, 20, 178, 1, 0, 0, 0, 22, 196, 1, 0, 0, 0, 24, 198, 1, 0, 0, 0, 26, 216, 1, 0, 0, 0, 28, 219, 1, 0, 0, 0, 30, 223, 1, 0, 0, 0, 32, 232, 1, 0, 0, 0, 34, 257, 1, 0, 0, 0, 36, 272, 1, 0, 0, 0, 38, 365, 1, 0, 0, 0, 40, 377, 1, 0, 0, 0, 42, 379, 1, 0, 0, 0, 44, 384, 1, 0, 0, 0, 46, 405, 1, 0, 0, 0, 48, 407, 1, 0, 0, 0, 50, 414, 1, 0, 0, 0, 52, 416, 1, 0, 0, 0, 54, 56, 5, 22, 0, 0, 55, 54, 1, 0, 0, 0, 55, 56, 1, 0, 0, 0, 56, 58, 1, 0, 0, 0, 57, 59, 5, 46, 0, 0, 58, 57, 1, 0, 0, 0, 58, 59, 1, 0, 0, 0, 59, 63, 1, 0, 0, 0, 60, 64, 3, 2, 1, 0, 61, 64, 3, 4, 2, 0, 62, 64, 3, 10, 5, 0, 63, 60, 1, 0, 0, 0, 63, 61, 1, 0, 0, 0, 63, 62, 1, 0, 0, 0, 64, 66, 1, 0, 0, 0, 65, 67, 3, 24, 12, 0, 66, 65, 1, 0, 0, 0, 66, 67, 1, 0, 0, 0, 67, 69, 1, 0, 0, 0, 68, 70, 3, 30, 15, 0, 69, 68, 1, 0, 0, 0, 69, 70, 1, 0, 0, 0, 70, 73, 1, 0, 0, 0, 71, 72, 5, 2, 0, 0, 72, 74, 3, 12, 6, 0, 73, 71, 1, 0, 0, 0, 73, 74, 1, 0, 0, 0, 74, 75, 1, 0, 0, 0, 75, 76, 6, 0, -1, 0, 76, 1, 1, 0, 0, 0, 77, 78, 5, 2, 0, 0, 78, 79, 3, 12, 6, 0, 79, 80, 5, 3, 0, 0, 80, 83, 3, 38, 19, 0, 81, 82, 5, 4, 0, 0, 82, 84, 3, 38, 19, 0, 83, 81, 1, 0, 0, 0, 83, 84, 1, 0, 0, 0, 84, 85, 1, 0, 0, 0, 85, 86, 5, 5, 0, 0, 86, 87, 6, 1, -1, 0, 87, 3, 1, 0, 0, 0, 88, 89, 3, 38, 19, 0, 89, 90, 5, 25, 0, 0, 90, 91, 3, 6, 3, 0, 91, 92, 5, 26, 0, 0, 92, 93, 6, 2, -1, 0, 93, 101, 1, 0, 0, 0, 94, 95, 3, 38, 19, 0, 95, 96, 5, 25, 0, 0, 96, 97, 3, 10, 5, 0, 97, 98, 5, 26, 0, 0, 98, 99, 6, 2, -1, 0, 99, 101, 1, 0, 0, 0, 100, 88, 1, 0, 0, 0, 100, 94, 1, 0, 0, 0, 101, 5, 1, 0, 0, 0, 102, 103, 3, 46, 23, 0, 103, 108, 6, 3, -1, 0, 104, 105, 5, 38, 0, 0, 105, 106, 3, 46, 23, 0, 106, 107, 6, 3, -1, 0, 107, 109, 1, 0, 0, 0, 108, 104, 1, 0, 0, 0, 109, 110, 1, 0, 0, 0, 110, 108, 1, 0, 0, 0, 110, 111, 1, 0, 0, 0, 111, 7, 1, 0, 0, 0, 112, 113, 3, 46, 23, 0, 113, 118, 6, 4, -1, 0, 114, 115, 5, 38, 0, 0, 115, 116, 3, 46, 23, 0, 116, 117, 6, 4, -1, 0, 117, 119, 1, 0, 0, 0, 118, 114, 1, 0, 0, 0, 119, 120, 1, 0, 0, 0, 120, 118, 1, 0, 0, 0, 120, 121, 1, 0, 0, 0, 121, 9, 1, 0, 0, 0, 122, 123, 3, 8, 4, 0, 123, 124, 6, 5, -1, 0, 124, 130, 1, 0, 0, 0, 125, 126, 3, 38, 19, 0, 126, 127, 3, 36, 18, 0, 127, 128, 6, 5, -1, 0, 128, 130, 1, 0, 0, 0, 129, 122, 1, 0, 0, 0, 129, 125, 1, 0, 0, 0, 130, 11, 1, 0, 0, 0, 131, 132, 3, 14, 7, 0, 132, 133, 6, 6, -1, 0, 133, 13, 1, 0, 0, 0, 134, 135, 3, 16, 8, 0, 135, 142, 6, 7, -1, 0, 136, 137, 5, 7, 0, 0, 137, 138, 3, 16, 8, 0, 138, 139, 6, 7, -1, 0, 139, 141, 1, 0, 0, 0, 140, 136, 1, 0, 0, 0, 141, 144, 1, 0, 0, 0, 142, 140, 1, 0, 0, 0, 142, 143, 1, 0, 0, 0, 143, 15, 1, 0, 0, 0, 144, 142, 1, 0, 0, 0, 145, 146, 3, 18, 9, 0, 146, 153, 6, 8, -1, 0, 147, 148, 5, 6, 0, 0, 148, 149, 3, 18, 9, 0, 149, 150, 6, 8, -1, 0, 150, 152, 1, 0, 0, 0, 151, 147, 1, 0, 0, 0, 152, 155, 1, 0, 0, 0, 153, 151, 1, 0, 0, 0, 153, 154, 1, 0, 0, 0, 154, 17, 1, 0, 0, 0, 155, 153, 1, 0, 0, 0, 156, 157, 7, 0, 0, 0, 157, 158, 3, 18, 9, 0, 158, 159, 6, 9, -1, 0, 159, 164, 1, 0, 0, 0, 160, 161, 3, 20, 10, 0, 161, 162, 6, 9, -1, 0, 162, 164, 1, 0, 0, 0, 163, 156, 1, 0, 0, 0, 163, 160, 1, 0, 0, 0, 164, 19, 1, 0, 0, 0, 165, 166, 5, 28, 0, 0, 166, 167, 3, 12, 6, 0, 167, 168, 5, 29, 0, 0, 168, 169, 6, 10, -1, 0, 169, 179, 1, 0, 0, 0, 170, 171, 3, 38, 19, 0, 171, 172, 7, 1, 0, 0, 172, 173, 3, 22, 11, 0, 173, 174, 6, 10, -1, 0, 174, 179, 1, 0, 0, 0, 175, 176, 3, 38, 19, 0, 176, 177, 6, 10, -1, 0, 177, 179, 1, 0, 0, 0, 178, 165, 1, 0, 0, 0, 178, 170, 1, 0, 0, 0, 178, 175, 1, 0, 0, 0, 179, 21, 1, 0, 0, 0, 180, 181, 5, 41, 0, 0, 181, 197, 6, 11, -1, 0, 182, 183, 5, 40, 0, 0, 183, 197, 6, 11, -1, 0, 184, 185, 5, 42, 0, 0, 185, 197, 6, 11, -1, 0, 186, 187, 5, 39, 0, 0, 187, 188, 5, 42, 0, 0, 188, 197, 6, 11, -1, 0, 189, 190, 5, 43, 0, 0, 190, 197, 6, 11, -1, 0, 191, 192, 5, 39, 0, 0, 192, 193, 5, 43, 0, 0, 193, 197, 6, 11, -1, 0, 194, 195, 5, 44, 0, 0, 195, 197, 6, 11, -1, 0, 196, 180, 1, 0, 0, 0, 196, 182, 1, 0, 0, 0, 196, 184, 1, 0, 0, 0, 196, 186, 1, 0, 0, 0, 196, 189, 1, 0, 0, 0, 196, 191, 1, 0, 0, 0, 196, 194, 1, 0, 0, 0, 197, 23, 1, 0, 0, 0, 198, 199, 5, 32, 0, 0, 199, 200, 3, 26, 13, 0, 200, 201, 6, 12, -1, 0, 201, 25, 1, 0, 0, 0, 202, 203, 5, 41, 0, 0, 203, 217, 6, 13, -1, 0, 204, 205, 5, 40, 0, 0, 205, 217, 6, 13, -1, 0, 206, 207, 3, 28, 14, 0, 207, 208, 6, 13, -1, 0, 208, 217, 1, 0, 0, 0, 209, 210, 5, 43, 0, 0, 210, 217, 6, 13, -1, 0, 211, 212, 5, 44, 0, 0, 212, 217, 6, 13, -1, 0, 213, 214, 5, 30, 0, 0, 214, 215, 5, 31, 0, 0, 215, 217, 6, 13, -1, 0, 216, 202, 1, 0, 0, 0, 216, 204, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 217, 27, 1, 0, 0, 0, 218, 220, 5, 39, 0, 0, 219, 218, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 222, 5, 42, 0, 0, 222, 29, 1, 0, 0, 0, 223, 224, 5, 33, 0, 0, 224, 225, 5, 45, 0, 0, 225, 227, 5, 28, 0, 0, 226, 228, 3, 32, 16, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 5, 29, 0, 0, 230, 231, 6, 15, -1, 0, 231, 31, 1, 0, 0, 0, 232, 233, 3, 34, 17, 0, 233, 240, 6, 16, -1, 0, 234, 235, 5, 34, 0, 0, 235, 236, 3, 34, 17, 0, 236, 237, 6, 16, -1, 0, 237, 239, 1, 0, 0, 0, 238, 234, 1, 0, 0, 0, 239, 242, 1, 0, 0, 0, 240, 238, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 33, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 243, 244, 5, 42, 0, 0, 244, 258, 6, 17, -1, 0, 245, 246, 5, 39, 0, 0, 246, 247, 5, 42, 0, 0, 247, 258, 6, 17, -1, 0, 248, 249, 5, 43, 0, 0, 249, 258, 6, 17, -1, 0, 250, 251, 5, 39, 0, 0, 251, 252, 5, 43, 0, 0, 252, 258, 6, 17, -1, 0, 253, 254, 5, 41, 0, 0, 254, 258, 6, 17, -1, 0, 255, 256, 5, 40, 0, 0, 256, 258, 6, 17, -1, 0, 257, 243, 1, 0, 0, 0, 257, 245, 1, 0, 0, 0, 257, 248, 1, 0, 0, 0, 257, 250, 1, 0, 0, 0, 257, 253, 1, 0, 0, 0, 257, 255, 1, 0, 0, 0, 258, 35, 1, 0, 0, 0, 259, 260, 5, 1, 0, 0, 260, 261, 3, 38, 19, 0, 261, 268, 6, 18, -1, 0, 262, 263, 5, 1, 0, 0, 263, 264, 3, 38, 19, 0, 264, 265, 6, 18, -1, 0, 265, 267, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 267, 270, 1, 0, 0, 0, 268, 266, 1, 0, 0, 0, 268, 269, 1, 0, 0, 0, 269, 273, 1, 0, 0, 0, 270, 268, 1, 0, 0, 0, 271, 273, 1, 0, 0, 0, 272, 259, 1, 0, 0, 0, 272, 271, 1, 0, 0, 0, 273, 37, 1, 0, 0, 0, 274, 275, 5, 21, 0, 0, 275, 276, 5, 27, 0, 0, 276, 277, 3, 40, 20, 0, 277, 284, 6, 19, -1, 0, 278, 279, 5, 27, 0, 0, 279, 280, 3, 40, 20, 0, 280, 281, 6, 19, -1, 0, 281, 283, 1, 0, 0, 0, 282, 278, 1, 0, 0, 0, 283, 286, 1, 0, 0, 0, 284, 282, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 288, 1, 0, 0, 0, 286, 284, 1, 0, 0, 0, 287, 289, 3, 48, 24, 0, 288, 287, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 6, 19, -1, 0, 291, 366, 1, 0, 0, 0, 292, 293, 5, 20, 0, 0, 293, 300, 6, 19, -1, 0, 294, 295, 5, 27, 0, 0, 295, 296, 3, 40, 20, 0, 296, 297, 6, 19, -1, 0, 297, 299, 1, 0, 0, 0, 298, 294, 1, 0, 0, 0, 299, 302, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 304, 1, 0, 0, 0, 302, 300, 1, 0, 0, 0, 303, 305, 3, 48, 24, 0, 304, 303, 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 366, 6, 19, -1, 0, 307, 308, 3, 40, 20, 0, 308, 310, 6, 19, -1, 0, 309, 311, 3, 48, 24, 0, 310, 309, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 313, 6, 19, -1, 0, 313, 366, 1, 0, 0, 0, 314, 315, 3, 40, 20, 0, 315, 317, 6, 19, -1, 0, 316, 318, 5, 27, 0, 0, 317, 316, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 320, 3, 42, 21, 0, 320, 321, 6, 19, -1, 0, 321, 366, 1, 0, 0, 0, 322, 323, 3, 40, 20, 0, 323, 330, 6, 19, -1, 0, 324, 325, 5, 27, 0, 0, 325, 326, 3, 40, 20, 0, 326, 327, 6, 19, -1, 0, 327, 329, 1, 0, 0, 0, 328, 324, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 333, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 334, 5, 27, 0, 0, 334, 335, 3, 40, 20, 0, 335, 337, 6, 19, -1, 0, 336, 338, 3, 48, 24, 0, 337, 336, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 340, 6, 19, -1, 0, 340, 366, 1, 0, 0, 0, 341, 342, 3, 40, 20, 0, 342, 349, 6, 19, -1, 0, 343, 344, 5, 27, 0, 0, 344, 345, 3, 40, 20, 0, 345, 346, 6, 19, -1, 0, 346, 348, 1, 0, 0, 0, 347, 343, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 352, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 353, 5, 27, 0, 0, 353, 354, 3, 40, 20, 0, 354, 356, 6, 19, -1, 0, 355, 357, 5, 27, 0, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 358, 1, 0, 0, 0, 358, 359, 3, 42, 21, 0, 359, 361, 6, 19, -1, 0, 360, 362, 3, 48, 24, 0, 361, 360, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 364, 6, 19, -1, 0, 364, 366, 1, 0, 0, 0, 365, 274, 1, 0, 0, 0, 365, 292, 1, 0, 0, 0, 365, 307, 1, 0, 0, 0, 365, 314, 1, 0, 0, 0, 365, 322, 1, 0, 0, 0, 365, 341, 1, 0, 0, 0, 366, 39, 1, 0, 0, 0, 367, 368, 5, 45, 0, 0, 368, 370, 5, 28, 0, 0, 369, 371, 3, 32, 16, 0, 370, 369, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 373, 5, 29, 0, 0, 373, 374, 1, 0, 0, 0, 374, 378, 6, 20, -1, 0, 375, 376, 5, 45, 0, 0, 376, 378, 6, 20, -1, 0, 377, 367, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 378, 41, 1, 0, 0, 0, 379, 380, 5, 25, 0, 0, 380, 381, 3, 44, 22, 0, 381, 382, 6, 21, -1, 0, 382, 383, 5, 26, 0, 0, 383, 43, 1, 0, 0, 0, 384, 385, 3, 46, 23, 0, 385, 392, 6, 22, -1, 0, 386, 387, 5, 38, 0, 0, 387, 388, 3, 46, 23, 0, 388, 389, 6, 22, -1, 0, 389, 391, 1, 0, 0, 0, 390, 386, 1, 0, 0, 0, 391, 394, 1, 0, 0, 0, 392, 390, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 45, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 395, 396, 5, 45, 0, 0, 396, 406, 6, 23, -1, 0, 397, 398, 5, 40, 0, 0, 398, 406, 6, 23, -1, 0, 399, 400, 5, 41, 0, 0, 400, 406, 6, 23, -1, 0, 401, 402, 5, 42, 0, 0, 402, 406, 6, 23, -1, 0, 403, 404, 5, 43, 0, 0, 404, 406, 6, 23, -1, 0, 405, 395, 1, 0, 0, 0, 405, 397, 1, 0, 0, 0, 405, 399, 1, 0, 0, 0, 405, 401, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 47, 1, 0, 0, 0, 407, 408, 3, 52, 26, 0, 408, 409, 3, 50, 25, 0, 409, 410, 6, 24, -1, 0, 410, 49, 1, 0, 0, 0, 411, 415, 1, 0, 0, 0, 412, 415, 5, 42, 0, 0, 413, 415, 5, 43, 0, 0, 414, 411, 1, 0, 0, 0, 414, 412, 1, 0, 0, 0, 414, 413, 1, 0, 0, 0, 415, 51, 1, 0, 0, 0, 416, 417, 7, 2, 0, 0, 417, 53, 1, 0, 0, 0, 40, 55, 58, 63, 66, 69, 73, 83, 100, 110, 120, 129, 142, 153, 163, 178, 196, 216, 219, 227, 240, 257, 268, 272, 284, 288, 300, 304, 310, 317, 330, 337, 349, 356, 361, 365, 370, 377, 392, 405, 414] \ No newline at end of file diff --git a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.java b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.java index 05212116a6..770a92deb1 100644 --- a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.java +++ b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.java @@ -39,48 +39,49 @@ public class TemplateGrammarExpression extends TemplateGrammarAdaptor { protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache(); public static final int - DEFAULT=1, IF=2, THEN=3, ELSE=4, END=5, WITH=6, AND=7, OR=8, NOT=9, BANG=10, - EQ_KW=11, NE_KW=12, EQI_KW=13, CONTAINS_KW=14, EQEQ=15, NEQ=16, GE_OP=17, - LE_OP=18, GT_OP=19, LT_OP=20, VAR_ID=21, ROOT=22, BLOCK_COMMENT=23, HORZ_WS=24, - VERT_WS=25, LBRACE=26, RBRACE=27, DOT=28, LPAREN=29, RPAREN=30, LBRACK=31, - RBRACK=32, DQUESTION=33, SEMI=34, COMMA=35, STAR=36, SLASH=37, PERCENT=38, - PLUS=39, MINUS=40, DSTRING=41, SSTRING=42, DECDIGITS=43, FLOAT=44, BOOLEAN=45, - ID=46, CAST_TYPE=47, ERR_CHAR=48, C_HORZ_WS=49, C_VERT_WS=50, CERR_CHAR=51; + DEFAULT=1, IF=2, THEN=3, ELSE=4, END=5, AND=6, OR=7, NOT=8, BANG=9, EQ_KW=10, + NE_KW=11, EQI_KW=12, CONTAINS_KW=13, EQEQ=14, NEQ=15, GE_OP=16, LE_OP=17, + GT_OP=18, LT_OP=19, VAR_ID=20, ROOT=21, BLOCK_COMMENT=22, HORZ_WS=23, + VERT_WS=24, LBRACE=25, RBRACE=26, DOT=27, LPAREN=28, RPAREN=29, LBRACK=30, + RBRACK=31, DQUESTION=32, SEMI=33, COMMA=34, STAR=35, SLASH=36, PERCENT=37, + PLUS=38, MINUS=39, DSTRING=40, SSTRING=41, DECDIGITS=42, FLOAT=43, BOOLEAN=44, + ID=45, CAST_TYPE=46, ERR_CHAR=47, C_HORZ_WS=48, C_VERT_WS=49, CERR_CHAR=50; public static final int - RULE_expression = 0, RULE_ifCode = 1, RULE_withCode = 2, RULE_exprsCode = 3, - RULE_ifCondition = 4, RULE_conditionOr = 5, RULE_conditionAnd = 6, RULE_conditionNot = 7, - RULE_conditionAtom = 8, RULE_compareRhs = 9, RULE_defaultValue = 10, RULE_defaultValueType = 11, - RULE_longRule = 12, RULE_function = 13, RULE_functionArgs = 14, RULE_functionArg = 15, - RULE_orExprs = 16, RULE_exprs = 17, RULE_expr = 18, RULE_concatenation = 19, - RULE_citems = 20, RULE_citem = 21, RULE_math = 22, RULE_number = 23, RULE_mathOperation = 24; + RULE_expression = 0, RULE_ifCode = 1, RULE_withCode = 2, RULE_concatBody = 3, + RULE_topLevelConcat = 4, RULE_exprsCode = 5, RULE_ifCondition = 6, RULE_conditionOr = 7, + RULE_conditionAnd = 8, RULE_conditionNot = 9, RULE_conditionAtom = 10, + RULE_compareRhs = 11, RULE_defaultValue = 12, RULE_defaultValueType = 13, + RULE_longRule = 14, RULE_function = 15, RULE_functionArgs = 16, RULE_functionArg = 17, + RULE_orExprs = 18, RULE_exprs = 19, RULE_expr = 20, RULE_concatenation = 21, + RULE_citems = 22, RULE_citem = 23, RULE_math = 24, RULE_number = 25, RULE_mathOperation = 26; private static String[] makeRuleNames() { return new String[] { - "expression", "ifCode", "withCode", "exprsCode", "ifCondition", "conditionOr", - "conditionAnd", "conditionNot", "conditionAtom", "compareRhs", "defaultValue", - "defaultValueType", "longRule", "function", "functionArgs", "functionArg", - "orExprs", "exprs", "expr", "concatenation", "citems", "citem", "math", - "number", "mathOperation" + "expression", "ifCode", "withCode", "concatBody", "topLevelConcat", "exprsCode", + "ifCondition", "conditionOr", "conditionAnd", "conditionNot", "conditionAtom", + "compareRhs", "defaultValue", "defaultValueType", "longRule", "function", + "functionArgs", "functionArg", "orExprs", "exprs", "expr", "concatenation", + "citems", "citem", "math", "number", "mathOperation" }; } public static final String[] ruleNames = makeRuleNames(); private static String[] makeLiteralNames() { return new String[] { - null, null, "'if'", "'then'", "'else'", "'end'", "'with'", "'and'", "'or'", - "'not'", "'!'", "'eq'", "'ne'", "'eqi'", "'contains'", "'=='", "'!='", - "'>='", "'<='", "'>'", "'<'", null, "'$'" + null, null, "'if'", "'then'", "'else'", "'end'", "'and'", "'or'", "'not'", + "'!'", "'eq'", "'ne'", "'eqi'", "'contains'", "'=='", "'!='", "'>='", + "'<='", "'>'", "'<'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { - null, "DEFAULT", "IF", "THEN", "ELSE", "END", "WITH", "AND", "OR", "NOT", - "BANG", "EQ_KW", "NE_KW", "EQI_KW", "CONTAINS_KW", "EQEQ", "NEQ", "GE_OP", - "LE_OP", "GT_OP", "LT_OP", "VAR_ID", "ROOT", "BLOCK_COMMENT", "HORZ_WS", - "VERT_WS", "LBRACE", "RBRACE", "DOT", "LPAREN", "RPAREN", "LBRACK", "RBRACK", - "DQUESTION", "SEMI", "COMMA", "STAR", "SLASH", "PERCENT", "PLUS", "MINUS", - "DSTRING", "SSTRING", "DECDIGITS", "FLOAT", "BOOLEAN", "ID", "CAST_TYPE", - "ERR_CHAR", "C_HORZ_WS", "C_VERT_WS", "CERR_CHAR" + null, "DEFAULT", "IF", "THEN", "ELSE", "END", "AND", "OR", "NOT", "BANG", + "EQ_KW", "NE_KW", "EQI_KW", "CONTAINS_KW", "EQEQ", "NEQ", "GE_OP", "LE_OP", + "GT_OP", "LT_OP", "VAR_ID", "ROOT", "BLOCK_COMMENT", "HORZ_WS", "VERT_WS", + "LBRACE", "RBRACE", "DOT", "LPAREN", "RPAREN", "LBRACK", "RBRACK", "DQUESTION", + "SEMI", "COMMA", "STAR", "SLASH", "PERCENT", "PLUS", "MINUS", "DSTRING", + "SSTRING", "DECDIGITS", "FLOAT", "BOOLEAN", "ID", "CAST_TYPE", "ERR_CHAR", + "C_HORZ_WS", "C_VERT_WS", "CERR_CHAR" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -195,81 +196,76 @@ public final ExpressionContext expression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(51); + setState(55); _errHandler.sync(this); _la = _input.LA(1); if (_la==BLOCK_COMMENT) { { - setState(50); + setState(54); ((ExpressionContext)_localctx).BLOCK_COMMENT = match(BLOCK_COMMENT); } } - setState(54); + setState(58); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_TYPE) { { - setState(53); + setState(57); ((ExpressionContext)_localctx).CAST_TYPE = match(CAST_TYPE); } } - setState(59); + setState(63); _errHandler.sync(this); - switch (_input.LA(1)) { - case IF: + switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { + case 1: { - setState(56); + setState(60); ((ExpressionContext)_localctx).ifCode = ifCode(); } break; - case WITH: + case 2: { - setState(57); + setState(61); ((ExpressionContext)_localctx).withCode = withCode(); } break; - case VAR_ID: - case ROOT: - case LBRACE: - case ID: + case 3: { - setState(58); + setState(62); ((ExpressionContext)_localctx).exprsCode = exprsCode(); } break; - default: - throw new NoViableAltException(this); } - setState(62); + setState(66); _errHandler.sync(this); _la = _input.LA(1); if (_la==DQUESTION) { { - setState(61); + setState(65); ((ExpressionContext)_localctx).defaultValue = defaultValue(); } } - setState(65); + setState(69); _errHandler.sync(this); _la = _input.LA(1); if (_la==SEMI) { { - setState(64); + setState(68); ((ExpressionContext)_localctx).function = function(); } } - setState(69); + setState(73); _errHandler.sync(this); _la = _input.LA(1); if (_la==IF) { { - setState(67); + setState(71); match(IF); - setState(68); + setState(72); ifCondition(); } } @@ -337,27 +333,27 @@ public final IfCodeContext ifCode() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(73); + setState(77); match(IF); - setState(74); + setState(78); ((IfCodeContext)_localctx).ifCondition = ifCondition(); - setState(75); + setState(79); match(THEN); - setState(76); + setState(80); ((IfCodeContext)_localctx).thenCode = exprs(); - setState(79); + setState(83); _errHandler.sync(this); _la = _input.LA(1); if (_la==ELSE) { { - setState(77); + setState(81); match(ELSE); - setState(78); + setState(82); ((IfCodeContext)_localctx).elseCode = exprs(); } } - setState(81); + setState(85); match(END); ((IfCodeContext)_localctx).ret = new IfCondition( ((IfCodeContext)_localctx).ifCondition.ret, ((IfCodeContext)_localctx).thenCode.ret, ((IfCodeContext)_localctx).elseCode != null ? ((IfCodeContext)_localctx).elseCode.ret : null ); @@ -379,14 +375,16 @@ public final IfCodeContext ifCode() throws RecognitionException { public static class WithCodeContext extends ParserRuleContext { public WithCondition ret; public ExprsContext scopePath; + public ConcatBodyContext concatItems; public ExprsCodeContext bodyExprs; - public TerminalNode WITH() { return getToken(TemplateGrammarExpression.WITH, 0); } - public TerminalNode LPAREN() { return getToken(TemplateGrammarExpression.LPAREN, 0); } - public TerminalNode RPAREN() { return getToken(TemplateGrammarExpression.RPAREN, 0); } - public TerminalNode END() { return getToken(TemplateGrammarExpression.END, 0); } + public TerminalNode LBRACE() { return getToken(TemplateGrammarExpression.LBRACE, 0); } + public TerminalNode RBRACE() { return getToken(TemplateGrammarExpression.RBRACE, 0); } public ExprsContext exprs() { return getRuleContext(ExprsContext.class,0); } + public ConcatBodyContext concatBody() { + return getRuleContext(ConcatBodyContext.class,0); + } public ExprsCodeContext exprsCode() { return getRuleContext(ExprsCodeContext.class,0); } @@ -407,24 +405,188 @@ public void exitRule(ParseTreeListener listener) { public final WithCodeContext withCode() throws RecognitionException { WithCodeContext _localctx = new WithCodeContext(_ctx, getState()); enterRule(_localctx, 4, RULE_withCode); + try { + setState(100); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(88); + ((WithCodeContext)_localctx).scopePath = exprs(); + setState(89); + match(LBRACE); + setState(90); + ((WithCodeContext)_localctx).concatItems = concatBody(); + setState(91); + match(RBRACE); + + Exprs bodyExprs = new Exprs(); + bodyExprs.concatenation = new Concatenation( ((WithCodeContext)_localctx).concatItems.ret ); + ArrayList body = new ArrayList<>(); + body.add( bodyExprs ); + ((WithCodeContext)_localctx).ret = new WithCondition( ((WithCodeContext)_localctx).scopePath.ret, body ); + + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(94); + ((WithCodeContext)_localctx).scopePath = exprs(); + setState(95); + match(LBRACE); + setState(96); + ((WithCodeContext)_localctx).bodyExprs = exprsCode(); + setState(97); + match(RBRACE); + + ((WithCodeContext)_localctx).ret = new WithCondition( ((WithCodeContext)_localctx).scopePath.ret, ((WithCodeContext)_localctx).bodyExprs.ret ); + + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class ConcatBodyContext extends ParserRuleContext { + public ArrayList ret = new ArrayList<>(); + public CitemContext citem; + public List citem() { + return getRuleContexts(CitemContext.class); + } + public CitemContext citem(int i) { + return getRuleContext(CitemContext.class,i); + } + public List PLUS() { return getTokens(TemplateGrammarExpression.PLUS); } + public TerminalNode PLUS(int i) { + return getToken(TemplateGrammarExpression.PLUS, i); + } + public ConcatBodyContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_concatBody; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof TemplateGrammarExpressionListener ) ((TemplateGrammarExpressionListener)listener).enterConcatBody(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof TemplateGrammarExpressionListener ) ((TemplateGrammarExpressionListener)listener).exitConcatBody(this); + } + } + + public final ConcatBodyContext concatBody() throws RecognitionException { + ConcatBodyContext _localctx = new ConcatBodyContext(_ctx, getState()); + enterRule(_localctx, 6, RULE_concatBody); + int _la; try { enterOuterAlt(_localctx, 1); { - setState(84); - match(WITH); - setState(85); - match(LPAREN); - setState(86); - ((WithCodeContext)_localctx).scopePath = exprs(); - setState(87); - match(RPAREN); - setState(88); - ((WithCodeContext)_localctx).bodyExprs = exprsCode(); - setState(89); - match(END); + setState(102); + ((ConcatBodyContext)_localctx).citem = citem(); + _localctx.ret.add( ((ConcatBodyContext)_localctx).citem.ret ); + setState(108); + _errHandler.sync(this); + _la = _input.LA(1); + do { + { + { + setState(104); + match(PLUS); + setState(105); + ((ConcatBodyContext)_localctx).citem = citem(); + _localctx.ret.add( ((ConcatBodyContext)_localctx).citem.ret ); + } + } + setState(110); + _errHandler.sync(this); + _la = _input.LA(1); + } while ( _la==PLUS ); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class TopLevelConcatContext extends ParserRuleContext { + public Exprs ret = new Exprs(); + public CitemContext first; + public CitemContext next; + public List citem() { + return getRuleContexts(CitemContext.class); + } + public CitemContext citem(int i) { + return getRuleContext(CitemContext.class,i); + } + public List PLUS() { return getTokens(TemplateGrammarExpression.PLUS); } + public TerminalNode PLUS(int i) { + return getToken(TemplateGrammarExpression.PLUS, i); + } + public TopLevelConcatContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_topLevelConcat; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof TemplateGrammarExpressionListener ) ((TemplateGrammarExpressionListener)listener).enterTopLevelConcat(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof TemplateGrammarExpressionListener ) ((TemplateGrammarExpressionListener)listener).exitTopLevelConcat(this); + } + } + + public final TopLevelConcatContext topLevelConcat() throws RecognitionException { + TopLevelConcatContext _localctx = new TopLevelConcatContext(_ctx, getState()); + enterRule(_localctx, 8, RULE_topLevelConcat); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(112); + ((TopLevelConcatContext)_localctx).first = citem(); - ((WithCodeContext)_localctx).ret = new WithCondition( ((WithCodeContext)_localctx).scopePath.ret, ((WithCodeContext)_localctx).bodyExprs.ret ); + _localctx.ret.concatenation = new Concatenation( new ArrayList<>() ); + _localctx.ret.concatenation.items.add( ((TopLevelConcatContext)_localctx).first.ret ); + setState(118); + _errHandler.sync(this); + _la = _input.LA(1); + do { + { + { + setState(114); + match(PLUS); + setState(115); + ((TopLevelConcatContext)_localctx).next = citem(); + + _localctx.ret.concatenation.items.add( ((TopLevelConcatContext)_localctx).next.ret ); + + } + } + setState(120); + _errHandler.sync(this); + _la = _input.LA(1); + } while ( _la==PLUS ); } } catch (RecognitionException re) { @@ -441,8 +603,12 @@ public final WithCodeContext withCode() throws RecognitionException { @SuppressWarnings("CheckReturnValue") public static class ExprsCodeContext extends ParserRuleContext { public ArrayList ret = new ArrayList<>(); + public TopLevelConcatContext topLevelConcat; public ExprsContext exprs; public OrExprsContext orExprs; + public TopLevelConcatContext topLevelConcat() { + return getRuleContext(TopLevelConcatContext.class,0); + } public ExprsContext exprs() { return getRuleContext(ExprsContext.class,0); } @@ -465,18 +631,34 @@ public void exitRule(ParseTreeListener listener) { public final ExprsCodeContext exprsCode() throws RecognitionException { ExprsCodeContext _localctx = new ExprsCodeContext(_ctx, getState()); - enterRule(_localctx, 6, RULE_exprsCode); + enterRule(_localctx, 10, RULE_exprsCode); try { - enterOuterAlt(_localctx, 1); - { - setState(92); - ((ExprsCodeContext)_localctx).exprs = exprs(); - setState(93); - ((ExprsCodeContext)_localctx).orExprs = orExprs(); + setState(129); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(122); + ((ExprsCodeContext)_localctx).topLevelConcat = topLevelConcat(); - _localctx.ret.add( ((ExprsCodeContext)_localctx).exprs.ret ); - _localctx.ret.addAll( ((ExprsCodeContext)_localctx).orExprs.ret ); - + _localctx.ret.add( ((ExprsCodeContext)_localctx).topLevelConcat.ret ); + + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(125); + ((ExprsCodeContext)_localctx).exprs = exprs(); + setState(126); + ((ExprsCodeContext)_localctx).orExprs = orExprs(); + + _localctx.ret.add( ((ExprsCodeContext)_localctx).exprs.ret ); + _localctx.ret.addAll( ((ExprsCodeContext)_localctx).orExprs.ret ); + + } + break; } } catch (RecognitionException re) { @@ -513,11 +695,11 @@ public void exitRule(ParseTreeListener listener) { public final IfConditionContext ifCondition() throws RecognitionException { IfConditionContext _localctx = new IfConditionContext(_ctx, getState()); - enterRule(_localctx, 8, RULE_ifCondition); + enterRule(_localctx, 12, RULE_ifCondition); try { enterOuterAlt(_localctx, 1); { - setState(96); + setState(131); ((IfConditionContext)_localctx).conditionOr = conditionOr(); ((IfConditionContext)_localctx).ret = ((IfConditionContext)_localctx).conditionOr.ret; } @@ -564,28 +746,28 @@ public void exitRule(ParseTreeListener listener) { public final ConditionOrContext conditionOr() throws RecognitionException { ConditionOrContext _localctx = new ConditionOrContext(_ctx, getState()); - enterRule(_localctx, 10, RULE_conditionOr); + enterRule(_localctx, 14, RULE_conditionOr); int _la; try { enterOuterAlt(_localctx, 1); { - setState(99); + setState(134); ((ConditionOrContext)_localctx).left = conditionAnd(); ((ConditionOrContext)_localctx).ret = ((ConditionOrContext)_localctx).left.ret; - setState(107); + setState(142); _errHandler.sync(this); _la = _input.LA(1); while (_la==OR) { { { - setState(101); + setState(136); match(OR); - setState(102); + setState(137); ((ConditionOrContext)_localctx).right = conditionAnd(); ((ConditionOrContext)_localctx).ret = new OrConditionExpr( _localctx.ret, ((ConditionOrContext)_localctx).right.ret ); } } - setState(109); + setState(144); _errHandler.sync(this); _la = _input.LA(1); } @@ -633,28 +815,28 @@ public void exitRule(ParseTreeListener listener) { public final ConditionAndContext conditionAnd() throws RecognitionException { ConditionAndContext _localctx = new ConditionAndContext(_ctx, getState()); - enterRule(_localctx, 12, RULE_conditionAnd); + enterRule(_localctx, 16, RULE_conditionAnd); int _la; try { enterOuterAlt(_localctx, 1); { - setState(110); + setState(145); ((ConditionAndContext)_localctx).left = conditionNot(); ((ConditionAndContext)_localctx).ret = ((ConditionAndContext)_localctx).left.ret; - setState(118); + setState(153); _errHandler.sync(this); _la = _input.LA(1); while (_la==AND) { { { - setState(112); + setState(147); match(AND); - setState(113); + setState(148); ((ConditionAndContext)_localctx).right = conditionNot(); ((ConditionAndContext)_localctx).ret = new AndConditionExpr( _localctx.ret, ((ConditionAndContext)_localctx).right.ret ); } } - setState(120); + setState(155); _errHandler.sync(this); _la = _input.LA(1); } @@ -700,17 +882,17 @@ public void exitRule(ParseTreeListener listener) { public final ConditionNotContext conditionNot() throws RecognitionException { ConditionNotContext _localctx = new ConditionNotContext(_ctx, getState()); - enterRule(_localctx, 14, RULE_conditionNot); + enterRule(_localctx, 18, RULE_conditionNot); int _la; try { - setState(128); + setState(163); _errHandler.sync(this); switch (_input.LA(1)) { case NOT: case BANG: enterOuterAlt(_localctx, 1); { - setState(121); + setState(156); _la = _input.LA(1); if ( !(_la==NOT || _la==BANG) ) { _errHandler.recoverInline(this); @@ -720,19 +902,18 @@ public final ConditionNotContext conditionNot() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(122); + setState(157); ((ConditionNotContext)_localctx).inner = conditionNot(); ((ConditionNotContext)_localctx).ret = new NotConditionExpr( ((ConditionNotContext)_localctx).inner.ret ); } break; case VAR_ID: case ROOT: - case LBRACE: case LPAREN: case ID: enterOuterAlt(_localctx, 2); { - setState(125); + setState(160); ((ConditionNotContext)_localctx).conditionAtom = conditionAtom(); ((ConditionNotContext)_localctx).ret = ((ConditionNotContext)_localctx).conditionAtom.ret; } @@ -797,20 +978,20 @@ public void exitRule(ParseTreeListener listener) { public final ConditionAtomContext conditionAtom() throws RecognitionException { ConditionAtomContext _localctx = new ConditionAtomContext(_ctx, getState()); - enterRule(_localctx, 16, RULE_conditionAtom); + enterRule(_localctx, 20, RULE_conditionAtom); int _la; try { - setState(143); + setState(178); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(130); + setState(165); match(LPAREN); - setState(131); + setState(166); ((ConditionAtomContext)_localctx).ifCondition = ifCondition(); - setState(132); + setState(167); match(RPAREN); ((ConditionAtomContext)_localctx).ret = ((ConditionAtomContext)_localctx).ifCondition.ret; } @@ -818,12 +999,12 @@ public final ConditionAtomContext conditionAtom() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(135); + setState(170); ((ConditionAtomContext)_localctx).left = exprs(); - setState(136); + setState(171); ((ConditionAtomContext)_localctx).op = _input.LT(1); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 2095104L) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 1047552L) != 0)) ) { ((ConditionAtomContext)_localctx).op = (Token)_errHandler.recoverInline(this); } else { @@ -831,7 +1012,7 @@ public final ConditionAtomContext conditionAtom() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(137); + setState(172); ((ConditionAtomContext)_localctx).right = compareRhs(); ((ConditionAtomContext)_localctx).ret = new CompareConditionExpr( ((ConditionAtomContext)_localctx).left.ret, ((ConditionAtomContext)_localctx).op.getText(), ((ConditionAtomContext)_localctx).right.ret ); @@ -841,7 +1022,7 @@ public final ConditionAtomContext conditionAtom() throws RecognitionException { case 3: enterOuterAlt(_localctx, 3); { - setState(140); + setState(175); ((ConditionAtomContext)_localctx).exprs = exprs(); ((ConditionAtomContext)_localctx).ret = new FieldConditionExpr( ((ConditionAtomContext)_localctx).exprs.ret ); } @@ -889,15 +1070,15 @@ public void exitRule(ParseTreeListener listener) { public final CompareRhsContext compareRhs() throws RecognitionException { CompareRhsContext _localctx = new CompareRhsContext(_ctx, getState()); - enterRule(_localctx, 18, RULE_compareRhs); + enterRule(_localctx, 22, RULE_compareRhs); try { - setState(161); + setState(196); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(145); + setState(180); ((CompareRhsContext)_localctx).SSTRING = match(SSTRING); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( sdStringToString( (((CompareRhsContext)_localctx).SSTRING!=null?((CompareRhsContext)_localctx).SSTRING.getText():null) ) ); } @@ -905,7 +1086,7 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(147); + setState(182); ((CompareRhsContext)_localctx).DSTRING = match(DSTRING); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( sdStringToString( (((CompareRhsContext)_localctx).DSTRING!=null?((CompareRhsContext)_localctx).DSTRING.getText():null) ) ); } @@ -913,7 +1094,7 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 3: enterOuterAlt(_localctx, 3); { - setState(149); + setState(184); ((CompareRhsContext)_localctx).DECDIGITS = match(DECDIGITS); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( (((CompareRhsContext)_localctx).DECDIGITS!=null?((CompareRhsContext)_localctx).DECDIGITS.getText():null) ); } @@ -921,9 +1102,9 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 4: enterOuterAlt(_localctx, 4); { - setState(151); + setState(186); match(MINUS); - setState(152); + setState(187); ((CompareRhsContext)_localctx).DECDIGITS = match(DECDIGITS); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( "-" + (((CompareRhsContext)_localctx).DECDIGITS!=null?((CompareRhsContext)_localctx).DECDIGITS.getText():null) ); } @@ -931,7 +1112,7 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 5: enterOuterAlt(_localctx, 5); { - setState(154); + setState(189); ((CompareRhsContext)_localctx).FLOAT = match(FLOAT); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( (((CompareRhsContext)_localctx).FLOAT!=null?((CompareRhsContext)_localctx).FLOAT.getText():null) ); } @@ -939,9 +1120,9 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 6: enterOuterAlt(_localctx, 6); { - setState(156); + setState(191); match(MINUS); - setState(157); + setState(192); ((CompareRhsContext)_localctx).FLOAT = match(FLOAT); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( "-" + (((CompareRhsContext)_localctx).FLOAT!=null?((CompareRhsContext)_localctx).FLOAT.getText():null) ); } @@ -949,7 +1130,7 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 7: enterOuterAlt(_localctx, 7); { - setState(159); + setState(194); ((CompareRhsContext)_localctx).BOOLEAN = match(BOOLEAN); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( (((CompareRhsContext)_localctx).BOOLEAN!=null?((CompareRhsContext)_localctx).BOOLEAN.getText():null) ); } @@ -991,13 +1172,13 @@ public void exitRule(ParseTreeListener listener) { public final DefaultValueContext defaultValue() throws RecognitionException { DefaultValueContext _localctx = new DefaultValueContext(_ctx, getState()); - enterRule(_localctx, 20, RULE_defaultValue); + enterRule(_localctx, 24, RULE_defaultValue); try { enterOuterAlt(_localctx, 1); { - setState(163); + setState(198); match(DQUESTION); - setState(164); + setState(199); ((DefaultValueContext)_localctx).defaultValueType = defaultValueType(); ((DefaultValueContext)_localctx).ret = ((DefaultValueContext)_localctx).defaultValueType.ret; } @@ -1046,15 +1227,15 @@ public void exitRule(ParseTreeListener listener) { public final DefaultValueTypeContext defaultValueType() throws RecognitionException { DefaultValueTypeContext _localctx = new DefaultValueTypeContext(_ctx, getState()); - enterRule(_localctx, 22, RULE_defaultValueType); + enterRule(_localctx, 26, RULE_defaultValueType); try { - setState(181); + setState(216); _errHandler.sync(this); switch (_input.LA(1)) { case SSTRING: enterOuterAlt(_localctx, 1); { - setState(167); + setState(202); ((DefaultValueTypeContext)_localctx).SSTRING = match(SSTRING); ((DefaultValueTypeContext)_localctx).ret = sdStringToString( (((DefaultValueTypeContext)_localctx).SSTRING!=null?((DefaultValueTypeContext)_localctx).SSTRING.getText():null) ); } @@ -1062,7 +1243,7 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case DSTRING: enterOuterAlt(_localctx, 2); { - setState(169); + setState(204); ((DefaultValueTypeContext)_localctx).DSTRING = match(DSTRING); ((DefaultValueTypeContext)_localctx).ret = sdStringToString((((DefaultValueTypeContext)_localctx).DSTRING!=null?((DefaultValueTypeContext)_localctx).DSTRING.getText():null)); } @@ -1071,7 +1252,7 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case DECDIGITS: enterOuterAlt(_localctx, 3); { - setState(171); + setState(206); ((DefaultValueTypeContext)_localctx).longRule = longRule(); ((DefaultValueTypeContext)_localctx).ret = (((DefaultValueTypeContext)_localctx).longRule!=null?_input.getText(((DefaultValueTypeContext)_localctx).longRule.start,((DefaultValueTypeContext)_localctx).longRule.stop):null); } @@ -1079,7 +1260,7 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case FLOAT: enterOuterAlt(_localctx, 4); { - setState(174); + setState(209); ((DefaultValueTypeContext)_localctx).FLOAT = match(FLOAT); ((DefaultValueTypeContext)_localctx).ret = (((DefaultValueTypeContext)_localctx).FLOAT!=null?((DefaultValueTypeContext)_localctx).FLOAT.getText():null); } @@ -1087,7 +1268,7 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case BOOLEAN: enterOuterAlt(_localctx, 5); { - setState(176); + setState(211); ((DefaultValueTypeContext)_localctx).BOOLEAN = match(BOOLEAN); ((DefaultValueTypeContext)_localctx).ret = (((DefaultValueTypeContext)_localctx).BOOLEAN!=null?((DefaultValueTypeContext)_localctx).BOOLEAN.getText():null); } @@ -1095,9 +1276,9 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case LBRACK: enterOuterAlt(_localctx, 6); { - setState(178); + setState(213); match(LBRACK); - setState(179); + setState(214); match(RBRACK); ((DefaultValueTypeContext)_localctx).ret = "[]"; } @@ -1137,22 +1318,22 @@ public void exitRule(ParseTreeListener listener) { public final LongRuleContext longRule() throws RecognitionException { LongRuleContext _localctx = new LongRuleContext(_ctx, getState()); - enterRule(_localctx, 24, RULE_longRule); + enterRule(_localctx, 28, RULE_longRule); int _la; try { enterOuterAlt(_localctx, 1); { - setState(184); + setState(219); _errHandler.sync(this); _la = _input.LA(1); if (_la==MINUS) { { - setState(183); + setState(218); match(MINUS); } } - setState(186); + setState(221); match(DECDIGITS); } } @@ -1195,28 +1376,28 @@ public void exitRule(ParseTreeListener listener) { public final FunctionContext function() throws RecognitionException { FunctionContext _localctx = new FunctionContext(_ctx, getState()); - enterRule(_localctx, 26, RULE_function); + enterRule(_localctx, 30, RULE_function); int _la; try { enterOuterAlt(_localctx, 1); { - setState(188); + setState(223); match(SEMI); - setState(189); + setState(224); ((FunctionContext)_localctx).ID = match(ID); - setState(190); + setState(225); match(LPAREN); - setState(192); + setState(227); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 34084860461056L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 17042430230528L) != 0)) { { - setState(191); + setState(226); ((FunctionContext)_localctx).functionArgs = functionArgs(); } } - setState(194); + setState(229); match(RPAREN); ((FunctionContext)_localctx).ret = new Func( (((FunctionContext)_localctx).ID!=null?((FunctionContext)_localctx).ID.getText():null), ((FunctionContext)_localctx).functionArgs != null ? ((FunctionContext)_localctx).functionArgs.ret : List.of() ); } @@ -1262,28 +1443,28 @@ public void exitRule(ParseTreeListener listener) { public final FunctionArgsContext functionArgs() throws RecognitionException { FunctionArgsContext _localctx = new FunctionArgsContext(_ctx, getState()); - enterRule(_localctx, 28, RULE_functionArgs); + enterRule(_localctx, 32, RULE_functionArgs); int _la; try { enterOuterAlt(_localctx, 1); { - setState(197); + setState(232); ((FunctionArgsContext)_localctx).functionArg = functionArg(); _localctx.ret.add( ((FunctionArgsContext)_localctx).functionArg.ret ); - setState(205); + setState(240); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(199); + setState(234); match(COMMA); - setState(200); + setState(235); ((FunctionArgsContext)_localctx).functionArg = functionArg(); _localctx.ret.add( ((FunctionArgsContext)_localctx).functionArg.ret ); } } - setState(207); + setState(242); _errHandler.sync(this); _la = _input.LA(1); } @@ -1328,15 +1509,15 @@ public void exitRule(ParseTreeListener listener) { public final FunctionArgContext functionArg() throws RecognitionException { FunctionArgContext _localctx = new FunctionArgContext(_ctx, getState()); - enterRule(_localctx, 30, RULE_functionArg); + enterRule(_localctx, 34, RULE_functionArg); try { - setState(222); + setState(257); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(208); + setState(243); ((FunctionArgContext)_localctx).DECDIGITS = match(DECDIGITS); ((FunctionArgContext)_localctx).ret = (((FunctionArgContext)_localctx).DECDIGITS!=null?((FunctionArgContext)_localctx).DECDIGITS.getText():null); } @@ -1344,9 +1525,9 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(210); + setState(245); match(MINUS); - setState(211); + setState(246); ((FunctionArgContext)_localctx).DECDIGITS = match(DECDIGITS); ((FunctionArgContext)_localctx).ret = "-" + (((FunctionArgContext)_localctx).DECDIGITS!=null?((FunctionArgContext)_localctx).DECDIGITS.getText():null); } @@ -1354,7 +1535,7 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 3: enterOuterAlt(_localctx, 3); { - setState(213); + setState(248); ((FunctionArgContext)_localctx).FLOAT = match(FLOAT); ((FunctionArgContext)_localctx).ret = (((FunctionArgContext)_localctx).FLOAT!=null?((FunctionArgContext)_localctx).FLOAT.getText():null); } @@ -1362,9 +1543,9 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 4: enterOuterAlt(_localctx, 4); { - setState(215); + setState(250); match(MINUS); - setState(216); + setState(251); ((FunctionArgContext)_localctx).FLOAT = match(FLOAT); ((FunctionArgContext)_localctx).ret = "-" + (((FunctionArgContext)_localctx).FLOAT!=null?((FunctionArgContext)_localctx).FLOAT.getText():null); } @@ -1372,7 +1553,7 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 5: enterOuterAlt(_localctx, 5); { - setState(218); + setState(253); ((FunctionArgContext)_localctx).SSTRING = match(SSTRING); ((FunctionArgContext)_localctx).ret = sStringToDString( (((FunctionArgContext)_localctx).SSTRING!=null?((FunctionArgContext)_localctx).SSTRING.getText():null) ); } @@ -1380,7 +1561,7 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 6: enterOuterAlt(_localctx, 6); { - setState(220); + setState(255); ((FunctionArgContext)_localctx).DSTRING = match(DSTRING); ((FunctionArgContext)_localctx).ret = (((FunctionArgContext)_localctx).DSTRING!=null?((FunctionArgContext)_localctx).DSTRING.getText():null); } @@ -1428,35 +1609,35 @@ public void exitRule(ParseTreeListener listener) { public final OrExprsContext orExprs() throws RecognitionException { OrExprsContext _localctx = new OrExprsContext(_ctx, getState()); - enterRule(_localctx, 32, RULE_orExprs); + enterRule(_localctx, 36, RULE_orExprs); int _la; try { - setState(237); + setState(272); _errHandler.sync(this); switch (_input.LA(1)) { case DEFAULT: enterOuterAlt(_localctx, 1); { { - setState(224); + setState(259); match(DEFAULT); - setState(225); + setState(260); ((OrExprsContext)_localctx).exprs = exprs(); _localctx.ret.add( ((OrExprsContext)_localctx).exprs.ret ); - setState(233); + setState(268); _errHandler.sync(this); _la = _input.LA(1); while (_la==DEFAULT) { { { - setState(227); + setState(262); match(DEFAULT); - setState(228); + setState(263); ((OrExprsContext)_localctx).exprs = exprs(); _localctx.ret.add( ((OrExprsContext)_localctx).exprs.ret ); } } - setState(235); + setState(270); _errHandler.sync(this); _la = _input.LA(1); } @@ -1465,7 +1646,7 @@ public final OrExprsContext orExprs() throws RecognitionException { break; case EOF: case IF: - case END: + case RBRACE: case DQUESTION: case SEMI: enterOuterAlt(_localctx, 2); @@ -1528,46 +1709,46 @@ public void exitRule(ParseTreeListener listener) { public final ExprsContext exprs() throws RecognitionException { ExprsContext _localctx = new ExprsContext(_ctx, getState()); - enterRule(_localctx, 34, RULE_exprs); + enterRule(_localctx, 38, RULE_exprs); int _la; try { int _alt; - setState(333); + setState(365); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(239); + setState(274); match(ROOT); - setState(240); + setState(275); match(DOT); - setState(241); + setState(276); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.rootScoped = true; _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(249); + setState(284); _errHandler.sync(this); _la = _input.LA(1); while (_la==DOT) { { { - setState(243); + setState(278); match(DOT); - setState(244); + setState(279); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); } } - setState(251); + setState(286); _errHandler.sync(this); _la = _input.LA(1); } - setState(253); + setState(288); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 2130303778816L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { { - setState(252); + setState(287); ((ExprsContext)_localctx).math = math(); } } @@ -1578,32 +1759,32 @@ public final ExprsContext exprs() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(257); + setState(292); ((ExprsContext)_localctx).VAR_ID = match(VAR_ID); _localctx.ret.varName = (((ExprsContext)_localctx).VAR_ID!=null?((ExprsContext)_localctx).VAR_ID.getText():null).substring( 1 ); - setState(265); + setState(300); _errHandler.sync(this); _la = _input.LA(1); while (_la==DOT) { { { - setState(259); + setState(294); match(DOT); - setState(260); + setState(295); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); } } - setState(267); + setState(302); _errHandler.sync(this); _la = _input.LA(1); } - setState(269); + setState(304); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 2130303778816L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { { - setState(268); + setState(303); ((ExprsContext)_localctx).math = math(); } } @@ -1614,15 +1795,15 @@ public final ExprsContext exprs() throws RecognitionException { case 3: enterOuterAlt(_localctx, 3); { - setState(272); + setState(307); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(275); + setState(310); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 2130303778816L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { { - setState(274); + setState(309); ((ExprsContext)_localctx).math = math(); } } @@ -1633,20 +1814,20 @@ public final ExprsContext exprs() throws RecognitionException { case 4: enterOuterAlt(_localctx, 4); { - setState(279); + setState(314); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(282); + setState(317); _errHandler.sync(this); _la = _input.LA(1); if (_la==DOT) { { - setState(281); + setState(316); match(DOT); } } - setState(284); + setState(319); ((ExprsContext)_localctx).concatenation = concatenation(); _localctx.ret.concatenation = ((ExprsContext)_localctx).concatenation.ret; } @@ -1654,19 +1835,19 @@ public final ExprsContext exprs() throws RecognitionException { case 5: enterOuterAlt(_localctx, 5); { - setState(287); + setState(322); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(295); + setState(330); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,25,_ctx); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(289); + setState(324); match(DOT); - setState(290); + setState(325); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); @@ -1674,21 +1855,21 @@ public final ExprsContext exprs() throws RecognitionException { } } } - setState(297); + setState(332); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,25,_ctx); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); } - setState(298); + setState(333); match(DOT); - setState(299); + setState(334); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(302); + setState(337); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 2130303778816L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { { - setState(301); + setState(336); ((ExprsContext)_localctx).math = math(); } } @@ -1699,52 +1880,52 @@ public final ExprsContext exprs() throws RecognitionException { case 6: enterOuterAlt(_localctx, 6); { - setState(306); + setState(341); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(314); + setState(349); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,27,_ctx); + _alt = getInterpreter().adaptivePredict(_input,31,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(308); + setState(343); match(DOT); - setState(309); + setState(344); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); } } } - setState(316); + setState(351); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,27,_ctx); + _alt = getInterpreter().adaptivePredict(_input,31,_ctx); } - setState(317); + setState(352); match(DOT); - setState(318); + setState(353); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(321); + setState(356); _errHandler.sync(this); _la = _input.LA(1); if (_la==DOT) { { - setState(320); + setState(355); match(DOT); } } - setState(323); + setState(358); ((ExprsContext)_localctx).concatenation = concatenation(); _localctx.ret.concatenation = ((ExprsContext)_localctx).concatenation.ret; - setState(326); + setState(361); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 2130303778816L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { { - setState(325); + setState(360); ((ExprsContext)_localctx).math = math(); } } @@ -1752,14 +1933,6 @@ public final ExprsContext exprs() throws RecognitionException { if( ((ExprsContext)_localctx).math != null ) _localctx.ret.math = ((ExprsContext)_localctx).math.ret; } break; - case 7: - enterOuterAlt(_localctx, 7); - { - setState(330); - ((ExprsContext)_localctx).concatenation = concatenation(); - _localctx.ret.concatenation = ((ExprsContext)_localctx).concatenation.ret; - } - break; } } catch (RecognitionException re) { @@ -1800,31 +1973,31 @@ public void exitRule(ParseTreeListener listener) { public final ExprContext expr() throws RecognitionException { ExprContext _localctx = new ExprContext(_ctx, getState()); - enterRule(_localctx, 36, RULE_expr); + enterRule(_localctx, 40, RULE_expr); int _la; try { - setState(345); + setState(377); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { { - setState(335); + setState(367); ((ExprContext)_localctx).ID = match(ID); - setState(336); + setState(368); match(LPAREN); - setState(338); + setState(370); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 34084860461056L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 17042430230528L) != 0)) { { - setState(337); + setState(369); ((ExprContext)_localctx).functionArgs = functionArgs(); } } - setState(340); + setState(372); match(RPAREN); } ((ExprContext)_localctx).ret = new Expr((((ExprContext)_localctx).ID!=null?((ExprContext)_localctx).ID.getText():null), true, ((ExprContext)_localctx).functionArgs != null ? ((ExprContext)_localctx).functionArgs.ret : List.of() ); @@ -1833,7 +2006,7 @@ public final ExprContext expr() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(343); + setState(375); ((ExprContext)_localctx).ID = match(ID); ((ExprContext)_localctx).ret = new Expr((((ExprContext)_localctx).ID!=null?((ExprContext)_localctx).ID.getText():null), false, List.of() ); } @@ -1876,16 +2049,16 @@ public void exitRule(ParseTreeListener listener) { public final ConcatenationContext concatenation() throws RecognitionException { ConcatenationContext _localctx = new ConcatenationContext(_ctx, getState()); - enterRule(_localctx, 38, RULE_concatenation); + enterRule(_localctx, 42, RULE_concatenation); try { enterOuterAlt(_localctx, 1); { - setState(347); + setState(379); match(LBRACE); - setState(348); + setState(380); ((ConcatenationContext)_localctx).citems = citems(); ((ConcatenationContext)_localctx).ret = new Concatenation( ((ConcatenationContext)_localctx).citems.ret ); - setState(350); + setState(382); match(RBRACE); } } @@ -1910,9 +2083,9 @@ public List citem() { public CitemContext citem(int i) { return getRuleContext(CitemContext.class,i); } - public List COMMA() { return getTokens(TemplateGrammarExpression.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(TemplateGrammarExpression.COMMA, i); + public List PLUS() { return getTokens(TemplateGrammarExpression.PLUS); } + public TerminalNode PLUS(int i) { + return getToken(TemplateGrammarExpression.PLUS, i); } public CitemsContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -1930,28 +2103,28 @@ public void exitRule(ParseTreeListener listener) { public final CitemsContext citems() throws RecognitionException { CitemsContext _localctx = new CitemsContext(_ctx, getState()); - enterRule(_localctx, 40, RULE_citems); + enterRule(_localctx, 44, RULE_citems); int _la; try { enterOuterAlt(_localctx, 1); { - setState(352); + setState(384); ((CitemsContext)_localctx).citem = citem(); - _localctx.ret.add(((CitemsContext)_localctx).citem.ret); - setState(360); + _localctx.ret.add( ((CitemsContext)_localctx).citem.ret ); + setState(392); _errHandler.sync(this); _la = _input.LA(1); - while (_la==COMMA) { + while (_la==PLUS) { { { - setState(354); - match(COMMA); - setState(355); + setState(386); + match(PLUS); + setState(387); ((CitemsContext)_localctx).citem = citem(); - _localctx.ret.add(((CitemsContext)_localctx).citem.ret); + _localctx.ret.add( ((CitemsContext)_localctx).citem.ret ); } } - setState(362); + setState(394); _errHandler.sync(this); _la = _input.LA(1); } @@ -1997,15 +2170,15 @@ public void exitRule(ParseTreeListener listener) { public final CitemContext citem() throws RecognitionException { CitemContext _localctx = new CitemContext(_ctx, getState()); - enterRule(_localctx, 42, RULE_citem); + enterRule(_localctx, 46, RULE_citem); try { - setState(373); + setState(405); _errHandler.sync(this); switch (_input.LA(1)) { case ID: enterOuterAlt(_localctx, 1); { - setState(363); + setState(395); ((CitemContext)_localctx).ID = match(ID); ((CitemContext)_localctx).ret = new Expr( (((CitemContext)_localctx).ID!=null?((CitemContext)_localctx).ID.getText():null), false, List.of() ); } @@ -2013,7 +2186,7 @@ public final CitemContext citem() throws RecognitionException { case DSTRING: enterOuterAlt(_localctx, 2); { - setState(365); + setState(397); ((CitemContext)_localctx).DSTRING = match(DSTRING); ((CitemContext)_localctx).ret = sdStringToString( (((CitemContext)_localctx).DSTRING!=null?((CitemContext)_localctx).DSTRING.getText():null) ); } @@ -2021,7 +2194,7 @@ public final CitemContext citem() throws RecognitionException { case SSTRING: enterOuterAlt(_localctx, 3); { - setState(367); + setState(399); ((CitemContext)_localctx).SSTRING = match(SSTRING); ((CitemContext)_localctx).ret = sdStringToString( (((CitemContext)_localctx).SSTRING!=null?((CitemContext)_localctx).SSTRING.getText():null) ); } @@ -2029,17 +2202,17 @@ public final CitemContext citem() throws RecognitionException { case DECDIGITS: enterOuterAlt(_localctx, 4); { - setState(369); + setState(401); ((CitemContext)_localctx).DECDIGITS = match(DECDIGITS); - ((CitemContext)_localctx).ret = String.valueOf( (((CitemContext)_localctx).DECDIGITS!=null?((CitemContext)_localctx).DECDIGITS.getText():null) ); + ((CitemContext)_localctx).ret = new NumericLiteral( (((CitemContext)_localctx).DECDIGITS!=null?((CitemContext)_localctx).DECDIGITS.getText():null) ); } break; case FLOAT: enterOuterAlt(_localctx, 5); { - setState(371); + setState(403); ((CitemContext)_localctx).FLOAT = match(FLOAT); - ((CitemContext)_localctx).ret = String.valueOf( (((CitemContext)_localctx).FLOAT!=null?((CitemContext)_localctx).FLOAT.getText():null) ); + ((CitemContext)_localctx).ret = new NumericLiteral( (((CitemContext)_localctx).FLOAT!=null?((CitemContext)_localctx).FLOAT.getText():null) ); } break; default: @@ -2084,13 +2257,13 @@ public void exitRule(ParseTreeListener listener) { public final MathContext math() throws RecognitionException { MathContext _localctx = new MathContext(_ctx, getState()); - enterRule(_localctx, 44, RULE_math); + enterRule(_localctx, 48, RULE_math); try { enterOuterAlt(_localctx, 1); { - setState(375); + setState(407); ((MathContext)_localctx).mathOperation = mathOperation(); - setState(376); + setState(408); ((MathContext)_localctx).number = number(); ((MathContext)_localctx).ret = new Math( (((MathContext)_localctx).mathOperation!=null?_input.getText(((MathContext)_localctx).mathOperation.start,((MathContext)_localctx).mathOperation.stop):null), (((MathContext)_localctx).number!=null?_input.getText(((MathContext)_localctx).number.start,((MathContext)_localctx).number.stop):null) ); } @@ -2126,9 +2299,9 @@ public void exitRule(ParseTreeListener listener) { public final NumberContext number() throws RecognitionException { NumberContext _localctx = new NumberContext(_ctx, getState()); - enterRule(_localctx, 46, RULE_number); + enterRule(_localctx, 50, RULE_number); try { - setState(382); + setState(414); _errHandler.sync(this); switch (_input.LA(1)) { case EOF: @@ -2149,6 +2322,8 @@ public final NumberContext number() throws RecognitionException { case LE_OP: case GT_OP: case LT_OP: + case LBRACE: + case RBRACE: case RPAREN: case DQUESTION: case SEMI: @@ -2159,14 +2334,14 @@ public final NumberContext number() throws RecognitionException { case DECDIGITS: enterOuterAlt(_localctx, 2); { - setState(380); + setState(412); match(DECDIGITS); } break; case FLOAT: enterOuterAlt(_localctx, 3); { - setState(381); + setState(413); match(FLOAT); } break; @@ -2190,7 +2365,6 @@ public static class MathOperationContext extends ParserRuleContext { public TerminalNode STAR() { return getToken(TemplateGrammarExpression.STAR, 0); } public TerminalNode SLASH() { return getToken(TemplateGrammarExpression.SLASH, 0); } public TerminalNode PERCENT() { return getToken(TemplateGrammarExpression.PERCENT, 0); } - public TerminalNode PLUS() { return getToken(TemplateGrammarExpression.PLUS, 0); } public TerminalNode MINUS() { return getToken(TemplateGrammarExpression.MINUS, 0); } public MathOperationContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -2208,14 +2382,14 @@ public void exitRule(ParseTreeListener listener) { public final MathOperationContext mathOperation() throws RecognitionException { MathOperationContext _localctx = new MathOperationContext(_ctx, getState()); - enterRule(_localctx, 48, RULE_mathOperation); + enterRule(_localctx, 52, RULE_mathOperation); int _la; try { enterOuterAlt(_localctx, 1); { - setState(384); + setState(416); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 2130303778816L) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2237,7 +2411,7 @@ public final MathOperationContext mathOperation() throws RecognitionException { } public static final String _serializedATN = - "\u0004\u00013\u0183\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+ + "\u0004\u00012\u01a3\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+ "\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002"+ "\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002"+ "\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002"+ @@ -2245,260 +2419,281 @@ public final MathOperationContext mathOperation() throws RecognitionException { "\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012"+ "\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015"+ "\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018"+ - "\u0001\u0000\u0003\u00004\b\u0000\u0001\u0000\u0003\u00007\b\u0000\u0001"+ - "\u0000\u0001\u0000\u0001\u0000\u0003\u0000<\b\u0000\u0001\u0000\u0003"+ - "\u0000?\b\u0000\u0001\u0000\u0003\u0000B\b\u0000\u0001\u0000\u0001\u0000"+ - "\u0003\u0000F\b\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003\u0001P\b\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003"+ - "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0005\u0005j\b\u0005\n\u0005\f\u0005m\t\u0005\u0001\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0005\u0006u\b\u0006"+ - "\n\u0006\f\u0006x\t\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ - "\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007\u0081\b\u0007\u0001\b"+ - "\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+ - "\b\u0001\b\u0001\b\u0001\b\u0003\b\u0090\b\b\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0001\t\u0001\t\u0001\t\u0003\t\u00a2\b\t\u0001\n\u0001\n\u0001\n\u0001"+ - "\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+ - "\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+ - "\u0001\u000b\u0001\u000b\u0003\u000b\u00b6\b\u000b\u0001\f\u0003\f\u00b9"+ - "\b\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0003\r\u00c1\b\r"+ - "\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+ - "\u0001\u000e\u0001\u000e\u0005\u000e\u00cc\b\u000e\n\u000e\f\u000e\u00cf"+ - "\t\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001"+ - "\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001"+ - "\u000f\u0001\u000f\u0001\u000f\u0003\u000f\u00df\b\u000f\u0001\u0010\u0001"+ - "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0005"+ - "\u0010\u00e8\b\u0010\n\u0010\f\u0010\u00eb\t\u0010\u0001\u0010\u0003\u0010"+ - "\u00ee\b\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+ - "\u0001\u0011\u0001\u0011\u0001\u0011\u0005\u0011\u00f8\b\u0011\n\u0011"+ - "\f\u0011\u00fb\t\u0011\u0001\u0011\u0003\u0011\u00fe\b\u0011\u0001\u0011"+ - "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+ - "\u0001\u0011\u0005\u0011\u0108\b\u0011\n\u0011\f\u0011\u010b\t\u0011\u0001"+ - "\u0011\u0003\u0011\u010e\b\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+ - "\u0011\u0003\u0011\u0114\b\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+ - "\u0011\u0001\u0011\u0003\u0011\u011b\b\u0011\u0001\u0011\u0001\u0011\u0001"+ + "\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0001\u0000\u0003\u0000"+ + "8\b\u0000\u0001\u0000\u0003\u0000;\b\u0000\u0001\u0000\u0001\u0000\u0001"+ + "\u0000\u0003\u0000@\b\u0000\u0001\u0000\u0003\u0000C\b\u0000\u0001\u0000"+ + "\u0003\u0000F\b\u0000\u0001\u0000\u0001\u0000\u0003\u0000J\b\u0000\u0001"+ + "\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0001\u0001\u0003\u0001T\b\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+ + "\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+ + "\u0002\u0003\u0002e\b\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001"+ + "\u0003\u0001\u0003\u0001\u0003\u0004\u0003m\b\u0003\u000b\u0003\f\u0003"+ + "n\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+ + "\u0004\u0004w\b\u0004\u000b\u0004\f\u0004x\u0001\u0005\u0001\u0005\u0001"+ + "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u0082"+ + "\b\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001"+ + "\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0005\u0007\u008d\b\u0007\n"+ + "\u0007\f\u0007\u0090\t\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+ + "\b\u0005\b\u0098\b\b\n\b\f\b\u009b\t\b\u0001\t\u0001\t\u0001\t\u0001\t"+ + "\u0001\t\u0001\t\u0001\t\u0003\t\u00a4\b\t\u0001\n\u0001\n\u0001\n\u0001"+ + "\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+ + "\n\u0003\n\u00b3\b\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+ + "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+ + "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0003"+ + "\u000b\u00c5\b\u000b\u0001\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001"+ + "\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001"+ + "\r\u0001\r\u0001\r\u0003\r\u00d9\b\r\u0001\u000e\u0003\u000e\u00dc\b\u000e"+ + "\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f"+ + "\u0003\u000f\u00e4\b\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010"+ + "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0005\u0010"+ + "\u00ef\b\u0010\n\u0010\f\u0010\u00f2\t\u0010\u0001\u0011\u0001\u0011\u0001"+ "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+ - "\u0011\u0005\u0011\u0126\b\u0011\n\u0011\f\u0011\u0129\t\u0011\u0001\u0011"+ - "\u0001\u0011\u0001\u0011\u0001\u0011\u0003\u0011\u012f\b\u0011\u0001\u0011"+ - "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+ - "\u0001\u0011\u0005\u0011\u0139\b\u0011\n\u0011\f\u0011\u013c\t\u0011\u0001"+ - "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0003\u0011\u0142\b\u0011\u0001"+ - "\u0011\u0001\u0011\u0001\u0011\u0003\u0011\u0147\b\u0011\u0001\u0011\u0001"+ - "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0003\u0011\u014e\b\u0011\u0001"+ - "\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u0153\b\u0012\u0001\u0012\u0001"+ - "\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u015a\b\u0012\u0001"+ - "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001"+ - "\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0005\u0014\u0167"+ - "\b\u0014\n\u0014\f\u0014\u016a\t\u0014\u0001\u0015\u0001\u0015\u0001\u0015"+ - "\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015"+ - "\u0001\u0015\u0003\u0015\u0176\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016"+ - "\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0003\u0017\u017f\b\u0017"+ - "\u0001\u0018\u0001\u0018\u0001\u0018\u0000\u0000\u0019\u0000\u0002\u0004"+ - "\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \""+ - "$&(*,.0\u0000\u0003\u0001\u0000\t\n\u0001\u0000\u000b\u0014\u0001\u0000"+ - "$(\u01a5\u00003\u0001\u0000\u0000\u0000\u0002I\u0001\u0000\u0000\u0000"+ - "\u0004T\u0001\u0000\u0000\u0000\u0006\\\u0001\u0000\u0000\u0000\b`\u0001"+ - "\u0000\u0000\u0000\nc\u0001\u0000\u0000\u0000\fn\u0001\u0000\u0000\u0000"+ - "\u000e\u0080\u0001\u0000\u0000\u0000\u0010\u008f\u0001\u0000\u0000\u0000"+ - "\u0012\u00a1\u0001\u0000\u0000\u0000\u0014\u00a3\u0001\u0000\u0000\u0000"+ - "\u0016\u00b5\u0001\u0000\u0000\u0000\u0018\u00b8\u0001\u0000\u0000\u0000"+ - "\u001a\u00bc\u0001\u0000\u0000\u0000\u001c\u00c5\u0001\u0000\u0000\u0000"+ - "\u001e\u00de\u0001\u0000\u0000\u0000 \u00ed\u0001\u0000\u0000\u0000\""+ - "\u014d\u0001\u0000\u0000\u0000$\u0159\u0001\u0000\u0000\u0000&\u015b\u0001"+ - "\u0000\u0000\u0000(\u0160\u0001\u0000\u0000\u0000*\u0175\u0001\u0000\u0000"+ - "\u0000,\u0177\u0001\u0000\u0000\u0000.\u017e\u0001\u0000\u0000\u00000"+ - "\u0180\u0001\u0000\u0000\u000024\u0005\u0017\u0000\u000032\u0001\u0000"+ - "\u0000\u000034\u0001\u0000\u0000\u000046\u0001\u0000\u0000\u000057\u0005"+ - "/\u0000\u000065\u0001\u0000\u0000\u000067\u0001\u0000\u0000\u00007;\u0001"+ - "\u0000\u0000\u00008<\u0003\u0002\u0001\u00009<\u0003\u0004\u0002\u0000"+ - ":<\u0003\u0006\u0003\u0000;8\u0001\u0000\u0000\u0000;9\u0001\u0000\u0000"+ - "\u0000;:\u0001\u0000\u0000\u0000<>\u0001\u0000\u0000\u0000=?\u0003\u0014"+ - "\n\u0000>=\u0001\u0000\u0000\u0000>?\u0001\u0000\u0000\u0000?A\u0001\u0000"+ - "\u0000\u0000@B\u0003\u001a\r\u0000A@\u0001\u0000\u0000\u0000AB\u0001\u0000"+ - "\u0000\u0000BE\u0001\u0000\u0000\u0000CD\u0005\u0002\u0000\u0000DF\u0003"+ - "\b\u0004\u0000EC\u0001\u0000\u0000\u0000EF\u0001\u0000\u0000\u0000FG\u0001"+ - "\u0000\u0000\u0000GH\u0006\u0000\uffff\uffff\u0000H\u0001\u0001\u0000"+ - "\u0000\u0000IJ\u0005\u0002\u0000\u0000JK\u0003\b\u0004\u0000KL\u0005\u0003"+ - "\u0000\u0000LO\u0003\"\u0011\u0000MN\u0005\u0004\u0000\u0000NP\u0003\""+ - "\u0011\u0000OM\u0001\u0000\u0000\u0000OP\u0001\u0000\u0000\u0000PQ\u0001"+ - "\u0000\u0000\u0000QR\u0005\u0005\u0000\u0000RS\u0006\u0001\uffff\uffff"+ - "\u0000S\u0003\u0001\u0000\u0000\u0000TU\u0005\u0006\u0000\u0000UV\u0005"+ - "\u001d\u0000\u0000VW\u0003\"\u0011\u0000WX\u0005\u001e\u0000\u0000XY\u0003"+ - "\u0006\u0003\u0000YZ\u0005\u0005\u0000\u0000Z[\u0006\u0002\uffff\uffff"+ - "\u0000[\u0005\u0001\u0000\u0000\u0000\\]\u0003\"\u0011\u0000]^\u0003 "+ - "\u0010\u0000^_\u0006\u0003\uffff\uffff\u0000_\u0007\u0001\u0000\u0000"+ - "\u0000`a\u0003\n\u0005\u0000ab\u0006\u0004\uffff\uffff\u0000b\t\u0001"+ - "\u0000\u0000\u0000cd\u0003\f\u0006\u0000dk\u0006\u0005\uffff\uffff\u0000"+ - "ef\u0005\b\u0000\u0000fg\u0003\f\u0006\u0000gh\u0006\u0005\uffff\uffff"+ - "\u0000hj\u0001\u0000\u0000\u0000ie\u0001\u0000\u0000\u0000jm\u0001\u0000"+ - "\u0000\u0000ki\u0001\u0000\u0000\u0000kl\u0001\u0000\u0000\u0000l\u000b"+ - "\u0001\u0000\u0000\u0000mk\u0001\u0000\u0000\u0000no\u0003\u000e\u0007"+ - "\u0000ov\u0006\u0006\uffff\uffff\u0000pq\u0005\u0007\u0000\u0000qr\u0003"+ - "\u000e\u0007\u0000rs\u0006\u0006\uffff\uffff\u0000su\u0001\u0000\u0000"+ - "\u0000tp\u0001\u0000\u0000\u0000ux\u0001\u0000\u0000\u0000vt\u0001\u0000"+ - "\u0000\u0000vw\u0001\u0000\u0000\u0000w\r\u0001\u0000\u0000\u0000xv\u0001"+ - "\u0000\u0000\u0000yz\u0007\u0000\u0000\u0000z{\u0003\u000e\u0007\u0000"+ - "{|\u0006\u0007\uffff\uffff\u0000|\u0081\u0001\u0000\u0000\u0000}~\u0003"+ - "\u0010\b\u0000~\u007f\u0006\u0007\uffff\uffff\u0000\u007f\u0081\u0001"+ - "\u0000\u0000\u0000\u0080y\u0001\u0000\u0000\u0000\u0080}\u0001\u0000\u0000"+ - "\u0000\u0081\u000f\u0001\u0000\u0000\u0000\u0082\u0083\u0005\u001d\u0000"+ - "\u0000\u0083\u0084\u0003\b\u0004\u0000\u0084\u0085\u0005\u001e\u0000\u0000"+ - "\u0085\u0086\u0006\b\uffff\uffff\u0000\u0086\u0090\u0001\u0000\u0000\u0000"+ - "\u0087\u0088\u0003\"\u0011\u0000\u0088\u0089\u0007\u0001\u0000\u0000\u0089"+ - "\u008a\u0003\u0012\t\u0000\u008a\u008b\u0006\b\uffff\uffff\u0000\u008b"+ - "\u0090\u0001\u0000\u0000\u0000\u008c\u008d\u0003\"\u0011\u0000\u008d\u008e"+ - "\u0006\b\uffff\uffff\u0000\u008e\u0090\u0001\u0000\u0000\u0000\u008f\u0082"+ - "\u0001\u0000\u0000\u0000\u008f\u0087\u0001\u0000\u0000\u0000\u008f\u008c"+ - "\u0001\u0000\u0000\u0000\u0090\u0011\u0001\u0000\u0000\u0000\u0091\u0092"+ - "\u0005*\u0000\u0000\u0092\u00a2\u0006\t\uffff\uffff\u0000\u0093\u0094"+ - "\u0005)\u0000\u0000\u0094\u00a2\u0006\t\uffff\uffff\u0000\u0095\u0096"+ - "\u0005+\u0000\u0000\u0096\u00a2\u0006\t\uffff\uffff\u0000\u0097\u0098"+ - "\u0005(\u0000\u0000\u0098\u0099\u0005+\u0000\u0000\u0099\u00a2\u0006\t"+ - "\uffff\uffff\u0000\u009a\u009b\u0005,\u0000\u0000\u009b\u00a2\u0006\t"+ - "\uffff\uffff\u0000\u009c\u009d\u0005(\u0000\u0000\u009d\u009e\u0005,\u0000"+ - "\u0000\u009e\u00a2\u0006\t\uffff\uffff\u0000\u009f\u00a0\u0005-\u0000"+ - "\u0000\u00a0\u00a2\u0006\t\uffff\uffff\u0000\u00a1\u0091\u0001\u0000\u0000"+ - "\u0000\u00a1\u0093\u0001\u0000\u0000\u0000\u00a1\u0095\u0001\u0000\u0000"+ - "\u0000\u00a1\u0097\u0001\u0000\u0000\u0000\u00a1\u009a\u0001\u0000\u0000"+ - "\u0000\u00a1\u009c\u0001\u0000\u0000\u0000\u00a1\u009f\u0001\u0000\u0000"+ - "\u0000\u00a2\u0013\u0001\u0000\u0000\u0000\u00a3\u00a4\u0005!\u0000\u0000"+ - "\u00a4\u00a5\u0003\u0016\u000b\u0000\u00a5\u00a6\u0006\n\uffff\uffff\u0000"+ - "\u00a6\u0015\u0001\u0000\u0000\u0000\u00a7\u00a8\u0005*\u0000\u0000\u00a8"+ - "\u00b6\u0006\u000b\uffff\uffff\u0000\u00a9\u00aa\u0005)\u0000\u0000\u00aa"+ - "\u00b6\u0006\u000b\uffff\uffff\u0000\u00ab\u00ac\u0003\u0018\f\u0000\u00ac"+ - "\u00ad\u0006\u000b\uffff\uffff\u0000\u00ad\u00b6\u0001\u0000\u0000\u0000"+ - "\u00ae\u00af\u0005,\u0000\u0000\u00af\u00b6\u0006\u000b\uffff\uffff\u0000"+ - "\u00b0\u00b1\u0005-\u0000\u0000\u00b1\u00b6\u0006\u000b\uffff\uffff\u0000"+ - "\u00b2\u00b3\u0005\u001f\u0000\u0000\u00b3\u00b4\u0005 \u0000\u0000\u00b4"+ - "\u00b6\u0006\u000b\uffff\uffff\u0000\u00b5\u00a7\u0001\u0000\u0000\u0000"+ - "\u00b5\u00a9\u0001\u0000\u0000\u0000\u00b5\u00ab\u0001\u0000\u0000\u0000"+ - "\u00b5\u00ae\u0001\u0000\u0000\u0000\u00b5\u00b0\u0001\u0000\u0000\u0000"+ - "\u00b5\u00b2\u0001\u0000\u0000\u0000\u00b6\u0017\u0001\u0000\u0000\u0000"+ - "\u00b7\u00b9\u0005(\u0000\u0000\u00b8\u00b7\u0001\u0000\u0000\u0000\u00b8"+ - "\u00b9\u0001\u0000\u0000\u0000\u00b9\u00ba\u0001\u0000\u0000\u0000\u00ba"+ - "\u00bb\u0005+\u0000\u0000\u00bb\u0019\u0001\u0000\u0000\u0000\u00bc\u00bd"+ - "\u0005\"\u0000\u0000\u00bd\u00be\u0005.\u0000\u0000\u00be\u00c0\u0005"+ - "\u001d\u0000\u0000\u00bf\u00c1\u0003\u001c\u000e\u0000\u00c0\u00bf\u0001"+ - "\u0000\u0000\u0000\u00c0\u00c1\u0001\u0000\u0000\u0000\u00c1\u00c2\u0001"+ - "\u0000\u0000\u0000\u00c2\u00c3\u0005\u001e\u0000\u0000\u00c3\u00c4\u0006"+ - "\r\uffff\uffff\u0000\u00c4\u001b\u0001\u0000\u0000\u0000\u00c5\u00c6\u0003"+ - "\u001e\u000f\u0000\u00c6\u00cd\u0006\u000e\uffff\uffff\u0000\u00c7\u00c8"+ - "\u0005#\u0000\u0000\u00c8\u00c9\u0003\u001e\u000f\u0000\u00c9\u00ca\u0006"+ - "\u000e\uffff\uffff\u0000\u00ca\u00cc\u0001\u0000\u0000\u0000\u00cb\u00c7"+ - "\u0001\u0000\u0000\u0000\u00cc\u00cf\u0001\u0000\u0000\u0000\u00cd\u00cb"+ - "\u0001\u0000\u0000\u0000\u00cd\u00ce\u0001\u0000\u0000\u0000\u00ce\u001d"+ - "\u0001\u0000\u0000\u0000\u00cf\u00cd\u0001\u0000\u0000\u0000\u00d0\u00d1"+ - "\u0005+\u0000\u0000\u00d1\u00df\u0006\u000f\uffff\uffff\u0000\u00d2\u00d3"+ - "\u0005(\u0000\u0000\u00d3\u00d4\u0005+\u0000\u0000\u00d4\u00df\u0006\u000f"+ - "\uffff\uffff\u0000\u00d5\u00d6\u0005,\u0000\u0000\u00d6\u00df\u0006\u000f"+ - "\uffff\uffff\u0000\u00d7\u00d8\u0005(\u0000\u0000\u00d8\u00d9\u0005,\u0000"+ - "\u0000\u00d9\u00df\u0006\u000f\uffff\uffff\u0000\u00da\u00db\u0005*\u0000"+ - "\u0000\u00db\u00df\u0006\u000f\uffff\uffff\u0000\u00dc\u00dd\u0005)\u0000"+ - "\u0000\u00dd\u00df\u0006\u000f\uffff\uffff\u0000\u00de\u00d0\u0001\u0000"+ - "\u0000\u0000\u00de\u00d2\u0001\u0000\u0000\u0000\u00de\u00d5\u0001\u0000"+ - "\u0000\u0000\u00de\u00d7\u0001\u0000\u0000\u0000\u00de\u00da\u0001\u0000"+ - "\u0000\u0000\u00de\u00dc\u0001\u0000\u0000\u0000\u00df\u001f\u0001\u0000"+ - "\u0000\u0000\u00e0\u00e1\u0005\u0001\u0000\u0000\u00e1\u00e2\u0003\"\u0011"+ - "\u0000\u00e2\u00e9\u0006\u0010\uffff\uffff\u0000\u00e3\u00e4\u0005\u0001"+ - "\u0000\u0000\u00e4\u00e5\u0003\"\u0011\u0000\u00e5\u00e6\u0006\u0010\uffff"+ - "\uffff\u0000\u00e6\u00e8\u0001\u0000\u0000\u0000\u00e7\u00e3\u0001\u0000"+ - "\u0000\u0000\u00e8\u00eb\u0001\u0000\u0000\u0000\u00e9\u00e7\u0001\u0000"+ - "\u0000\u0000\u00e9\u00ea\u0001\u0000\u0000\u0000\u00ea\u00ee\u0001\u0000"+ - "\u0000\u0000\u00eb\u00e9\u0001\u0000\u0000\u0000\u00ec\u00ee\u0001\u0000"+ - "\u0000\u0000\u00ed\u00e0\u0001\u0000\u0000\u0000\u00ed\u00ec\u0001\u0000"+ - "\u0000\u0000\u00ee!\u0001\u0000\u0000\u0000\u00ef\u00f0\u0005\u0016\u0000"+ - "\u0000\u00f0\u00f1\u0005\u001c\u0000\u0000\u00f1\u00f2\u0003$\u0012\u0000"+ - "\u00f2\u00f9\u0006\u0011\uffff\uffff\u0000\u00f3\u00f4\u0005\u001c\u0000"+ - "\u0000\u00f4\u00f5\u0003$\u0012\u0000\u00f5\u00f6\u0006\u0011\uffff\uffff"+ - "\u0000\u00f6\u00f8\u0001\u0000\u0000\u0000\u00f7\u00f3\u0001\u0000\u0000"+ - "\u0000\u00f8\u00fb\u0001\u0000\u0000\u0000\u00f9\u00f7\u0001\u0000\u0000"+ - "\u0000\u00f9\u00fa\u0001\u0000\u0000\u0000\u00fa\u00fd\u0001\u0000\u0000"+ - "\u0000\u00fb\u00f9\u0001\u0000\u0000\u0000\u00fc\u00fe\u0003,\u0016\u0000"+ - "\u00fd\u00fc\u0001\u0000\u0000\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000"+ - "\u00fe\u00ff\u0001\u0000\u0000\u0000\u00ff\u0100\u0006\u0011\uffff\uffff"+ - "\u0000\u0100\u014e\u0001\u0000\u0000\u0000\u0101\u0102\u0005\u0015\u0000"+ - "\u0000\u0102\u0109\u0006\u0011\uffff\uffff\u0000\u0103\u0104\u0005\u001c"+ - "\u0000\u0000\u0104\u0105\u0003$\u0012\u0000\u0105\u0106\u0006\u0011\uffff"+ - "\uffff\u0000\u0106\u0108\u0001\u0000\u0000\u0000\u0107\u0103\u0001\u0000"+ - "\u0000\u0000\u0108\u010b\u0001\u0000\u0000\u0000\u0109\u0107\u0001\u0000"+ - "\u0000\u0000\u0109\u010a\u0001\u0000\u0000\u0000\u010a\u010d\u0001\u0000"+ - "\u0000\u0000\u010b\u0109\u0001\u0000\u0000\u0000\u010c\u010e\u0003,\u0016"+ - "\u0000\u010d\u010c\u0001\u0000\u0000\u0000\u010d\u010e\u0001\u0000\u0000"+ - "\u0000\u010e\u010f\u0001\u0000\u0000\u0000\u010f\u014e\u0006\u0011\uffff"+ - "\uffff\u0000\u0110\u0111\u0003$\u0012\u0000\u0111\u0113\u0006\u0011\uffff"+ - "\uffff\u0000\u0112\u0114\u0003,\u0016\u0000\u0113\u0112\u0001\u0000\u0000"+ - "\u0000\u0113\u0114\u0001\u0000\u0000\u0000\u0114\u0115\u0001\u0000\u0000"+ - "\u0000\u0115\u0116\u0006\u0011\uffff\uffff\u0000\u0116\u014e\u0001\u0000"+ - "\u0000\u0000\u0117\u0118\u0003$\u0012\u0000\u0118\u011a\u0006\u0011\uffff"+ - "\uffff\u0000\u0119\u011b\u0005\u001c\u0000\u0000\u011a\u0119\u0001\u0000"+ - "\u0000\u0000\u011a\u011b\u0001\u0000\u0000\u0000\u011b\u011c\u0001\u0000"+ - "\u0000\u0000\u011c\u011d\u0003&\u0013\u0000\u011d\u011e\u0006\u0011\uffff"+ - "\uffff\u0000\u011e\u014e\u0001\u0000\u0000\u0000\u011f\u0120\u0003$\u0012"+ - "\u0000\u0120\u0127\u0006\u0011\uffff\uffff\u0000\u0121\u0122\u0005\u001c"+ - "\u0000\u0000\u0122\u0123\u0003$\u0012\u0000\u0123\u0124\u0006\u0011\uffff"+ - "\uffff\u0000\u0124\u0126\u0001\u0000\u0000\u0000\u0125\u0121\u0001\u0000"+ - "\u0000\u0000\u0126\u0129\u0001\u0000\u0000\u0000\u0127\u0125\u0001\u0000"+ - "\u0000\u0000\u0127\u0128\u0001\u0000\u0000\u0000\u0128\u012a\u0001\u0000"+ - "\u0000\u0000\u0129\u0127\u0001\u0000\u0000\u0000\u012a\u012b\u0005\u001c"+ - "\u0000\u0000\u012b\u012c\u0003$\u0012\u0000\u012c\u012e\u0006\u0011\uffff"+ - "\uffff\u0000\u012d\u012f\u0003,\u0016\u0000\u012e\u012d\u0001\u0000\u0000"+ - "\u0000\u012e\u012f\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000"+ - "\u0000\u0130\u0131\u0006\u0011\uffff\uffff\u0000\u0131\u014e\u0001\u0000"+ - "\u0000\u0000\u0132\u0133\u0003$\u0012\u0000\u0133\u013a\u0006\u0011\uffff"+ - "\uffff\u0000\u0134\u0135\u0005\u001c\u0000\u0000\u0135\u0136\u0003$\u0012"+ - "\u0000\u0136\u0137\u0006\u0011\uffff\uffff\u0000\u0137\u0139\u0001\u0000"+ - "\u0000\u0000\u0138\u0134\u0001\u0000\u0000\u0000\u0139\u013c\u0001\u0000"+ - "\u0000\u0000\u013a\u0138\u0001\u0000\u0000\u0000\u013a\u013b\u0001\u0000"+ - "\u0000\u0000\u013b\u013d\u0001\u0000\u0000\u0000\u013c\u013a\u0001\u0000"+ - "\u0000\u0000\u013d\u013e\u0005\u001c\u0000\u0000\u013e\u013f\u0003$\u0012"+ - "\u0000\u013f\u0141\u0006\u0011\uffff\uffff\u0000\u0140\u0142\u0005\u001c"+ - "\u0000\u0000\u0141\u0140\u0001\u0000\u0000\u0000\u0141\u0142\u0001\u0000"+ - "\u0000\u0000\u0142\u0143\u0001\u0000\u0000\u0000\u0143\u0144\u0003&\u0013"+ - "\u0000\u0144\u0146\u0006\u0011\uffff\uffff\u0000\u0145\u0147\u0003,\u0016"+ - "\u0000\u0146\u0145\u0001\u0000\u0000\u0000\u0146\u0147\u0001\u0000\u0000"+ - "\u0000\u0147\u0148\u0001\u0000\u0000\u0000\u0148\u0149\u0006\u0011\uffff"+ - "\uffff\u0000\u0149\u014e\u0001\u0000\u0000\u0000\u014a\u014b\u0003&\u0013"+ - "\u0000\u014b\u014c\u0006\u0011\uffff\uffff\u0000\u014c\u014e\u0001\u0000"+ - "\u0000\u0000\u014d\u00ef\u0001\u0000\u0000\u0000\u014d\u0101\u0001\u0000"+ - "\u0000\u0000\u014d\u0110\u0001\u0000\u0000\u0000\u014d\u0117\u0001\u0000"+ - "\u0000\u0000\u014d\u011f\u0001\u0000\u0000\u0000\u014d\u0132\u0001\u0000"+ - "\u0000\u0000\u014d\u014a\u0001\u0000\u0000\u0000\u014e#\u0001\u0000\u0000"+ - "\u0000\u014f\u0150\u0005.\u0000\u0000\u0150\u0152\u0005\u001d\u0000\u0000"+ - "\u0151\u0153\u0003\u001c\u000e\u0000\u0152\u0151\u0001\u0000\u0000\u0000"+ - "\u0152\u0153\u0001\u0000\u0000\u0000\u0153\u0154\u0001\u0000\u0000\u0000"+ - "\u0154\u0155\u0005\u001e\u0000\u0000\u0155\u0156\u0001\u0000\u0000\u0000"+ - "\u0156\u015a\u0006\u0012\uffff\uffff\u0000\u0157\u0158\u0005.\u0000\u0000"+ - "\u0158\u015a\u0006\u0012\uffff\uffff\u0000\u0159\u014f\u0001\u0000\u0000"+ - "\u0000\u0159\u0157\u0001\u0000\u0000\u0000\u015a%\u0001\u0000\u0000\u0000"+ - "\u015b\u015c\u0005\u001a\u0000\u0000\u015c\u015d\u0003(\u0014\u0000\u015d"+ - "\u015e\u0006\u0013\uffff\uffff\u0000\u015e\u015f\u0005\u001b\u0000\u0000"+ - "\u015f\'\u0001\u0000\u0000\u0000\u0160\u0161\u0003*\u0015\u0000\u0161"+ - "\u0168\u0006\u0014\uffff\uffff\u0000\u0162\u0163\u0005#\u0000\u0000\u0163"+ - "\u0164\u0003*\u0015\u0000\u0164\u0165\u0006\u0014\uffff\uffff\u0000\u0165"+ - "\u0167\u0001\u0000\u0000\u0000\u0166\u0162\u0001\u0000\u0000\u0000\u0167"+ - "\u016a\u0001\u0000\u0000\u0000\u0168\u0166\u0001\u0000\u0000\u0000\u0168"+ - "\u0169\u0001\u0000\u0000\u0000\u0169)\u0001\u0000\u0000\u0000\u016a\u0168"+ - "\u0001\u0000\u0000\u0000\u016b\u016c\u0005.\u0000\u0000\u016c\u0176\u0006"+ - "\u0015\uffff\uffff\u0000\u016d\u016e\u0005)\u0000\u0000\u016e\u0176\u0006"+ - "\u0015\uffff\uffff\u0000\u016f\u0170\u0005*\u0000\u0000\u0170\u0176\u0006"+ - "\u0015\uffff\uffff\u0000\u0171\u0172\u0005+\u0000\u0000\u0172\u0176\u0006"+ - "\u0015\uffff\uffff\u0000\u0173\u0174\u0005,\u0000\u0000\u0174\u0176\u0006"+ - "\u0015\uffff\uffff\u0000\u0175\u016b\u0001\u0000\u0000\u0000\u0175\u016d"+ - "\u0001\u0000\u0000\u0000\u0175\u016f\u0001\u0000\u0000\u0000\u0175\u0171"+ - "\u0001\u0000\u0000\u0000\u0175\u0173\u0001\u0000\u0000\u0000\u0176+\u0001"+ - "\u0000\u0000\u0000\u0177\u0178\u00030\u0018\u0000\u0178\u0179\u0003.\u0017"+ - "\u0000\u0179\u017a\u0006\u0016\uffff\uffff\u0000\u017a-\u0001\u0000\u0000"+ - "\u0000\u017b\u017f\u0001\u0000\u0000\u0000\u017c\u017f\u0005+\u0000\u0000"+ - "\u017d\u017f\u0005,\u0000\u0000\u017e\u017b\u0001\u0000\u0000\u0000\u017e"+ - "\u017c\u0001\u0000\u0000\u0000\u017e\u017d\u0001\u0000\u0000\u0000\u017f"+ - "/\u0001\u0000\u0000\u0000\u0180\u0181\u0007\u0002\u0000\u0000\u01811\u0001"+ - "\u0000\u0000\u0000$36;>AEOkv\u0080\u008f\u00a1\u00b5\u00b8\u00c0\u00cd"+ - "\u00de\u00e9\u00ed\u00f9\u00fd\u0109\u010d\u0113\u011a\u0127\u012e\u013a"+ - "\u0141\u0146\u014d\u0152\u0159\u0168\u0175\u017e"; + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0003"+ + "\u0011\u0102\b\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+ + "\u0012\u0001\u0012\u0001\u0012\u0005\u0012\u010b\b\u0012\n\u0012\f\u0012"+ + "\u010e\t\u0012\u0001\u0012\u0003\u0012\u0111\b\u0012\u0001\u0013\u0001"+ + "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+ + "\u0013\u0005\u0013\u011b\b\u0013\n\u0013\f\u0013\u011e\t\u0013\u0001\u0013"+ + "\u0003\u0013\u0121\b\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+ + "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u012b\b\u0013"+ + "\n\u0013\f\u0013\u012e\t\u0013\u0001\u0013\u0003\u0013\u0131\b\u0013\u0001"+ + "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0003\u0013\u0137\b\u0013\u0001"+ + "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0003\u0013\u013e"+ + "\b\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+ + "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0149\b\u0013\n"+ + "\u0013\f\u0013\u014c\t\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+ + "\u0013\u0003\u0013\u0152\b\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+ + "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u015c"+ + "\b\u0013\n\u0013\f\u0013\u015f\t\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+ + "\u0001\u0013\u0003\u0013\u0165\b\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+ + "\u0003\u0013\u016a\b\u0013\u0001\u0013\u0001\u0013\u0003\u0013\u016e\b"+ + "\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u0173\b\u0014\u0001"+ + "\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u017a"+ + "\b\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001"+ + "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0005"+ + "\u0016\u0187\b\u0016\n\u0016\f\u0016\u018a\t\u0016\u0001\u0017\u0001\u0017"+ + "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017"+ + "\u0001\u0017\u0001\u0017\u0003\u0017\u0196\b\u0017\u0001\u0018\u0001\u0018"+ + "\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0003\u0019"+ + "\u019f\b\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0000\u0000\u001b\u0000"+ + "\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c"+ + "\u001e \"$&(*,.024\u0000\u0003\u0001\u0000\b\t\u0001\u0000\n\u0013\u0002"+ + "\u0000#%\'\'\u01c6\u00007\u0001\u0000\u0000\u0000\u0002M\u0001\u0000\u0000"+ + "\u0000\u0004d\u0001\u0000\u0000\u0000\u0006f\u0001\u0000\u0000\u0000\b"+ + "p\u0001\u0000\u0000\u0000\n\u0081\u0001\u0000\u0000\u0000\f\u0083\u0001"+ + "\u0000\u0000\u0000\u000e\u0086\u0001\u0000\u0000\u0000\u0010\u0091\u0001"+ + "\u0000\u0000\u0000\u0012\u00a3\u0001\u0000\u0000\u0000\u0014\u00b2\u0001"+ + "\u0000\u0000\u0000\u0016\u00c4\u0001\u0000\u0000\u0000\u0018\u00c6\u0001"+ + "\u0000\u0000\u0000\u001a\u00d8\u0001\u0000\u0000\u0000\u001c\u00db\u0001"+ + "\u0000\u0000\u0000\u001e\u00df\u0001\u0000\u0000\u0000 \u00e8\u0001\u0000"+ + "\u0000\u0000\"\u0101\u0001\u0000\u0000\u0000$\u0110\u0001\u0000\u0000"+ + "\u0000&\u016d\u0001\u0000\u0000\u0000(\u0179\u0001\u0000\u0000\u0000*"+ + "\u017b\u0001\u0000\u0000\u0000,\u0180\u0001\u0000\u0000\u0000.\u0195\u0001"+ + "\u0000\u0000\u00000\u0197\u0001\u0000\u0000\u00002\u019e\u0001\u0000\u0000"+ + "\u00004\u01a0\u0001\u0000\u0000\u000068\u0005\u0016\u0000\u000076\u0001"+ + "\u0000\u0000\u000078\u0001\u0000\u0000\u00008:\u0001\u0000\u0000\u0000"+ + "9;\u0005.\u0000\u0000:9\u0001\u0000\u0000\u0000:;\u0001\u0000\u0000\u0000"+ + ";?\u0001\u0000\u0000\u0000<@\u0003\u0002\u0001\u0000=@\u0003\u0004\u0002"+ + "\u0000>@\u0003\n\u0005\u0000?<\u0001\u0000\u0000\u0000?=\u0001\u0000\u0000"+ + "\u0000?>\u0001\u0000\u0000\u0000@B\u0001\u0000\u0000\u0000AC\u0003\u0018"+ + "\f\u0000BA\u0001\u0000\u0000\u0000BC\u0001\u0000\u0000\u0000CE\u0001\u0000"+ + "\u0000\u0000DF\u0003\u001e\u000f\u0000ED\u0001\u0000\u0000\u0000EF\u0001"+ + "\u0000\u0000\u0000FI\u0001\u0000\u0000\u0000GH\u0005\u0002\u0000\u0000"+ + "HJ\u0003\f\u0006\u0000IG\u0001\u0000\u0000\u0000IJ\u0001\u0000\u0000\u0000"+ + "JK\u0001\u0000\u0000\u0000KL\u0006\u0000\uffff\uffff\u0000L\u0001\u0001"+ + "\u0000\u0000\u0000MN\u0005\u0002\u0000\u0000NO\u0003\f\u0006\u0000OP\u0005"+ + "\u0003\u0000\u0000PS\u0003&\u0013\u0000QR\u0005\u0004\u0000\u0000RT\u0003"+ + "&\u0013\u0000SQ\u0001\u0000\u0000\u0000ST\u0001\u0000\u0000\u0000TU\u0001"+ + "\u0000\u0000\u0000UV\u0005\u0005\u0000\u0000VW\u0006\u0001\uffff\uffff"+ + "\u0000W\u0003\u0001\u0000\u0000\u0000XY\u0003&\u0013\u0000YZ\u0005\u0019"+ + "\u0000\u0000Z[\u0003\u0006\u0003\u0000[\\\u0005\u001a\u0000\u0000\\]\u0006"+ + "\u0002\uffff\uffff\u0000]e\u0001\u0000\u0000\u0000^_\u0003&\u0013\u0000"+ + "_`\u0005\u0019\u0000\u0000`a\u0003\n\u0005\u0000ab\u0005\u001a\u0000\u0000"+ + "bc\u0006\u0002\uffff\uffff\u0000ce\u0001\u0000\u0000\u0000dX\u0001\u0000"+ + "\u0000\u0000d^\u0001\u0000\u0000\u0000e\u0005\u0001\u0000\u0000\u0000"+ + "fg\u0003.\u0017\u0000gl\u0006\u0003\uffff\uffff\u0000hi\u0005&\u0000\u0000"+ + "ij\u0003.\u0017\u0000jk\u0006\u0003\uffff\uffff\u0000km\u0001\u0000\u0000"+ + "\u0000lh\u0001\u0000\u0000\u0000mn\u0001\u0000\u0000\u0000nl\u0001\u0000"+ + "\u0000\u0000no\u0001\u0000\u0000\u0000o\u0007\u0001\u0000\u0000\u0000"+ + "pq\u0003.\u0017\u0000qv\u0006\u0004\uffff\uffff\u0000rs\u0005&\u0000\u0000"+ + "st\u0003.\u0017\u0000tu\u0006\u0004\uffff\uffff\u0000uw\u0001\u0000\u0000"+ + "\u0000vr\u0001\u0000\u0000\u0000wx\u0001\u0000\u0000\u0000xv\u0001\u0000"+ + "\u0000\u0000xy\u0001\u0000\u0000\u0000y\t\u0001\u0000\u0000\u0000z{\u0003"+ + "\b\u0004\u0000{|\u0006\u0005\uffff\uffff\u0000|\u0082\u0001\u0000\u0000"+ + "\u0000}~\u0003&\u0013\u0000~\u007f\u0003$\u0012\u0000\u007f\u0080\u0006"+ + "\u0005\uffff\uffff\u0000\u0080\u0082\u0001\u0000\u0000\u0000\u0081z\u0001"+ + "\u0000\u0000\u0000\u0081}\u0001\u0000\u0000\u0000\u0082\u000b\u0001\u0000"+ + "\u0000\u0000\u0083\u0084\u0003\u000e\u0007\u0000\u0084\u0085\u0006\u0006"+ + "\uffff\uffff\u0000\u0085\r\u0001\u0000\u0000\u0000\u0086\u0087\u0003\u0010"+ + "\b\u0000\u0087\u008e\u0006\u0007\uffff\uffff\u0000\u0088\u0089\u0005\u0007"+ + "\u0000\u0000\u0089\u008a\u0003\u0010\b\u0000\u008a\u008b\u0006\u0007\uffff"+ + "\uffff\u0000\u008b\u008d\u0001\u0000\u0000\u0000\u008c\u0088\u0001\u0000"+ + "\u0000\u0000\u008d\u0090\u0001\u0000\u0000\u0000\u008e\u008c\u0001\u0000"+ + "\u0000\u0000\u008e\u008f\u0001\u0000\u0000\u0000\u008f\u000f\u0001\u0000"+ + "\u0000\u0000\u0090\u008e\u0001\u0000\u0000\u0000\u0091\u0092\u0003\u0012"+ + "\t\u0000\u0092\u0099\u0006\b\uffff\uffff\u0000\u0093\u0094\u0005\u0006"+ + "\u0000\u0000\u0094\u0095\u0003\u0012\t\u0000\u0095\u0096\u0006\b\uffff"+ + "\uffff\u0000\u0096\u0098\u0001\u0000\u0000\u0000\u0097\u0093\u0001\u0000"+ + "\u0000\u0000\u0098\u009b\u0001\u0000\u0000\u0000\u0099\u0097\u0001\u0000"+ + "\u0000\u0000\u0099\u009a\u0001\u0000\u0000\u0000\u009a\u0011\u0001\u0000"+ + "\u0000\u0000\u009b\u0099\u0001\u0000\u0000\u0000\u009c\u009d\u0007\u0000"+ + "\u0000\u0000\u009d\u009e\u0003\u0012\t\u0000\u009e\u009f\u0006\t\uffff"+ + "\uffff\u0000\u009f\u00a4\u0001\u0000\u0000\u0000\u00a0\u00a1\u0003\u0014"+ + "\n\u0000\u00a1\u00a2\u0006\t\uffff\uffff\u0000\u00a2\u00a4\u0001\u0000"+ + "\u0000\u0000\u00a3\u009c\u0001\u0000\u0000\u0000\u00a3\u00a0\u0001\u0000"+ + "\u0000\u0000\u00a4\u0013\u0001\u0000\u0000\u0000\u00a5\u00a6\u0005\u001c"+ + "\u0000\u0000\u00a6\u00a7\u0003\f\u0006\u0000\u00a7\u00a8\u0005\u001d\u0000"+ + "\u0000\u00a8\u00a9\u0006\n\uffff\uffff\u0000\u00a9\u00b3\u0001\u0000\u0000"+ + "\u0000\u00aa\u00ab\u0003&\u0013\u0000\u00ab\u00ac\u0007\u0001\u0000\u0000"+ + "\u00ac\u00ad\u0003\u0016\u000b\u0000\u00ad\u00ae\u0006\n\uffff\uffff\u0000"+ + "\u00ae\u00b3\u0001\u0000\u0000\u0000\u00af\u00b0\u0003&\u0013\u0000\u00b0"+ + "\u00b1\u0006\n\uffff\uffff\u0000\u00b1\u00b3\u0001\u0000\u0000\u0000\u00b2"+ + "\u00a5\u0001\u0000\u0000\u0000\u00b2\u00aa\u0001\u0000\u0000\u0000\u00b2"+ + "\u00af\u0001\u0000\u0000\u0000\u00b3\u0015\u0001\u0000\u0000\u0000\u00b4"+ + "\u00b5\u0005)\u0000\u0000\u00b5\u00c5\u0006\u000b\uffff\uffff\u0000\u00b6"+ + "\u00b7\u0005(\u0000\u0000\u00b7\u00c5\u0006\u000b\uffff\uffff\u0000\u00b8"+ + "\u00b9\u0005*\u0000\u0000\u00b9\u00c5\u0006\u000b\uffff\uffff\u0000\u00ba"+ + "\u00bb\u0005\'\u0000\u0000\u00bb\u00bc\u0005*\u0000\u0000\u00bc\u00c5"+ + "\u0006\u000b\uffff\uffff\u0000\u00bd\u00be\u0005+\u0000\u0000\u00be\u00c5"+ + "\u0006\u000b\uffff\uffff\u0000\u00bf\u00c0\u0005\'\u0000\u0000\u00c0\u00c1"+ + "\u0005+\u0000\u0000\u00c1\u00c5\u0006\u000b\uffff\uffff\u0000\u00c2\u00c3"+ + "\u0005,\u0000\u0000\u00c3\u00c5\u0006\u000b\uffff\uffff\u0000\u00c4\u00b4"+ + "\u0001\u0000\u0000\u0000\u00c4\u00b6\u0001\u0000\u0000\u0000\u00c4\u00b8"+ + "\u0001\u0000\u0000\u0000\u00c4\u00ba\u0001\u0000\u0000\u0000\u00c4\u00bd"+ + "\u0001\u0000\u0000\u0000\u00c4\u00bf\u0001\u0000\u0000\u0000\u00c4\u00c2"+ + "\u0001\u0000\u0000\u0000\u00c5\u0017\u0001\u0000\u0000\u0000\u00c6\u00c7"+ + "\u0005 \u0000\u0000\u00c7\u00c8\u0003\u001a\r\u0000\u00c8\u00c9\u0006"+ + "\f\uffff\uffff\u0000\u00c9\u0019\u0001\u0000\u0000\u0000\u00ca\u00cb\u0005"+ + ")\u0000\u0000\u00cb\u00d9\u0006\r\uffff\uffff\u0000\u00cc\u00cd\u0005"+ + "(\u0000\u0000\u00cd\u00d9\u0006\r\uffff\uffff\u0000\u00ce\u00cf\u0003"+ + "\u001c\u000e\u0000\u00cf\u00d0\u0006\r\uffff\uffff\u0000\u00d0\u00d9\u0001"+ + "\u0000\u0000\u0000\u00d1\u00d2\u0005+\u0000\u0000\u00d2\u00d9\u0006\r"+ + "\uffff\uffff\u0000\u00d3\u00d4\u0005,\u0000\u0000\u00d4\u00d9\u0006\r"+ + "\uffff\uffff\u0000\u00d5\u00d6\u0005\u001e\u0000\u0000\u00d6\u00d7\u0005"+ + "\u001f\u0000\u0000\u00d7\u00d9\u0006\r\uffff\uffff\u0000\u00d8\u00ca\u0001"+ + "\u0000\u0000\u0000\u00d8\u00cc\u0001\u0000\u0000\u0000\u00d8\u00ce\u0001"+ + "\u0000\u0000\u0000\u00d8\u00d1\u0001\u0000\u0000\u0000\u00d8\u00d3\u0001"+ + "\u0000\u0000\u0000\u00d8\u00d5\u0001\u0000\u0000\u0000\u00d9\u001b\u0001"+ + "\u0000\u0000\u0000\u00da\u00dc\u0005\'\u0000\u0000\u00db\u00da\u0001\u0000"+ + "\u0000\u0000\u00db\u00dc\u0001\u0000\u0000\u0000\u00dc\u00dd\u0001\u0000"+ + "\u0000\u0000\u00dd\u00de\u0005*\u0000\u0000\u00de\u001d\u0001\u0000\u0000"+ + "\u0000\u00df\u00e0\u0005!\u0000\u0000\u00e0\u00e1\u0005-\u0000\u0000\u00e1"+ + "\u00e3\u0005\u001c\u0000\u0000\u00e2\u00e4\u0003 \u0010\u0000\u00e3\u00e2"+ + "\u0001\u0000\u0000\u0000\u00e3\u00e4\u0001\u0000\u0000\u0000\u00e4\u00e5"+ + "\u0001\u0000\u0000\u0000\u00e5\u00e6\u0005\u001d\u0000\u0000\u00e6\u00e7"+ + "\u0006\u000f\uffff\uffff\u0000\u00e7\u001f\u0001\u0000\u0000\u0000\u00e8"+ + "\u00e9\u0003\"\u0011\u0000\u00e9\u00f0\u0006\u0010\uffff\uffff\u0000\u00ea"+ + "\u00eb\u0005\"\u0000\u0000\u00eb\u00ec\u0003\"\u0011\u0000\u00ec\u00ed"+ + "\u0006\u0010\uffff\uffff\u0000\u00ed\u00ef\u0001\u0000\u0000\u0000\u00ee"+ + "\u00ea\u0001\u0000\u0000\u0000\u00ef\u00f2\u0001\u0000\u0000\u0000\u00f0"+ + "\u00ee\u0001\u0000\u0000\u0000\u00f0\u00f1\u0001\u0000\u0000\u0000\u00f1"+ + "!\u0001\u0000\u0000\u0000\u00f2\u00f0\u0001\u0000\u0000\u0000\u00f3\u00f4"+ + "\u0005*\u0000\u0000\u00f4\u0102\u0006\u0011\uffff\uffff\u0000\u00f5\u00f6"+ + "\u0005\'\u0000\u0000\u00f6\u00f7\u0005*\u0000\u0000\u00f7\u0102\u0006"+ + "\u0011\uffff\uffff\u0000\u00f8\u00f9\u0005+\u0000\u0000\u00f9\u0102\u0006"+ + "\u0011\uffff\uffff\u0000\u00fa\u00fb\u0005\'\u0000\u0000\u00fb\u00fc\u0005"+ + "+\u0000\u0000\u00fc\u0102\u0006\u0011\uffff\uffff\u0000\u00fd\u00fe\u0005"+ + ")\u0000\u0000\u00fe\u0102\u0006\u0011\uffff\uffff\u0000\u00ff\u0100\u0005"+ + "(\u0000\u0000\u0100\u0102\u0006\u0011\uffff\uffff\u0000\u0101\u00f3\u0001"+ + "\u0000\u0000\u0000\u0101\u00f5\u0001\u0000\u0000\u0000\u0101\u00f8\u0001"+ + "\u0000\u0000\u0000\u0101\u00fa\u0001\u0000\u0000\u0000\u0101\u00fd\u0001"+ + "\u0000\u0000\u0000\u0101\u00ff\u0001\u0000\u0000\u0000\u0102#\u0001\u0000"+ + "\u0000\u0000\u0103\u0104\u0005\u0001\u0000\u0000\u0104\u0105\u0003&\u0013"+ + "\u0000\u0105\u010c\u0006\u0012\uffff\uffff\u0000\u0106\u0107\u0005\u0001"+ + "\u0000\u0000\u0107\u0108\u0003&\u0013\u0000\u0108\u0109\u0006\u0012\uffff"+ + "\uffff\u0000\u0109\u010b\u0001\u0000\u0000\u0000\u010a\u0106\u0001\u0000"+ + "\u0000\u0000\u010b\u010e\u0001\u0000\u0000\u0000\u010c\u010a\u0001\u0000"+ + "\u0000\u0000\u010c\u010d\u0001\u0000\u0000\u0000\u010d\u0111\u0001\u0000"+ + "\u0000\u0000\u010e\u010c\u0001\u0000\u0000\u0000\u010f\u0111\u0001\u0000"+ + "\u0000\u0000\u0110\u0103\u0001\u0000\u0000\u0000\u0110\u010f\u0001\u0000"+ + "\u0000\u0000\u0111%\u0001\u0000\u0000\u0000\u0112\u0113\u0005\u0015\u0000"+ + "\u0000\u0113\u0114\u0005\u001b\u0000\u0000\u0114\u0115\u0003(\u0014\u0000"+ + "\u0115\u011c\u0006\u0013\uffff\uffff\u0000\u0116\u0117\u0005\u001b\u0000"+ + "\u0000\u0117\u0118\u0003(\u0014\u0000\u0118\u0119\u0006\u0013\uffff\uffff"+ + "\u0000\u0119\u011b\u0001\u0000\u0000\u0000\u011a\u0116\u0001\u0000\u0000"+ + "\u0000\u011b\u011e\u0001\u0000\u0000\u0000\u011c\u011a\u0001\u0000\u0000"+ + "\u0000\u011c\u011d\u0001\u0000\u0000\u0000\u011d\u0120\u0001\u0000\u0000"+ + "\u0000\u011e\u011c\u0001\u0000\u0000\u0000\u011f\u0121\u00030\u0018\u0000"+ + "\u0120\u011f\u0001\u0000\u0000\u0000\u0120\u0121\u0001\u0000\u0000\u0000"+ + "\u0121\u0122\u0001\u0000\u0000\u0000\u0122\u0123\u0006\u0013\uffff\uffff"+ + "\u0000\u0123\u016e\u0001\u0000\u0000\u0000\u0124\u0125\u0005\u0014\u0000"+ + "\u0000\u0125\u012c\u0006\u0013\uffff\uffff\u0000\u0126\u0127\u0005\u001b"+ + "\u0000\u0000\u0127\u0128\u0003(\u0014\u0000\u0128\u0129\u0006\u0013\uffff"+ + "\uffff\u0000\u0129\u012b\u0001\u0000\u0000\u0000\u012a\u0126\u0001\u0000"+ + "\u0000\u0000\u012b\u012e\u0001\u0000\u0000\u0000\u012c\u012a\u0001\u0000"+ + "\u0000\u0000\u012c\u012d\u0001\u0000\u0000\u0000\u012d\u0130\u0001\u0000"+ + "\u0000\u0000\u012e\u012c\u0001\u0000\u0000\u0000\u012f\u0131\u00030\u0018"+ + "\u0000\u0130\u012f\u0001\u0000\u0000\u0000\u0130\u0131\u0001\u0000\u0000"+ + "\u0000\u0131\u0132\u0001\u0000\u0000\u0000\u0132\u016e\u0006\u0013\uffff"+ + "\uffff\u0000\u0133\u0134\u0003(\u0014\u0000\u0134\u0136\u0006\u0013\uffff"+ + "\uffff\u0000\u0135\u0137\u00030\u0018\u0000\u0136\u0135\u0001\u0000\u0000"+ + "\u0000\u0136\u0137\u0001\u0000\u0000\u0000\u0137\u0138\u0001\u0000\u0000"+ + "\u0000\u0138\u0139\u0006\u0013\uffff\uffff\u0000\u0139\u016e\u0001\u0000"+ + "\u0000\u0000\u013a\u013b\u0003(\u0014\u0000\u013b\u013d\u0006\u0013\uffff"+ + "\uffff\u0000\u013c\u013e\u0005\u001b\u0000\u0000\u013d\u013c\u0001\u0000"+ + "\u0000\u0000\u013d\u013e\u0001\u0000\u0000\u0000\u013e\u013f\u0001\u0000"+ + "\u0000\u0000\u013f\u0140\u0003*\u0015\u0000\u0140\u0141\u0006\u0013\uffff"+ + "\uffff\u0000\u0141\u016e\u0001\u0000\u0000\u0000\u0142\u0143\u0003(\u0014"+ + "\u0000\u0143\u014a\u0006\u0013\uffff\uffff\u0000\u0144\u0145\u0005\u001b"+ + "\u0000\u0000\u0145\u0146\u0003(\u0014\u0000\u0146\u0147\u0006\u0013\uffff"+ + "\uffff\u0000\u0147\u0149\u0001\u0000\u0000\u0000\u0148\u0144\u0001\u0000"+ + "\u0000\u0000\u0149\u014c\u0001\u0000\u0000\u0000\u014a\u0148\u0001\u0000"+ + "\u0000\u0000\u014a\u014b\u0001\u0000\u0000\u0000\u014b\u014d\u0001\u0000"+ + "\u0000\u0000\u014c\u014a\u0001\u0000\u0000\u0000\u014d\u014e\u0005\u001b"+ + "\u0000\u0000\u014e\u014f\u0003(\u0014\u0000\u014f\u0151\u0006\u0013\uffff"+ + "\uffff\u0000\u0150\u0152\u00030\u0018\u0000\u0151\u0150\u0001\u0000\u0000"+ + "\u0000\u0151\u0152\u0001\u0000\u0000\u0000\u0152\u0153\u0001\u0000\u0000"+ + "\u0000\u0153\u0154\u0006\u0013\uffff\uffff\u0000\u0154\u016e\u0001\u0000"+ + "\u0000\u0000\u0155\u0156\u0003(\u0014\u0000\u0156\u015d\u0006\u0013\uffff"+ + "\uffff\u0000\u0157\u0158\u0005\u001b\u0000\u0000\u0158\u0159\u0003(\u0014"+ + "\u0000\u0159\u015a\u0006\u0013\uffff\uffff\u0000\u015a\u015c\u0001\u0000"+ + "\u0000\u0000\u015b\u0157\u0001\u0000\u0000\u0000\u015c\u015f\u0001\u0000"+ + "\u0000\u0000\u015d\u015b\u0001\u0000\u0000\u0000\u015d\u015e\u0001\u0000"+ + "\u0000\u0000\u015e\u0160\u0001\u0000\u0000\u0000\u015f\u015d\u0001\u0000"+ + "\u0000\u0000\u0160\u0161\u0005\u001b\u0000\u0000\u0161\u0162\u0003(\u0014"+ + "\u0000\u0162\u0164\u0006\u0013\uffff\uffff\u0000\u0163\u0165\u0005\u001b"+ + "\u0000\u0000\u0164\u0163\u0001\u0000\u0000\u0000\u0164\u0165\u0001\u0000"+ + "\u0000\u0000\u0165\u0166\u0001\u0000\u0000\u0000\u0166\u0167\u0003*\u0015"+ + "\u0000\u0167\u0169\u0006\u0013\uffff\uffff\u0000\u0168\u016a\u00030\u0018"+ + "\u0000\u0169\u0168\u0001\u0000\u0000\u0000\u0169\u016a\u0001\u0000\u0000"+ + "\u0000\u016a\u016b\u0001\u0000\u0000\u0000\u016b\u016c\u0006\u0013\uffff"+ + "\uffff\u0000\u016c\u016e\u0001\u0000\u0000\u0000\u016d\u0112\u0001\u0000"+ + "\u0000\u0000\u016d\u0124\u0001\u0000\u0000\u0000\u016d\u0133\u0001\u0000"+ + "\u0000\u0000\u016d\u013a\u0001\u0000\u0000\u0000\u016d\u0142\u0001\u0000"+ + "\u0000\u0000\u016d\u0155\u0001\u0000\u0000\u0000\u016e\'\u0001\u0000\u0000"+ + "\u0000\u016f\u0170\u0005-\u0000\u0000\u0170\u0172\u0005\u001c\u0000\u0000"+ + "\u0171\u0173\u0003 \u0010\u0000\u0172\u0171\u0001\u0000\u0000\u0000\u0172"+ + "\u0173\u0001\u0000\u0000\u0000\u0173\u0174\u0001\u0000\u0000\u0000\u0174"+ + "\u0175\u0005\u001d\u0000\u0000\u0175\u0176\u0001\u0000\u0000\u0000\u0176"+ + "\u017a\u0006\u0014\uffff\uffff\u0000\u0177\u0178\u0005-\u0000\u0000\u0178"+ + "\u017a\u0006\u0014\uffff\uffff\u0000\u0179\u016f\u0001\u0000\u0000\u0000"+ + "\u0179\u0177\u0001\u0000\u0000\u0000\u017a)\u0001\u0000\u0000\u0000\u017b"+ + "\u017c\u0005\u0019\u0000\u0000\u017c\u017d\u0003,\u0016\u0000\u017d\u017e"+ + "\u0006\u0015\uffff\uffff\u0000\u017e\u017f\u0005\u001a\u0000\u0000\u017f"+ + "+\u0001\u0000\u0000\u0000\u0180\u0181\u0003.\u0017\u0000\u0181\u0188\u0006"+ + "\u0016\uffff\uffff\u0000\u0182\u0183\u0005&\u0000\u0000\u0183\u0184\u0003"+ + ".\u0017\u0000\u0184\u0185\u0006\u0016\uffff\uffff\u0000\u0185\u0187\u0001"+ + "\u0000\u0000\u0000\u0186\u0182\u0001\u0000\u0000\u0000\u0187\u018a\u0001"+ + "\u0000\u0000\u0000\u0188\u0186\u0001\u0000\u0000\u0000\u0188\u0189\u0001"+ + "\u0000\u0000\u0000\u0189-\u0001\u0000\u0000\u0000\u018a\u0188\u0001\u0000"+ + "\u0000\u0000\u018b\u018c\u0005-\u0000\u0000\u018c\u0196\u0006\u0017\uffff"+ + "\uffff\u0000\u018d\u018e\u0005(\u0000\u0000\u018e\u0196\u0006\u0017\uffff"+ + "\uffff\u0000\u018f\u0190\u0005)\u0000\u0000\u0190\u0196\u0006\u0017\uffff"+ + "\uffff\u0000\u0191\u0192\u0005*\u0000\u0000\u0192\u0196\u0006\u0017\uffff"+ + "\uffff\u0000\u0193\u0194\u0005+\u0000\u0000\u0194\u0196\u0006\u0017\uffff"+ + "\uffff\u0000\u0195\u018b\u0001\u0000\u0000\u0000\u0195\u018d\u0001\u0000"+ + "\u0000\u0000\u0195\u018f\u0001\u0000\u0000\u0000\u0195\u0191\u0001\u0000"+ + "\u0000\u0000\u0195\u0193\u0001\u0000\u0000\u0000\u0196/\u0001\u0000\u0000"+ + "\u0000\u0197\u0198\u00034\u001a\u0000\u0198\u0199\u00032\u0019\u0000\u0199"+ + "\u019a\u0006\u0018\uffff\uffff\u0000\u019a1\u0001\u0000\u0000\u0000\u019b"+ + "\u019f\u0001\u0000\u0000\u0000\u019c\u019f\u0005*\u0000\u0000\u019d\u019f"+ + "\u0005+\u0000\u0000\u019e\u019b\u0001\u0000\u0000\u0000\u019e\u019c\u0001"+ + "\u0000\u0000\u0000\u019e\u019d\u0001\u0000\u0000\u0000\u019f3\u0001\u0000"+ + "\u0000\u0000\u01a0\u01a1\u0007\u0002\u0000\u0000\u01a15\u0001\u0000\u0000"+ + "\u0000(7:?BEISdnx\u0081\u008e\u0099\u00a3\u00b2\u00c4\u00d8\u00db\u00e3"+ + "\u00f0\u0101\u010c\u0110\u011c\u0120\u012c\u0130\u0136\u013d\u014a\u0151"+ + "\u015d\u0164\u0169\u016d\u0172\u0179\u0188\u0195\u019e"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.tokens b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.tokens index ba169a646c..c5b7b605bd 100644 --- a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.tokens +++ b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpression.tokens @@ -3,69 +3,66 @@ IF=2 THEN=3 ELSE=4 END=5 -WITH=6 -AND=7 -OR=8 -NOT=9 -BANG=10 -EQ_KW=11 -NE_KW=12 -EQI_KW=13 -CONTAINS_KW=14 -EQEQ=15 -NEQ=16 -GE_OP=17 -LE_OP=18 -GT_OP=19 -LT_OP=20 -VAR_ID=21 -ROOT=22 -BLOCK_COMMENT=23 -HORZ_WS=24 -VERT_WS=25 -LBRACE=26 -RBRACE=27 -DOT=28 -LPAREN=29 -RPAREN=30 -LBRACK=31 -RBRACK=32 -DQUESTION=33 -SEMI=34 -COMMA=35 -STAR=36 -SLASH=37 -PERCENT=38 -PLUS=39 -MINUS=40 -DSTRING=41 -SSTRING=42 -DECDIGITS=43 -FLOAT=44 -BOOLEAN=45 -ID=46 -CAST_TYPE=47 -ERR_CHAR=48 -C_HORZ_WS=49 -C_VERT_WS=50 -CERR_CHAR=51 +AND=6 +OR=7 +NOT=8 +BANG=9 +EQ_KW=10 +NE_KW=11 +EQI_KW=12 +CONTAINS_KW=13 +EQEQ=14 +NEQ=15 +GE_OP=16 +LE_OP=17 +GT_OP=18 +LT_OP=19 +VAR_ID=20 +ROOT=21 +BLOCK_COMMENT=22 +HORZ_WS=23 +VERT_WS=24 +LBRACE=25 +RBRACE=26 +DOT=27 +LPAREN=28 +RPAREN=29 +LBRACK=30 +RBRACK=31 +DQUESTION=32 +SEMI=33 +COMMA=34 +STAR=35 +SLASH=36 +PERCENT=37 +PLUS=38 +MINUS=39 +DSTRING=40 +SSTRING=41 +DECDIGITS=42 +FLOAT=43 +BOOLEAN=44 +ID=45 +CAST_TYPE=46 +ERR_CHAR=47 +C_HORZ_WS=48 +C_VERT_WS=49 +CERR_CHAR=50 'if'=2 'then'=3 'else'=4 'end'=5 -'with'=6 -'and'=7 -'or'=8 -'not'=9 -'!'=10 -'eq'=11 -'ne'=12 -'eqi'=13 -'contains'=14 -'=='=15 -'!='=16 -'>='=17 -'<='=18 -'>'=19 -'<'=20 -'$'=22 +'and'=6 +'or'=7 +'not'=8 +'!'=9 +'eq'=10 +'ne'=11 +'eqi'=12 +'contains'=13 +'=='=14 +'!='=15 +'>='=16 +'<='=17 +'>'=18 +'<'=19 diff --git a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpressionBaseListener.java b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpressionBaseListener.java index 99ca3a1c43..5a928ae667 100644 --- a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpressionBaseListener.java +++ b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpressionBaseListener.java @@ -70,6 +70,30 @@ public class TemplateGrammarExpressionBaseListener implements TemplateGrammarExp *

The default implementation does nothing.

*/ @Override public void exitWithCode(TemplateGrammarExpression.WithCodeContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterConcatBody(TemplateGrammarExpression.ConcatBodyContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitConcatBody(TemplateGrammarExpression.ConcatBodyContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterTopLevelConcat(TemplateGrammarExpression.TopLevelConcatContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitTopLevelConcat(TemplateGrammarExpression.TopLevelConcatContext ctx) { } /** * {@inheritDoc} * diff --git a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpressionListener.java b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpressionListener.java index a6217ba612..dda23399d0 100644 --- a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpressionListener.java +++ b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateGrammarExpressionListener.java @@ -59,6 +59,26 @@ public interface TemplateGrammarExpressionListener extends ParseTreeListener { * @param ctx the parse tree */ void exitWithCode(TemplateGrammarExpression.WithCodeContext ctx); + /** + * Enter a parse tree produced by {@link TemplateGrammarExpression#concatBody}. + * @param ctx the parse tree + */ + void enterConcatBody(TemplateGrammarExpression.ConcatBodyContext ctx); + /** + * Exit a parse tree produced by {@link TemplateGrammarExpression#concatBody}. + * @param ctx the parse tree + */ + void exitConcatBody(TemplateGrammarExpression.ConcatBodyContext ctx); + /** + * Enter a parse tree produced by {@link TemplateGrammarExpression#topLevelConcat}. + * @param ctx the parse tree + */ + void enterTopLevelConcat(TemplateGrammarExpression.TopLevelConcatContext ctx); + /** + * Exit a parse tree produced by {@link TemplateGrammarExpression#topLevelConcat}. + * @param ctx the parse tree + */ + void exitTopLevelConcat(TemplateGrammarExpression.TopLevelConcatContext ctx); /** * Enter a parse tree produced by {@link TemplateGrammarExpression#exprsCode}. * @param ctx the parse tree diff --git a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.interp b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.interp index 8dfd872abf..271d55dc96 100644 --- a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.interp +++ b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.interp @@ -5,7 +5,6 @@ null 'then' 'else' 'end' -'with' 'and' 'or' 'not' @@ -21,7 +20,7 @@ null '>' '<' null -'$' +null null null null @@ -59,7 +58,6 @@ IF THEN ELSE END -WITH AND OR NOT @@ -149,7 +147,6 @@ IF THEN ELSE END -WITH AND OR NOT @@ -197,7 +194,11 @@ RBrace C_HORZ_WS C_VERT_WS CRBRACE -CCOMMA +CPLUS +CDOT +CDEFAULT +CVAR_ID +CROOT CID CDSTRING CSSTRING @@ -214,4 +215,4 @@ DEFAULT_MODE Concatenation atn: -[4, 0, 51, 572, 6, -1, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 1, 0, 1, 0, 3, 0, 199, 8, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 209, 8, 3, 10, 3, 12, 3, 212, 9, 3, 1, 3, 1, 3, 1, 3, 3, 3, 217, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 271, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 278, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 285, 8, 27, 3, 27, 287, 8, 27, 3, 27, 289, 8, 27, 3, 27, 291, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 296, 8, 28, 10, 28, 12, 28, 299, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 5, 29, 306, 8, 29, 10, 29, 12, 29, 309, 9, 29, 1, 29, 1, 29, 1, 30, 1, 30, 3, 30, 315, 8, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 4, 33, 322, 8, 33, 11, 33, 12, 33, 323, 1, 34, 1, 34, 1, 34, 3, 34, 329, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 5, 37, 344, 8, 37, 10, 37, 12, 37, 347, 9, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 425, 8, 57, 10, 57, 12, 57, 428, 9, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 60, 4, 60, 435, 8, 60, 11, 60, 12, 60, 436, 1, 60, 1, 60, 1, 61, 4, 61, 442, 8, 61, 11, 61, 12, 61, 443, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 5, 82, 495, 8, 82, 10, 82, 12, 82, 498, 9, 82, 1, 83, 1, 83, 1, 83, 4, 83, 503, 8, 83, 11, 83, 12, 83, 504, 1, 83, 3, 83, 508, 8, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 4, 87, 521, 8, 87, 11, 87, 12, 87, 522, 1, 87, 1, 87, 1, 88, 4, 88, 528, 8, 88, 11, 88, 12, 88, 529, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 5, 91, 546, 8, 91, 10, 91, 12, 91, 549, 9, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 210, 0, 97, 2, 0, 4, 0, 6, 0, 8, 0, 10, 0, 12, 0, 14, 0, 16, 0, 18, 0, 20, 0, 22, 0, 24, 0, 26, 0, 28, 0, 30, 0, 32, 0, 34, 0, 36, 0, 38, 0, 40, 0, 42, 0, 44, 0, 46, 0, 48, 0, 50, 0, 52, 0, 54, 0, 56, 0, 58, 0, 60, 0, 62, 0, 64, 0, 66, 0, 68, 0, 70, 0, 72, 0, 74, 0, 76, 1, 78, 2, 80, 3, 82, 4, 84, 5, 86, 6, 88, 7, 90, 8, 92, 9, 94, 10, 96, 11, 98, 12, 100, 13, 102, 14, 104, 15, 106, 16, 108, 17, 110, 18, 112, 19, 114, 20, 116, 21, 118, 22, 120, 23, 122, 24, 124, 25, 126, 26, 128, 27, 130, 28, 132, 29, 134, 30, 136, 31, 138, 32, 140, 33, 142, 34, 144, 35, 146, 36, 148, 37, 150, 38, 152, 39, 154, 40, 156, 41, 158, 42, 160, 43, 162, 44, 164, 45, 166, 46, 168, 47, 170, 48, 172, 0, 174, 0, 176, 49, 178, 50, 180, 0, 182, 0, 184, 0, 186, 0, 188, 0, 190, 0, 192, 0, 194, 51, 2, 0, 1, 9, 2, 0, 9, 9, 32, 32, 2, 0, 10, 10, 12, 13, 13, 0, 65, 90, 97, 122, 192, 214, 216, 246, 248, 767, 880, 893, 895, 8191, 8204, 8205, 8304, 8591, 11264, 12271, 12289, 55295, 63744, 64975, 65008, 65533, 3, 0, 183, 183, 768, 879, 8255, 8256, 8, 0, 34, 34, 39, 39, 92, 92, 98, 98, 102, 102, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 39, 39, 92, 92, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 3, 0, 48, 57, 65, 70, 97, 102, 1, 0, 48, 57, 564, 0, 76, 1, 0, 0, 0, 0, 78, 1, 0, 0, 0, 0, 80, 1, 0, 0, 0, 0, 82, 1, 0, 0, 0, 0, 84, 1, 0, 0, 0, 0, 86, 1, 0, 0, 0, 0, 88, 1, 0, 0, 0, 0, 90, 1, 0, 0, 0, 0, 92, 1, 0, 0, 0, 0, 94, 1, 0, 0, 0, 0, 96, 1, 0, 0, 0, 0, 98, 1, 0, 0, 0, 0, 100, 1, 0, 0, 0, 0, 102, 1, 0, 0, 0, 0, 104, 1, 0, 0, 0, 0, 106, 1, 0, 0, 0, 0, 108, 1, 0, 0, 0, 0, 110, 1, 0, 0, 0, 0, 112, 1, 0, 0, 0, 0, 114, 1, 0, 0, 0, 0, 116, 1, 0, 0, 0, 0, 118, 1, 0, 0, 0, 0, 120, 1, 0, 0, 0, 0, 122, 1, 0, 0, 0, 0, 124, 1, 0, 0, 0, 0, 126, 1, 0, 0, 0, 0, 128, 1, 0, 0, 0, 0, 130, 1, 0, 0, 0, 0, 132, 1, 0, 0, 0, 0, 134, 1, 0, 0, 0, 0, 136, 1, 0, 0, 0, 0, 138, 1, 0, 0, 0, 0, 140, 1, 0, 0, 0, 0, 142, 1, 0, 0, 0, 0, 144, 1, 0, 0, 0, 0, 146, 1, 0, 0, 0, 0, 148, 1, 0, 0, 0, 0, 150, 1, 0, 0, 0, 0, 152, 1, 0, 0, 0, 0, 154, 1, 0, 0, 0, 0, 156, 1, 0, 0, 0, 0, 158, 1, 0, 0, 0, 0, 160, 1, 0, 0, 0, 0, 162, 1, 0, 0, 0, 0, 164, 1, 0, 0, 0, 0, 166, 1, 0, 0, 0, 0, 168, 1, 0, 0, 0, 0, 170, 1, 0, 0, 0, 1, 176, 1, 0, 0, 0, 1, 178, 1, 0, 0, 0, 1, 180, 1, 0, 0, 0, 1, 182, 1, 0, 0, 0, 1, 184, 1, 0, 0, 0, 1, 186, 1, 0, 0, 0, 1, 188, 1, 0, 0, 0, 1, 190, 1, 0, 0, 0, 1, 192, 1, 0, 0, 0, 1, 194, 1, 0, 0, 0, 2, 198, 1, 0, 0, 0, 4, 200, 1, 0, 0, 0, 6, 202, 1, 0, 0, 0, 8, 204, 1, 0, 0, 0, 10, 218, 1, 0, 0, 0, 12, 220, 1, 0, 0, 0, 14, 222, 1, 0, 0, 0, 16, 224, 1, 0, 0, 0, 18, 226, 1, 0, 0, 0, 20, 228, 1, 0, 0, 0, 22, 230, 1, 0, 0, 0, 24, 232, 1, 0, 0, 0, 26, 234, 1, 0, 0, 0, 28, 236, 1, 0, 0, 0, 30, 238, 1, 0, 0, 0, 32, 240, 1, 0, 0, 0, 34, 242, 1, 0, 0, 0, 36, 244, 1, 0, 0, 0, 38, 246, 1, 0, 0, 0, 40, 248, 1, 0, 0, 0, 42, 250, 1, 0, 0, 0, 44, 252, 1, 0, 0, 0, 46, 255, 1, 0, 0, 0, 48, 257, 1, 0, 0, 0, 50, 259, 1, 0, 0, 0, 52, 270, 1, 0, 0, 0, 54, 272, 1, 0, 0, 0, 56, 279, 1, 0, 0, 0, 58, 292, 1, 0, 0, 0, 60, 302, 1, 0, 0, 0, 62, 314, 1, 0, 0, 0, 64, 316, 1, 0, 0, 0, 66, 318, 1, 0, 0, 0, 68, 321, 1, 0, 0, 0, 70, 325, 1, 0, 0, 0, 72, 330, 1, 0, 0, 0, 74, 335, 1, 0, 0, 0, 76, 341, 1, 0, 0, 0, 78, 350, 1, 0, 0, 0, 80, 353, 1, 0, 0, 0, 82, 358, 1, 0, 0, 0, 84, 363, 1, 0, 0, 0, 86, 367, 1, 0, 0, 0, 88, 372, 1, 0, 0, 0, 90, 376, 1, 0, 0, 0, 92, 379, 1, 0, 0, 0, 94, 383, 1, 0, 0, 0, 96, 385, 1, 0, 0, 0, 98, 388, 1, 0, 0, 0, 100, 391, 1, 0, 0, 0, 102, 395, 1, 0, 0, 0, 104, 404, 1, 0, 0, 0, 106, 407, 1, 0, 0, 0, 108, 410, 1, 0, 0, 0, 110, 413, 1, 0, 0, 0, 112, 416, 1, 0, 0, 0, 114, 418, 1, 0, 0, 0, 116, 420, 1, 0, 0, 0, 118, 429, 1, 0, 0, 0, 120, 431, 1, 0, 0, 0, 122, 434, 1, 0, 0, 0, 124, 441, 1, 0, 0, 0, 126, 447, 1, 0, 0, 0, 128, 451, 1, 0, 0, 0, 130, 455, 1, 0, 0, 0, 132, 457, 1, 0, 0, 0, 134, 459, 1, 0, 0, 0, 136, 461, 1, 0, 0, 0, 138, 463, 1, 0, 0, 0, 140, 465, 1, 0, 0, 0, 142, 467, 1, 0, 0, 0, 144, 469, 1, 0, 0, 0, 146, 471, 1, 0, 0, 0, 148, 473, 1, 0, 0, 0, 150, 475, 1, 0, 0, 0, 152, 477, 1, 0, 0, 0, 154, 479, 1, 0, 0, 0, 156, 481, 1, 0, 0, 0, 158, 483, 1, 0, 0, 0, 160, 485, 1, 0, 0, 0, 162, 487, 1, 0, 0, 0, 164, 489, 1, 0, 0, 0, 166, 491, 1, 0, 0, 0, 168, 499, 1, 0, 0, 0, 170, 511, 1, 0, 0, 0, 172, 515, 1, 0, 0, 0, 174, 517, 1, 0, 0, 0, 176, 520, 1, 0, 0, 0, 178, 527, 1, 0, 0, 0, 180, 533, 1, 0, 0, 0, 182, 538, 1, 0, 0, 0, 184, 542, 1, 0, 0, 0, 186, 552, 1, 0, 0, 0, 188, 556, 1, 0, 0, 0, 190, 560, 1, 0, 0, 0, 192, 564, 1, 0, 0, 0, 194, 568, 1, 0, 0, 0, 196, 199, 3, 4, 1, 0, 197, 199, 3, 6, 2, 0, 198, 196, 1, 0, 0, 0, 198, 197, 1, 0, 0, 0, 199, 3, 1, 0, 0, 0, 200, 201, 7, 0, 0, 0, 201, 5, 1, 0, 0, 0, 202, 203, 7, 1, 0, 0, 203, 7, 1, 0, 0, 0, 204, 205, 5, 47, 0, 0, 205, 206, 5, 42, 0, 0, 206, 210, 1, 0, 0, 0, 207, 209, 9, 0, 0, 0, 208, 207, 1, 0, 0, 0, 209, 212, 1, 0, 0, 0, 210, 211, 1, 0, 0, 0, 210, 208, 1, 0, 0, 0, 211, 216, 1, 0, 0, 0, 212, 210, 1, 0, 0, 0, 213, 214, 5, 42, 0, 0, 214, 217, 5, 47, 0, 0, 215, 217, 5, 0, 0, 1, 216, 213, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 9, 1, 0, 0, 0, 218, 219, 5, 92, 0, 0, 219, 11, 1, 0, 0, 0, 220, 221, 5, 39, 0, 0, 221, 13, 1, 0, 0, 0, 222, 223, 5, 34, 0, 0, 223, 15, 1, 0, 0, 0, 224, 225, 5, 95, 0, 0, 225, 17, 1, 0, 0, 0, 226, 227, 5, 44, 0, 0, 227, 19, 1, 0, 0, 0, 228, 229, 5, 59, 0, 0, 229, 21, 1, 0, 0, 0, 230, 231, 5, 124, 0, 0, 231, 23, 1, 0, 0, 0, 232, 233, 5, 46, 0, 0, 233, 25, 1, 0, 0, 0, 234, 235, 5, 40, 0, 0, 235, 27, 1, 0, 0, 0, 236, 237, 5, 41, 0, 0, 237, 29, 1, 0, 0, 0, 238, 239, 5, 91, 0, 0, 239, 31, 1, 0, 0, 0, 240, 241, 5, 93, 0, 0, 241, 33, 1, 0, 0, 0, 242, 243, 5, 42, 0, 0, 243, 35, 1, 0, 0, 0, 244, 245, 5, 47, 0, 0, 245, 37, 1, 0, 0, 0, 246, 247, 5, 37, 0, 0, 247, 39, 1, 0, 0, 0, 248, 249, 5, 43, 0, 0, 249, 41, 1, 0, 0, 0, 250, 251, 5, 45, 0, 0, 251, 43, 1, 0, 0, 0, 252, 253, 5, 63, 0, 0, 253, 254, 5, 63, 0, 0, 254, 45, 1, 0, 0, 0, 255, 256, 5, 60, 0, 0, 256, 47, 1, 0, 0, 0, 257, 258, 5, 62, 0, 0, 258, 49, 1, 0, 0, 0, 259, 260, 5, 100, 0, 0, 260, 261, 5, 101, 0, 0, 261, 262, 5, 102, 0, 0, 262, 263, 5, 97, 0, 0, 263, 264, 5, 117, 0, 0, 264, 265, 5, 108, 0, 0, 265, 266, 5, 116, 0, 0, 266, 51, 1, 0, 0, 0, 267, 271, 7, 2, 0, 0, 268, 271, 3, 16, 7, 0, 269, 271, 7, 3, 0, 0, 270, 267, 1, 0, 0, 0, 270, 268, 1, 0, 0, 0, 270, 269, 1, 0, 0, 0, 271, 53, 1, 0, 0, 0, 272, 277, 3, 10, 4, 0, 273, 278, 7, 4, 0, 0, 274, 278, 3, 56, 27, 0, 275, 278, 9, 0, 0, 0, 276, 278, 5, 0, 0, 1, 277, 273, 1, 0, 0, 0, 277, 274, 1, 0, 0, 0, 277, 275, 1, 0, 0, 0, 277, 276, 1, 0, 0, 0, 278, 55, 1, 0, 0, 0, 279, 290, 5, 117, 0, 0, 280, 288, 3, 64, 31, 0, 281, 286, 3, 64, 31, 0, 282, 284, 3, 64, 31, 0, 283, 285, 3, 64, 31, 0, 284, 283, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 287, 1, 0, 0, 0, 286, 282, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 289, 1, 0, 0, 0, 288, 281, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 291, 1, 0, 0, 0, 290, 280, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 57, 1, 0, 0, 0, 292, 297, 3, 12, 5, 0, 293, 296, 3, 54, 26, 0, 294, 296, 8, 5, 0, 0, 295, 293, 1, 0, 0, 0, 295, 294, 1, 0, 0, 0, 296, 299, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, 298, 300, 1, 0, 0, 0, 299, 297, 1, 0, 0, 0, 300, 301, 3, 12, 5, 0, 301, 59, 1, 0, 0, 0, 302, 307, 3, 14, 6, 0, 303, 306, 3, 54, 26, 0, 304, 306, 8, 6, 0, 0, 305, 303, 1, 0, 0, 0, 305, 304, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 310, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 311, 3, 14, 6, 0, 311, 61, 1, 0, 0, 0, 312, 315, 3, 72, 35, 0, 313, 315, 3, 74, 36, 0, 314, 312, 1, 0, 0, 0, 314, 313, 1, 0, 0, 0, 315, 63, 1, 0, 0, 0, 316, 317, 7, 7, 0, 0, 317, 65, 1, 0, 0, 0, 318, 319, 7, 8, 0, 0, 319, 67, 1, 0, 0, 0, 320, 322, 3, 66, 32, 0, 321, 320, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 69, 1, 0, 0, 0, 325, 326, 3, 68, 33, 0, 326, 328, 3, 24, 11, 0, 327, 329, 3, 68, 33, 0, 328, 327, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 71, 1, 0, 0, 0, 330, 331, 5, 116, 0, 0, 331, 332, 5, 114, 0, 0, 332, 333, 5, 117, 0, 0, 333, 334, 5, 101, 0, 0, 334, 73, 1, 0, 0, 0, 335, 336, 5, 102, 0, 0, 336, 337, 5, 97, 0, 0, 337, 338, 5, 108, 0, 0, 338, 339, 5, 115, 0, 0, 339, 340, 5, 101, 0, 0, 340, 75, 1, 0, 0, 0, 341, 345, 3, 22, 10, 0, 342, 344, 3, 4, 1, 0, 343, 342, 1, 0, 0, 0, 344, 347, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 348, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 348, 349, 3, 50, 24, 0, 349, 77, 1, 0, 0, 0, 350, 351, 5, 105, 0, 0, 351, 352, 5, 102, 0, 0, 352, 79, 1, 0, 0, 0, 353, 354, 5, 116, 0, 0, 354, 355, 5, 104, 0, 0, 355, 356, 5, 101, 0, 0, 356, 357, 5, 110, 0, 0, 357, 81, 1, 0, 0, 0, 358, 359, 5, 101, 0, 0, 359, 360, 5, 108, 0, 0, 360, 361, 5, 115, 0, 0, 361, 362, 5, 101, 0, 0, 362, 83, 1, 0, 0, 0, 363, 364, 5, 101, 0, 0, 364, 365, 5, 110, 0, 0, 365, 366, 5, 100, 0, 0, 366, 85, 1, 0, 0, 0, 367, 368, 5, 119, 0, 0, 368, 369, 5, 105, 0, 0, 369, 370, 5, 116, 0, 0, 370, 371, 5, 104, 0, 0, 371, 87, 1, 0, 0, 0, 372, 373, 5, 97, 0, 0, 373, 374, 5, 110, 0, 0, 374, 375, 5, 100, 0, 0, 375, 89, 1, 0, 0, 0, 376, 377, 5, 111, 0, 0, 377, 378, 5, 114, 0, 0, 378, 91, 1, 0, 0, 0, 379, 380, 5, 110, 0, 0, 380, 381, 5, 111, 0, 0, 381, 382, 5, 116, 0, 0, 382, 93, 1, 0, 0, 0, 383, 384, 5, 33, 0, 0, 384, 95, 1, 0, 0, 0, 385, 386, 5, 101, 0, 0, 386, 387, 5, 113, 0, 0, 387, 97, 1, 0, 0, 0, 388, 389, 5, 110, 0, 0, 389, 390, 5, 101, 0, 0, 390, 99, 1, 0, 0, 0, 391, 392, 5, 101, 0, 0, 392, 393, 5, 113, 0, 0, 393, 394, 5, 105, 0, 0, 394, 101, 1, 0, 0, 0, 395, 396, 5, 99, 0, 0, 396, 397, 5, 111, 0, 0, 397, 398, 5, 110, 0, 0, 398, 399, 5, 116, 0, 0, 399, 400, 5, 97, 0, 0, 400, 401, 5, 105, 0, 0, 401, 402, 5, 110, 0, 0, 402, 403, 5, 115, 0, 0, 403, 103, 1, 0, 0, 0, 404, 405, 5, 61, 0, 0, 405, 406, 5, 61, 0, 0, 406, 105, 1, 0, 0, 0, 407, 408, 5, 33, 0, 0, 408, 409, 5, 61, 0, 0, 409, 107, 1, 0, 0, 0, 410, 411, 5, 62, 0, 0, 411, 412, 5, 61, 0, 0, 412, 109, 1, 0, 0, 0, 413, 414, 5, 60, 0, 0, 414, 415, 5, 61, 0, 0, 415, 111, 1, 0, 0, 0, 416, 417, 5, 62, 0, 0, 417, 113, 1, 0, 0, 0, 418, 419, 5, 60, 0, 0, 419, 115, 1, 0, 0, 0, 420, 421, 5, 36, 0, 0, 421, 426, 3, 52, 25, 0, 422, 425, 3, 52, 25, 0, 423, 425, 3, 66, 32, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 117, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 5, 36, 0, 0, 430, 119, 1, 0, 0, 0, 431, 432, 3, 8, 3, 0, 432, 121, 1, 0, 0, 0, 433, 435, 3, 4, 1, 0, 434, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 439, 6, 60, 0, 0, 439, 123, 1, 0, 0, 0, 440, 442, 3, 6, 2, 0, 441, 440, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 446, 6, 61, 0, 0, 446, 125, 1, 0, 0, 0, 447, 448, 3, 172, 85, 0, 448, 449, 1, 0, 0, 0, 449, 450, 6, 62, 1, 0, 450, 127, 1, 0, 0, 0, 451, 452, 3, 174, 86, 0, 452, 453, 1, 0, 0, 0, 453, 454, 6, 63, 2, 0, 454, 129, 1, 0, 0, 0, 455, 456, 3, 24, 11, 0, 456, 131, 1, 0, 0, 0, 457, 458, 3, 26, 12, 0, 458, 133, 1, 0, 0, 0, 459, 460, 3, 28, 13, 0, 460, 135, 1, 0, 0, 0, 461, 462, 3, 30, 14, 0, 462, 137, 1, 0, 0, 0, 463, 464, 3, 32, 15, 0, 464, 139, 1, 0, 0, 0, 465, 466, 3, 44, 21, 0, 466, 141, 1, 0, 0, 0, 467, 468, 3, 20, 9, 0, 468, 143, 1, 0, 0, 0, 469, 470, 3, 18, 8, 0, 470, 145, 1, 0, 0, 0, 471, 472, 3, 34, 16, 0, 472, 147, 1, 0, 0, 0, 473, 474, 3, 36, 17, 0, 474, 149, 1, 0, 0, 0, 475, 476, 3, 38, 18, 0, 476, 151, 1, 0, 0, 0, 477, 478, 3, 40, 19, 0, 478, 153, 1, 0, 0, 0, 479, 480, 3, 42, 20, 0, 480, 155, 1, 0, 0, 0, 481, 482, 3, 60, 29, 0, 482, 157, 1, 0, 0, 0, 483, 484, 3, 58, 28, 0, 484, 159, 1, 0, 0, 0, 485, 486, 3, 68, 33, 0, 486, 161, 1, 0, 0, 0, 487, 488, 3, 70, 34, 0, 488, 163, 1, 0, 0, 0, 489, 490, 3, 62, 30, 0, 490, 165, 1, 0, 0, 0, 491, 496, 3, 52, 25, 0, 492, 495, 3, 52, 25, 0, 493, 495, 3, 66, 32, 0, 494, 492, 1, 0, 0, 0, 494, 493, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 167, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 502, 3, 46, 22, 0, 500, 503, 3, 52, 25, 0, 501, 503, 3, 130, 64, 0, 502, 500, 1, 0, 0, 0, 502, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 507, 1, 0, 0, 0, 506, 508, 3, 168, 83, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 3, 48, 23, 0, 510, 169, 1, 0, 0, 0, 511, 512, 3, 4, 1, 0, 512, 513, 1, 0, 0, 0, 513, 514, 6, 84, 0, 0, 514, 171, 1, 0, 0, 0, 515, 516, 5, 123, 0, 0, 516, 173, 1, 0, 0, 0, 517, 518, 5, 125, 0, 0, 518, 175, 1, 0, 0, 0, 519, 521, 3, 4, 1, 0, 520, 519, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 520, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 6, 87, 0, 0, 525, 177, 1, 0, 0, 0, 526, 528, 3, 6, 2, 0, 527, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 6, 88, 0, 0, 532, 179, 1, 0, 0, 0, 533, 534, 3, 174, 86, 0, 534, 535, 1, 0, 0, 0, 535, 536, 6, 89, 2, 0, 536, 537, 6, 89, 3, 0, 537, 181, 1, 0, 0, 0, 538, 539, 3, 18, 8, 0, 539, 540, 1, 0, 0, 0, 540, 541, 6, 90, 4, 0, 541, 183, 1, 0, 0, 0, 542, 547, 3, 52, 25, 0, 543, 546, 3, 52, 25, 0, 544, 546, 3, 66, 32, 0, 545, 543, 1, 0, 0, 0, 545, 544, 1, 0, 0, 0, 546, 549, 1, 0, 0, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 550, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 550, 551, 6, 91, 5, 0, 551, 185, 1, 0, 0, 0, 552, 553, 3, 60, 29, 0, 553, 554, 1, 0, 0, 0, 554, 555, 6, 92, 6, 0, 555, 187, 1, 0, 0, 0, 556, 557, 3, 58, 28, 0, 557, 558, 1, 0, 0, 0, 558, 559, 6, 93, 7, 0, 559, 189, 1, 0, 0, 0, 560, 561, 3, 68, 33, 0, 561, 562, 1, 0, 0, 0, 562, 563, 6, 94, 8, 0, 563, 191, 1, 0, 0, 0, 564, 565, 3, 70, 34, 0, 565, 566, 1, 0, 0, 0, 566, 567, 6, 95, 9, 0, 567, 193, 1, 0, 0, 0, 568, 569, 7, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 6, 96, 0, 0, 571, 195, 1, 0, 0, 0, 32, 0, 1, 198, 210, 216, 270, 277, 284, 286, 288, 290, 295, 297, 305, 307, 314, 323, 328, 345, 424, 426, 436, 443, 494, 496, 502, 504, 507, 522, 529, 545, 547, 10, 6, 0, 0, 5, 1, 0, 4, 0, 0, 7, 27, 0, 7, 35, 0, 7, 46, 0, 7, 41, 0, 7, 42, 0, 7, 43, 0, 7, 44, 0] \ No newline at end of file +[4, 0, 50, 603, 6, -1, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 1, 0, 1, 0, 3, 0, 205, 8, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 215, 8, 3, 10, 3, 12, 3, 218, 9, 3, 1, 3, 1, 3, 1, 3, 3, 3, 223, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 277, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 284, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 291, 8, 27, 3, 27, 293, 8, 27, 3, 27, 295, 8, 27, 3, 27, 297, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 302, 8, 28, 10, 28, 12, 28, 305, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 5, 29, 312, 8, 29, 10, 29, 12, 29, 315, 9, 29, 1, 29, 1, 29, 1, 30, 1, 30, 3, 30, 321, 8, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 4, 33, 328, 8, 33, 11, 33, 12, 33, 329, 1, 34, 1, 34, 1, 34, 3, 34, 335, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 5, 37, 350, 8, 37, 10, 37, 12, 37, 353, 9, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 426, 8, 56, 10, 56, 12, 56, 429, 9, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 59, 4, 59, 436, 8, 59, 11, 59, 12, 59, 437, 1, 59, 1, 59, 1, 60, 4, 60, 443, 8, 60, 11, 60, 12, 60, 444, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 5, 81, 496, 8, 81, 10, 81, 12, 81, 499, 9, 81, 1, 82, 1, 82, 1, 82, 4, 82, 504, 8, 82, 11, 82, 12, 82, 505, 1, 82, 3, 82, 509, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 86, 4, 86, 522, 8, 86, 11, 86, 12, 86, 523, 1, 86, 1, 86, 1, 87, 4, 87, 529, 8, 87, 11, 87, 12, 87, 530, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 5, 91, 550, 8, 91, 10, 91, 12, 91, 553, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 563, 8, 92, 10, 92, 12, 92, 566, 9, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 5, 94, 577, 8, 94, 10, 94, 12, 94, 580, 9, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 216, 0, 100, 2, 0, 4, 0, 6, 0, 8, 0, 10, 0, 12, 0, 14, 0, 16, 0, 18, 0, 20, 0, 22, 0, 24, 0, 26, 0, 28, 0, 30, 0, 32, 0, 34, 0, 36, 0, 38, 0, 40, 0, 42, 0, 44, 0, 46, 0, 48, 0, 50, 0, 52, 0, 54, 0, 56, 0, 58, 0, 60, 0, 62, 0, 64, 0, 66, 0, 68, 0, 70, 0, 72, 0, 74, 0, 76, 1, 78, 2, 80, 3, 82, 4, 84, 5, 86, 6, 88, 7, 90, 8, 92, 9, 94, 10, 96, 11, 98, 12, 100, 13, 102, 14, 104, 15, 106, 16, 108, 17, 110, 18, 112, 19, 114, 20, 116, 21, 118, 22, 120, 23, 122, 24, 124, 25, 126, 26, 128, 27, 130, 28, 132, 29, 134, 30, 136, 31, 138, 32, 140, 33, 142, 34, 144, 35, 146, 36, 148, 37, 150, 38, 152, 39, 154, 40, 156, 41, 158, 42, 160, 43, 162, 44, 164, 45, 166, 46, 168, 47, 170, 0, 172, 0, 174, 48, 176, 49, 178, 0, 180, 0, 182, 0, 184, 0, 186, 0, 188, 0, 190, 0, 192, 0, 194, 0, 196, 0, 198, 0, 200, 50, 2, 0, 1, 9, 2, 0, 9, 9, 32, 32, 2, 0, 10, 10, 12, 13, 13, 0, 65, 90, 97, 122, 192, 214, 216, 246, 248, 767, 880, 893, 895, 8191, 8204, 8205, 8304, 8591, 11264, 12271, 12289, 55295, 63744, 64975, 65008, 65533, 3, 0, 183, 183, 768, 879, 8255, 8256, 8, 0, 34, 34, 39, 39, 92, 92, 98, 98, 102, 102, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 39, 39, 92, 92, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 3, 0, 48, 57, 65, 70, 97, 102, 1, 0, 48, 57, 598, 0, 76, 1, 0, 0, 0, 0, 78, 1, 0, 0, 0, 0, 80, 1, 0, 0, 0, 0, 82, 1, 0, 0, 0, 0, 84, 1, 0, 0, 0, 0, 86, 1, 0, 0, 0, 0, 88, 1, 0, 0, 0, 0, 90, 1, 0, 0, 0, 0, 92, 1, 0, 0, 0, 0, 94, 1, 0, 0, 0, 0, 96, 1, 0, 0, 0, 0, 98, 1, 0, 0, 0, 0, 100, 1, 0, 0, 0, 0, 102, 1, 0, 0, 0, 0, 104, 1, 0, 0, 0, 0, 106, 1, 0, 0, 0, 0, 108, 1, 0, 0, 0, 0, 110, 1, 0, 0, 0, 0, 112, 1, 0, 0, 0, 0, 114, 1, 0, 0, 0, 0, 116, 1, 0, 0, 0, 0, 118, 1, 0, 0, 0, 0, 120, 1, 0, 0, 0, 0, 122, 1, 0, 0, 0, 0, 124, 1, 0, 0, 0, 0, 126, 1, 0, 0, 0, 0, 128, 1, 0, 0, 0, 0, 130, 1, 0, 0, 0, 0, 132, 1, 0, 0, 0, 0, 134, 1, 0, 0, 0, 0, 136, 1, 0, 0, 0, 0, 138, 1, 0, 0, 0, 0, 140, 1, 0, 0, 0, 0, 142, 1, 0, 0, 0, 0, 144, 1, 0, 0, 0, 0, 146, 1, 0, 0, 0, 0, 148, 1, 0, 0, 0, 0, 150, 1, 0, 0, 0, 0, 152, 1, 0, 0, 0, 0, 154, 1, 0, 0, 0, 0, 156, 1, 0, 0, 0, 0, 158, 1, 0, 0, 0, 0, 160, 1, 0, 0, 0, 0, 162, 1, 0, 0, 0, 0, 164, 1, 0, 0, 0, 0, 166, 1, 0, 0, 0, 0, 168, 1, 0, 0, 0, 1, 174, 1, 0, 0, 0, 1, 176, 1, 0, 0, 0, 1, 178, 1, 0, 0, 0, 1, 180, 1, 0, 0, 0, 1, 182, 1, 0, 0, 0, 1, 184, 1, 0, 0, 0, 1, 186, 1, 0, 0, 0, 1, 188, 1, 0, 0, 0, 1, 190, 1, 0, 0, 0, 1, 192, 1, 0, 0, 0, 1, 194, 1, 0, 0, 0, 1, 196, 1, 0, 0, 0, 1, 198, 1, 0, 0, 0, 1, 200, 1, 0, 0, 0, 2, 204, 1, 0, 0, 0, 4, 206, 1, 0, 0, 0, 6, 208, 1, 0, 0, 0, 8, 210, 1, 0, 0, 0, 10, 224, 1, 0, 0, 0, 12, 226, 1, 0, 0, 0, 14, 228, 1, 0, 0, 0, 16, 230, 1, 0, 0, 0, 18, 232, 1, 0, 0, 0, 20, 234, 1, 0, 0, 0, 22, 236, 1, 0, 0, 0, 24, 238, 1, 0, 0, 0, 26, 240, 1, 0, 0, 0, 28, 242, 1, 0, 0, 0, 30, 244, 1, 0, 0, 0, 32, 246, 1, 0, 0, 0, 34, 248, 1, 0, 0, 0, 36, 250, 1, 0, 0, 0, 38, 252, 1, 0, 0, 0, 40, 254, 1, 0, 0, 0, 42, 256, 1, 0, 0, 0, 44, 258, 1, 0, 0, 0, 46, 261, 1, 0, 0, 0, 48, 263, 1, 0, 0, 0, 50, 265, 1, 0, 0, 0, 52, 276, 1, 0, 0, 0, 54, 278, 1, 0, 0, 0, 56, 285, 1, 0, 0, 0, 58, 298, 1, 0, 0, 0, 60, 308, 1, 0, 0, 0, 62, 320, 1, 0, 0, 0, 64, 322, 1, 0, 0, 0, 66, 324, 1, 0, 0, 0, 68, 327, 1, 0, 0, 0, 70, 331, 1, 0, 0, 0, 72, 336, 1, 0, 0, 0, 74, 341, 1, 0, 0, 0, 76, 347, 1, 0, 0, 0, 78, 356, 1, 0, 0, 0, 80, 359, 1, 0, 0, 0, 82, 364, 1, 0, 0, 0, 84, 369, 1, 0, 0, 0, 86, 373, 1, 0, 0, 0, 88, 377, 1, 0, 0, 0, 90, 380, 1, 0, 0, 0, 92, 384, 1, 0, 0, 0, 94, 386, 1, 0, 0, 0, 96, 389, 1, 0, 0, 0, 98, 392, 1, 0, 0, 0, 100, 396, 1, 0, 0, 0, 102, 405, 1, 0, 0, 0, 104, 408, 1, 0, 0, 0, 106, 411, 1, 0, 0, 0, 108, 414, 1, 0, 0, 0, 110, 417, 1, 0, 0, 0, 112, 419, 1, 0, 0, 0, 114, 421, 1, 0, 0, 0, 116, 430, 1, 0, 0, 0, 118, 432, 1, 0, 0, 0, 120, 435, 1, 0, 0, 0, 122, 442, 1, 0, 0, 0, 124, 448, 1, 0, 0, 0, 126, 452, 1, 0, 0, 0, 128, 456, 1, 0, 0, 0, 130, 458, 1, 0, 0, 0, 132, 460, 1, 0, 0, 0, 134, 462, 1, 0, 0, 0, 136, 464, 1, 0, 0, 0, 138, 466, 1, 0, 0, 0, 140, 468, 1, 0, 0, 0, 142, 470, 1, 0, 0, 0, 144, 472, 1, 0, 0, 0, 146, 474, 1, 0, 0, 0, 148, 476, 1, 0, 0, 0, 150, 478, 1, 0, 0, 0, 152, 480, 1, 0, 0, 0, 154, 482, 1, 0, 0, 0, 156, 484, 1, 0, 0, 0, 158, 486, 1, 0, 0, 0, 160, 488, 1, 0, 0, 0, 162, 490, 1, 0, 0, 0, 164, 492, 1, 0, 0, 0, 166, 500, 1, 0, 0, 0, 168, 512, 1, 0, 0, 0, 170, 516, 1, 0, 0, 0, 172, 518, 1, 0, 0, 0, 174, 521, 1, 0, 0, 0, 176, 528, 1, 0, 0, 0, 178, 534, 1, 0, 0, 0, 180, 539, 1, 0, 0, 0, 182, 543, 1, 0, 0, 0, 184, 547, 1, 0, 0, 0, 186, 558, 1, 0, 0, 0, 188, 569, 1, 0, 0, 0, 190, 573, 1, 0, 0, 0, 192, 583, 1, 0, 0, 0, 194, 587, 1, 0, 0, 0, 196, 591, 1, 0, 0, 0, 198, 595, 1, 0, 0, 0, 200, 599, 1, 0, 0, 0, 202, 205, 3, 4, 1, 0, 203, 205, 3, 6, 2, 0, 204, 202, 1, 0, 0, 0, 204, 203, 1, 0, 0, 0, 205, 3, 1, 0, 0, 0, 206, 207, 7, 0, 0, 0, 207, 5, 1, 0, 0, 0, 208, 209, 7, 1, 0, 0, 209, 7, 1, 0, 0, 0, 210, 211, 5, 47, 0, 0, 211, 212, 5, 42, 0, 0, 212, 216, 1, 0, 0, 0, 213, 215, 9, 0, 0, 0, 214, 213, 1, 0, 0, 0, 215, 218, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 217, 222, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 5, 42, 0, 0, 220, 223, 5, 47, 0, 0, 221, 223, 5, 0, 0, 1, 222, 219, 1, 0, 0, 0, 222, 221, 1, 0, 0, 0, 223, 9, 1, 0, 0, 0, 224, 225, 5, 92, 0, 0, 225, 11, 1, 0, 0, 0, 226, 227, 5, 39, 0, 0, 227, 13, 1, 0, 0, 0, 228, 229, 5, 34, 0, 0, 229, 15, 1, 0, 0, 0, 230, 231, 5, 95, 0, 0, 231, 17, 1, 0, 0, 0, 232, 233, 5, 44, 0, 0, 233, 19, 1, 0, 0, 0, 234, 235, 5, 59, 0, 0, 235, 21, 1, 0, 0, 0, 236, 237, 5, 124, 0, 0, 237, 23, 1, 0, 0, 0, 238, 239, 5, 46, 0, 0, 239, 25, 1, 0, 0, 0, 240, 241, 5, 40, 0, 0, 241, 27, 1, 0, 0, 0, 242, 243, 5, 41, 0, 0, 243, 29, 1, 0, 0, 0, 244, 245, 5, 91, 0, 0, 245, 31, 1, 0, 0, 0, 246, 247, 5, 93, 0, 0, 247, 33, 1, 0, 0, 0, 248, 249, 5, 42, 0, 0, 249, 35, 1, 0, 0, 0, 250, 251, 5, 47, 0, 0, 251, 37, 1, 0, 0, 0, 252, 253, 5, 37, 0, 0, 253, 39, 1, 0, 0, 0, 254, 255, 5, 43, 0, 0, 255, 41, 1, 0, 0, 0, 256, 257, 5, 45, 0, 0, 257, 43, 1, 0, 0, 0, 258, 259, 5, 63, 0, 0, 259, 260, 5, 63, 0, 0, 260, 45, 1, 0, 0, 0, 261, 262, 5, 60, 0, 0, 262, 47, 1, 0, 0, 0, 263, 264, 5, 62, 0, 0, 264, 49, 1, 0, 0, 0, 265, 266, 5, 100, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 102, 0, 0, 268, 269, 5, 97, 0, 0, 269, 270, 5, 117, 0, 0, 270, 271, 5, 108, 0, 0, 271, 272, 5, 116, 0, 0, 272, 51, 1, 0, 0, 0, 273, 277, 7, 2, 0, 0, 274, 277, 3, 16, 7, 0, 275, 277, 7, 3, 0, 0, 276, 273, 1, 0, 0, 0, 276, 274, 1, 0, 0, 0, 276, 275, 1, 0, 0, 0, 277, 53, 1, 0, 0, 0, 278, 283, 3, 10, 4, 0, 279, 284, 7, 4, 0, 0, 280, 284, 3, 56, 27, 0, 281, 284, 9, 0, 0, 0, 282, 284, 5, 0, 0, 1, 283, 279, 1, 0, 0, 0, 283, 280, 1, 0, 0, 0, 283, 281, 1, 0, 0, 0, 283, 282, 1, 0, 0, 0, 284, 55, 1, 0, 0, 0, 285, 296, 5, 117, 0, 0, 286, 294, 3, 64, 31, 0, 287, 292, 3, 64, 31, 0, 288, 290, 3, 64, 31, 0, 289, 291, 3, 64, 31, 0, 290, 289, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 293, 1, 0, 0, 0, 292, 288, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 295, 1, 0, 0, 0, 294, 287, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 297, 1, 0, 0, 0, 296, 286, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 57, 1, 0, 0, 0, 298, 303, 3, 12, 5, 0, 299, 302, 3, 54, 26, 0, 300, 302, 8, 5, 0, 0, 301, 299, 1, 0, 0, 0, 301, 300, 1, 0, 0, 0, 302, 305, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 306, 1, 0, 0, 0, 305, 303, 1, 0, 0, 0, 306, 307, 3, 12, 5, 0, 307, 59, 1, 0, 0, 0, 308, 313, 3, 14, 6, 0, 309, 312, 3, 54, 26, 0, 310, 312, 8, 6, 0, 0, 311, 309, 1, 0, 0, 0, 311, 310, 1, 0, 0, 0, 312, 315, 1, 0, 0, 0, 313, 311, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 316, 1, 0, 0, 0, 315, 313, 1, 0, 0, 0, 316, 317, 3, 14, 6, 0, 317, 61, 1, 0, 0, 0, 318, 321, 3, 72, 35, 0, 319, 321, 3, 74, 36, 0, 320, 318, 1, 0, 0, 0, 320, 319, 1, 0, 0, 0, 321, 63, 1, 0, 0, 0, 322, 323, 7, 7, 0, 0, 323, 65, 1, 0, 0, 0, 324, 325, 7, 8, 0, 0, 325, 67, 1, 0, 0, 0, 326, 328, 3, 66, 32, 0, 327, 326, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 327, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 69, 1, 0, 0, 0, 331, 332, 3, 68, 33, 0, 332, 334, 3, 24, 11, 0, 333, 335, 3, 68, 33, 0, 334, 333, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 71, 1, 0, 0, 0, 336, 337, 5, 116, 0, 0, 337, 338, 5, 114, 0, 0, 338, 339, 5, 117, 0, 0, 339, 340, 5, 101, 0, 0, 340, 73, 1, 0, 0, 0, 341, 342, 5, 102, 0, 0, 342, 343, 5, 97, 0, 0, 343, 344, 5, 108, 0, 0, 344, 345, 5, 115, 0, 0, 345, 346, 5, 101, 0, 0, 346, 75, 1, 0, 0, 0, 347, 351, 3, 22, 10, 0, 348, 350, 3, 4, 1, 0, 349, 348, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 354, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 354, 355, 3, 50, 24, 0, 355, 77, 1, 0, 0, 0, 356, 357, 5, 105, 0, 0, 357, 358, 5, 102, 0, 0, 358, 79, 1, 0, 0, 0, 359, 360, 5, 116, 0, 0, 360, 361, 5, 104, 0, 0, 361, 362, 5, 101, 0, 0, 362, 363, 5, 110, 0, 0, 363, 81, 1, 0, 0, 0, 364, 365, 5, 101, 0, 0, 365, 366, 5, 108, 0, 0, 366, 367, 5, 115, 0, 0, 367, 368, 5, 101, 0, 0, 368, 83, 1, 0, 0, 0, 369, 370, 5, 101, 0, 0, 370, 371, 5, 110, 0, 0, 371, 372, 5, 100, 0, 0, 372, 85, 1, 0, 0, 0, 373, 374, 5, 97, 0, 0, 374, 375, 5, 110, 0, 0, 375, 376, 5, 100, 0, 0, 376, 87, 1, 0, 0, 0, 377, 378, 5, 111, 0, 0, 378, 379, 5, 114, 0, 0, 379, 89, 1, 0, 0, 0, 380, 381, 5, 110, 0, 0, 381, 382, 5, 111, 0, 0, 382, 383, 5, 116, 0, 0, 383, 91, 1, 0, 0, 0, 384, 385, 5, 33, 0, 0, 385, 93, 1, 0, 0, 0, 386, 387, 5, 101, 0, 0, 387, 388, 5, 113, 0, 0, 388, 95, 1, 0, 0, 0, 389, 390, 5, 110, 0, 0, 390, 391, 5, 101, 0, 0, 391, 97, 1, 0, 0, 0, 392, 393, 5, 101, 0, 0, 393, 394, 5, 113, 0, 0, 394, 395, 5, 105, 0, 0, 395, 99, 1, 0, 0, 0, 396, 397, 5, 99, 0, 0, 397, 398, 5, 111, 0, 0, 398, 399, 5, 110, 0, 0, 399, 400, 5, 116, 0, 0, 400, 401, 5, 97, 0, 0, 401, 402, 5, 105, 0, 0, 402, 403, 5, 110, 0, 0, 403, 404, 5, 115, 0, 0, 404, 101, 1, 0, 0, 0, 405, 406, 5, 61, 0, 0, 406, 407, 5, 61, 0, 0, 407, 103, 1, 0, 0, 0, 408, 409, 5, 33, 0, 0, 409, 410, 5, 61, 0, 0, 410, 105, 1, 0, 0, 0, 411, 412, 5, 62, 0, 0, 412, 413, 5, 61, 0, 0, 413, 107, 1, 0, 0, 0, 414, 415, 5, 60, 0, 0, 415, 416, 5, 61, 0, 0, 416, 109, 1, 0, 0, 0, 417, 418, 5, 62, 0, 0, 418, 111, 1, 0, 0, 0, 419, 420, 5, 60, 0, 0, 420, 113, 1, 0, 0, 0, 421, 422, 5, 36, 0, 0, 422, 427, 3, 52, 25, 0, 423, 426, 3, 52, 25, 0, 424, 426, 3, 66, 32, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 429, 1, 0, 0, 0, 427, 425, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 115, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 430, 431, 5, 36, 0, 0, 431, 117, 1, 0, 0, 0, 432, 433, 3, 8, 3, 0, 433, 119, 1, 0, 0, 0, 434, 436, 3, 4, 1, 0, 435, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 440, 6, 59, 0, 0, 440, 121, 1, 0, 0, 0, 441, 443, 3, 6, 2, 0, 442, 441, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 447, 6, 60, 0, 0, 447, 123, 1, 0, 0, 0, 448, 449, 3, 170, 84, 0, 449, 450, 1, 0, 0, 0, 450, 451, 6, 61, 1, 0, 451, 125, 1, 0, 0, 0, 452, 453, 3, 172, 85, 0, 453, 454, 1, 0, 0, 0, 454, 455, 6, 62, 2, 0, 455, 127, 1, 0, 0, 0, 456, 457, 3, 24, 11, 0, 457, 129, 1, 0, 0, 0, 458, 459, 3, 26, 12, 0, 459, 131, 1, 0, 0, 0, 460, 461, 3, 28, 13, 0, 461, 133, 1, 0, 0, 0, 462, 463, 3, 30, 14, 0, 463, 135, 1, 0, 0, 0, 464, 465, 3, 32, 15, 0, 465, 137, 1, 0, 0, 0, 466, 467, 3, 44, 21, 0, 467, 139, 1, 0, 0, 0, 468, 469, 3, 20, 9, 0, 469, 141, 1, 0, 0, 0, 470, 471, 3, 18, 8, 0, 471, 143, 1, 0, 0, 0, 472, 473, 3, 34, 16, 0, 473, 145, 1, 0, 0, 0, 474, 475, 3, 36, 17, 0, 475, 147, 1, 0, 0, 0, 476, 477, 3, 38, 18, 0, 477, 149, 1, 0, 0, 0, 478, 479, 3, 40, 19, 0, 479, 151, 1, 0, 0, 0, 480, 481, 3, 42, 20, 0, 481, 153, 1, 0, 0, 0, 482, 483, 3, 60, 29, 0, 483, 155, 1, 0, 0, 0, 484, 485, 3, 58, 28, 0, 485, 157, 1, 0, 0, 0, 486, 487, 3, 68, 33, 0, 487, 159, 1, 0, 0, 0, 488, 489, 3, 70, 34, 0, 489, 161, 1, 0, 0, 0, 490, 491, 3, 62, 30, 0, 491, 163, 1, 0, 0, 0, 492, 497, 3, 52, 25, 0, 493, 496, 3, 52, 25, 0, 494, 496, 3, 66, 32, 0, 495, 493, 1, 0, 0, 0, 495, 494, 1, 0, 0, 0, 496, 499, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 165, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 503, 3, 46, 22, 0, 501, 504, 3, 52, 25, 0, 502, 504, 3, 128, 63, 0, 503, 501, 1, 0, 0, 0, 503, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 508, 1, 0, 0, 0, 507, 509, 3, 166, 82, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 3, 48, 23, 0, 511, 167, 1, 0, 0, 0, 512, 513, 3, 4, 1, 0, 513, 514, 1, 0, 0, 0, 514, 515, 6, 83, 0, 0, 515, 169, 1, 0, 0, 0, 516, 517, 5, 123, 0, 0, 517, 171, 1, 0, 0, 0, 518, 519, 5, 125, 0, 0, 519, 173, 1, 0, 0, 0, 520, 522, 3, 4, 1, 0, 521, 520, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 6, 86, 0, 0, 526, 175, 1, 0, 0, 0, 527, 529, 3, 6, 2, 0, 528, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 6, 87, 0, 0, 533, 177, 1, 0, 0, 0, 534, 535, 3, 172, 85, 0, 535, 536, 1, 0, 0, 0, 536, 537, 6, 88, 2, 0, 537, 538, 6, 88, 3, 0, 538, 179, 1, 0, 0, 0, 539, 540, 3, 40, 19, 0, 540, 541, 1, 0, 0, 0, 541, 542, 6, 89, 4, 0, 542, 181, 1, 0, 0, 0, 543, 544, 3, 24, 11, 0, 544, 545, 1, 0, 0, 0, 545, 546, 6, 90, 5, 0, 546, 183, 1, 0, 0, 0, 547, 551, 3, 22, 10, 0, 548, 550, 3, 4, 1, 0, 549, 548, 1, 0, 0, 0, 550, 553, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 554, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 554, 555, 3, 50, 24, 0, 555, 556, 1, 0, 0, 0, 556, 557, 6, 91, 6, 0, 557, 185, 1, 0, 0, 0, 558, 559, 5, 36, 0, 0, 559, 564, 3, 52, 25, 0, 560, 563, 3, 52, 25, 0, 561, 563, 3, 66, 32, 0, 562, 560, 1, 0, 0, 0, 562, 561, 1, 0, 0, 0, 563, 566, 1, 0, 0, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 567, 1, 0, 0, 0, 566, 564, 1, 0, 0, 0, 567, 568, 6, 92, 7, 0, 568, 187, 1, 0, 0, 0, 569, 570, 5, 36, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 6, 93, 8, 0, 572, 189, 1, 0, 0, 0, 573, 578, 3, 52, 25, 0, 574, 577, 3, 52, 25, 0, 575, 577, 3, 66, 32, 0, 576, 574, 1, 0, 0, 0, 576, 575, 1, 0, 0, 0, 577, 580, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 581, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 581, 582, 6, 94, 9, 0, 582, 191, 1, 0, 0, 0, 583, 584, 3, 60, 29, 0, 584, 585, 1, 0, 0, 0, 585, 586, 6, 95, 10, 0, 586, 193, 1, 0, 0, 0, 587, 588, 3, 58, 28, 0, 588, 589, 1, 0, 0, 0, 589, 590, 6, 96, 11, 0, 590, 195, 1, 0, 0, 0, 591, 592, 3, 68, 33, 0, 592, 593, 1, 0, 0, 0, 593, 594, 6, 97, 12, 0, 594, 197, 1, 0, 0, 0, 595, 596, 3, 70, 34, 0, 596, 597, 1, 0, 0, 0, 597, 598, 6, 98, 13, 0, 598, 199, 1, 0, 0, 0, 599, 600, 7, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 6, 99, 0, 0, 602, 201, 1, 0, 0, 0, 35, 0, 1, 204, 216, 222, 276, 283, 290, 292, 294, 296, 301, 303, 311, 313, 320, 329, 334, 351, 425, 427, 437, 444, 495, 497, 503, 505, 508, 523, 530, 551, 562, 564, 576, 578, 14, 6, 0, 0, 5, 1, 0, 4, 0, 0, 7, 26, 0, 7, 38, 0, 7, 27, 0, 7, 1, 0, 7, 20, 0, 7, 21, 0, 7, 45, 0, 7, 40, 0, 7, 41, 0, 7, 42, 0, 7, 43, 0] \ No newline at end of file diff --git a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.java b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.java index 3e318bc028..66dd024767 100644 --- a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.java +++ b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.java @@ -19,13 +19,13 @@ public class TemplateLexerExpression extends Lexer { protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache(); public static final int - DEFAULT=1, IF=2, THEN=3, ELSE=4, END=5, WITH=6, AND=7, OR=8, NOT=9, BANG=10, - EQ_KW=11, NE_KW=12, EQI_KW=13, CONTAINS_KW=14, EQEQ=15, NEQ=16, GE_OP=17, - LE_OP=18, GT_OP=19, LT_OP=20, VAR_ID=21, ROOT=22, BLOCK_COMMENT=23, HORZ_WS=24, - VERT_WS=25, LBRACE=26, RBRACE=27, DOT=28, LPAREN=29, RPAREN=30, LBRACK=31, - RBRACK=32, DQUESTION=33, SEMI=34, COMMA=35, STAR=36, SLASH=37, PERCENT=38, - PLUS=39, MINUS=40, DSTRING=41, SSTRING=42, DECDIGITS=43, FLOAT=44, BOOLEAN=45, - ID=46, CAST_TYPE=47, ERR_CHAR=48, C_HORZ_WS=49, C_VERT_WS=50, CERR_CHAR=51; + DEFAULT=1, IF=2, THEN=3, ELSE=4, END=5, AND=6, OR=7, NOT=8, BANG=9, EQ_KW=10, + NE_KW=11, EQI_KW=12, CONTAINS_KW=13, EQEQ=14, NEQ=15, GE_OP=16, LE_OP=17, + GT_OP=18, LT_OP=19, VAR_ID=20, ROOT=21, BLOCK_COMMENT=22, HORZ_WS=23, + VERT_WS=24, LBRACE=25, RBRACE=26, DOT=27, LPAREN=28, RPAREN=29, LBRACK=30, + RBRACK=31, DQUESTION=32, SEMI=33, COMMA=34, STAR=35, SLASH=36, PERCENT=37, + PLUS=38, MINUS=39, DSTRING=40, SSTRING=41, DECDIGITS=42, FLOAT=43, BOOLEAN=44, + ID=45, CAST_TYPE=46, ERR_CHAR=47, C_HORZ_WS=48, C_VERT_WS=49, CERR_CHAR=50; public static final int Concatenation=1; public static String[] channelNames = { @@ -43,36 +43,36 @@ private static String[] makeRuleNames() { "Star", "Slash", "Percent", "Plus", "Minus", "DQuestion", "LT", "GT", "Default", "NameChar", "EscSeq", "UnicodeEsc", "SQuoteLiteral", "DQuoteLiteral", "BoolLiteral", "HexDigit", "DecDigit", "DecDigits", "Float", "True", - "False", "DEFAULT", "IF", "THEN", "ELSE", "END", "WITH", "AND", "OR", - "NOT", "BANG", "EQ_KW", "NE_KW", "EQI_KW", "CONTAINS_KW", "EQEQ", "NEQ", - "GE_OP", "LE_OP", "GT_OP", "LT_OP", "VAR_ID", "ROOT", "BLOCK_COMMENT", - "HORZ_WS", "VERT_WS", "LBRACE", "RBRACE", "DOT", "LPAREN", "RPAREN", - "LBRACK", "RBRACK", "DQUESTION", "SEMI", "COMMA", "STAR", "SLASH", "PERCENT", - "PLUS", "MINUS", "DSTRING", "SSTRING", "DECDIGITS", "FLOAT", "BOOLEAN", - "ID", "CAST_TYPE", "ERR_CHAR", "LBrace", "RBrace", "C_HORZ_WS", "C_VERT_WS", - "CRBRACE", "CCOMMA", "CID", "CDSTRING", "CSSTRING", "CDECDIGITS", "CFLOAT", - "CERR_CHAR" + "False", "DEFAULT", "IF", "THEN", "ELSE", "END", "AND", "OR", "NOT", + "BANG", "EQ_KW", "NE_KW", "EQI_KW", "CONTAINS_KW", "EQEQ", "NEQ", "GE_OP", + "LE_OP", "GT_OP", "LT_OP", "VAR_ID", "ROOT", "BLOCK_COMMENT", "HORZ_WS", + "VERT_WS", "LBRACE", "RBRACE", "DOT", "LPAREN", "RPAREN", "LBRACK", "RBRACK", + "DQUESTION", "SEMI", "COMMA", "STAR", "SLASH", "PERCENT", "PLUS", "MINUS", + "DSTRING", "SSTRING", "DECDIGITS", "FLOAT", "BOOLEAN", "ID", "CAST_TYPE", + "ERR_CHAR", "LBrace", "RBrace", "C_HORZ_WS", "C_VERT_WS", "CRBRACE", + "CPLUS", "CDOT", "CDEFAULT", "CVAR_ID", "CROOT", "CID", "CDSTRING", "CSSTRING", + "CDECDIGITS", "CFLOAT", "CERR_CHAR" }; } public static final String[] ruleNames = makeRuleNames(); private static String[] makeLiteralNames() { return new String[] { - null, null, "'if'", "'then'", "'else'", "'end'", "'with'", "'and'", "'or'", - "'not'", "'!'", "'eq'", "'ne'", "'eqi'", "'contains'", "'=='", "'!='", - "'>='", "'<='", "'>'", "'<'", null, "'$'" + null, null, "'if'", "'then'", "'else'", "'end'", "'and'", "'or'", "'not'", + "'!'", "'eq'", "'ne'", "'eqi'", "'contains'", "'=='", "'!='", "'>='", + "'<='", "'>'", "'<'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { - null, "DEFAULT", "IF", "THEN", "ELSE", "END", "WITH", "AND", "OR", "NOT", - "BANG", "EQ_KW", "NE_KW", "EQI_KW", "CONTAINS_KW", "EQEQ", "NEQ", "GE_OP", - "LE_OP", "GT_OP", "LT_OP", "VAR_ID", "ROOT", "BLOCK_COMMENT", "HORZ_WS", - "VERT_WS", "LBRACE", "RBRACE", "DOT", "LPAREN", "RPAREN", "LBRACK", "RBRACK", - "DQUESTION", "SEMI", "COMMA", "STAR", "SLASH", "PERCENT", "PLUS", "MINUS", - "DSTRING", "SSTRING", "DECDIGITS", "FLOAT", "BOOLEAN", "ID", "CAST_TYPE", - "ERR_CHAR", "C_HORZ_WS", "C_VERT_WS", "CERR_CHAR" + null, "DEFAULT", "IF", "THEN", "ELSE", "END", "AND", "OR", "NOT", "BANG", + "EQ_KW", "NE_KW", "EQI_KW", "CONTAINS_KW", "EQEQ", "NEQ", "GE_OP", "LE_OP", + "GT_OP", "LT_OP", "VAR_ID", "ROOT", "BLOCK_COMMENT", "HORZ_WS", "VERT_WS", + "LBRACE", "RBRACE", "DOT", "LPAREN", "RPAREN", "LBRACK", "RBRACK", "DQUESTION", + "SEMI", "COMMA", "STAR", "SLASH", "PERCENT", "PLUS", "MINUS", "DSTRING", + "SSTRING", "DECDIGITS", "FLOAT", "BOOLEAN", "ID", "CAST_TYPE", "ERR_CHAR", + "C_HORZ_WS", "C_VERT_WS", "CERR_CHAR" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -134,7 +134,7 @@ public TemplateLexerExpression(CharStream input) { public ATN getATN() { return _ATN; } public static final String _serializedATN = - "\u0004\u00003\u023c\u0006\uffff\uffff\u0006\uffff\uffff\u0002\u0000\u0007"+ + "\u0004\u00002\u025b\u0006\uffff\uffff\u0006\uffff\uffff\u0002\u0000\u0007"+ "\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007"+ "\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007"+ "\u0006\u0002\u0007\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n"+ @@ -157,334 +157,355 @@ public TemplateLexerExpression(CharStream input) { "M\u0007M\u0002N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002"+ "R\u0007R\u0002S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002"+ "W\u0007W\u0002X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002"+ - "\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0001"+ - "\u0000\u0001\u0000\u0003\u0000\u00c7\b\u0000\u0001\u0001\u0001\u0001\u0001"+ - "\u0002\u0001\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0005"+ - "\u0003\u00d1\b\u0003\n\u0003\f\u0003\u00d4\t\u0003\u0001\u0003\u0001\u0003"+ - "\u0001\u0003\u0003\u0003\u00d9\b\u0003\u0001\u0004\u0001\u0004\u0001\u0005"+ - "\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\b\u0001"+ - "\b\u0001\t\u0001\t\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\f\u0001"+ - "\f\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001"+ - "\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001"+ - "\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001"+ - "\u0015\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0018\u0001"+ - "\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+ - "\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0003\u0019\u010f\b\u0019\u0001"+ - "\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0003\u001a\u0116"+ - "\b\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0003"+ - "\u001b\u011d\b\u001b\u0003\u001b\u011f\b\u001b\u0003\u001b\u0121\b\u001b"+ - "\u0003\u001b\u0123\b\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c"+ - "\u0128\b\u001c\n\u001c\f\u001c\u012b\t\u001c\u0001\u001c\u0001\u001c\u0001"+ - "\u001d\u0001\u001d\u0001\u001d\u0005\u001d\u0132\b\u001d\n\u001d\f\u001d"+ - "\u0135\t\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0003\u001e"+ - "\u013b\b\u001e\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001!\u0004!\u0142"+ - "\b!\u000b!\f!\u0143\u0001\"\u0001\"\u0001\"\u0003\"\u0149\b\"\u0001#\u0001"+ - "#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001$\u0001$\u0001$\u0001$\u0001"+ - "%\u0001%\u0005%\u0158\b%\n%\f%\u015b\t%\u0001%\u0001%\u0001&\u0001&\u0001"+ - "&\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001("+ - "\u0001(\u0001)\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001"+ - "*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001"+ - "-\u0001-\u0001.\u0001.\u0001/\u0001/\u0001/\u00010\u00010\u00010\u0001"+ - "1\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u00012\u00012\u0001"+ - "2\u00012\u00012\u00013\u00013\u00013\u00014\u00014\u00014\u00015\u0001"+ - "5\u00015\u00016\u00016\u00016\u00017\u00017\u00018\u00018\u00019\u0001"+ - "9\u00019\u00019\u00059\u01a9\b9\n9\f9\u01ac\t9\u0001:\u0001:\u0001;\u0001"+ - ";\u0001<\u0004<\u01b3\b<\u000b<\f<\u01b4\u0001<\u0001<\u0001=\u0004=\u01ba"+ - "\b=\u000b=\f=\u01bb\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001?\u0001"+ - "?\u0001?\u0001?\u0001@\u0001@\u0001A\u0001A\u0001B\u0001B\u0001C\u0001"+ - "C\u0001D\u0001D\u0001E\u0001E\u0001F\u0001F\u0001G\u0001G\u0001H\u0001"+ - "H\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001L\u0001L\u0001M\u0001"+ - "M\u0001N\u0001N\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001Q\u0001R\u0001"+ - "R\u0001R\u0005R\u01ef\bR\nR\fR\u01f2\tR\u0001S\u0001S\u0001S\u0004S\u01f7"+ - "\bS\u000bS\fS\u01f8\u0001S\u0003S\u01fc\bS\u0001S\u0001S\u0001T\u0001"+ - "T\u0001T\u0001T\u0001U\u0001U\u0001V\u0001V\u0001W\u0004W\u0209\bW\u000b"+ - "W\fW\u020a\u0001W\u0001W\u0001X\u0004X\u0210\bX\u000bX\fX\u0211\u0001"+ - "X\u0001X\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001"+ - "Z\u0001[\u0001[\u0001[\u0005[\u0222\b[\n[\f[\u0225\t[\u0001[\u0001[\u0001"+ - "\\\u0001\\\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001"+ + "\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002"+ + "a\u0007a\u0002b\u0007b\u0002c\u0007c\u0001\u0000\u0001\u0000\u0003\u0000"+ + "\u00cd\b\u0000\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0003"+ + "\u0001\u0003\u0001\u0003\u0001\u0003\u0005\u0003\u00d7\b\u0003\n\u0003"+ + "\f\u0003\u00da\t\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003"+ + "\u00df\b\u0003\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0006"+ + "\u0001\u0006\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\t\u0001\t\u0001"+ + "\n\u0001\n\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001"+ + "\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001"+ + "\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001"+ + "\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001"+ + "\u0016\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+ + "\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001"+ + "\u0019\u0001\u0019\u0003\u0019\u0115\b\u0019\u0001\u001a\u0001\u001a\u0001"+ + "\u001a\u0001\u001a\u0001\u001a\u0003\u001a\u011c\b\u001a\u0001\u001b\u0001"+ + "\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0003\u001b\u0123\b\u001b\u0003"+ + "\u001b\u0125\b\u001b\u0003\u001b\u0127\b\u001b\u0003\u001b\u0129\b\u001b"+ + "\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u012e\b\u001c\n\u001c"+ + "\f\u001c\u0131\t\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d"+ + "\u0001\u001d\u0005\u001d\u0138\b\u001d\n\u001d\f\u001d\u013b\t\u001d\u0001"+ + "\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0003\u001e\u0141\b\u001e\u0001"+ + "\u001f\u0001\u001f\u0001 \u0001 \u0001!\u0004!\u0148\b!\u000b!\f!\u0149"+ + "\u0001\"\u0001\"\u0001\"\u0003\"\u014f\b\"\u0001#\u0001#\u0001#\u0001"+ + "#\u0001#\u0001$\u0001$\u0001$\u0001$\u0001$\u0001$\u0001%\u0001%\u0005"+ + "%\u015e\b%\n%\f%\u0161\t%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001\'\u0001"+ + "\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001)\u0001"+ + ")\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001"+ + ",\u0001,\u0001,\u0001,\u0001-\u0001-\u0001.\u0001.\u0001.\u0001/\u0001"+ + "/\u0001/\u00010\u00010\u00010\u00010\u00011\u00011\u00011\u00011\u0001"+ + "1\u00011\u00011\u00011\u00011\u00012\u00012\u00012\u00013\u00013\u0001"+ + "3\u00014\u00014\u00014\u00015\u00015\u00015\u00016\u00016\u00017\u0001"+ + "7\u00018\u00018\u00018\u00018\u00058\u01aa\b8\n8\f8\u01ad\t8\u00019\u0001"+ + "9\u0001:\u0001:\u0001;\u0004;\u01b4\b;\u000b;\f;\u01b5\u0001;\u0001;\u0001"+ + "<\u0004<\u01bb\b<\u000b<\f<\u01bc\u0001<\u0001<\u0001=\u0001=\u0001=\u0001"+ + "=\u0001>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001@\u0001@\u0001A\u0001"+ + "A\u0001B\u0001B\u0001C\u0001C\u0001D\u0001D\u0001E\u0001E\u0001F\u0001"+ + "F\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001J\u0001J\u0001K\u0001"+ + "K\u0001L\u0001L\u0001M\u0001M\u0001N\u0001N\u0001O\u0001O\u0001P\u0001"+ + "P\u0001Q\u0001Q\u0001Q\u0005Q\u01f0\bQ\nQ\fQ\u01f3\tQ\u0001R\u0001R\u0001"+ + "R\u0004R\u01f8\bR\u000bR\fR\u01f9\u0001R\u0003R\u01fd\bR\u0001R\u0001"+ + "R\u0001S\u0001S\u0001S\u0001S\u0001T\u0001T\u0001U\u0001U\u0001V\u0004"+ + "V\u020a\bV\u000bV\fV\u020b\u0001V\u0001V\u0001W\u0004W\u0211\bW\u000b"+ + "W\fW\u0212\u0001W\u0001W\u0001X\u0001X\u0001X\u0001X\u0001X\u0001Y\u0001"+ + "Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001Z\u0001[\u0001[\u0005[\u0226"+ + "\b[\n[\f[\u0229\t[\u0001[\u0001[\u0001[\u0001[\u0001\\\u0001\\\u0001\\"+ + "\u0001\\\u0005\\\u0233\b\\\n\\\f\\\u0236\t\\\u0001\\\u0001\\\u0001]\u0001"+ + "]\u0001]\u0001]\u0001^\u0001^\u0001^\u0005^\u0241\b^\n^\f^\u0244\t^\u0001"+ "^\u0001^\u0001_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001"+ - "\u00d2\u0000a\u0002\u0000\u0004\u0000\u0006\u0000\b\u0000\n\u0000\f\u0000"+ - "\u000e\u0000\u0010\u0000\u0012\u0000\u0014\u0000\u0016\u0000\u0018\u0000"+ - "\u001a\u0000\u001c\u0000\u001e\u0000 \u0000\"\u0000$\u0000&\u0000(\u0000"+ - "*\u0000,\u0000.\u00000\u00002\u00004\u00006\u00008\u0000:\u0000<\u0000"+ - ">\u0000@\u0000B\u0000D\u0000F\u0000H\u0000J\u0000L\u0001N\u0002P\u0003"+ - "R\u0004T\u0005V\u0006X\u0007Z\b\\\t^\n`\u000bb\fd\rf\u000eh\u000fj\u0010"+ - "l\u0011n\u0012p\u0013r\u0014t\u0015v\u0016x\u0017z\u0018|\u0019~\u001a"+ - "\u0080\u001b\u0082\u001c\u0084\u001d\u0086\u001e\u0088\u001f\u008a \u008c"+ - "!\u008e\"\u0090#\u0092$\u0094%\u0096&\u0098\'\u009a(\u009c)\u009e*\u00a0"+ - "+\u00a2,\u00a4-\u00a6.\u00a8/\u00aa0\u00ac\u0000\u00ae\u0000\u00b01\u00b2"+ - "2\u00b4\u0000\u00b6\u0000\u00b8\u0000\u00ba\u0000\u00bc\u0000\u00be\u0000"+ - "\u00c0\u0000\u00c23\u0002\u0000\u0001\t\u0002\u0000\t\t \u0002\u0000"+ - "\n\n\f\r\r\u0000AZaz\u00c0\u00d6\u00d8\u00f6\u00f8\u02ff\u0370\u037d\u037f"+ - "\u1fff\u200c\u200d\u2070\u218f\u2c00\u2fef\u3001\u8000\ud7ff\u8000\uf900"+ - "\u8000\ufdcf\u8000\ufdf0\u8000\ufffd\u0003\u0000\u00b7\u00b7\u0300\u036f"+ - "\u203f\u2040\b\u0000\"\"\'\'\\\\bbffnnrrtt\u0004\u0000\n\n\r\r\'\'\\\\"+ - "\u0004\u0000\n\n\r\r\"\"\\\\\u0003\u000009AFaf\u0001\u000009\u0234\u0000"+ - "L\u0001\u0000\u0000\u0000\u0000N\u0001\u0000\u0000\u0000\u0000P\u0001"+ - "\u0000\u0000\u0000\u0000R\u0001\u0000\u0000\u0000\u0000T\u0001\u0000\u0000"+ - "\u0000\u0000V\u0001\u0000\u0000\u0000\u0000X\u0001\u0000\u0000\u0000\u0000"+ - "Z\u0001\u0000\u0000\u0000\u0000\\\u0001\u0000\u0000\u0000\u0000^\u0001"+ - "\u0000\u0000\u0000\u0000`\u0001\u0000\u0000\u0000\u0000b\u0001\u0000\u0000"+ - "\u0000\u0000d\u0001\u0000\u0000\u0000\u0000f\u0001\u0000\u0000\u0000\u0000"+ - "h\u0001\u0000\u0000\u0000\u0000j\u0001\u0000\u0000\u0000\u0000l\u0001"+ - "\u0000\u0000\u0000\u0000n\u0001\u0000\u0000\u0000\u0000p\u0001\u0000\u0000"+ - "\u0000\u0000r\u0001\u0000\u0000\u0000\u0000t\u0001\u0000\u0000\u0000\u0000"+ - "v\u0001\u0000\u0000\u0000\u0000x\u0001\u0000\u0000\u0000\u0000z\u0001"+ - "\u0000\u0000\u0000\u0000|\u0001\u0000\u0000\u0000\u0000~\u0001\u0000\u0000"+ - "\u0000\u0000\u0080\u0001\u0000\u0000\u0000\u0000\u0082\u0001\u0000\u0000"+ - "\u0000\u0000\u0084\u0001\u0000\u0000\u0000\u0000\u0086\u0001\u0000\u0000"+ - "\u0000\u0000\u0088\u0001\u0000\u0000\u0000\u0000\u008a\u0001\u0000\u0000"+ - "\u0000\u0000\u008c\u0001\u0000\u0000\u0000\u0000\u008e\u0001\u0000\u0000"+ - "\u0000\u0000\u0090\u0001\u0000\u0000\u0000\u0000\u0092\u0001\u0000\u0000"+ - "\u0000\u0000\u0094\u0001\u0000\u0000\u0000\u0000\u0096\u0001\u0000\u0000"+ - "\u0000\u0000\u0098\u0001\u0000\u0000\u0000\u0000\u009a\u0001\u0000\u0000"+ - "\u0000\u0000\u009c\u0001\u0000\u0000\u0000\u0000\u009e\u0001\u0000\u0000"+ - "\u0000\u0000\u00a0\u0001\u0000\u0000\u0000\u0000\u00a2\u0001\u0000\u0000"+ - "\u0000\u0000\u00a4\u0001\u0000\u0000\u0000\u0000\u00a6\u0001\u0000\u0000"+ - "\u0000\u0000\u00a8\u0001\u0000\u0000\u0000\u0000\u00aa\u0001\u0000\u0000"+ - "\u0000\u0001\u00b0\u0001\u0000\u0000\u0000\u0001\u00b2\u0001\u0000\u0000"+ - "\u0000\u0001\u00b4\u0001\u0000\u0000\u0000\u0001\u00b6\u0001\u0000\u0000"+ - "\u0000\u0001\u00b8\u0001\u0000\u0000\u0000\u0001\u00ba\u0001\u0000\u0000"+ - "\u0000\u0001\u00bc\u0001\u0000\u0000\u0000\u0001\u00be\u0001\u0000\u0000"+ - "\u0000\u0001\u00c0\u0001\u0000\u0000\u0000\u0001\u00c2\u0001\u0000\u0000"+ - "\u0000\u0002\u00c6\u0001\u0000\u0000\u0000\u0004\u00c8\u0001\u0000\u0000"+ - "\u0000\u0006\u00ca\u0001\u0000\u0000\u0000\b\u00cc\u0001\u0000\u0000\u0000"+ - "\n\u00da\u0001\u0000\u0000\u0000\f\u00dc\u0001\u0000\u0000\u0000\u000e"+ - "\u00de\u0001\u0000\u0000\u0000\u0010\u00e0\u0001\u0000\u0000\u0000\u0012"+ - "\u00e2\u0001\u0000\u0000\u0000\u0014\u00e4\u0001\u0000\u0000\u0000\u0016"+ - "\u00e6\u0001\u0000\u0000\u0000\u0018\u00e8\u0001\u0000\u0000\u0000\u001a"+ - "\u00ea\u0001\u0000\u0000\u0000\u001c\u00ec\u0001\u0000\u0000\u0000\u001e"+ - "\u00ee\u0001\u0000\u0000\u0000 \u00f0\u0001\u0000\u0000\u0000\"\u00f2"+ - "\u0001\u0000\u0000\u0000$\u00f4\u0001\u0000\u0000\u0000&\u00f6\u0001\u0000"+ - "\u0000\u0000(\u00f8\u0001\u0000\u0000\u0000*\u00fa\u0001\u0000\u0000\u0000"+ - ",\u00fc\u0001\u0000\u0000\u0000.\u00ff\u0001\u0000\u0000\u00000\u0101"+ - "\u0001\u0000\u0000\u00002\u0103\u0001\u0000\u0000\u00004\u010e\u0001\u0000"+ - "\u0000\u00006\u0110\u0001\u0000\u0000\u00008\u0117\u0001\u0000\u0000\u0000"+ - ":\u0124\u0001\u0000\u0000\u0000<\u012e\u0001\u0000\u0000\u0000>\u013a"+ - "\u0001\u0000\u0000\u0000@\u013c\u0001\u0000\u0000\u0000B\u013e\u0001\u0000"+ - "\u0000\u0000D\u0141\u0001\u0000\u0000\u0000F\u0145\u0001\u0000\u0000\u0000"+ - "H\u014a\u0001\u0000\u0000\u0000J\u014f\u0001\u0000\u0000\u0000L\u0155"+ - "\u0001\u0000\u0000\u0000N\u015e\u0001\u0000\u0000\u0000P\u0161\u0001\u0000"+ - "\u0000\u0000R\u0166\u0001\u0000\u0000\u0000T\u016b\u0001\u0000\u0000\u0000"+ - "V\u016f\u0001\u0000\u0000\u0000X\u0174\u0001\u0000\u0000\u0000Z\u0178"+ - "\u0001\u0000\u0000\u0000\\\u017b\u0001\u0000\u0000\u0000^\u017f\u0001"+ - "\u0000\u0000\u0000`\u0181\u0001\u0000\u0000\u0000b\u0184\u0001\u0000\u0000"+ - "\u0000d\u0187\u0001\u0000\u0000\u0000f\u018b\u0001\u0000\u0000\u0000h"+ - "\u0194\u0001\u0000\u0000\u0000j\u0197\u0001\u0000\u0000\u0000l\u019a\u0001"+ - "\u0000\u0000\u0000n\u019d\u0001\u0000\u0000\u0000p\u01a0\u0001\u0000\u0000"+ - "\u0000r\u01a2\u0001\u0000\u0000\u0000t\u01a4\u0001\u0000\u0000\u0000v"+ - "\u01ad\u0001\u0000\u0000\u0000x\u01af\u0001\u0000\u0000\u0000z\u01b2\u0001"+ - "\u0000\u0000\u0000|\u01b9\u0001\u0000\u0000\u0000~\u01bf\u0001\u0000\u0000"+ - "\u0000\u0080\u01c3\u0001\u0000\u0000\u0000\u0082\u01c7\u0001\u0000\u0000"+ - "\u0000\u0084\u01c9\u0001\u0000\u0000\u0000\u0086\u01cb\u0001\u0000\u0000"+ - "\u0000\u0088\u01cd\u0001\u0000\u0000\u0000\u008a\u01cf\u0001\u0000\u0000"+ - "\u0000\u008c\u01d1\u0001\u0000\u0000\u0000\u008e\u01d3\u0001\u0000\u0000"+ - "\u0000\u0090\u01d5\u0001\u0000\u0000\u0000\u0092\u01d7\u0001\u0000\u0000"+ - "\u0000\u0094\u01d9\u0001\u0000\u0000\u0000\u0096\u01db\u0001\u0000\u0000"+ - "\u0000\u0098\u01dd\u0001\u0000\u0000\u0000\u009a\u01df\u0001\u0000\u0000"+ - "\u0000\u009c\u01e1\u0001\u0000\u0000\u0000\u009e\u01e3\u0001\u0000\u0000"+ - "\u0000\u00a0\u01e5\u0001\u0000\u0000\u0000\u00a2\u01e7\u0001\u0000\u0000"+ - "\u0000\u00a4\u01e9\u0001\u0000\u0000\u0000\u00a6\u01eb\u0001\u0000\u0000"+ - "\u0000\u00a8\u01f3\u0001\u0000\u0000\u0000\u00aa\u01ff\u0001\u0000\u0000"+ - "\u0000\u00ac\u0203\u0001\u0000\u0000\u0000\u00ae\u0205\u0001\u0000\u0000"+ - "\u0000\u00b0\u0208\u0001\u0000\u0000\u0000\u00b2\u020f\u0001\u0000\u0000"+ - "\u0000\u00b4\u0215\u0001\u0000\u0000\u0000\u00b6\u021a\u0001\u0000\u0000"+ - "\u0000\u00b8\u021e\u0001\u0000\u0000\u0000\u00ba\u0228\u0001\u0000\u0000"+ - "\u0000\u00bc\u022c\u0001\u0000\u0000\u0000\u00be\u0230\u0001\u0000\u0000"+ - "\u0000\u00c0\u0234\u0001\u0000\u0000\u0000\u00c2\u0238\u0001\u0000\u0000"+ - "\u0000\u00c4\u00c7\u0003\u0004\u0001\u0000\u00c5\u00c7\u0003\u0006\u0002"+ - "\u0000\u00c6\u00c4\u0001\u0000\u0000\u0000\u00c6\u00c5\u0001\u0000\u0000"+ - "\u0000\u00c7\u0003\u0001\u0000\u0000\u0000\u00c8\u00c9\u0007\u0000\u0000"+ - "\u0000\u00c9\u0005\u0001\u0000\u0000\u0000\u00ca\u00cb\u0007\u0001\u0000"+ - "\u0000\u00cb\u0007\u0001\u0000\u0000\u0000\u00cc\u00cd\u0005/\u0000\u0000"+ - "\u00cd\u00ce\u0005*\u0000\u0000\u00ce\u00d2\u0001\u0000\u0000\u0000\u00cf"+ - "\u00d1\t\u0000\u0000\u0000\u00d0\u00cf\u0001\u0000\u0000\u0000\u00d1\u00d4"+ - "\u0001\u0000\u0000\u0000\u00d2\u00d3\u0001\u0000\u0000\u0000\u00d2\u00d0"+ - "\u0001\u0000\u0000\u0000\u00d3\u00d8\u0001\u0000\u0000\u0000\u00d4\u00d2"+ - "\u0001\u0000\u0000\u0000\u00d5\u00d6\u0005*\u0000\u0000\u00d6\u00d9\u0005"+ - "/\u0000\u0000\u00d7\u00d9\u0005\u0000\u0000\u0001\u00d8\u00d5\u0001\u0000"+ - "\u0000\u0000\u00d8\u00d7\u0001\u0000\u0000\u0000\u00d9\t\u0001\u0000\u0000"+ - "\u0000\u00da\u00db\u0005\\\u0000\u0000\u00db\u000b\u0001\u0000\u0000\u0000"+ - "\u00dc\u00dd\u0005\'\u0000\u0000\u00dd\r\u0001\u0000\u0000\u0000\u00de"+ - "\u00df\u0005\"\u0000\u0000\u00df\u000f\u0001\u0000\u0000\u0000\u00e0\u00e1"+ - "\u0005_\u0000\u0000\u00e1\u0011\u0001\u0000\u0000\u0000\u00e2\u00e3\u0005"+ - ",\u0000\u0000\u00e3\u0013\u0001\u0000\u0000\u0000\u00e4\u00e5\u0005;\u0000"+ - "\u0000\u00e5\u0015\u0001\u0000\u0000\u0000\u00e6\u00e7\u0005|\u0000\u0000"+ - "\u00e7\u0017\u0001\u0000\u0000\u0000\u00e8\u00e9\u0005.\u0000\u0000\u00e9"+ - "\u0019\u0001\u0000\u0000\u0000\u00ea\u00eb\u0005(\u0000\u0000\u00eb\u001b"+ - "\u0001\u0000\u0000\u0000\u00ec\u00ed\u0005)\u0000\u0000\u00ed\u001d\u0001"+ - "\u0000\u0000\u0000\u00ee\u00ef\u0005[\u0000\u0000\u00ef\u001f\u0001\u0000"+ - "\u0000\u0000\u00f0\u00f1\u0005]\u0000\u0000\u00f1!\u0001\u0000\u0000\u0000"+ - "\u00f2\u00f3\u0005*\u0000\u0000\u00f3#\u0001\u0000\u0000\u0000\u00f4\u00f5"+ - "\u0005/\u0000\u0000\u00f5%\u0001\u0000\u0000\u0000\u00f6\u00f7\u0005%"+ - "\u0000\u0000\u00f7\'\u0001\u0000\u0000\u0000\u00f8\u00f9\u0005+\u0000"+ - "\u0000\u00f9)\u0001\u0000\u0000\u0000\u00fa\u00fb\u0005-\u0000\u0000\u00fb"+ - "+\u0001\u0000\u0000\u0000\u00fc\u00fd\u0005?\u0000\u0000\u00fd\u00fe\u0005"+ - "?\u0000\u0000\u00fe-\u0001\u0000\u0000\u0000\u00ff\u0100\u0005<\u0000"+ - "\u0000\u0100/\u0001\u0000\u0000\u0000\u0101\u0102\u0005>\u0000\u0000\u0102"+ - "1\u0001\u0000\u0000\u0000\u0103\u0104\u0005d\u0000\u0000\u0104\u0105\u0005"+ - "e\u0000\u0000\u0105\u0106\u0005f\u0000\u0000\u0106\u0107\u0005a\u0000"+ - "\u0000\u0107\u0108\u0005u\u0000\u0000\u0108\u0109\u0005l\u0000\u0000\u0109"+ - "\u010a\u0005t\u0000\u0000\u010a3\u0001\u0000\u0000\u0000\u010b\u010f\u0007"+ - "\u0002\u0000\u0000\u010c\u010f\u0003\u0010\u0007\u0000\u010d\u010f\u0007"+ - "\u0003\u0000\u0000\u010e\u010b\u0001\u0000\u0000\u0000\u010e\u010c\u0001"+ - "\u0000\u0000\u0000\u010e\u010d\u0001\u0000\u0000\u0000\u010f5\u0001\u0000"+ - "\u0000\u0000\u0110\u0115\u0003\n\u0004\u0000\u0111\u0116\u0007\u0004\u0000"+ - "\u0000\u0112\u0116\u00038\u001b\u0000\u0113\u0116\t\u0000\u0000\u0000"+ - "\u0114\u0116\u0005\u0000\u0000\u0001\u0115\u0111\u0001\u0000\u0000\u0000"+ - "\u0115\u0112\u0001\u0000\u0000\u0000\u0115\u0113\u0001\u0000\u0000\u0000"+ - "\u0115\u0114\u0001\u0000\u0000\u0000\u01167\u0001\u0000\u0000\u0000\u0117"+ - "\u0122\u0005u\u0000\u0000\u0118\u0120\u0003@\u001f\u0000\u0119\u011e\u0003"+ - "@\u001f\u0000\u011a\u011c\u0003@\u001f\u0000\u011b\u011d\u0003@\u001f"+ - "\u0000\u011c\u011b\u0001\u0000\u0000\u0000\u011c\u011d\u0001\u0000\u0000"+ - "\u0000\u011d\u011f\u0001\u0000\u0000\u0000\u011e\u011a\u0001\u0000\u0000"+ - "\u0000\u011e\u011f\u0001\u0000\u0000\u0000\u011f\u0121\u0001\u0000\u0000"+ - "\u0000\u0120\u0119\u0001\u0000\u0000\u0000\u0120\u0121\u0001\u0000\u0000"+ - "\u0000\u0121\u0123\u0001\u0000\u0000\u0000\u0122\u0118\u0001\u0000\u0000"+ - "\u0000\u0122\u0123\u0001\u0000\u0000\u0000\u01239\u0001\u0000\u0000\u0000"+ - "\u0124\u0129\u0003\f\u0005\u0000\u0125\u0128\u00036\u001a\u0000\u0126"+ - "\u0128\b\u0005\u0000\u0000\u0127\u0125\u0001\u0000\u0000\u0000\u0127\u0126"+ - "\u0001\u0000\u0000\u0000\u0128\u012b\u0001\u0000\u0000\u0000\u0129\u0127"+ - "\u0001\u0000\u0000\u0000\u0129\u012a\u0001\u0000\u0000\u0000\u012a\u012c"+ - "\u0001\u0000\u0000\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012c\u012d"+ - "\u0003\f\u0005\u0000\u012d;\u0001\u0000\u0000\u0000\u012e\u0133\u0003"+ - "\u000e\u0006\u0000\u012f\u0132\u00036\u001a\u0000\u0130\u0132\b\u0006"+ - "\u0000\u0000\u0131\u012f\u0001\u0000\u0000\u0000\u0131\u0130\u0001\u0000"+ - "\u0000\u0000\u0132\u0135\u0001\u0000\u0000\u0000\u0133\u0131\u0001\u0000"+ - "\u0000\u0000\u0133\u0134\u0001\u0000\u0000\u0000\u0134\u0136\u0001\u0000"+ - "\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136\u0137\u0003\u000e"+ - "\u0006\u0000\u0137=\u0001\u0000\u0000\u0000\u0138\u013b\u0003H#\u0000"+ - "\u0139\u013b\u0003J$\u0000\u013a\u0138\u0001\u0000\u0000\u0000\u013a\u0139"+ - "\u0001\u0000\u0000\u0000\u013b?\u0001\u0000\u0000\u0000\u013c\u013d\u0007"+ - "\u0007\u0000\u0000\u013dA\u0001\u0000\u0000\u0000\u013e\u013f\u0007\b"+ - "\u0000\u0000\u013fC\u0001\u0000\u0000\u0000\u0140\u0142\u0003B \u0000"+ - "\u0141\u0140\u0001\u0000\u0000\u0000\u0142\u0143\u0001\u0000\u0000\u0000"+ - "\u0143\u0141\u0001\u0000\u0000\u0000\u0143\u0144\u0001\u0000\u0000\u0000"+ - "\u0144E\u0001\u0000\u0000\u0000\u0145\u0146\u0003D!\u0000\u0146\u0148"+ - "\u0003\u0018\u000b\u0000\u0147\u0149\u0003D!\u0000\u0148\u0147\u0001\u0000"+ - "\u0000\u0000\u0148\u0149\u0001\u0000\u0000\u0000\u0149G\u0001\u0000\u0000"+ - "\u0000\u014a\u014b\u0005t\u0000\u0000\u014b\u014c\u0005r\u0000\u0000\u014c"+ - "\u014d\u0005u\u0000\u0000\u014d\u014e\u0005e\u0000\u0000\u014eI\u0001"+ - "\u0000\u0000\u0000\u014f\u0150\u0005f\u0000\u0000\u0150\u0151\u0005a\u0000"+ - "\u0000\u0151\u0152\u0005l\u0000\u0000\u0152\u0153\u0005s\u0000\u0000\u0153"+ - "\u0154\u0005e\u0000\u0000\u0154K\u0001\u0000\u0000\u0000\u0155\u0159\u0003"+ - "\u0016\n\u0000\u0156\u0158\u0003\u0004\u0001\u0000\u0157\u0156\u0001\u0000"+ - "\u0000\u0000\u0158\u015b\u0001\u0000\u0000\u0000\u0159\u0157\u0001\u0000"+ - "\u0000\u0000\u0159\u015a\u0001\u0000\u0000\u0000\u015a\u015c\u0001\u0000"+ - "\u0000\u0000\u015b\u0159\u0001\u0000\u0000\u0000\u015c\u015d\u00032\u0018"+ - "\u0000\u015dM\u0001\u0000\u0000\u0000\u015e\u015f\u0005i\u0000\u0000\u015f"+ - "\u0160\u0005f\u0000\u0000\u0160O\u0001\u0000\u0000\u0000\u0161\u0162\u0005"+ - "t\u0000\u0000\u0162\u0163\u0005h\u0000\u0000\u0163\u0164\u0005e\u0000"+ - "\u0000\u0164\u0165\u0005n\u0000\u0000\u0165Q\u0001\u0000\u0000\u0000\u0166"+ - "\u0167\u0005e\u0000\u0000\u0167\u0168\u0005l\u0000\u0000\u0168\u0169\u0005"+ - "s\u0000\u0000\u0169\u016a\u0005e\u0000\u0000\u016aS\u0001\u0000\u0000"+ - "\u0000\u016b\u016c\u0005e\u0000\u0000\u016c\u016d\u0005n\u0000\u0000\u016d"+ - "\u016e\u0005d\u0000\u0000\u016eU\u0001\u0000\u0000\u0000\u016f\u0170\u0005"+ - "w\u0000\u0000\u0170\u0171\u0005i\u0000\u0000\u0171\u0172\u0005t\u0000"+ - "\u0000\u0172\u0173\u0005h\u0000\u0000\u0173W\u0001\u0000\u0000\u0000\u0174"+ - "\u0175\u0005a\u0000\u0000\u0175\u0176\u0005n\u0000\u0000\u0176\u0177\u0005"+ - "d\u0000\u0000\u0177Y\u0001\u0000\u0000\u0000\u0178\u0179\u0005o\u0000"+ - "\u0000\u0179\u017a\u0005r\u0000\u0000\u017a[\u0001\u0000\u0000\u0000\u017b"+ - "\u017c\u0005n\u0000\u0000\u017c\u017d\u0005o\u0000\u0000\u017d\u017e\u0005"+ - "t\u0000\u0000\u017e]\u0001\u0000\u0000\u0000\u017f\u0180\u0005!\u0000"+ - "\u0000\u0180_\u0001\u0000\u0000\u0000\u0181\u0182\u0005e\u0000\u0000\u0182"+ - "\u0183\u0005q\u0000\u0000\u0183a\u0001\u0000\u0000\u0000\u0184\u0185\u0005"+ - "n\u0000\u0000\u0185\u0186\u0005e\u0000\u0000\u0186c\u0001\u0000\u0000"+ - "\u0000\u0187\u0188\u0005e\u0000\u0000\u0188\u0189\u0005q\u0000\u0000\u0189"+ - "\u018a\u0005i\u0000\u0000\u018ae\u0001\u0000\u0000\u0000\u018b\u018c\u0005"+ - "c\u0000\u0000\u018c\u018d\u0005o\u0000\u0000\u018d\u018e\u0005n\u0000"+ - "\u0000\u018e\u018f\u0005t\u0000\u0000\u018f\u0190\u0005a\u0000\u0000\u0190"+ - "\u0191\u0005i\u0000\u0000\u0191\u0192\u0005n\u0000\u0000\u0192\u0193\u0005"+ - "s\u0000\u0000\u0193g\u0001\u0000\u0000\u0000\u0194\u0195\u0005=\u0000"+ - "\u0000\u0195\u0196\u0005=\u0000\u0000\u0196i\u0001\u0000\u0000\u0000\u0197"+ - "\u0198\u0005!\u0000\u0000\u0198\u0199\u0005=\u0000\u0000\u0199k\u0001"+ - "\u0000\u0000\u0000\u019a\u019b\u0005>\u0000\u0000\u019b\u019c\u0005=\u0000"+ - "\u0000\u019cm\u0001\u0000\u0000\u0000\u019d\u019e\u0005<\u0000\u0000\u019e"+ - "\u019f\u0005=\u0000\u0000\u019fo\u0001\u0000\u0000\u0000\u01a0\u01a1\u0005"+ - ">\u0000\u0000\u01a1q\u0001\u0000\u0000\u0000\u01a2\u01a3\u0005<\u0000"+ - "\u0000\u01a3s\u0001\u0000\u0000\u0000\u01a4\u01a5\u0005$\u0000\u0000\u01a5"+ - "\u01aa\u00034\u0019\u0000\u01a6\u01a9\u00034\u0019\u0000\u01a7\u01a9\u0003"+ - "B \u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a8\u01a7\u0001\u0000\u0000"+ - "\u0000\u01a9\u01ac\u0001\u0000\u0000\u0000\u01aa\u01a8\u0001\u0000\u0000"+ - "\u0000\u01aa\u01ab\u0001\u0000\u0000\u0000\u01abu\u0001\u0000\u0000\u0000"+ - "\u01ac\u01aa\u0001\u0000\u0000\u0000\u01ad\u01ae\u0005$\u0000\u0000\u01ae"+ - "w\u0001\u0000\u0000\u0000\u01af\u01b0\u0003\b\u0003\u0000\u01b0y\u0001"+ - "\u0000\u0000\u0000\u01b1\u01b3\u0003\u0004\u0001\u0000\u01b2\u01b1\u0001"+ - "\u0000\u0000\u0000\u01b3\u01b4\u0001\u0000\u0000\u0000\u01b4\u01b2\u0001"+ - "\u0000\u0000\u0000\u01b4\u01b5\u0001\u0000\u0000\u0000\u01b5\u01b6\u0001"+ - "\u0000\u0000\u0000\u01b6\u01b7\u0006<\u0000\u0000\u01b7{\u0001\u0000\u0000"+ - "\u0000\u01b8\u01ba\u0003\u0006\u0002\u0000\u01b9\u01b8\u0001\u0000\u0000"+ - "\u0000\u01ba\u01bb\u0001\u0000\u0000\u0000\u01bb\u01b9\u0001\u0000\u0000"+ - "\u0000\u01bb\u01bc\u0001\u0000\u0000\u0000\u01bc\u01bd\u0001\u0000\u0000"+ - "\u0000\u01bd\u01be\u0006=\u0000\u0000\u01be}\u0001\u0000\u0000\u0000\u01bf"+ - "\u01c0\u0003\u00acU\u0000\u01c0\u01c1\u0001\u0000\u0000\u0000\u01c1\u01c2"+ - "\u0006>\u0001\u0000\u01c2\u007f\u0001\u0000\u0000\u0000\u01c3\u01c4\u0003"+ - "\u00aeV\u0000\u01c4\u01c5\u0001\u0000\u0000\u0000\u01c5\u01c6\u0006?\u0002"+ - "\u0000\u01c6\u0081\u0001\u0000\u0000\u0000\u01c7\u01c8\u0003\u0018\u000b"+ - "\u0000\u01c8\u0083\u0001\u0000\u0000\u0000\u01c9\u01ca\u0003\u001a\f\u0000"+ - "\u01ca\u0085\u0001\u0000\u0000\u0000\u01cb\u01cc\u0003\u001c\r\u0000\u01cc"+ - "\u0087\u0001\u0000\u0000\u0000\u01cd\u01ce\u0003\u001e\u000e\u0000\u01ce"+ - "\u0089\u0001\u0000\u0000\u0000\u01cf\u01d0\u0003 \u000f\u0000\u01d0\u008b"+ - "\u0001\u0000\u0000\u0000\u01d1\u01d2\u0003,\u0015\u0000\u01d2\u008d\u0001"+ - "\u0000\u0000\u0000\u01d3\u01d4\u0003\u0014\t\u0000\u01d4\u008f\u0001\u0000"+ - "\u0000\u0000\u01d5\u01d6\u0003\u0012\b\u0000\u01d6\u0091\u0001\u0000\u0000"+ - "\u0000\u01d7\u01d8\u0003\"\u0010\u0000\u01d8\u0093\u0001\u0000\u0000\u0000"+ - "\u01d9\u01da\u0003$\u0011\u0000\u01da\u0095\u0001\u0000\u0000\u0000\u01db"+ - "\u01dc\u0003&\u0012\u0000\u01dc\u0097\u0001\u0000\u0000\u0000\u01dd\u01de"+ - "\u0003(\u0013\u0000\u01de\u0099\u0001\u0000\u0000\u0000\u01df\u01e0\u0003"+ - "*\u0014\u0000\u01e0\u009b\u0001\u0000\u0000\u0000\u01e1\u01e2\u0003<\u001d"+ - "\u0000\u01e2\u009d\u0001\u0000\u0000\u0000\u01e3\u01e4\u0003:\u001c\u0000"+ - "\u01e4\u009f\u0001\u0000\u0000\u0000\u01e5\u01e6\u0003D!\u0000\u01e6\u00a1"+ - "\u0001\u0000\u0000\u0000\u01e7\u01e8\u0003F\"\u0000\u01e8\u00a3\u0001"+ - "\u0000\u0000\u0000\u01e9\u01ea\u0003>\u001e\u0000\u01ea\u00a5\u0001\u0000"+ - "\u0000\u0000\u01eb\u01f0\u00034\u0019\u0000\u01ec\u01ef\u00034\u0019\u0000"+ - "\u01ed\u01ef\u0003B \u0000\u01ee\u01ec\u0001\u0000\u0000\u0000\u01ee\u01ed"+ - "\u0001\u0000\u0000\u0000\u01ef\u01f2\u0001\u0000\u0000\u0000\u01f0\u01ee"+ - "\u0001\u0000\u0000\u0000\u01f0\u01f1\u0001\u0000\u0000\u0000\u01f1\u00a7"+ - "\u0001\u0000\u0000\u0000\u01f2\u01f0\u0001\u0000\u0000\u0000\u01f3\u01f6"+ - "\u0003.\u0016\u0000\u01f4\u01f7\u00034\u0019\u0000\u01f5\u01f7\u0003\u0082"+ - "@\u0000\u01f6\u01f4\u0001\u0000\u0000\u0000\u01f6\u01f5\u0001\u0000\u0000"+ - "\u0000\u01f7\u01f8\u0001\u0000\u0000\u0000\u01f8\u01f6\u0001\u0000\u0000"+ - "\u0000\u01f8\u01f9\u0001\u0000\u0000\u0000\u01f9\u01fb\u0001\u0000\u0000"+ - "\u0000\u01fa\u01fc\u0003\u00a8S\u0000\u01fb\u01fa\u0001\u0000\u0000\u0000"+ - "\u01fb\u01fc\u0001\u0000\u0000\u0000\u01fc\u01fd\u0001\u0000\u0000\u0000"+ - "\u01fd\u01fe\u00030\u0017\u0000\u01fe\u00a9\u0001\u0000\u0000\u0000\u01ff"+ - "\u0200\u0003\u0004\u0001\u0000\u0200\u0201\u0001\u0000\u0000\u0000\u0201"+ - "\u0202\u0006T\u0000\u0000\u0202\u00ab\u0001\u0000\u0000\u0000\u0203\u0204"+ - "\u0005{\u0000\u0000\u0204\u00ad\u0001\u0000\u0000\u0000\u0205\u0206\u0005"+ - "}\u0000\u0000\u0206\u00af\u0001\u0000\u0000\u0000\u0207\u0209\u0003\u0004"+ - "\u0001\u0000\u0208\u0207\u0001\u0000\u0000\u0000\u0209\u020a\u0001\u0000"+ - "\u0000\u0000\u020a\u0208\u0001\u0000\u0000\u0000\u020a\u020b\u0001\u0000"+ - "\u0000\u0000\u020b\u020c\u0001\u0000\u0000\u0000\u020c\u020d\u0006W\u0000"+ - "\u0000\u020d\u00b1\u0001\u0000\u0000\u0000\u020e\u0210\u0003\u0006\u0002"+ - "\u0000\u020f\u020e\u0001\u0000\u0000\u0000\u0210\u0211\u0001\u0000\u0000"+ - "\u0000\u0211\u020f\u0001\u0000\u0000\u0000\u0211\u0212\u0001\u0000\u0000"+ - "\u0000\u0212\u0213\u0001\u0000\u0000\u0000\u0213\u0214\u0006X\u0000\u0000"+ - "\u0214\u00b3\u0001\u0000\u0000\u0000\u0215\u0216\u0003\u00aeV\u0000\u0216"+ - "\u0217\u0001\u0000\u0000\u0000\u0217\u0218\u0006Y\u0002\u0000\u0218\u0219"+ - "\u0006Y\u0003\u0000\u0219\u00b5\u0001\u0000\u0000\u0000\u021a\u021b\u0003"+ - "\u0012\b\u0000\u021b\u021c\u0001\u0000\u0000\u0000\u021c\u021d\u0006Z"+ - "\u0004\u0000\u021d\u00b7\u0001\u0000\u0000\u0000\u021e\u0223\u00034\u0019"+ - "\u0000\u021f\u0222\u00034\u0019\u0000\u0220\u0222\u0003B \u0000\u0221"+ - "\u021f\u0001\u0000\u0000\u0000\u0221\u0220\u0001\u0000\u0000\u0000\u0222"+ - "\u0225\u0001\u0000\u0000\u0000\u0223\u0221\u0001\u0000\u0000\u0000\u0223"+ - "\u0224\u0001\u0000\u0000\u0000\u0224\u0226\u0001\u0000\u0000\u0000\u0225"+ - "\u0223\u0001\u0000\u0000\u0000\u0226\u0227\u0006[\u0005\u0000\u0227\u00b9"+ - "\u0001\u0000\u0000\u0000\u0228\u0229\u0003<\u001d\u0000\u0229\u022a\u0001"+ - "\u0000\u0000\u0000\u022a\u022b\u0006\\\u0006\u0000\u022b\u00bb\u0001\u0000"+ - "\u0000\u0000\u022c\u022d\u0003:\u001c\u0000\u022d\u022e\u0001\u0000\u0000"+ - "\u0000\u022e\u022f\u0006]\u0007\u0000\u022f\u00bd\u0001\u0000\u0000\u0000"+ - "\u0230\u0231\u0003D!\u0000\u0231\u0232\u0001\u0000\u0000\u0000\u0232\u0233"+ - "\u0006^\b\u0000\u0233\u00bf\u0001\u0000\u0000\u0000\u0234\u0235\u0003"+ - "F\"\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236\u0237\u0006_\t\u0000"+ - "\u0237\u00c1\u0001\u0000\u0000\u0000\u0238\u0239\u0007\u0000\u0000\u0000"+ - "\u0239\u023a\u0001\u0000\u0000\u0000\u023a\u023b\u0006`\u0000\u0000\u023b"+ - "\u00c3\u0001\u0000\u0000\u0000 \u0000\u0001\u00c6\u00d2\u00d8\u010e\u0115"+ - "\u011c\u011e\u0120\u0122\u0127\u0129\u0131\u0133\u013a\u0143\u0148\u0159"+ - "\u01a8\u01aa\u01b4\u01bb\u01ee\u01f0\u01f6\u01f8\u01fb\u020a\u0211\u0221"+ - "\u0223\n\u0006\u0000\u0000\u0005\u0001\u0000\u0004\u0000\u0000\u0007\u001b"+ - "\u0000\u0007#\u0000\u0007.\u0000\u0007)\u0000\u0007*\u0000\u0007+\u0000"+ - "\u0007,\u0000"; + "a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001b\u0001c\u0001c\u0001"+ + "c\u0001c\u0001\u00d8\u0000d\u0002\u0000\u0004\u0000\u0006\u0000\b\u0000"+ + "\n\u0000\f\u0000\u000e\u0000\u0010\u0000\u0012\u0000\u0014\u0000\u0016"+ + "\u0000\u0018\u0000\u001a\u0000\u001c\u0000\u001e\u0000 \u0000\"\u0000"+ + "$\u0000&\u0000(\u0000*\u0000,\u0000.\u00000\u00002\u00004\u00006\u0000"+ + "8\u0000:\u0000<\u0000>\u0000@\u0000B\u0000D\u0000F\u0000H\u0000J\u0000"+ + "L\u0001N\u0002P\u0003R\u0004T\u0005V\u0006X\u0007Z\b\\\t^\n`\u000bb\f"+ + "d\rf\u000eh\u000fj\u0010l\u0011n\u0012p\u0013r\u0014t\u0015v\u0016x\u0017"+ + "z\u0018|\u0019~\u001a\u0080\u001b\u0082\u001c\u0084\u001d\u0086\u001e"+ + "\u0088\u001f\u008a \u008c!\u008e\"\u0090#\u0092$\u0094%\u0096&\u0098\'"+ + "\u009a(\u009c)\u009e*\u00a0+\u00a2,\u00a4-\u00a6.\u00a8/\u00aa\u0000\u00ac"+ + "\u0000\u00ae0\u00b01\u00b2\u0000\u00b4\u0000\u00b6\u0000\u00b8\u0000\u00ba"+ + "\u0000\u00bc\u0000\u00be\u0000\u00c0\u0000\u00c2\u0000\u00c4\u0000\u00c6"+ + "\u0000\u00c82\u0002\u0000\u0001\t\u0002\u0000\t\t \u0002\u0000\n\n\f"+ + "\r\r\u0000AZaz\u00c0\u00d6\u00d8\u00f6\u00f8\u02ff\u0370\u037d\u037f\u1fff"+ + "\u200c\u200d\u2070\u218f\u2c00\u2fef\u3001\u8000\ud7ff\u8000\uf900\u8000"+ + "\ufdcf\u8000\ufdf0\u8000\ufffd\u0003\u0000\u00b7\u00b7\u0300\u036f\u203f"+ + "\u2040\b\u0000\"\"\'\'\\\\bbffnnrrtt\u0004\u0000\n\n\r\r\'\'\\\\\u0004"+ + "\u0000\n\n\r\r\"\"\\\\\u0003\u000009AFaf\u0001\u000009\u0256\u0000L\u0001"+ + "\u0000\u0000\u0000\u0000N\u0001\u0000\u0000\u0000\u0000P\u0001\u0000\u0000"+ + "\u0000\u0000R\u0001\u0000\u0000\u0000\u0000T\u0001\u0000\u0000\u0000\u0000"+ + "V\u0001\u0000\u0000\u0000\u0000X\u0001\u0000\u0000\u0000\u0000Z\u0001"+ + "\u0000\u0000\u0000\u0000\\\u0001\u0000\u0000\u0000\u0000^\u0001\u0000"+ + "\u0000\u0000\u0000`\u0001\u0000\u0000\u0000\u0000b\u0001\u0000\u0000\u0000"+ + "\u0000d\u0001\u0000\u0000\u0000\u0000f\u0001\u0000\u0000\u0000\u0000h"+ + "\u0001\u0000\u0000\u0000\u0000j\u0001\u0000\u0000\u0000\u0000l\u0001\u0000"+ + "\u0000\u0000\u0000n\u0001\u0000\u0000\u0000\u0000p\u0001\u0000\u0000\u0000"+ + "\u0000r\u0001\u0000\u0000\u0000\u0000t\u0001\u0000\u0000\u0000\u0000v"+ + "\u0001\u0000\u0000\u0000\u0000x\u0001\u0000\u0000\u0000\u0000z\u0001\u0000"+ + "\u0000\u0000\u0000|\u0001\u0000\u0000\u0000\u0000~\u0001\u0000\u0000\u0000"+ + "\u0000\u0080\u0001\u0000\u0000\u0000\u0000\u0082\u0001\u0000\u0000\u0000"+ + "\u0000\u0084\u0001\u0000\u0000\u0000\u0000\u0086\u0001\u0000\u0000\u0000"+ + "\u0000\u0088\u0001\u0000\u0000\u0000\u0000\u008a\u0001\u0000\u0000\u0000"+ + "\u0000\u008c\u0001\u0000\u0000\u0000\u0000\u008e\u0001\u0000\u0000\u0000"+ + "\u0000\u0090\u0001\u0000\u0000\u0000\u0000\u0092\u0001\u0000\u0000\u0000"+ + "\u0000\u0094\u0001\u0000\u0000\u0000\u0000\u0096\u0001\u0000\u0000\u0000"+ + "\u0000\u0098\u0001\u0000\u0000\u0000\u0000\u009a\u0001\u0000\u0000\u0000"+ + "\u0000\u009c\u0001\u0000\u0000\u0000\u0000\u009e\u0001\u0000\u0000\u0000"+ + "\u0000\u00a0\u0001\u0000\u0000\u0000\u0000\u00a2\u0001\u0000\u0000\u0000"+ + "\u0000\u00a4\u0001\u0000\u0000\u0000\u0000\u00a6\u0001\u0000\u0000\u0000"+ + "\u0000\u00a8\u0001\u0000\u0000\u0000\u0001\u00ae\u0001\u0000\u0000\u0000"+ + "\u0001\u00b0\u0001\u0000\u0000\u0000\u0001\u00b2\u0001\u0000\u0000\u0000"+ + "\u0001\u00b4\u0001\u0000\u0000\u0000\u0001\u00b6\u0001\u0000\u0000\u0000"+ + "\u0001\u00b8\u0001\u0000\u0000\u0000\u0001\u00ba\u0001\u0000\u0000\u0000"+ + "\u0001\u00bc\u0001\u0000\u0000\u0000\u0001\u00be\u0001\u0000\u0000\u0000"+ + "\u0001\u00c0\u0001\u0000\u0000\u0000\u0001\u00c2\u0001\u0000\u0000\u0000"+ + "\u0001\u00c4\u0001\u0000\u0000\u0000\u0001\u00c6\u0001\u0000\u0000\u0000"+ + "\u0001\u00c8\u0001\u0000\u0000\u0000\u0002\u00cc\u0001\u0000\u0000\u0000"+ + "\u0004\u00ce\u0001\u0000\u0000\u0000\u0006\u00d0\u0001\u0000\u0000\u0000"+ + "\b\u00d2\u0001\u0000\u0000\u0000\n\u00e0\u0001\u0000\u0000\u0000\f\u00e2"+ + "\u0001\u0000\u0000\u0000\u000e\u00e4\u0001\u0000\u0000\u0000\u0010\u00e6"+ + "\u0001\u0000\u0000\u0000\u0012\u00e8\u0001\u0000\u0000\u0000\u0014\u00ea"+ + "\u0001\u0000\u0000\u0000\u0016\u00ec\u0001\u0000\u0000\u0000\u0018\u00ee"+ + "\u0001\u0000\u0000\u0000\u001a\u00f0\u0001\u0000\u0000\u0000\u001c\u00f2"+ + "\u0001\u0000\u0000\u0000\u001e\u00f4\u0001\u0000\u0000\u0000 \u00f6\u0001"+ + "\u0000\u0000\u0000\"\u00f8\u0001\u0000\u0000\u0000$\u00fa\u0001\u0000"+ + "\u0000\u0000&\u00fc\u0001\u0000\u0000\u0000(\u00fe\u0001\u0000\u0000\u0000"+ + "*\u0100\u0001\u0000\u0000\u0000,\u0102\u0001\u0000\u0000\u0000.\u0105"+ + "\u0001\u0000\u0000\u00000\u0107\u0001\u0000\u0000\u00002\u0109\u0001\u0000"+ + "\u0000\u00004\u0114\u0001\u0000\u0000\u00006\u0116\u0001\u0000\u0000\u0000"+ + "8\u011d\u0001\u0000\u0000\u0000:\u012a\u0001\u0000\u0000\u0000<\u0134"+ + "\u0001\u0000\u0000\u0000>\u0140\u0001\u0000\u0000\u0000@\u0142\u0001\u0000"+ + "\u0000\u0000B\u0144\u0001\u0000\u0000\u0000D\u0147\u0001\u0000\u0000\u0000"+ + "F\u014b\u0001\u0000\u0000\u0000H\u0150\u0001\u0000\u0000\u0000J\u0155"+ + "\u0001\u0000\u0000\u0000L\u015b\u0001\u0000\u0000\u0000N\u0164\u0001\u0000"+ + "\u0000\u0000P\u0167\u0001\u0000\u0000\u0000R\u016c\u0001\u0000\u0000\u0000"+ + "T\u0171\u0001\u0000\u0000\u0000V\u0175\u0001\u0000\u0000\u0000X\u0179"+ + "\u0001\u0000\u0000\u0000Z\u017c\u0001\u0000\u0000\u0000\\\u0180\u0001"+ + "\u0000\u0000\u0000^\u0182\u0001\u0000\u0000\u0000`\u0185\u0001\u0000\u0000"+ + "\u0000b\u0188\u0001\u0000\u0000\u0000d\u018c\u0001\u0000\u0000\u0000f"+ + "\u0195\u0001\u0000\u0000\u0000h\u0198\u0001\u0000\u0000\u0000j\u019b\u0001"+ + "\u0000\u0000\u0000l\u019e\u0001\u0000\u0000\u0000n\u01a1\u0001\u0000\u0000"+ + "\u0000p\u01a3\u0001\u0000\u0000\u0000r\u01a5\u0001\u0000\u0000\u0000t"+ + "\u01ae\u0001\u0000\u0000\u0000v\u01b0\u0001\u0000\u0000\u0000x\u01b3\u0001"+ + "\u0000\u0000\u0000z\u01ba\u0001\u0000\u0000\u0000|\u01c0\u0001\u0000\u0000"+ + "\u0000~\u01c4\u0001\u0000\u0000\u0000\u0080\u01c8\u0001\u0000\u0000\u0000"+ + "\u0082\u01ca\u0001\u0000\u0000\u0000\u0084\u01cc\u0001\u0000\u0000\u0000"+ + "\u0086\u01ce\u0001\u0000\u0000\u0000\u0088\u01d0\u0001\u0000\u0000\u0000"+ + "\u008a\u01d2\u0001\u0000\u0000\u0000\u008c\u01d4\u0001\u0000\u0000\u0000"+ + "\u008e\u01d6\u0001\u0000\u0000\u0000\u0090\u01d8\u0001\u0000\u0000\u0000"+ + "\u0092\u01da\u0001\u0000\u0000\u0000\u0094\u01dc\u0001\u0000\u0000\u0000"+ + "\u0096\u01de\u0001\u0000\u0000\u0000\u0098\u01e0\u0001\u0000\u0000\u0000"+ + "\u009a\u01e2\u0001\u0000\u0000\u0000\u009c\u01e4\u0001\u0000\u0000\u0000"+ + "\u009e\u01e6\u0001\u0000\u0000\u0000\u00a0\u01e8\u0001\u0000\u0000\u0000"+ + "\u00a2\u01ea\u0001\u0000\u0000\u0000\u00a4\u01ec\u0001\u0000\u0000\u0000"+ + "\u00a6\u01f4\u0001\u0000\u0000\u0000\u00a8\u0200\u0001\u0000\u0000\u0000"+ + "\u00aa\u0204\u0001\u0000\u0000\u0000\u00ac\u0206\u0001\u0000\u0000\u0000"+ + "\u00ae\u0209\u0001\u0000\u0000\u0000\u00b0\u0210\u0001\u0000\u0000\u0000"+ + "\u00b2\u0216\u0001\u0000\u0000\u0000\u00b4\u021b\u0001\u0000\u0000\u0000"+ + "\u00b6\u021f\u0001\u0000\u0000\u0000\u00b8\u0223\u0001\u0000\u0000\u0000"+ + "\u00ba\u022e\u0001\u0000\u0000\u0000\u00bc\u0239\u0001\u0000\u0000\u0000"+ + "\u00be\u023d\u0001\u0000\u0000\u0000\u00c0\u0247\u0001\u0000\u0000\u0000"+ + "\u00c2\u024b\u0001\u0000\u0000\u0000\u00c4\u024f\u0001\u0000\u0000\u0000"+ + "\u00c6\u0253\u0001\u0000\u0000\u0000\u00c8\u0257\u0001\u0000\u0000\u0000"+ + "\u00ca\u00cd\u0003\u0004\u0001\u0000\u00cb\u00cd\u0003\u0006\u0002\u0000"+ + "\u00cc\u00ca\u0001\u0000\u0000\u0000\u00cc\u00cb\u0001\u0000\u0000\u0000"+ + "\u00cd\u0003\u0001\u0000\u0000\u0000\u00ce\u00cf\u0007\u0000\u0000\u0000"+ + "\u00cf\u0005\u0001\u0000\u0000\u0000\u00d0\u00d1\u0007\u0001\u0000\u0000"+ + "\u00d1\u0007\u0001\u0000\u0000\u0000\u00d2\u00d3\u0005/\u0000\u0000\u00d3"+ + "\u00d4\u0005*\u0000\u0000\u00d4\u00d8\u0001\u0000\u0000\u0000\u00d5\u00d7"+ + "\t\u0000\u0000\u0000\u00d6\u00d5\u0001\u0000\u0000\u0000\u00d7\u00da\u0001"+ + "\u0000\u0000\u0000\u00d8\u00d9\u0001\u0000\u0000\u0000\u00d8\u00d6\u0001"+ + "\u0000\u0000\u0000\u00d9\u00de\u0001\u0000\u0000\u0000\u00da\u00d8\u0001"+ + "\u0000\u0000\u0000\u00db\u00dc\u0005*\u0000\u0000\u00dc\u00df\u0005/\u0000"+ + "\u0000\u00dd\u00df\u0005\u0000\u0000\u0001\u00de\u00db\u0001\u0000\u0000"+ + "\u0000\u00de\u00dd\u0001\u0000\u0000\u0000\u00df\t\u0001\u0000\u0000\u0000"+ + "\u00e0\u00e1\u0005\\\u0000\u0000\u00e1\u000b\u0001\u0000\u0000\u0000\u00e2"+ + "\u00e3\u0005\'\u0000\u0000\u00e3\r\u0001\u0000\u0000\u0000\u00e4\u00e5"+ + "\u0005\"\u0000\u0000\u00e5\u000f\u0001\u0000\u0000\u0000\u00e6\u00e7\u0005"+ + "_\u0000\u0000\u00e7\u0011\u0001\u0000\u0000\u0000\u00e8\u00e9\u0005,\u0000"+ + "\u0000\u00e9\u0013\u0001\u0000\u0000\u0000\u00ea\u00eb\u0005;\u0000\u0000"+ + "\u00eb\u0015\u0001\u0000\u0000\u0000\u00ec\u00ed\u0005|\u0000\u0000\u00ed"+ + "\u0017\u0001\u0000\u0000\u0000\u00ee\u00ef\u0005.\u0000\u0000\u00ef\u0019"+ + "\u0001\u0000\u0000\u0000\u00f0\u00f1\u0005(\u0000\u0000\u00f1\u001b\u0001"+ + "\u0000\u0000\u0000\u00f2\u00f3\u0005)\u0000\u0000\u00f3\u001d\u0001\u0000"+ + "\u0000\u0000\u00f4\u00f5\u0005[\u0000\u0000\u00f5\u001f\u0001\u0000\u0000"+ + "\u0000\u00f6\u00f7\u0005]\u0000\u0000\u00f7!\u0001\u0000\u0000\u0000\u00f8"+ + "\u00f9\u0005*\u0000\u0000\u00f9#\u0001\u0000\u0000\u0000\u00fa\u00fb\u0005"+ + "/\u0000\u0000\u00fb%\u0001\u0000\u0000\u0000\u00fc\u00fd\u0005%\u0000"+ + "\u0000\u00fd\'\u0001\u0000\u0000\u0000\u00fe\u00ff\u0005+\u0000\u0000"+ + "\u00ff)\u0001\u0000\u0000\u0000\u0100\u0101\u0005-\u0000\u0000\u0101+"+ + "\u0001\u0000\u0000\u0000\u0102\u0103\u0005?\u0000\u0000\u0103\u0104\u0005"+ + "?\u0000\u0000\u0104-\u0001\u0000\u0000\u0000\u0105\u0106\u0005<\u0000"+ + "\u0000\u0106/\u0001\u0000\u0000\u0000\u0107\u0108\u0005>\u0000\u0000\u0108"+ + "1\u0001\u0000\u0000\u0000\u0109\u010a\u0005d\u0000\u0000\u010a\u010b\u0005"+ + "e\u0000\u0000\u010b\u010c\u0005f\u0000\u0000\u010c\u010d\u0005a\u0000"+ + "\u0000\u010d\u010e\u0005u\u0000\u0000\u010e\u010f\u0005l\u0000\u0000\u010f"+ + "\u0110\u0005t\u0000\u0000\u01103\u0001\u0000\u0000\u0000\u0111\u0115\u0007"+ + "\u0002\u0000\u0000\u0112\u0115\u0003\u0010\u0007\u0000\u0113\u0115\u0007"+ + "\u0003\u0000\u0000\u0114\u0111\u0001\u0000\u0000\u0000\u0114\u0112\u0001"+ + "\u0000\u0000\u0000\u0114\u0113\u0001\u0000\u0000\u0000\u01155\u0001\u0000"+ + "\u0000\u0000\u0116\u011b\u0003\n\u0004\u0000\u0117\u011c\u0007\u0004\u0000"+ + "\u0000\u0118\u011c\u00038\u001b\u0000\u0119\u011c\t\u0000\u0000\u0000"+ + "\u011a\u011c\u0005\u0000\u0000\u0001\u011b\u0117\u0001\u0000\u0000\u0000"+ + "\u011b\u0118\u0001\u0000\u0000\u0000\u011b\u0119\u0001\u0000\u0000\u0000"+ + "\u011b\u011a\u0001\u0000\u0000\u0000\u011c7\u0001\u0000\u0000\u0000\u011d"+ + "\u0128\u0005u\u0000\u0000\u011e\u0126\u0003@\u001f\u0000\u011f\u0124\u0003"+ + "@\u001f\u0000\u0120\u0122\u0003@\u001f\u0000\u0121\u0123\u0003@\u001f"+ + "\u0000\u0122\u0121\u0001\u0000\u0000\u0000\u0122\u0123\u0001\u0000\u0000"+ + "\u0000\u0123\u0125\u0001\u0000\u0000\u0000\u0124\u0120\u0001\u0000\u0000"+ + "\u0000\u0124\u0125\u0001\u0000\u0000\u0000\u0125\u0127\u0001\u0000\u0000"+ + "\u0000\u0126\u011f\u0001\u0000\u0000\u0000\u0126\u0127\u0001\u0000\u0000"+ + "\u0000\u0127\u0129\u0001\u0000\u0000\u0000\u0128\u011e\u0001\u0000\u0000"+ + "\u0000\u0128\u0129\u0001\u0000\u0000\u0000\u01299\u0001\u0000\u0000\u0000"+ + "\u012a\u012f\u0003\f\u0005\u0000\u012b\u012e\u00036\u001a\u0000\u012c"+ + "\u012e\b\u0005\u0000\u0000\u012d\u012b\u0001\u0000\u0000\u0000\u012d\u012c"+ + "\u0001\u0000\u0000\u0000\u012e\u0131\u0001\u0000\u0000\u0000\u012f\u012d"+ + "\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000\u0000\u0130\u0132"+ + "\u0001\u0000\u0000\u0000\u0131\u012f\u0001\u0000\u0000\u0000\u0132\u0133"+ + "\u0003\f\u0005\u0000\u0133;\u0001\u0000\u0000\u0000\u0134\u0139\u0003"+ + "\u000e\u0006\u0000\u0135\u0138\u00036\u001a\u0000\u0136\u0138\b\u0006"+ + "\u0000\u0000\u0137\u0135\u0001\u0000\u0000\u0000\u0137\u0136\u0001\u0000"+ + "\u0000\u0000\u0138\u013b\u0001\u0000\u0000\u0000\u0139\u0137\u0001\u0000"+ + "\u0000\u0000\u0139\u013a\u0001\u0000\u0000\u0000\u013a\u013c\u0001\u0000"+ + "\u0000\u0000\u013b\u0139\u0001\u0000\u0000\u0000\u013c\u013d\u0003\u000e"+ + "\u0006\u0000\u013d=\u0001\u0000\u0000\u0000\u013e\u0141\u0003H#\u0000"+ + "\u013f\u0141\u0003J$\u0000\u0140\u013e\u0001\u0000\u0000\u0000\u0140\u013f"+ + "\u0001\u0000\u0000\u0000\u0141?\u0001\u0000\u0000\u0000\u0142\u0143\u0007"+ + "\u0007\u0000\u0000\u0143A\u0001\u0000\u0000\u0000\u0144\u0145\u0007\b"+ + "\u0000\u0000\u0145C\u0001\u0000\u0000\u0000\u0146\u0148\u0003B \u0000"+ + "\u0147\u0146\u0001\u0000\u0000\u0000\u0148\u0149\u0001\u0000\u0000\u0000"+ + "\u0149\u0147\u0001\u0000\u0000\u0000\u0149\u014a\u0001\u0000\u0000\u0000"+ + "\u014aE\u0001\u0000\u0000\u0000\u014b\u014c\u0003D!\u0000\u014c\u014e"+ + "\u0003\u0018\u000b\u0000\u014d\u014f\u0003D!\u0000\u014e\u014d\u0001\u0000"+ + "\u0000\u0000\u014e\u014f\u0001\u0000\u0000\u0000\u014fG\u0001\u0000\u0000"+ + "\u0000\u0150\u0151\u0005t\u0000\u0000\u0151\u0152\u0005r\u0000\u0000\u0152"+ + "\u0153\u0005u\u0000\u0000\u0153\u0154\u0005e\u0000\u0000\u0154I\u0001"+ + "\u0000\u0000\u0000\u0155\u0156\u0005f\u0000\u0000\u0156\u0157\u0005a\u0000"+ + "\u0000\u0157\u0158\u0005l\u0000\u0000\u0158\u0159\u0005s\u0000\u0000\u0159"+ + "\u015a\u0005e\u0000\u0000\u015aK\u0001\u0000\u0000\u0000\u015b\u015f\u0003"+ + "\u0016\n\u0000\u015c\u015e\u0003\u0004\u0001\u0000\u015d\u015c\u0001\u0000"+ + "\u0000\u0000\u015e\u0161\u0001\u0000\u0000\u0000\u015f\u015d\u0001\u0000"+ + "\u0000\u0000\u015f\u0160\u0001\u0000\u0000\u0000\u0160\u0162\u0001\u0000"+ + "\u0000\u0000\u0161\u015f\u0001\u0000\u0000\u0000\u0162\u0163\u00032\u0018"+ + "\u0000\u0163M\u0001\u0000\u0000\u0000\u0164\u0165\u0005i\u0000\u0000\u0165"+ + "\u0166\u0005f\u0000\u0000\u0166O\u0001\u0000\u0000\u0000\u0167\u0168\u0005"+ + "t\u0000\u0000\u0168\u0169\u0005h\u0000\u0000\u0169\u016a\u0005e\u0000"+ + "\u0000\u016a\u016b\u0005n\u0000\u0000\u016bQ\u0001\u0000\u0000\u0000\u016c"+ + "\u016d\u0005e\u0000\u0000\u016d\u016e\u0005l\u0000\u0000\u016e\u016f\u0005"+ + "s\u0000\u0000\u016f\u0170\u0005e\u0000\u0000\u0170S\u0001\u0000\u0000"+ + "\u0000\u0171\u0172\u0005e\u0000\u0000\u0172\u0173\u0005n\u0000\u0000\u0173"+ + "\u0174\u0005d\u0000\u0000\u0174U\u0001\u0000\u0000\u0000\u0175\u0176\u0005"+ + "a\u0000\u0000\u0176\u0177\u0005n\u0000\u0000\u0177\u0178\u0005d\u0000"+ + "\u0000\u0178W\u0001\u0000\u0000\u0000\u0179\u017a\u0005o\u0000\u0000\u017a"+ + "\u017b\u0005r\u0000\u0000\u017bY\u0001\u0000\u0000\u0000\u017c\u017d\u0005"+ + "n\u0000\u0000\u017d\u017e\u0005o\u0000\u0000\u017e\u017f\u0005t\u0000"+ + "\u0000\u017f[\u0001\u0000\u0000\u0000\u0180\u0181\u0005!\u0000\u0000\u0181"+ + "]\u0001\u0000\u0000\u0000\u0182\u0183\u0005e\u0000\u0000\u0183\u0184\u0005"+ + "q\u0000\u0000\u0184_\u0001\u0000\u0000\u0000\u0185\u0186\u0005n\u0000"+ + "\u0000\u0186\u0187\u0005e\u0000\u0000\u0187a\u0001\u0000\u0000\u0000\u0188"+ + "\u0189\u0005e\u0000\u0000\u0189\u018a\u0005q\u0000\u0000\u018a\u018b\u0005"+ + "i\u0000\u0000\u018bc\u0001\u0000\u0000\u0000\u018c\u018d\u0005c\u0000"+ + "\u0000\u018d\u018e\u0005o\u0000\u0000\u018e\u018f\u0005n\u0000\u0000\u018f"+ + "\u0190\u0005t\u0000\u0000\u0190\u0191\u0005a\u0000\u0000\u0191\u0192\u0005"+ + "i\u0000\u0000\u0192\u0193\u0005n\u0000\u0000\u0193\u0194\u0005s\u0000"+ + "\u0000\u0194e\u0001\u0000\u0000\u0000\u0195\u0196\u0005=\u0000\u0000\u0196"+ + "\u0197\u0005=\u0000\u0000\u0197g\u0001\u0000\u0000\u0000\u0198\u0199\u0005"+ + "!\u0000\u0000\u0199\u019a\u0005=\u0000\u0000\u019ai\u0001\u0000\u0000"+ + "\u0000\u019b\u019c\u0005>\u0000\u0000\u019c\u019d\u0005=\u0000\u0000\u019d"+ + "k\u0001\u0000\u0000\u0000\u019e\u019f\u0005<\u0000\u0000\u019f\u01a0\u0005"+ + "=\u0000\u0000\u01a0m\u0001\u0000\u0000\u0000\u01a1\u01a2\u0005>\u0000"+ + "\u0000\u01a2o\u0001\u0000\u0000\u0000\u01a3\u01a4\u0005<\u0000\u0000\u01a4"+ + "q\u0001\u0000\u0000\u0000\u01a5\u01a6\u0005$\u0000\u0000\u01a6\u01ab\u0003"+ + "4\u0019\u0000\u01a7\u01aa\u00034\u0019\u0000\u01a8\u01aa\u0003B \u0000"+ + "\u01a9\u01a7\u0001\u0000\u0000\u0000\u01a9\u01a8\u0001\u0000\u0000\u0000"+ + "\u01aa\u01ad\u0001\u0000\u0000\u0000\u01ab\u01a9\u0001\u0000\u0000\u0000"+ + "\u01ab\u01ac\u0001\u0000\u0000\u0000\u01acs\u0001\u0000\u0000\u0000\u01ad"+ + "\u01ab\u0001\u0000\u0000\u0000\u01ae\u01af\u0005$\u0000\u0000\u01afu\u0001"+ + "\u0000\u0000\u0000\u01b0\u01b1\u0003\b\u0003\u0000\u01b1w\u0001\u0000"+ + "\u0000\u0000\u01b2\u01b4\u0003\u0004\u0001\u0000\u01b3\u01b2\u0001\u0000"+ + "\u0000\u0000\u01b4\u01b5\u0001\u0000\u0000\u0000\u01b5\u01b3\u0001\u0000"+ + "\u0000\u0000\u01b5\u01b6\u0001\u0000\u0000\u0000\u01b6\u01b7\u0001\u0000"+ + "\u0000\u0000\u01b7\u01b8\u0006;\u0000\u0000\u01b8y\u0001\u0000\u0000\u0000"+ + "\u01b9\u01bb\u0003\u0006\u0002\u0000\u01ba\u01b9\u0001\u0000\u0000\u0000"+ + "\u01bb\u01bc\u0001\u0000\u0000\u0000\u01bc\u01ba\u0001\u0000\u0000\u0000"+ + "\u01bc\u01bd\u0001\u0000\u0000\u0000\u01bd\u01be\u0001\u0000\u0000\u0000"+ + "\u01be\u01bf\u0006<\u0000\u0000\u01bf{\u0001\u0000\u0000\u0000\u01c0\u01c1"+ + "\u0003\u00aaT\u0000\u01c1\u01c2\u0001\u0000\u0000\u0000\u01c2\u01c3\u0006"+ + "=\u0001\u0000\u01c3}\u0001\u0000\u0000\u0000\u01c4\u01c5\u0003\u00acU"+ + "\u0000\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6\u01c7\u0006>\u0002\u0000"+ + "\u01c7\u007f\u0001\u0000\u0000\u0000\u01c8\u01c9\u0003\u0018\u000b\u0000"+ + "\u01c9\u0081\u0001\u0000\u0000\u0000\u01ca\u01cb\u0003\u001a\f\u0000\u01cb"+ + "\u0083\u0001\u0000\u0000\u0000\u01cc\u01cd\u0003\u001c\r\u0000\u01cd\u0085"+ + "\u0001\u0000\u0000\u0000\u01ce\u01cf\u0003\u001e\u000e\u0000\u01cf\u0087"+ + "\u0001\u0000\u0000\u0000\u01d0\u01d1\u0003 \u000f\u0000\u01d1\u0089\u0001"+ + "\u0000\u0000\u0000\u01d2\u01d3\u0003,\u0015\u0000\u01d3\u008b\u0001\u0000"+ + "\u0000\u0000\u01d4\u01d5\u0003\u0014\t\u0000\u01d5\u008d\u0001\u0000\u0000"+ + "\u0000\u01d6\u01d7\u0003\u0012\b\u0000\u01d7\u008f\u0001\u0000\u0000\u0000"+ + "\u01d8\u01d9\u0003\"\u0010\u0000\u01d9\u0091\u0001\u0000\u0000\u0000\u01da"+ + "\u01db\u0003$\u0011\u0000\u01db\u0093\u0001\u0000\u0000\u0000\u01dc\u01dd"+ + "\u0003&\u0012\u0000\u01dd\u0095\u0001\u0000\u0000\u0000\u01de\u01df\u0003"+ + "(\u0013\u0000\u01df\u0097\u0001\u0000\u0000\u0000\u01e0\u01e1\u0003*\u0014"+ + "\u0000\u01e1\u0099\u0001\u0000\u0000\u0000\u01e2\u01e3\u0003<\u001d\u0000"+ + "\u01e3\u009b\u0001\u0000\u0000\u0000\u01e4\u01e5\u0003:\u001c\u0000\u01e5"+ + "\u009d\u0001\u0000\u0000\u0000\u01e6\u01e7\u0003D!\u0000\u01e7\u009f\u0001"+ + "\u0000\u0000\u0000\u01e8\u01e9\u0003F\"\u0000\u01e9\u00a1\u0001\u0000"+ + "\u0000\u0000\u01ea\u01eb\u0003>\u001e\u0000\u01eb\u00a3\u0001\u0000\u0000"+ + "\u0000\u01ec\u01f1\u00034\u0019\u0000\u01ed\u01f0\u00034\u0019\u0000\u01ee"+ + "\u01f0\u0003B \u0000\u01ef\u01ed\u0001\u0000\u0000\u0000\u01ef\u01ee\u0001"+ + "\u0000\u0000\u0000\u01f0\u01f3\u0001\u0000\u0000\u0000\u01f1\u01ef\u0001"+ + "\u0000\u0000\u0000\u01f1\u01f2\u0001\u0000\u0000\u0000\u01f2\u00a5\u0001"+ + "\u0000\u0000\u0000\u01f3\u01f1\u0001\u0000\u0000\u0000\u01f4\u01f7\u0003"+ + ".\u0016\u0000\u01f5\u01f8\u00034\u0019\u0000\u01f6\u01f8\u0003\u0080?"+ + "\u0000\u01f7\u01f5\u0001\u0000\u0000\u0000\u01f7\u01f6\u0001\u0000\u0000"+ + "\u0000\u01f8\u01f9\u0001\u0000\u0000\u0000\u01f9\u01f7\u0001\u0000\u0000"+ + "\u0000\u01f9\u01fa\u0001\u0000\u0000\u0000\u01fa\u01fc\u0001\u0000\u0000"+ + "\u0000\u01fb\u01fd\u0003\u00a6R\u0000\u01fc\u01fb\u0001\u0000\u0000\u0000"+ + "\u01fc\u01fd\u0001\u0000\u0000\u0000\u01fd\u01fe\u0001\u0000\u0000\u0000"+ + "\u01fe\u01ff\u00030\u0017\u0000\u01ff\u00a7\u0001\u0000\u0000\u0000\u0200"+ + "\u0201\u0003\u0004\u0001\u0000\u0201\u0202\u0001\u0000\u0000\u0000\u0202"+ + "\u0203\u0006S\u0000\u0000\u0203\u00a9\u0001\u0000\u0000\u0000\u0204\u0205"+ + "\u0005{\u0000\u0000\u0205\u00ab\u0001\u0000\u0000\u0000\u0206\u0207\u0005"+ + "}\u0000\u0000\u0207\u00ad\u0001\u0000\u0000\u0000\u0208\u020a\u0003\u0004"+ + "\u0001\u0000\u0209\u0208\u0001\u0000\u0000\u0000\u020a\u020b\u0001\u0000"+ + "\u0000\u0000\u020b\u0209\u0001\u0000\u0000\u0000\u020b\u020c\u0001\u0000"+ + "\u0000\u0000\u020c\u020d\u0001\u0000\u0000\u0000\u020d\u020e\u0006V\u0000"+ + "\u0000\u020e\u00af\u0001\u0000\u0000\u0000\u020f\u0211\u0003\u0006\u0002"+ + "\u0000\u0210\u020f\u0001\u0000\u0000\u0000\u0211\u0212\u0001\u0000\u0000"+ + "\u0000\u0212\u0210\u0001\u0000\u0000\u0000\u0212\u0213\u0001\u0000\u0000"+ + "\u0000\u0213\u0214\u0001\u0000\u0000\u0000\u0214\u0215\u0006W\u0000\u0000"+ + "\u0215\u00b1\u0001\u0000\u0000\u0000\u0216\u0217\u0003\u00acU\u0000\u0217"+ + "\u0218\u0001\u0000\u0000\u0000\u0218\u0219\u0006X\u0002\u0000\u0219\u021a"+ + "\u0006X\u0003\u0000\u021a\u00b3\u0001\u0000\u0000\u0000\u021b\u021c\u0003"+ + "(\u0013\u0000\u021c\u021d\u0001\u0000\u0000\u0000\u021d\u021e\u0006Y\u0004"+ + "\u0000\u021e\u00b5\u0001\u0000\u0000\u0000\u021f\u0220\u0003\u0018\u000b"+ + "\u0000\u0220\u0221\u0001\u0000\u0000\u0000\u0221\u0222\u0006Z\u0005\u0000"+ + "\u0222\u00b7\u0001\u0000\u0000\u0000\u0223\u0227\u0003\u0016\n\u0000\u0224"+ + "\u0226\u0003\u0004\u0001\u0000\u0225\u0224\u0001\u0000\u0000\u0000\u0226"+ + "\u0229\u0001\u0000\u0000\u0000\u0227\u0225\u0001\u0000\u0000\u0000\u0227"+ + "\u0228\u0001\u0000\u0000\u0000\u0228\u022a\u0001\u0000\u0000\u0000\u0229"+ + "\u0227\u0001\u0000\u0000\u0000\u022a\u022b\u00032\u0018\u0000\u022b\u022c"+ + "\u0001\u0000\u0000\u0000\u022c\u022d\u0006[\u0006\u0000\u022d\u00b9\u0001"+ + "\u0000\u0000\u0000\u022e\u022f\u0005$\u0000\u0000\u022f\u0234\u00034\u0019"+ + "\u0000\u0230\u0233\u00034\u0019\u0000\u0231\u0233\u0003B \u0000\u0232"+ + "\u0230\u0001\u0000\u0000\u0000\u0232\u0231\u0001\u0000\u0000\u0000\u0233"+ + "\u0236\u0001\u0000\u0000\u0000\u0234\u0232\u0001\u0000\u0000\u0000\u0234"+ + "\u0235\u0001\u0000\u0000\u0000\u0235\u0237\u0001\u0000\u0000\u0000\u0236"+ + "\u0234\u0001\u0000\u0000\u0000\u0237\u0238\u0006\\\u0007\u0000\u0238\u00bb"+ + "\u0001\u0000\u0000\u0000\u0239\u023a\u0005$\u0000\u0000\u023a\u023b\u0001"+ + "\u0000\u0000\u0000\u023b\u023c\u0006]\b\u0000\u023c\u00bd\u0001\u0000"+ + "\u0000\u0000\u023d\u0242\u00034\u0019\u0000\u023e\u0241\u00034\u0019\u0000"+ + "\u023f\u0241\u0003B \u0000\u0240\u023e\u0001\u0000\u0000\u0000\u0240\u023f"+ + "\u0001\u0000\u0000\u0000\u0241\u0244\u0001\u0000\u0000\u0000\u0242\u0240"+ + "\u0001\u0000\u0000\u0000\u0242\u0243\u0001\u0000\u0000\u0000\u0243\u0245"+ + "\u0001\u0000\u0000\u0000\u0244\u0242\u0001\u0000\u0000\u0000\u0245\u0246"+ + "\u0006^\t\u0000\u0246\u00bf\u0001\u0000\u0000\u0000\u0247\u0248\u0003"+ + "<\u001d\u0000\u0248\u0249\u0001\u0000\u0000\u0000\u0249\u024a\u0006_\n"+ + "\u0000\u024a\u00c1\u0001\u0000\u0000\u0000\u024b\u024c\u0003:\u001c\u0000"+ + "\u024c\u024d\u0001\u0000\u0000\u0000\u024d\u024e\u0006`\u000b\u0000\u024e"+ + "\u00c3\u0001\u0000\u0000\u0000\u024f\u0250\u0003D!\u0000\u0250\u0251\u0001"+ + "\u0000\u0000\u0000\u0251\u0252\u0006a\f\u0000\u0252\u00c5\u0001\u0000"+ + "\u0000\u0000\u0253\u0254\u0003F\"\u0000\u0254\u0255\u0001\u0000\u0000"+ + "\u0000\u0255\u0256\u0006b\r\u0000\u0256\u00c7\u0001\u0000\u0000\u0000"+ + "\u0257\u0258\u0007\u0000\u0000\u0000\u0258\u0259\u0001\u0000\u0000\u0000"+ + "\u0259\u025a\u0006c\u0000\u0000\u025a\u00c9\u0001\u0000\u0000\u0000#\u0000"+ + "\u0001\u00cc\u00d8\u00de\u0114\u011b\u0122\u0124\u0126\u0128\u012d\u012f"+ + "\u0137\u0139\u0140\u0149\u014e\u015f\u01a9\u01ab\u01b5\u01bc\u01ef\u01f1"+ + "\u01f7\u01f9\u01fc\u020b\u0212\u0227\u0232\u0234\u0240\u0242\u000e\u0006"+ + "\u0000\u0000\u0005\u0001\u0000\u0004\u0000\u0000\u0007\u001a\u0000\u0007"+ + "&\u0000\u0007\u001b\u0000\u0007\u0001\u0000\u0007\u0014\u0000\u0007\u0015"+ + "\u0000\u0007-\u0000\u0007(\u0000\u0007)\u0000\u0007*\u0000\u0007+\u0000"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.tokens b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.tokens index ba169a646c..c5b7b605bd 100644 --- a/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.tokens +++ b/oap-formats/oap-template/src/main/java-antlr-generated/oap/template/TemplateLexerExpression.tokens @@ -3,69 +3,66 @@ IF=2 THEN=3 ELSE=4 END=5 -WITH=6 -AND=7 -OR=8 -NOT=9 -BANG=10 -EQ_KW=11 -NE_KW=12 -EQI_KW=13 -CONTAINS_KW=14 -EQEQ=15 -NEQ=16 -GE_OP=17 -LE_OP=18 -GT_OP=19 -LT_OP=20 -VAR_ID=21 -ROOT=22 -BLOCK_COMMENT=23 -HORZ_WS=24 -VERT_WS=25 -LBRACE=26 -RBRACE=27 -DOT=28 -LPAREN=29 -RPAREN=30 -LBRACK=31 -RBRACK=32 -DQUESTION=33 -SEMI=34 -COMMA=35 -STAR=36 -SLASH=37 -PERCENT=38 -PLUS=39 -MINUS=40 -DSTRING=41 -SSTRING=42 -DECDIGITS=43 -FLOAT=44 -BOOLEAN=45 -ID=46 -CAST_TYPE=47 -ERR_CHAR=48 -C_HORZ_WS=49 -C_VERT_WS=50 -CERR_CHAR=51 +AND=6 +OR=7 +NOT=8 +BANG=9 +EQ_KW=10 +NE_KW=11 +EQI_KW=12 +CONTAINS_KW=13 +EQEQ=14 +NEQ=15 +GE_OP=16 +LE_OP=17 +GT_OP=18 +LT_OP=19 +VAR_ID=20 +ROOT=21 +BLOCK_COMMENT=22 +HORZ_WS=23 +VERT_WS=24 +LBRACE=25 +RBRACE=26 +DOT=27 +LPAREN=28 +RPAREN=29 +LBRACK=30 +RBRACK=31 +DQUESTION=32 +SEMI=33 +COMMA=34 +STAR=35 +SLASH=36 +PERCENT=37 +PLUS=38 +MINUS=39 +DSTRING=40 +SSTRING=41 +DECDIGITS=42 +FLOAT=43 +BOOLEAN=44 +ID=45 +CAST_TYPE=46 +ERR_CHAR=47 +C_HORZ_WS=48 +C_VERT_WS=49 +CERR_CHAR=50 'if'=2 'then'=3 'else'=4 'end'=5 -'with'=6 -'and'=7 -'or'=8 -'not'=9 -'!'=10 -'eq'=11 -'ne'=12 -'eqi'=13 -'contains'=14 -'=='=15 -'!='=16 -'>='=17 -'<='=18 -'>'=19 -'<'=20 -'$'=22 +'and'=6 +'or'=7 +'not'=8 +'!'=9 +'eq'=10 +'ne'=11 +'eqi'=12 +'contains'=13 +'=='=14 +'!='=15 +'>='=16 +'<='=17 +'>'=18 +'<'=19 diff --git a/oap-formats/oap-template/src/main/java/oap/template/render/TemplateAstUtils.java b/oap-formats/oap-template/src/main/java/oap/template/render/TemplateAstUtils.java index bbe15055e8..a65470c96d 100644 --- a/oap-formats/oap-template/src/main/java/oap/template/render/TemplateAstUtils.java +++ b/oap-formats/oap-template/src/main/java/oap/template/render/TemplateAstUtils.java @@ -51,6 +51,7 @@ import oap.template.tree.IfCondition; import oap.template.tree.LiteralCompareValue; import oap.template.tree.NotConditionExpr; +import oap.template.tree.NumericLiteral; import oap.template.tree.OrConditionExpr; import oap.template.tree.TextElement; import oap.template.tree.WithCondition; @@ -174,6 +175,11 @@ static Field findField( Class clazz, String fieldName ) throws NoSuchFieldExc } } + private static boolean isNumericType( Class c ) { + return c == int.class || c == long.class || c == float.class || c == double.class + || c == short.class || c == byte.class || Number.class.isAssignableFrom( c ); + } + static AstRender toAst( Expression expression, TemplateType templateType, String castType, String defaultValue, Map> builtInFunction, ErrorStrategy errorStrategy ) throws ClassNotFoundException { return toAst( expression, templateType, templateType, castType, defaultValue, builtInFunction, errorStrategy, Map.of() ); @@ -656,13 +662,31 @@ private static AstRender wrap( Exprs exprs, Func function, TemplateType parentTe Chain list = new Chain(); if( exprs.concatenation != null ) { - ArrayList items = new ArrayList<>(); + var concatList = exprs.concatenation.items; + // Numeric math: numericField + numericLiteral — delegate to the standard math path + if( concatList.size() == 2 + && concatList.get( 0 ) instanceof Expr ei + && !ei.method + && concatList.get( 1 ) instanceof NumericLiteral nl ) { + try { + Field field = findField( parentTemplateType.getTypeClass(), ei.name ); + if( isNumericType( field.getType() ) ) { + Exprs mathExprs = new Exprs( List.of( ei ) ); + mathExprs.math = new oap.template.tree.Math( "+", nl.value() ); + return toAst( mathExprs, function, parentTemplateType, resultType, null, + defaultValue, builtInFunction, errorStrategy ); + } + } catch( NoSuchFieldException ignored ) { } + } - for( Object item : exprs.concatenation.items ) { + ArrayList items = new ArrayList<>(); + for( Object item : concatList ) { if( item instanceof String si ) { items.add( new AstRenderText( si ) ); - } else if( item instanceof Expr ei ) { - AstRender ast = toAst( new Exprs( List.of( ei ) ), function, parentTemplateType, resultType, null, + } else if( item instanceof NumericLiteral nl ) { + items.add( new AstRenderText( nl.value() ) ); + } else if( item instanceof Expr e ) { + AstRender ast = toAst( new Exprs( List.of( e ) ), function, parentTemplateType, resultType, null, defaultValue, builtInFunction, errorStrategy ); items.add( ast ); } else { diff --git a/oap-formats/oap-template/src/main/java/oap/template/tree/NumericLiteral.java b/oap-formats/oap-template/src/main/java/oap/template/tree/NumericLiteral.java new file mode 100644 index 0000000000..4350f2f026 --- /dev/null +++ b/oap-formats/oap-template/src/main/java/oap/template/tree/NumericLiteral.java @@ -0,0 +1,27 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) Open Application Platform Authors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +package oap.template.tree; + +public record NumericLiteral( String value ) {} diff --git a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineConcatenationTest.java b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineConcatenationTest.java index 2bbbb97ff9..576f438e83 100644 --- a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineConcatenationTest.java +++ b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineConcatenationTest.java @@ -39,7 +39,7 @@ public void testConcatenation() { c.field = "f1"; c.field2 = "f2"; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "${{field,\"x\",field2}}", STRING, null ).render( c ).get() ) + assertThat( getTemplate( testMethodName, new TypeRef() {}, "${field + \"x\" + field2}", STRING, null ).render( c ).get() ) .isEqualTo( "f1xf2" ); } @@ -49,7 +49,7 @@ public void testConcatenationWithNumber() { c.intField = 3; c.field2 = "f2"; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "${{intField,\"x\",field2}}", STRING, null ).render( c ).get() ) + assertThat( getTemplate( testMethodName, new TypeRef() {}, "${intField + \"x\" + field2}", STRING, null ).render( c ).get() ) .isEqualTo( "3xf2" ); } @@ -61,7 +61,7 @@ public void testNestedConcatenation() { c1.field = "f1"; c1.field2 = "f2"; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "${child{field,\"x\",field2}}", STRING, null ).render( c ).get() ) + assertThat( getTemplate( testMethodName, new TypeRef() {}, "${child{field + \"x\" + field2}}", STRING, null ).render( c ).get() ) .isEqualTo( "f1xf2" ); } @@ -73,7 +73,7 @@ public void testNestedConcatenationWithDot() { c1.field2 = "f1"; c1.field22 = "f2"; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "${child2.{field2,\"x\",field22}}", STRING, null ).render( c ).get() ) + assertThat( getTemplate( testMethodName, new TypeRef() {}, "${child2.{field2 + \"x\" + field22}}", STRING, null ).render( c ).get() ) .isEqualTo( "f1xf2" ); } @@ -89,7 +89,7 @@ public void testNestedNullableConcatenationWithDot() { c11.field2 = "f1"; c11.intField = 5; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "${childNullable.childNullable.{field2,\"x\",intField}??''}", STRING, null ).render( c ).get() ) + assertThat( getTemplate( testMethodName, new TypeRef() {}, "${childNullable.childNullable.{field2 + \"x\" + intField}??''}", STRING, null ).render( c ).get() ) .isEqualTo( "f1x5" ); } @@ -105,7 +105,7 @@ public void testNestedOptConcatenationWithDot() { c11.field2 = "f1"; c11.intField = 5; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "${childOpt.childOpt.{field2,\"x\",intField}??''}", STRING, null ).render( c ).get() ) + assertThat( getTemplate( testMethodName, new TypeRef() {}, "${childOpt.childOpt.{field2 + \"x\" + intField}??''}", STRING, null ).render( c ).get() ) .isEqualTo( "f1x5" ); } } diff --git a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineMathTest.java b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineMathTest.java new file mode 100644 index 0000000000..ae67776435 --- /dev/null +++ b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineMathTest.java @@ -0,0 +1,73 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) Open Application Platform Authors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +package oap.template; + +import oap.reflect.TypeRef; +import org.testng.annotations.Test; + +import static oap.template.TemplateAccumulators.STRING; +import static org.assertj.core.api.Assertions.assertThat; + +public class TemplateEngineMathTest extends AbstractTemplateEngineTest { + @Test + public void testMul() { + TestTemplateClass c = new TestTemplateClass(); + c.doubleField = 1.2; + c.intField = 10; + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ doubleField * 2 }};{{ intField * 2 }}", STRING, null ).render( c ).get() ).isEqualTo( "2.4;20" ); + } + + @Test + public void testDiv() { + TestTemplateClass c = new TestTemplateClass(); + c.doubleField = 2.2; + c.intField = 3; + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ doubleField / 2 }};{{ intField / 2 }}", STRING, null ).render( c ).get() ).isEqualTo( "1.1;1" ); + } + + @Test + public void testMod() { + TestTemplateClass c = new TestTemplateClass(); + c.doubleField = 2.2; + c.intField = 3; + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ doubleField % 2 }};{{ intField % 2 }}", STRING, null ).render( c ).get() ).isEqualTo( "0.20000000000000018;1" ); + } + + @Test + public void testMinus() { + TestTemplateClass c = new TestTemplateClass(); + c.doubleField = 2.2; + c.intField = 3; + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ doubleField - 3 }};{{ intField - 10 }};{{ intField - 1.2 }}", STRING, null ).render( c ).get() ).isEqualTo( "-0.7999999999999998;-7;1.8" ); + } + + @Test + public void testPlus() { + TestTemplateClass c = new TestTemplateClass(); + c.doubleField = 2.2; + c.intField = 3; + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ doubleField + 3.3 }};{{ intField + 10 }}", STRING, null ).render( c ).get() ).isEqualTo( "5.5;13" ); + } +} diff --git a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineTest.java b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineTest.java index 680e0524af..4810ddbf12 100644 --- a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineTest.java +++ b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineTest.java @@ -382,7 +382,7 @@ public void testConcatenation() { c.field = "f1"; c.field2 = "f2"; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ {field,\"x\",field2} }}", STRING, null ).render( c ).get() ) + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ field + \"x\" + field2 }}", STRING, null ).render( c ).get() ) .isEqualTo( "f1xf2" ); } @@ -394,7 +394,7 @@ public void testNestedConcatenation() { c1.field = "f1"; c1.field2 = "f2"; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ child{field,\"x\",field2} }}", STRING, null ).render( c ).get() ) + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ child{field + \"x\" + field2} }}", STRING, null ).render( c ).get() ) .isEqualTo( "f1xf2" ); } @@ -406,25 +406,18 @@ public void testNestedConcatenationWithDot() { c1.field2 = "f1"; c1.field22 = "f2"; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ child2.{field2,\"x\",field22} }}", STRING, null ).render( c ).get() ) + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ child2.{field2 + \"x\" + field22} }}", STRING, null ).render( c ).get() ) .isEqualTo( "f1xf2" ); } @Test - public void testSum() { - TestTemplateClass c = new TestTemplateClass(); - c.intField = 123; - - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ intField + 12.45 }}", STRING, null ).render( c ).get() ) - .isEqualTo( "135.45" ); - } - - @Test - public void testSumDefault() { + public void testTopLevelConcatenation() { TestTemplateClass c = new TestTemplateClass(); + c.field = "str"; + c.intField = 456; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ intObjectField + 12.45 ?? 5 }}", STRING, null ).render( c ).get() ) - .isEqualTo( "5" ); + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ field + 'x' + 10 + intField }}", STRING, null ).render( c ).get() ) + .isEqualTo( "strx10456" ); } @Test diff --git a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineTypesTest.java b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineTypesTest.java index 69c5010461..0bd39c5662 100644 --- a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineTypesTest.java +++ b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineTypesTest.java @@ -81,10 +81,10 @@ public void testObjectReferenceWithConcatenation() { templateClass.child.child.field2 = "v2"; var str = getTemplate( testMethodName, new TypeRef() {}, - "child.child.{field,\"x\",field2}:${child.child.{field,\"x\",field2}}", + "child.child.{field + \"x\" + field2}:${child.child.{field + \"x\" + field2}}", templateAccumulator, ERROR, null ).render( templateClass ).get(); - assertThat( str ).isEqualTo( "child.child.{field,\"x\",field2}:v1xv2" ); + assertThat( str ).isEqualTo( "child.child.{field + \"x\" + field2}:v1xv2" ); } @Test diff --git a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineWithTest.java b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineWithTest.java index 4a391e7cab..538c1ef2cc 100644 --- a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineWithTest.java +++ b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineWithTest.java @@ -39,7 +39,7 @@ public void testInlineWithField() { c.child = new TestTemplateClass(); c.child.field = "val"; assertThat( getTemplate( testMethodName, new TypeRef() {}, - "{{ with (child) field end }}", STRING, null ).render( c ).get() ) + "{{ child{field} }}", STRING, null ).render( c ).get() ) .isEqualTo( "val" ); } @@ -50,7 +50,7 @@ public void testInlineWithFallback() { c.child.field = null; c.child.field2 = "fb"; assertThat( getTemplate( testMethodName, new TypeRef() {}, - "{{ with (child) field | default field2 end }}", STRING, null ).render( c ).get() ) + "{{ child{field | default field2} }}", STRING, null ).render( c ).get() ) .isEqualTo( "fb" ); } @@ -59,7 +59,7 @@ public void testInlineWithNullScope() { TestTemplateClass c = new TestTemplateClass(); c.child = null; assertThat( getTemplate( testMethodName, new TypeRef() {}, - "{{ with (child) field end }}", STRING, null ).render( c ).get() ) + "{{ child{field} }}", STRING, null ).render( c ).get() ) .isEqualTo( "" ); } @@ -121,7 +121,7 @@ public void testInlineWithRootScopeFallback() { c.child = new TestTemplateClass(); c.child.field = null; assertThat( getTemplate( testMethodName, new TypeRef() {}, - "{{ with (child) field | default $.field end }}", STRING, null ).render( c ).get() ) + "{{ child{field | default $.field} }}", STRING, null ).render( c ).get() ) .isEqualTo( "root-val" ); } @@ -141,4 +141,25 @@ public void testBlockWithUnknownFieldThrows() { "{{% with unknownField }}x{{% end }}", STRING, ERROR, null ) ) .isInstanceOf( TemplateException.class ); } + + @Test + public void testInlineBraceConcatenation() { + TestTemplateClass c = new TestTemplateClass(); + c.child = new TestTemplateClass(); + c.child.field = "hello"; + c.child.field2 = "world"; + assertThat( getTemplate( testMethodName, new TypeRef() {}, + "{{ child{field + '-' + field2} }}", STRING, null ).render( c ).get() ) + .isEqualTo( "hello-world" ); + } + + @Test + public void testInlineBraceConcatenationWithNumber() { + TestTemplateClass c = new TestTemplateClass(); + c.child = new TestTemplateClass(); + c.child.field = "val"; + assertThat( getTemplate( testMethodName, new TypeRef() {}, + "{{ child{field + 6} }}", STRING, null ).render( c ).get() ) + .isEqualTo( "val6" ); + } } diff --git a/pom.xml b/pom.xml index 37e4ea41ec..26947d3677 100644 --- a/pom.xml +++ b/pom.xml @@ -57,7 +57,7 @@ - 25.5.10 + 25.6.0 25.0.1 25.0.0