From 0ac9da91b4352e4d4f188daca2fe503c8bd0d13e Mon Sep 17 00:00:00 2001 From: "igor.petrenko" Date: Wed, 29 Apr 2026 08:19:22 +0300 Subject: [PATCH 1/2] CE-154 oap-template: remove or ( a|b ) --- .../rowbinary/RowBinaryObjectLoggerTest.java | 18 +- .../rowbinary/RowBinaryObjectLogger.java | 66 +- oap-formats/oap-template/README.md | 24 +- .../main/antlr4/TemplateGrammarExpression.g4 | 8 +- .../main/antlr4/TemplateLexerExpression.g4 | 6 - .../template/TemplateGrammarExpression.interp | 5 +- .../template/TemplateGrammarExpression.java | 1076 ++++++++--------- .../template/TemplateGrammarExpression.tokens | 135 +-- ...TemplateGrammarExpressionBaseListener.java | 12 - .../TemplateGrammarExpressionListener.java | 10 - .../template/TemplateLexerExpression.interp | 8 +- .../oap/template/TemplateLexerExpression.java | 727 ++++++----- .../template/TemplateLexerExpression.tokens | 135 +-- .../java/oap/template/render/AstRenderOr.java | 141 --- .../template/render/AstRenderTryBlock.java | 70 -- .../main/java/oap/template/render/Render.java | 2 +- .../oap/template/render/TemplateAstUtils.java | 46 +- .../java/oap/template/tree/Expression.java | 11 +- .../template/TemplateEngineConditionTest.java | 30 + .../template/TemplateEngineOrRuntimeTest.java | 8 - .../oap/template/TemplateEngineOrTest.java | 61 - .../java/oap/template/TemplateEngineTest.java | 34 - .../oap/template/TemplateEngineWithTest.java | 22 - pom.xml | 2 +- 24 files changed, 1071 insertions(+), 1586 deletions(-) delete mode 100644 oap-formats/oap-template/src/main/java/oap/template/render/AstRenderOr.java delete mode 100644 oap-formats/oap-template/src/main/java/oap/template/render/AstRenderTryBlock.java delete mode 100644 oap-formats/oap-template/src/test/java/oap/template/TemplateEngineOrRuntimeTest.java delete mode 100644 oap-formats/oap-template/src/test/java/oap/template/TemplateEngineOrTest.java diff --git a/oap-formats/oap-logstream/oap-logstream-test/src/test/java/oap/logstream/formats/rowbinary/RowBinaryObjectLoggerTest.java b/oap-formats/oap-logstream/oap-logstream-test/src/test/java/oap/logstream/formats/rowbinary/RowBinaryObjectLoggerTest.java index 658f4d569c..392894bc8d 100644 --- a/oap-formats/oap-logstream/oap-logstream-test/src/test/java/oap/logstream/formats/rowbinary/RowBinaryObjectLoggerTest.java +++ b/oap-formats/oap-logstream/oap-logstream-test/src/test/java/oap/logstream/formats/rowbinary/RowBinaryObjectLoggerTest.java @@ -30,6 +30,7 @@ import oap.testng.Fixtures; import oap.testng.TestDirectoryFixture; import oap.util.Dates; +import org.apache.commons.lang3.mutable.MutableObject; import org.testng.annotations.Test; import javax.annotation.Nullable; @@ -67,12 +68,12 @@ public void testLog() { default = 1233 } aaa { - path = a | default aa + path = a|aa type = STRING default = "" } list { - path = data1.list | default data2.list + path = data1.list|data2.list type = STRING_ARRAY default = [] } @@ -129,7 +130,7 @@ public void testOptimization() { default = "" } or { - path = "if a then a else aa end" + path = "a|aa" type = STRING default = "" } @@ -167,9 +168,16 @@ public void testOptimization() { logger.log( testData, "prefix", Map.of(), "mylog" ); - List> bytes = memoryLoggerBackend.asRowBinary( _ -> true ); + MutableObject headers = new MutableObject<>(); + + List> bytes = memoryLoggerBackend.asRowBinary( lid -> { + headers.setValue( lid.headers ); + return true; + } ); + + assertThat( headers.get() ).isEqualTo( new String[] {"a", "or", "b", "a2", "aa2", "b2"} ); - assertThat( bytes ).isEqualTo( List.of( List.of( "a1", 1, "a1", "a2", "aa2", 2 ) ) ); + assertThat( bytes ).isEqualTo( List.of( List.of( "a1", "a1", 1, "a2", "aa2", 2 ) ) ); assertThat( listener.javaCode ) .isEqualTo( "{{ /* model MODEL1 id a path a type STRING defaultValue '' */a ?? \"\" }}" diff --git a/oap-formats/oap-logstream/oap-logstream/src/main/java/oap/logstream/formats/rowbinary/RowBinaryObjectLogger.java b/oap-formats/oap-logstream/oap-logstream/src/main/java/oap/logstream/formats/rowbinary/RowBinaryObjectLogger.java index 82ba20af6c..d5ebb5443b 100644 --- a/oap-formats/oap-logstream/oap-logstream/src/main/java/oap/logstream/formats/rowbinary/RowBinaryObjectLogger.java +++ b/oap-formats/oap-logstream/oap-logstream/src/main/java/oap/logstream/formats/rowbinary/RowBinaryObjectLogger.java @@ -25,6 +25,7 @@ package oap.logstream.formats.rowbinary; import com.google.common.base.Preconditions; +import lombok.experimental.ExtensionMethod; import oap.dictionary.Dictionary; import oap.dictionary.DictionaryRoot; import oap.logstream.AbstractLoggerBackend; @@ -47,6 +48,7 @@ import java.util.LinkedHashMap; import java.util.List; import java.util.Map; +import java.util.Optional; import static java.util.Objects.requireNonNull; import static oap.template.ErrorStrategy.ERROR; @@ -54,6 +56,7 @@ /** * Class for beans described in the datamodel via oap-logstream protocol. */ +@ExtensionMethod( RowBinaryObjectLogger.DictionaryExtensions.class ) public class RowBinaryObjectLogger { public static final String COLLECTION_SUFFIX = "_ARRAY"; public static final HashMap types = new HashMap<>(); @@ -105,37 +108,37 @@ public TypedRowBinaryLogger typed( TypeRef typeRef, String id, boolean if( sortByPath ) { fields.sort( ( o1, o2 ) -> { - String path1 = o1.getProperty( "path" ).get(); - String path2 = o2.getProperty( "path" ).get(); - - boolean or1 = path1.contains( "|" ); - boolean or2 = path2.contains( "|" ); - - if( or1 || or2 ) { - return Boolean.compare( or1, or2 ); - } + String path1 = o1.getPath(); + String path2 = o2.getPath(); return path1.compareTo( path2 ); } ); } - List rootFields = new ArrayList<>(); + LinkedHashMap rootFields = new LinkedHashMap<>(); Map> groups = new LinkedHashMap<>(); for( Dictionary field : fields ) { - String path = field.getProperty( "path" ).get(); - boolean isOr = path.contains( "|" ); - int dotIdx = isOr ? -1 : path.indexOf( '.' ); - if( dotIdx < 0 ) { - rootFields.add( field ); + String path = field.getPath(); + int dotIdx = path.indexOf( '.' ); + int orIndex = path.indexOf( '|' ); + if( orIndex > 0 ) { + String left = path.substring( 0, orIndex ); + String right = path.substring( orIndex + 1 ); + + int lastFieldIndex = left.lastIndexOf( '.' ); + + rootFields.put( "if " + ( lastFieldIndex > 0 ? left.substring( 0, lastFieldIndex ) : left ) + " then " + left + " else " + right + " end", field ); + } else if( dotIdx < 0 ) { + rootFields.put( path, field ); } else { groups.computeIfAbsent( path.substring( 0, dotIdx ), k -> new ArrayList<>() ).add( field ); } } - for( Dictionary field : rootFields ) { - appendField( field, id, null, headers, rowTypes, expressions ); - } + rootFields.forEach( ( path, field ) -> { + appendField( path, field, id, null, headers, rowTypes, expressions ); + } ); for( Map.Entry> entry : groups.entrySet() ) { String prefix = entry.getKey(); @@ -143,11 +146,12 @@ public TypedRowBinaryLogger typed( TypeRef typeRef, String id, boolean if( group.size() >= 2 ) { expressions.add( "{{% with " + prefix + " }}" ); for( Dictionary field : group ) { - appendField( field, id, prefix, headers, rowTypes, expressions ); + appendField( field.getPath(), field, id, prefix, headers, rowTypes, expressions ); } expressions.add( "{{% end }}" ); } else { - appendField( group.getFirst(), id, null, headers, rowTypes, expressions ); + Dictionary first = group.getFirst(); + appendField( first.getPath(), first, id, null, headers, rowTypes, expressions ); } } @@ -166,12 +170,11 @@ public TypedRowBinaryLogger typed( TypeRef typeRef, String id, boolean return new TypedRowBinaryLogger<>( renderer, headers.toArray( new String[0] ), rowTypes.toArray( new byte[0][] ) ); } - private void appendField( Dictionary field, String id, @Nullable String stripPrefix, + private void appendField( String path, Dictionary field, String id, @Nullable String stripPrefix, List headers, List rowTypes, List expressions ) { String name = field.getId(); - String path = checkStringAndGet( field, "path" ); String fieldType = checkStringAndGet( field, "type" ); - Object format = field.getProperty( "format" ).orElse( null ); + Object format = field.getFormat(); boolean collection = false; String idType = fieldType; @@ -183,7 +186,7 @@ private void appendField( Dictionary field, String id, @Nullable String stripPre TypeConfiguration rowType = types.get( idType ); Preconditions.checkNotNull( rowType, "unknown type " + idType ); - Object defaultValue = field.getProperty( "default" ) + Object defaultValue = field.getDefault() .orElseThrow( () -> new IllegalStateException( "default not found for " + id + "/" + name ) ); String templateFunction = format != null ? "; format(\"" + format + "\")" : ""; @@ -234,6 +237,21 @@ public TypeConfiguration( String javaType, Types templateType ) { } } + public static class DictionaryExtensions { + public static String getPath( Dictionary dictionary ) { + return dictionary.getProperty( "path" ).get(); + } + + @Nullable + public static String getFormat( Dictionary dictionary ) { + return dictionary.getProperty( "format" ).orElse( null ); + } + + public static Optional getDefault( Dictionary dictionary ) { + return dictionary.getProperty( "default" ); + } + } + public class TypedRowBinaryLogger { public final String[] headers; public final byte[][] types; diff --git a/oap-formats/oap-template/README.md b/oap-formats/oap-template/README.md index 066a2d9b38..e2a1456fcc 100644 --- a/oap-formats/oap-template/README.md +++ b/oap-formats/oap-template/README.md @@ -12,7 +12,6 @@ A compile-time template engine for the OAP framework. Each unique template strin - [Field access](#field-access) - [Null safety](#null-safety) - [Default values (`??`)](#default-values-) - - [Fallback chains (`| default`)](#fallback-chains--default) - [Concatenation](#concatenation) - [Math](#math) - [If / then / else (inline)](#if--then--else-inline) @@ -193,15 +192,6 @@ Supported literal types: {{ tags ?? [] }} ``` -### Fallback chains (`| default`) - -`{{ expr1 | default expr2 | default expr3 }}` — evaluates each expression in order and uses the first non-null, non-empty result. All expressions must resolve to the same type. - -``` -{{ primaryUrl | default fallbackUrl }} -{{ list | default list2 }} -``` - ### Concatenation `+` 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. @@ -425,21 +415,13 @@ If `scope` resolves to null, the body expression renders its default value, or e Renders `n/a` when `child` is null or `child.field` is null. -**Fallback chain in body:** - -``` -{{ 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 scope: ``` -{{ child{field | default $.rootField} }} +{{ child{$.rootField} }} ``` -When `child.field` is null, `$.rootField` is resolved from the root object. +Resolves `rootField` from the root object, not from `child`. **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`: @@ -476,7 +458,7 @@ Renders `AnoneB` when `child` is null. Renders `A` + field value + `B` when `chi - `scopePath` is a field path (e.g. `child`, `a.b`). All `{{ expr }}` expressions inside the body are resolved against the type at that path. - `$.fieldName` inside the body always resolves from the original root object regardless of nesting depth. -- Use `??` for literal defaults inside body expressions (`{{ field ?? 'default' }}`). Or-chain fallbacks between two fields (`{{ field | default field2 }}`) are not supported inside block-with bodies. +- Use `??` for literal defaults inside body expressions (`{{ field ?? 'default' }}`). - Blocks may be nested inside other block constructs (`{{% if … }}`, other `{{% with … }}`). - The `{{% end }}` tag closes the nearest open block. diff --git a/oap-formats/oap-template/src/main/antlr4/TemplateGrammarExpression.g4 b/oap-formats/oap-template/src/main/antlr4/TemplateGrammarExpression.g4 index 8423764a5f..db20d286d1 100644 --- a/oap-formats/oap-template/src/main/antlr4/TemplateGrammarExpression.g4 +++ b/oap-formats/oap-template/src/main/antlr4/TemplateGrammarExpression.g4 @@ -91,9 +91,8 @@ exprsCode returns [ArrayList ret = new ArrayList<>()] : topLevelConcat { $ret.add( $topLevelConcat.ret ); } - | exprs orExprs { + | exprs { $ret.add( $exprs.ret ); - $ret.addAll( $orExprs.ret ); } ; @@ -169,11 +168,6 @@ functionArg returns [String ret] | DSTRING { $ret = $DSTRING.text; } ; -orExprs returns [ArrayList ret = new ArrayList() ] - : (DEFAULT exprs { $ret.add( $exprs.ret ); } ( DEFAULT exprs { $ret.add( $exprs.ret ); })*) - | - ; - exprs returns [Exprs ret = new Exprs()] : ROOT DOT expr { $ret.rootScoped = true; $ret.exprs.add( $expr.ret ); } (DOT expr { $ret.exprs.add( $expr.ret ); })* diff --git a/oap-formats/oap-template/src/main/antlr4/TemplateLexerExpression.g4 b/oap-formats/oap-template/src/main/antlr4/TemplateLexerExpression.g4 index 1557a3cd31..464d36c32d 100644 --- a/oap-formats/oap-template/src/main/antlr4/TemplateLexerExpression.g4 +++ b/oap-formats/oap-template/src/main/antlr4/TemplateLexerExpression.g4 @@ -15,7 +15,6 @@ fragment DQuote : '"' ; fragment Underscore : '_' ; fragment Comma : ',' ; fragment Semi : ';' ; -fragment Pipe : '|' ; fragment Dot : '.' ; fragment LParen : '(' ; fragment RParen : ')' ; @@ -29,8 +28,6 @@ fragment Minus : '-' ; fragment DQuestion : '??' ; fragment LT : '<' ; fragment GT : '>' ; -fragment Default : 'default' ; - fragment NameChar : [A-Z] | [a-z] @@ -79,8 +76,6 @@ fragment True : 'true' ; fragment False : 'false' ; -DEFAULT : Pipe Hws* Default ; - IF : 'if' ; THEN : 'then' ; ELSE : 'else' ; @@ -145,7 +140,6 @@ C_VERT_WS : Vws+ -> skip ; CRBRACE : RBrace -> popMode, type(RBRACE) ; 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) ; 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 02e3740389..24fc5bb1d9 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 @@ -1,6 +1,5 @@ token literal names: null -null 'if' 'then' 'else' @@ -53,7 +52,6 @@ null token symbolic names: null -DEFAULT IF THEN ELSE @@ -123,7 +121,6 @@ longRule function functionArgs functionArg -orExprs exprs expr concatenation @@ -135,4 +132,4 @@ mathOperation atn: -[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 +[4, 1, 49, 401, 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, 1, 0, 3, 0, 54, 8, 0, 1, 0, 3, 0, 57, 8, 0, 1, 0, 1, 0, 1, 0, 3, 0, 62, 8, 0, 1, 0, 3, 0, 65, 8, 0, 1, 0, 3, 0, 68, 8, 0, 1, 0, 1, 0, 3, 0, 72, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 82, 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, 99, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 4, 3, 107, 8, 3, 11, 3, 12, 3, 108, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 4, 4, 117, 8, 4, 11, 4, 12, 4, 118, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 127, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 138, 8, 7, 10, 7, 12, 7, 141, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 149, 8, 8, 10, 8, 12, 8, 152, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 161, 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, 176, 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, 194, 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, 214, 8, 13, 1, 14, 3, 14, 217, 8, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 225, 8, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 236, 8, 16, 10, 16, 12, 16, 239, 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, 255, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 265, 8, 18, 10, 18, 12, 18, 268, 9, 18, 1, 18, 3, 18, 271, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 281, 8, 18, 10, 18, 12, 18, 284, 9, 18, 1, 18, 3, 18, 287, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 293, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 300, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 311, 8, 18, 10, 18, 12, 18, 314, 9, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 320, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 330, 8, 18, 10, 18, 12, 18, 333, 9, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 339, 8, 18, 1, 18, 1, 18, 1, 18, 3, 18, 344, 8, 18, 1, 18, 1, 18, 3, 18, 348, 8, 18, 1, 19, 1, 19, 1, 19, 3, 19, 353, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 360, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 373, 8, 21, 10, 21, 12, 21, 376, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 388, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 397, 8, 24, 1, 25, 1, 25, 1, 25, 0, 0, 26, 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, 0, 3, 1, 0, 7, 8, 1, 0, 9, 18, 2, 0, 34, 36, 38, 38, 435, 0, 53, 1, 0, 0, 0, 2, 75, 1, 0, 0, 0, 4, 98, 1, 0, 0, 0, 6, 100, 1, 0, 0, 0, 8, 110, 1, 0, 0, 0, 10, 126, 1, 0, 0, 0, 12, 128, 1, 0, 0, 0, 14, 131, 1, 0, 0, 0, 16, 142, 1, 0, 0, 0, 18, 160, 1, 0, 0, 0, 20, 175, 1, 0, 0, 0, 22, 193, 1, 0, 0, 0, 24, 195, 1, 0, 0, 0, 26, 213, 1, 0, 0, 0, 28, 216, 1, 0, 0, 0, 30, 220, 1, 0, 0, 0, 32, 229, 1, 0, 0, 0, 34, 254, 1, 0, 0, 0, 36, 347, 1, 0, 0, 0, 38, 359, 1, 0, 0, 0, 40, 361, 1, 0, 0, 0, 42, 366, 1, 0, 0, 0, 44, 387, 1, 0, 0, 0, 46, 389, 1, 0, 0, 0, 48, 396, 1, 0, 0, 0, 50, 398, 1, 0, 0, 0, 52, 54, 5, 21, 0, 0, 53, 52, 1, 0, 0, 0, 53, 54, 1, 0, 0, 0, 54, 56, 1, 0, 0, 0, 55, 57, 5, 45, 0, 0, 56, 55, 1, 0, 0, 0, 56, 57, 1, 0, 0, 0, 57, 61, 1, 0, 0, 0, 58, 62, 3, 2, 1, 0, 59, 62, 3, 4, 2, 0, 60, 62, 3, 10, 5, 0, 61, 58, 1, 0, 0, 0, 61, 59, 1, 0, 0, 0, 61, 60, 1, 0, 0, 0, 62, 64, 1, 0, 0, 0, 63, 65, 3, 24, 12, 0, 64, 63, 1, 0, 0, 0, 64, 65, 1, 0, 0, 0, 65, 67, 1, 0, 0, 0, 66, 68, 3, 30, 15, 0, 67, 66, 1, 0, 0, 0, 67, 68, 1, 0, 0, 0, 68, 71, 1, 0, 0, 0, 69, 70, 5, 1, 0, 0, 70, 72, 3, 12, 6, 0, 71, 69, 1, 0, 0, 0, 71, 72, 1, 0, 0, 0, 72, 73, 1, 0, 0, 0, 73, 74, 6, 0, -1, 0, 74, 1, 1, 0, 0, 0, 75, 76, 5, 1, 0, 0, 76, 77, 3, 12, 6, 0, 77, 78, 5, 2, 0, 0, 78, 81, 3, 36, 18, 0, 79, 80, 5, 3, 0, 0, 80, 82, 3, 36, 18, 0, 81, 79, 1, 0, 0, 0, 81, 82, 1, 0, 0, 0, 82, 83, 1, 0, 0, 0, 83, 84, 5, 4, 0, 0, 84, 85, 6, 1, -1, 0, 85, 3, 1, 0, 0, 0, 86, 87, 3, 36, 18, 0, 87, 88, 5, 24, 0, 0, 88, 89, 3, 6, 3, 0, 89, 90, 5, 25, 0, 0, 90, 91, 6, 2, -1, 0, 91, 99, 1, 0, 0, 0, 92, 93, 3, 36, 18, 0, 93, 94, 5, 24, 0, 0, 94, 95, 3, 10, 5, 0, 95, 96, 5, 25, 0, 0, 96, 97, 6, 2, -1, 0, 97, 99, 1, 0, 0, 0, 98, 86, 1, 0, 0, 0, 98, 92, 1, 0, 0, 0, 99, 5, 1, 0, 0, 0, 100, 101, 3, 44, 22, 0, 101, 106, 6, 3, -1, 0, 102, 103, 5, 37, 0, 0, 103, 104, 3, 44, 22, 0, 104, 105, 6, 3, -1, 0, 105, 107, 1, 0, 0, 0, 106, 102, 1, 0, 0, 0, 107, 108, 1, 0, 0, 0, 108, 106, 1, 0, 0, 0, 108, 109, 1, 0, 0, 0, 109, 7, 1, 0, 0, 0, 110, 111, 3, 44, 22, 0, 111, 116, 6, 4, -1, 0, 112, 113, 5, 37, 0, 0, 113, 114, 3, 44, 22, 0, 114, 115, 6, 4, -1, 0, 115, 117, 1, 0, 0, 0, 116, 112, 1, 0, 0, 0, 117, 118, 1, 0, 0, 0, 118, 116, 1, 0, 0, 0, 118, 119, 1, 0, 0, 0, 119, 9, 1, 0, 0, 0, 120, 121, 3, 8, 4, 0, 121, 122, 6, 5, -1, 0, 122, 127, 1, 0, 0, 0, 123, 124, 3, 36, 18, 0, 124, 125, 6, 5, -1, 0, 125, 127, 1, 0, 0, 0, 126, 120, 1, 0, 0, 0, 126, 123, 1, 0, 0, 0, 127, 11, 1, 0, 0, 0, 128, 129, 3, 14, 7, 0, 129, 130, 6, 6, -1, 0, 130, 13, 1, 0, 0, 0, 131, 132, 3, 16, 8, 0, 132, 139, 6, 7, -1, 0, 133, 134, 5, 6, 0, 0, 134, 135, 3, 16, 8, 0, 135, 136, 6, 7, -1, 0, 136, 138, 1, 0, 0, 0, 137, 133, 1, 0, 0, 0, 138, 141, 1, 0, 0, 0, 139, 137, 1, 0, 0, 0, 139, 140, 1, 0, 0, 0, 140, 15, 1, 0, 0, 0, 141, 139, 1, 0, 0, 0, 142, 143, 3, 18, 9, 0, 143, 150, 6, 8, -1, 0, 144, 145, 5, 5, 0, 0, 145, 146, 3, 18, 9, 0, 146, 147, 6, 8, -1, 0, 147, 149, 1, 0, 0, 0, 148, 144, 1, 0, 0, 0, 149, 152, 1, 0, 0, 0, 150, 148, 1, 0, 0, 0, 150, 151, 1, 0, 0, 0, 151, 17, 1, 0, 0, 0, 152, 150, 1, 0, 0, 0, 153, 154, 7, 0, 0, 0, 154, 155, 3, 18, 9, 0, 155, 156, 6, 9, -1, 0, 156, 161, 1, 0, 0, 0, 157, 158, 3, 20, 10, 0, 158, 159, 6, 9, -1, 0, 159, 161, 1, 0, 0, 0, 160, 153, 1, 0, 0, 0, 160, 157, 1, 0, 0, 0, 161, 19, 1, 0, 0, 0, 162, 163, 5, 27, 0, 0, 163, 164, 3, 12, 6, 0, 164, 165, 5, 28, 0, 0, 165, 166, 6, 10, -1, 0, 166, 176, 1, 0, 0, 0, 167, 168, 3, 36, 18, 0, 168, 169, 7, 1, 0, 0, 169, 170, 3, 22, 11, 0, 170, 171, 6, 10, -1, 0, 171, 176, 1, 0, 0, 0, 172, 173, 3, 36, 18, 0, 173, 174, 6, 10, -1, 0, 174, 176, 1, 0, 0, 0, 175, 162, 1, 0, 0, 0, 175, 167, 1, 0, 0, 0, 175, 172, 1, 0, 0, 0, 176, 21, 1, 0, 0, 0, 177, 178, 5, 40, 0, 0, 178, 194, 6, 11, -1, 0, 179, 180, 5, 39, 0, 0, 180, 194, 6, 11, -1, 0, 181, 182, 5, 41, 0, 0, 182, 194, 6, 11, -1, 0, 183, 184, 5, 38, 0, 0, 184, 185, 5, 41, 0, 0, 185, 194, 6, 11, -1, 0, 186, 187, 5, 42, 0, 0, 187, 194, 6, 11, -1, 0, 188, 189, 5, 38, 0, 0, 189, 190, 5, 42, 0, 0, 190, 194, 6, 11, -1, 0, 191, 192, 5, 43, 0, 0, 192, 194, 6, 11, -1, 0, 193, 177, 1, 0, 0, 0, 193, 179, 1, 0, 0, 0, 193, 181, 1, 0, 0, 0, 193, 183, 1, 0, 0, 0, 193, 186, 1, 0, 0, 0, 193, 188, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 194, 23, 1, 0, 0, 0, 195, 196, 5, 31, 0, 0, 196, 197, 3, 26, 13, 0, 197, 198, 6, 12, -1, 0, 198, 25, 1, 0, 0, 0, 199, 200, 5, 40, 0, 0, 200, 214, 6, 13, -1, 0, 201, 202, 5, 39, 0, 0, 202, 214, 6, 13, -1, 0, 203, 204, 3, 28, 14, 0, 204, 205, 6, 13, -1, 0, 205, 214, 1, 0, 0, 0, 206, 207, 5, 42, 0, 0, 207, 214, 6, 13, -1, 0, 208, 209, 5, 43, 0, 0, 209, 214, 6, 13, -1, 0, 210, 211, 5, 29, 0, 0, 211, 212, 5, 30, 0, 0, 212, 214, 6, 13, -1, 0, 213, 199, 1, 0, 0, 0, 213, 201, 1, 0, 0, 0, 213, 203, 1, 0, 0, 0, 213, 206, 1, 0, 0, 0, 213, 208, 1, 0, 0, 0, 213, 210, 1, 0, 0, 0, 214, 27, 1, 0, 0, 0, 215, 217, 5, 38, 0, 0, 216, 215, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 218, 1, 0, 0, 0, 218, 219, 5, 41, 0, 0, 219, 29, 1, 0, 0, 0, 220, 221, 5, 32, 0, 0, 221, 222, 5, 44, 0, 0, 222, 224, 5, 27, 0, 0, 223, 225, 3, 32, 16, 0, 224, 223, 1, 0, 0, 0, 224, 225, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 227, 5, 28, 0, 0, 227, 228, 6, 15, -1, 0, 228, 31, 1, 0, 0, 0, 229, 230, 3, 34, 17, 0, 230, 237, 6, 16, -1, 0, 231, 232, 5, 33, 0, 0, 232, 233, 3, 34, 17, 0, 233, 234, 6, 16, -1, 0, 234, 236, 1, 0, 0, 0, 235, 231, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 33, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 241, 5, 41, 0, 0, 241, 255, 6, 17, -1, 0, 242, 243, 5, 38, 0, 0, 243, 244, 5, 41, 0, 0, 244, 255, 6, 17, -1, 0, 245, 246, 5, 42, 0, 0, 246, 255, 6, 17, -1, 0, 247, 248, 5, 38, 0, 0, 248, 249, 5, 42, 0, 0, 249, 255, 6, 17, -1, 0, 250, 251, 5, 40, 0, 0, 251, 255, 6, 17, -1, 0, 252, 253, 5, 39, 0, 0, 253, 255, 6, 17, -1, 0, 254, 240, 1, 0, 0, 0, 254, 242, 1, 0, 0, 0, 254, 245, 1, 0, 0, 0, 254, 247, 1, 0, 0, 0, 254, 250, 1, 0, 0, 0, 254, 252, 1, 0, 0, 0, 255, 35, 1, 0, 0, 0, 256, 257, 5, 20, 0, 0, 257, 258, 5, 26, 0, 0, 258, 259, 3, 38, 19, 0, 259, 266, 6, 18, -1, 0, 260, 261, 5, 26, 0, 0, 261, 262, 3, 38, 19, 0, 262, 263, 6, 18, -1, 0, 263, 265, 1, 0, 0, 0, 264, 260, 1, 0, 0, 0, 265, 268, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 270, 1, 0, 0, 0, 268, 266, 1, 0, 0, 0, 269, 271, 3, 46, 23, 0, 270, 269, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 273, 6, 18, -1, 0, 273, 348, 1, 0, 0, 0, 274, 275, 5, 19, 0, 0, 275, 282, 6, 18, -1, 0, 276, 277, 5, 26, 0, 0, 277, 278, 3, 38, 19, 0, 278, 279, 6, 18, -1, 0, 279, 281, 1, 0, 0, 0, 280, 276, 1, 0, 0, 0, 281, 284, 1, 0, 0, 0, 282, 280, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 286, 1, 0, 0, 0, 284, 282, 1, 0, 0, 0, 285, 287, 3, 46, 23, 0, 286, 285, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 288, 1, 0, 0, 0, 288, 348, 6, 18, -1, 0, 289, 290, 3, 38, 19, 0, 290, 292, 6, 18, -1, 0, 291, 293, 3, 46, 23, 0, 292, 291, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 294, 1, 0, 0, 0, 294, 295, 6, 18, -1, 0, 295, 348, 1, 0, 0, 0, 296, 297, 3, 38, 19, 0, 297, 299, 6, 18, -1, 0, 298, 300, 5, 26, 0, 0, 299, 298, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 302, 3, 40, 20, 0, 302, 303, 6, 18, -1, 0, 303, 348, 1, 0, 0, 0, 304, 305, 3, 38, 19, 0, 305, 312, 6, 18, -1, 0, 306, 307, 5, 26, 0, 0, 307, 308, 3, 38, 19, 0, 308, 309, 6, 18, -1, 0, 309, 311, 1, 0, 0, 0, 310, 306, 1, 0, 0, 0, 311, 314, 1, 0, 0, 0, 312, 310, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 315, 1, 0, 0, 0, 314, 312, 1, 0, 0, 0, 315, 316, 5, 26, 0, 0, 316, 317, 3, 38, 19, 0, 317, 319, 6, 18, -1, 0, 318, 320, 3, 46, 23, 0, 319, 318, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 321, 1, 0, 0, 0, 321, 322, 6, 18, -1, 0, 322, 348, 1, 0, 0, 0, 323, 324, 3, 38, 19, 0, 324, 331, 6, 18, -1, 0, 325, 326, 5, 26, 0, 0, 326, 327, 3, 38, 19, 0, 327, 328, 6, 18, -1, 0, 328, 330, 1, 0, 0, 0, 329, 325, 1, 0, 0, 0, 330, 333, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 334, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 334, 335, 5, 26, 0, 0, 335, 336, 3, 38, 19, 0, 336, 338, 6, 18, -1, 0, 337, 339, 5, 26, 0, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 341, 3, 40, 20, 0, 341, 343, 6, 18, -1, 0, 342, 344, 3, 46, 23, 0, 343, 342, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 6, 18, -1, 0, 346, 348, 1, 0, 0, 0, 347, 256, 1, 0, 0, 0, 347, 274, 1, 0, 0, 0, 347, 289, 1, 0, 0, 0, 347, 296, 1, 0, 0, 0, 347, 304, 1, 0, 0, 0, 347, 323, 1, 0, 0, 0, 348, 37, 1, 0, 0, 0, 349, 350, 5, 44, 0, 0, 350, 352, 5, 27, 0, 0, 351, 353, 3, 32, 16, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 355, 5, 28, 0, 0, 355, 356, 1, 0, 0, 0, 356, 360, 6, 19, -1, 0, 357, 358, 5, 44, 0, 0, 358, 360, 6, 19, -1, 0, 359, 349, 1, 0, 0, 0, 359, 357, 1, 0, 0, 0, 360, 39, 1, 0, 0, 0, 361, 362, 5, 24, 0, 0, 362, 363, 3, 42, 21, 0, 363, 364, 6, 20, -1, 0, 364, 365, 5, 25, 0, 0, 365, 41, 1, 0, 0, 0, 366, 367, 3, 44, 22, 0, 367, 374, 6, 21, -1, 0, 368, 369, 5, 37, 0, 0, 369, 370, 3, 44, 22, 0, 370, 371, 6, 21, -1, 0, 371, 373, 1, 0, 0, 0, 372, 368, 1, 0, 0, 0, 373, 376, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 43, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 377, 378, 5, 44, 0, 0, 378, 388, 6, 22, -1, 0, 379, 380, 5, 39, 0, 0, 380, 388, 6, 22, -1, 0, 381, 382, 5, 40, 0, 0, 382, 388, 6, 22, -1, 0, 383, 384, 5, 41, 0, 0, 384, 388, 6, 22, -1, 0, 385, 386, 5, 42, 0, 0, 386, 388, 6, 22, -1, 0, 387, 377, 1, 0, 0, 0, 387, 379, 1, 0, 0, 0, 387, 381, 1, 0, 0, 0, 387, 383, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 388, 45, 1, 0, 0, 0, 389, 390, 3, 50, 25, 0, 390, 391, 3, 48, 24, 0, 391, 392, 6, 23, -1, 0, 392, 47, 1, 0, 0, 0, 393, 397, 1, 0, 0, 0, 394, 397, 5, 41, 0, 0, 395, 397, 5, 42, 0, 0, 396, 393, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 395, 1, 0, 0, 0, 397, 49, 1, 0, 0, 0, 398, 399, 7, 2, 0, 0, 399, 51, 1, 0, 0, 0, 38, 53, 56, 61, 64, 67, 71, 81, 98, 108, 118, 126, 139, 150, 160, 175, 193, 213, 216, 224, 237, 254, 266, 270, 282, 286, 292, 299, 312, 319, 331, 338, 343, 347, 352, 359, 374, 387, 396] \ 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 770a92deb1..7edb524792 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,35 +39,35 @@ 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, 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=1, THEN=2, ELSE=3, END=4, AND=5, OR=6, NOT=7, BANG=8, EQ_KW=9, NE_KW=10, + EQI_KW=11, CONTAINS_KW=12, EQEQ=13, NEQ=14, GE_OP=15, LE_OP=16, GT_OP=17, + LT_OP=18, VAR_ID=19, ROOT=20, BLOCK_COMMENT=21, HORZ_WS=22, VERT_WS=23, + LBRACE=24, RBRACE=25, DOT=26, LPAREN=27, RPAREN=28, LBRACK=29, RBRACK=30, + DQUESTION=31, SEMI=32, COMMA=33, STAR=34, SLASH=35, PERCENT=36, PLUS=37, + MINUS=38, DSTRING=39, SSTRING=40, DECDIGITS=41, FLOAT=42, BOOLEAN=43, + ID=44, CAST_TYPE=45, ERR_CHAR=46, C_HORZ_WS=47, C_VERT_WS=48, CERR_CHAR=49; public static final int 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; + RULE_exprs = 18, RULE_expr = 19, RULE_concatenation = 20, RULE_citems = 21, + RULE_citem = 22, RULE_math = 23, RULE_number = 24, RULE_mathOperation = 25; private static String[] makeRuleNames() { return new String[] { "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" + "functionArgs", "functionArg", "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'", "'and'", "'or'", "'not'", + null, "'if'", "'then'", "'else'", "'end'", "'and'", "'or'", "'not'", "'!'", "'eq'", "'ne'", "'eqi'", "'contains'", "'=='", "'!='", "'>='", "'<='", "'>'", "'<'" }; @@ -75,10 +75,10 @@ private static String[] makeLiteralNames() { private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { - 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", + null, "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" @@ -196,76 +196,76 @@ public final ExpressionContext expression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(55); + setState(53); _errHandler.sync(this); _la = _input.LA(1); if (_la==BLOCK_COMMENT) { { - setState(54); + setState(52); ((ExpressionContext)_localctx).BLOCK_COMMENT = match(BLOCK_COMMENT); } } - setState(58); + setState(56); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_TYPE) { { - setState(57); + setState(55); ((ExpressionContext)_localctx).CAST_TYPE = match(CAST_TYPE); } } - setState(63); + setState(61); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { case 1: { - setState(60); + setState(58); ((ExpressionContext)_localctx).ifCode = ifCode(); } break; case 2: { - setState(61); + setState(59); ((ExpressionContext)_localctx).withCode = withCode(); } break; case 3: { - setState(62); + setState(60); ((ExpressionContext)_localctx).exprsCode = exprsCode(); } break; } - setState(66); + setState(64); _errHandler.sync(this); _la = _input.LA(1); if (_la==DQUESTION) { { - setState(65); + setState(63); ((ExpressionContext)_localctx).defaultValue = defaultValue(); } } - setState(69); + setState(67); _errHandler.sync(this); _la = _input.LA(1); if (_la==SEMI) { { - setState(68); + setState(66); ((ExpressionContext)_localctx).function = function(); } } - setState(73); + setState(71); _errHandler.sync(this); _la = _input.LA(1); if (_la==IF) { { - setState(71); + setState(69); match(IF); - setState(72); + setState(70); ifCondition(); } } @@ -333,27 +333,27 @@ public final IfCodeContext ifCode() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(77); + setState(75); match(IF); - setState(78); + setState(76); ((IfCodeContext)_localctx).ifCondition = ifCondition(); - setState(79); + setState(77); match(THEN); - setState(80); + setState(78); ((IfCodeContext)_localctx).thenCode = exprs(); - setState(83); + setState(81); _errHandler.sync(this); _la = _input.LA(1); if (_la==ELSE) { { - setState(81); + setState(79); match(ELSE); - setState(82); + setState(80); ((IfCodeContext)_localctx).elseCode = exprs(); } } - setState(85); + setState(83); match(END); ((IfCodeContext)_localctx).ret = new IfCondition( ((IfCodeContext)_localctx).ifCondition.ret, ((IfCodeContext)_localctx).thenCode.ret, ((IfCodeContext)_localctx).elseCode != null ? ((IfCodeContext)_localctx).elseCode.ret : null ); @@ -406,19 +406,19 @@ public final WithCodeContext withCode() throws RecognitionException { WithCodeContext _localctx = new WithCodeContext(_ctx, getState()); enterRule(_localctx, 4, RULE_withCode); try { - setState(100); + setState(98); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(88); + setState(86); ((WithCodeContext)_localctx).scopePath = exprs(); - setState(89); + setState(87); match(LBRACE); - setState(90); + setState(88); ((WithCodeContext)_localctx).concatItems = concatBody(); - setState(91); + setState(89); match(RBRACE); Exprs bodyExprs = new Exprs(); @@ -432,13 +432,13 @@ public final WithCodeContext withCode() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(94); + setState(92); ((WithCodeContext)_localctx).scopePath = exprs(); - setState(95); + setState(93); match(LBRACE); - setState(96); + setState(94); ((WithCodeContext)_localctx).bodyExprs = exprsCode(); - setState(97); + setState(95); match(RBRACE); ((WithCodeContext)_localctx).ret = new WithCondition( ((WithCodeContext)_localctx).scopePath.ret, ((WithCodeContext)_localctx).bodyExprs.ret ); @@ -493,23 +493,23 @@ public final ConcatBodyContext concatBody() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(102); + setState(100); ((ConcatBodyContext)_localctx).citem = citem(); _localctx.ret.add( ((ConcatBodyContext)_localctx).citem.ret ); - setState(108); + setState(106); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(104); + setState(102); match(PLUS); - setState(105); + setState(103); ((ConcatBodyContext)_localctx).citem = citem(); _localctx.ret.add( ((ConcatBodyContext)_localctx).citem.ret ); } } - setState(110); + setState(108); _errHandler.sync(this); _la = _input.LA(1); } while ( _la==PLUS ); @@ -562,28 +562,28 @@ public final TopLevelConcatContext topLevelConcat() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(112); + setState(110); ((TopLevelConcatContext)_localctx).first = citem(); _localctx.ret.concatenation = new Concatenation( new ArrayList<>() ); _localctx.ret.concatenation.items.add( ((TopLevelConcatContext)_localctx).first.ret ); - setState(118); + setState(116); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(114); + setState(112); match(PLUS); - setState(115); + setState(113); ((TopLevelConcatContext)_localctx).next = citem(); _localctx.ret.concatenation.items.add( ((TopLevelConcatContext)_localctx).next.ret ); } } - setState(120); + setState(118); _errHandler.sync(this); _la = _input.LA(1); } while ( _la==PLUS ); @@ -605,16 +605,12 @@ 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); } - public OrExprsContext orExprs() { - return getRuleContext(OrExprsContext.class,0); - } public ExprsCodeContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @@ -633,13 +629,13 @@ public final ExprsCodeContext exprsCode() throws RecognitionException { ExprsCodeContext _localctx = new ExprsCodeContext(_ctx, getState()); enterRule(_localctx, 10, RULE_exprsCode); try { - setState(129); + setState(126); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(122); + setState(120); ((ExprsCodeContext)_localctx).topLevelConcat = topLevelConcat(); _localctx.ret.add( ((ExprsCodeContext)_localctx).topLevelConcat.ret ); @@ -649,13 +645,10 @@ public final ExprsCodeContext exprsCode() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(125); + setState(123); ((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; @@ -699,7 +692,7 @@ public final IfConditionContext ifCondition() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(131); + setState(128); ((IfConditionContext)_localctx).conditionOr = conditionOr(); ((IfConditionContext)_localctx).ret = ((IfConditionContext)_localctx).conditionOr.ret; } @@ -751,23 +744,23 @@ public final ConditionOrContext conditionOr() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(134); + setState(131); ((ConditionOrContext)_localctx).left = conditionAnd(); ((ConditionOrContext)_localctx).ret = ((ConditionOrContext)_localctx).left.ret; - setState(142); + setState(139); _errHandler.sync(this); _la = _input.LA(1); while (_la==OR) { { { - setState(136); + setState(133); match(OR); - setState(137); + setState(134); ((ConditionOrContext)_localctx).right = conditionAnd(); ((ConditionOrContext)_localctx).ret = new OrConditionExpr( _localctx.ret, ((ConditionOrContext)_localctx).right.ret ); } } - setState(144); + setState(141); _errHandler.sync(this); _la = _input.LA(1); } @@ -820,23 +813,23 @@ public final ConditionAndContext conditionAnd() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(145); + setState(142); ((ConditionAndContext)_localctx).left = conditionNot(); ((ConditionAndContext)_localctx).ret = ((ConditionAndContext)_localctx).left.ret; - setState(153); + setState(150); _errHandler.sync(this); _la = _input.LA(1); while (_la==AND) { { { - setState(147); + setState(144); match(AND); - setState(148); + setState(145); ((ConditionAndContext)_localctx).right = conditionNot(); ((ConditionAndContext)_localctx).ret = new AndConditionExpr( _localctx.ret, ((ConditionAndContext)_localctx).right.ret ); } } - setState(155); + setState(152); _errHandler.sync(this); _la = _input.LA(1); } @@ -885,14 +878,14 @@ public final ConditionNotContext conditionNot() throws RecognitionException { enterRule(_localctx, 18, RULE_conditionNot); int _la; try { - setState(163); + setState(160); _errHandler.sync(this); switch (_input.LA(1)) { case NOT: case BANG: enterOuterAlt(_localctx, 1); { - setState(156); + setState(153); _la = _input.LA(1); if ( !(_la==NOT || _la==BANG) ) { _errHandler.recoverInline(this); @@ -902,7 +895,7 @@ public final ConditionNotContext conditionNot() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(157); + setState(154); ((ConditionNotContext)_localctx).inner = conditionNot(); ((ConditionNotContext)_localctx).ret = new NotConditionExpr( ((ConditionNotContext)_localctx).inner.ret ); } @@ -913,7 +906,7 @@ public final ConditionNotContext conditionNot() throws RecognitionException { case ID: enterOuterAlt(_localctx, 2); { - setState(160); + setState(157); ((ConditionNotContext)_localctx).conditionAtom = conditionAtom(); ((ConditionNotContext)_localctx).ret = ((ConditionNotContext)_localctx).conditionAtom.ret; } @@ -981,17 +974,17 @@ public final ConditionAtomContext conditionAtom() throws RecognitionException { enterRule(_localctx, 20, RULE_conditionAtom); int _la; try { - setState(178); + setState(175); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(165); + setState(162); match(LPAREN); - setState(166); + setState(163); ((ConditionAtomContext)_localctx).ifCondition = ifCondition(); - setState(167); + setState(164); match(RPAREN); ((ConditionAtomContext)_localctx).ret = ((ConditionAtomContext)_localctx).ifCondition.ret; } @@ -999,12 +992,12 @@ public final ConditionAtomContext conditionAtom() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(170); + setState(167); ((ConditionAtomContext)_localctx).left = exprs(); - setState(171); + setState(168); ((ConditionAtomContext)_localctx).op = _input.LT(1); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 1047552L) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 523776L) != 0)) ) { ((ConditionAtomContext)_localctx).op = (Token)_errHandler.recoverInline(this); } else { @@ -1012,7 +1005,7 @@ public final ConditionAtomContext conditionAtom() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(172); + setState(169); ((ConditionAtomContext)_localctx).right = compareRhs(); ((ConditionAtomContext)_localctx).ret = new CompareConditionExpr( ((ConditionAtomContext)_localctx).left.ret, ((ConditionAtomContext)_localctx).op.getText(), ((ConditionAtomContext)_localctx).right.ret ); @@ -1022,7 +1015,7 @@ public final ConditionAtomContext conditionAtom() throws RecognitionException { case 3: enterOuterAlt(_localctx, 3); { - setState(175); + setState(172); ((ConditionAtomContext)_localctx).exprs = exprs(); ((ConditionAtomContext)_localctx).ret = new FieldConditionExpr( ((ConditionAtomContext)_localctx).exprs.ret ); } @@ -1072,13 +1065,13 @@ public final CompareRhsContext compareRhs() throws RecognitionException { CompareRhsContext _localctx = new CompareRhsContext(_ctx, getState()); enterRule(_localctx, 22, RULE_compareRhs); try { - setState(196); + setState(193); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(180); + setState(177); ((CompareRhsContext)_localctx).SSTRING = match(SSTRING); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( sdStringToString( (((CompareRhsContext)_localctx).SSTRING!=null?((CompareRhsContext)_localctx).SSTRING.getText():null) ) ); } @@ -1086,7 +1079,7 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(182); + setState(179); ((CompareRhsContext)_localctx).DSTRING = match(DSTRING); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( sdStringToString( (((CompareRhsContext)_localctx).DSTRING!=null?((CompareRhsContext)_localctx).DSTRING.getText():null) ) ); } @@ -1094,7 +1087,7 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 3: enterOuterAlt(_localctx, 3); { - setState(184); + setState(181); ((CompareRhsContext)_localctx).DECDIGITS = match(DECDIGITS); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( (((CompareRhsContext)_localctx).DECDIGITS!=null?((CompareRhsContext)_localctx).DECDIGITS.getText():null) ); } @@ -1102,9 +1095,9 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 4: enterOuterAlt(_localctx, 4); { - setState(186); + setState(183); match(MINUS); - setState(187); + setState(184); ((CompareRhsContext)_localctx).DECDIGITS = match(DECDIGITS); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( "-" + (((CompareRhsContext)_localctx).DECDIGITS!=null?((CompareRhsContext)_localctx).DECDIGITS.getText():null) ); } @@ -1112,7 +1105,7 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 5: enterOuterAlt(_localctx, 5); { - setState(189); + setState(186); ((CompareRhsContext)_localctx).FLOAT = match(FLOAT); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( (((CompareRhsContext)_localctx).FLOAT!=null?((CompareRhsContext)_localctx).FLOAT.getText():null) ); } @@ -1120,9 +1113,9 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 6: enterOuterAlt(_localctx, 6); { - setState(191); + setState(188); match(MINUS); - setState(192); + setState(189); ((CompareRhsContext)_localctx).FLOAT = match(FLOAT); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( "-" + (((CompareRhsContext)_localctx).FLOAT!=null?((CompareRhsContext)_localctx).FLOAT.getText():null) ); } @@ -1130,7 +1123,7 @@ public final CompareRhsContext compareRhs() throws RecognitionException { case 7: enterOuterAlt(_localctx, 7); { - setState(194); + setState(191); ((CompareRhsContext)_localctx).BOOLEAN = match(BOOLEAN); ((CompareRhsContext)_localctx).ret = new LiteralCompareValue( (((CompareRhsContext)_localctx).BOOLEAN!=null?((CompareRhsContext)_localctx).BOOLEAN.getText():null) ); } @@ -1176,9 +1169,9 @@ public final DefaultValueContext defaultValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(198); + setState(195); match(DQUESTION); - setState(199); + setState(196); ((DefaultValueContext)_localctx).defaultValueType = defaultValueType(); ((DefaultValueContext)_localctx).ret = ((DefaultValueContext)_localctx).defaultValueType.ret; } @@ -1229,13 +1222,13 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept DefaultValueTypeContext _localctx = new DefaultValueTypeContext(_ctx, getState()); enterRule(_localctx, 26, RULE_defaultValueType); try { - setState(216); + setState(213); _errHandler.sync(this); switch (_input.LA(1)) { case SSTRING: enterOuterAlt(_localctx, 1); { - setState(202); + setState(199); ((DefaultValueTypeContext)_localctx).SSTRING = match(SSTRING); ((DefaultValueTypeContext)_localctx).ret = sdStringToString( (((DefaultValueTypeContext)_localctx).SSTRING!=null?((DefaultValueTypeContext)_localctx).SSTRING.getText():null) ); } @@ -1243,7 +1236,7 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case DSTRING: enterOuterAlt(_localctx, 2); { - setState(204); + setState(201); ((DefaultValueTypeContext)_localctx).DSTRING = match(DSTRING); ((DefaultValueTypeContext)_localctx).ret = sdStringToString((((DefaultValueTypeContext)_localctx).DSTRING!=null?((DefaultValueTypeContext)_localctx).DSTRING.getText():null)); } @@ -1252,7 +1245,7 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case DECDIGITS: enterOuterAlt(_localctx, 3); { - setState(206); + setState(203); ((DefaultValueTypeContext)_localctx).longRule = longRule(); ((DefaultValueTypeContext)_localctx).ret = (((DefaultValueTypeContext)_localctx).longRule!=null?_input.getText(((DefaultValueTypeContext)_localctx).longRule.start,((DefaultValueTypeContext)_localctx).longRule.stop):null); } @@ -1260,7 +1253,7 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case FLOAT: enterOuterAlt(_localctx, 4); { - setState(209); + setState(206); ((DefaultValueTypeContext)_localctx).FLOAT = match(FLOAT); ((DefaultValueTypeContext)_localctx).ret = (((DefaultValueTypeContext)_localctx).FLOAT!=null?((DefaultValueTypeContext)_localctx).FLOAT.getText():null); } @@ -1268,7 +1261,7 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case BOOLEAN: enterOuterAlt(_localctx, 5); { - setState(211); + setState(208); ((DefaultValueTypeContext)_localctx).BOOLEAN = match(BOOLEAN); ((DefaultValueTypeContext)_localctx).ret = (((DefaultValueTypeContext)_localctx).BOOLEAN!=null?((DefaultValueTypeContext)_localctx).BOOLEAN.getText():null); } @@ -1276,9 +1269,9 @@ public final DefaultValueTypeContext defaultValueType() throws RecognitionExcept case LBRACK: enterOuterAlt(_localctx, 6); { - setState(213); + setState(210); match(LBRACK); - setState(214); + setState(211); match(RBRACK); ((DefaultValueTypeContext)_localctx).ret = "[]"; } @@ -1323,17 +1316,17 @@ public final LongRuleContext longRule() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(219); + setState(216); _errHandler.sync(this); _la = _input.LA(1); if (_la==MINUS) { { - setState(218); + setState(215); match(MINUS); } } - setState(221); + setState(218); match(DECDIGITS); } } @@ -1381,23 +1374,23 @@ public final FunctionContext function() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(223); + setState(220); match(SEMI); - setState(224); + setState(221); ((FunctionContext)_localctx).ID = match(ID); - setState(225); + setState(222); match(LPAREN); - setState(227); + setState(224); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 17042430230528L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8521215115264L) != 0)) { { - setState(226); + setState(223); ((FunctionContext)_localctx).functionArgs = functionArgs(); } } - setState(229); + setState(226); 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() ); } @@ -1448,23 +1441,23 @@ public final FunctionArgsContext functionArgs() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(232); + setState(229); ((FunctionArgsContext)_localctx).functionArg = functionArg(); _localctx.ret.add( ((FunctionArgsContext)_localctx).functionArg.ret ); - setState(240); + setState(237); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(234); + setState(231); match(COMMA); - setState(235); + setState(232); ((FunctionArgsContext)_localctx).functionArg = functionArg(); _localctx.ret.add( ((FunctionArgsContext)_localctx).functionArg.ret ); } } - setState(242); + setState(239); _errHandler.sync(this); _la = _input.LA(1); } @@ -1511,13 +1504,13 @@ public final FunctionArgContext functionArg() throws RecognitionException { FunctionArgContext _localctx = new FunctionArgContext(_ctx, getState()); enterRule(_localctx, 34, RULE_functionArg); try { - setState(257); + setState(254); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(243); + setState(240); ((FunctionArgContext)_localctx).DECDIGITS = match(DECDIGITS); ((FunctionArgContext)_localctx).ret = (((FunctionArgContext)_localctx).DECDIGITS!=null?((FunctionArgContext)_localctx).DECDIGITS.getText():null); } @@ -1525,9 +1518,9 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(245); + setState(242); match(MINUS); - setState(246); + setState(243); ((FunctionArgContext)_localctx).DECDIGITS = match(DECDIGITS); ((FunctionArgContext)_localctx).ret = "-" + (((FunctionArgContext)_localctx).DECDIGITS!=null?((FunctionArgContext)_localctx).DECDIGITS.getText():null); } @@ -1535,7 +1528,7 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 3: enterOuterAlt(_localctx, 3); { - setState(248); + setState(245); ((FunctionArgContext)_localctx).FLOAT = match(FLOAT); ((FunctionArgContext)_localctx).ret = (((FunctionArgContext)_localctx).FLOAT!=null?((FunctionArgContext)_localctx).FLOAT.getText():null); } @@ -1543,9 +1536,9 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 4: enterOuterAlt(_localctx, 4); { - setState(250); + setState(247); match(MINUS); - setState(251); + setState(248); ((FunctionArgContext)_localctx).FLOAT = match(FLOAT); ((FunctionArgContext)_localctx).ret = "-" + (((FunctionArgContext)_localctx).FLOAT!=null?((FunctionArgContext)_localctx).FLOAT.getText():null); } @@ -1553,7 +1546,7 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 5: enterOuterAlt(_localctx, 5); { - setState(253); + setState(250); ((FunctionArgContext)_localctx).SSTRING = match(SSTRING); ((FunctionArgContext)_localctx).ret = sStringToDString( (((FunctionArgContext)_localctx).SSTRING!=null?((FunctionArgContext)_localctx).SSTRING.getText():null) ); } @@ -1561,7 +1554,7 @@ public final FunctionArgContext functionArg() throws RecognitionException { case 6: enterOuterAlt(_localctx, 6); { - setState(255); + setState(252); ((FunctionArgContext)_localctx).DSTRING = match(DSTRING); ((FunctionArgContext)_localctx).ret = (((FunctionArgContext)_localctx).DSTRING!=null?((FunctionArgContext)_localctx).DSTRING.getText():null); } @@ -1579,95 +1572,6 @@ public final FunctionArgContext functionArg() throws RecognitionException { return _localctx; } - @SuppressWarnings("CheckReturnValue") - public static class OrExprsContext extends ParserRuleContext { - public ArrayList ret = new ArrayList(); - public ExprsContext exprs; - public List DEFAULT() { return getTokens(TemplateGrammarExpression.DEFAULT); } - public TerminalNode DEFAULT(int i) { - return getToken(TemplateGrammarExpression.DEFAULT, i); - } - public List exprs() { - return getRuleContexts(ExprsContext.class); - } - public ExprsContext exprs(int i) { - return getRuleContext(ExprsContext.class,i); - } - public OrExprsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_orExprs; } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof TemplateGrammarExpressionListener ) ((TemplateGrammarExpressionListener)listener).enterOrExprs(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof TemplateGrammarExpressionListener ) ((TemplateGrammarExpressionListener)listener).exitOrExprs(this); - } - } - - public final OrExprsContext orExprs() throws RecognitionException { - OrExprsContext _localctx = new OrExprsContext(_ctx, getState()); - enterRule(_localctx, 36, RULE_orExprs); - int _la; - try { - setState(272); - _errHandler.sync(this); - switch (_input.LA(1)) { - case DEFAULT: - enterOuterAlt(_localctx, 1); - { - { - setState(259); - match(DEFAULT); - setState(260); - ((OrExprsContext)_localctx).exprs = exprs(); - _localctx.ret.add( ((OrExprsContext)_localctx).exprs.ret ); - setState(268); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==DEFAULT) { - { - { - setState(262); - match(DEFAULT); - setState(263); - ((OrExprsContext)_localctx).exprs = exprs(); - _localctx.ret.add( ((OrExprsContext)_localctx).exprs.ret ); - } - } - setState(270); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - break; - case EOF: - case IF: - case RBRACE: - case DQUESTION: - case SEMI: - enterOuterAlt(_localctx, 2); - { - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - @SuppressWarnings("CheckReturnValue") public static class ExprsContext extends ParserRuleContext { public Exprs ret = new Exprs(); @@ -1709,46 +1613,46 @@ public void exitRule(ParseTreeListener listener) { public final ExprsContext exprs() throws RecognitionException { ExprsContext _localctx = new ExprsContext(_ctx, getState()); - enterRule(_localctx, 38, RULE_exprs); + enterRule(_localctx, 36, RULE_exprs); int _la; try { int _alt; - setState(365); + setState(347); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(274); + setState(256); match(ROOT); - setState(275); + setState(257); match(DOT); - setState(276); + setState(258); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.rootScoped = true; _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(284); + setState(266); _errHandler.sync(this); _la = _input.LA(1); while (_la==DOT) { { { - setState(278); + setState(260); match(DOT); - setState(279); + setState(261); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); } } - setState(286); + setState(268); _errHandler.sync(this); _la = _input.LA(1); } - setState(288); + setState(270); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 395136991232L) != 0)) { { - setState(287); + setState(269); ((ExprsContext)_localctx).math = math(); } } @@ -1759,32 +1663,32 @@ public final ExprsContext exprs() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(292); + setState(274); ((ExprsContext)_localctx).VAR_ID = match(VAR_ID); _localctx.ret.varName = (((ExprsContext)_localctx).VAR_ID!=null?((ExprsContext)_localctx).VAR_ID.getText():null).substring( 1 ); - setState(300); + setState(282); _errHandler.sync(this); _la = _input.LA(1); while (_la==DOT) { { { - setState(294); + setState(276); match(DOT); - setState(295); + setState(277); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); } } - setState(302); + setState(284); _errHandler.sync(this); _la = _input.LA(1); } - setState(304); + setState(286); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 395136991232L) != 0)) { { - setState(303); + setState(285); ((ExprsContext)_localctx).math = math(); } } @@ -1795,15 +1699,15 @@ public final ExprsContext exprs() throws RecognitionException { case 3: enterOuterAlt(_localctx, 3); { - setState(307); + setState(289); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(310); + setState(292); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 395136991232L) != 0)) { { - setState(309); + setState(291); ((ExprsContext)_localctx).math = math(); } } @@ -1814,20 +1718,20 @@ public final ExprsContext exprs() throws RecognitionException { case 4: enterOuterAlt(_localctx, 4); { - setState(314); + setState(296); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(317); + setState(299); _errHandler.sync(this); _la = _input.LA(1); if (_la==DOT) { { - setState(316); + setState(298); match(DOT); } } - setState(319); + setState(301); ((ExprsContext)_localctx).concatenation = concatenation(); _localctx.ret.concatenation = ((ExprsContext)_localctx).concatenation.ret; } @@ -1835,19 +1739,19 @@ public final ExprsContext exprs() throws RecognitionException { case 5: enterOuterAlt(_localctx, 5); { - setState(322); + setState(304); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(330); + setState(312); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,29,_ctx); + _alt = getInterpreter().adaptivePredict(_input,27,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(324); + setState(306); match(DOT); - setState(325); + setState(307); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); @@ -1855,21 +1759,21 @@ public final ExprsContext exprs() throws RecognitionException { } } } - setState(332); + setState(314); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,29,_ctx); + _alt = getInterpreter().adaptivePredict(_input,27,_ctx); } - setState(333); + setState(315); match(DOT); - setState(334); + setState(316); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(337); + setState(319); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 395136991232L) != 0)) { { - setState(336); + setState(318); ((ExprsContext)_localctx).math = math(); } } @@ -1880,52 +1784,52 @@ public final ExprsContext exprs() throws RecognitionException { case 6: enterOuterAlt(_localctx, 6); { - setState(341); + setState(323); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(349); + setState(331); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,31,_ctx); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(343); + setState(325); match(DOT); - setState(344); + setState(326); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); } } } - setState(351); + setState(333); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,31,_ctx); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); } - setState(352); + setState(334); match(DOT); - setState(353); + setState(335); ((ExprsContext)_localctx).expr = expr(); _localctx.ret.exprs.add( ((ExprsContext)_localctx).expr.ret ); - setState(356); + setState(338); _errHandler.sync(this); _la = _input.LA(1); if (_la==DOT) { { - setState(355); + setState(337); match(DOT); } } - setState(358); + setState(340); ((ExprsContext)_localctx).concatenation = concatenation(); _localctx.ret.concatenation = ((ExprsContext)_localctx).concatenation.ret; - setState(361); + setState(343); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 395136991232L) != 0)) { { - setState(360); + setState(342); ((ExprsContext)_localctx).math = math(); } } @@ -1973,31 +1877,31 @@ public void exitRule(ParseTreeListener listener) { public final ExprContext expr() throws RecognitionException { ExprContext _localctx = new ExprContext(_ctx, getState()); - enterRule(_localctx, 40, RULE_expr); + enterRule(_localctx, 38, RULE_expr); int _la; try { - setState(377); + setState(359); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { { - setState(367); + setState(349); ((ExprContext)_localctx).ID = match(ID); - setState(368); + setState(350); match(LPAREN); - setState(370); + setState(352); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 17042430230528L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 8521215115264L) != 0)) { { - setState(369); + setState(351); ((ExprContext)_localctx).functionArgs = functionArgs(); } } - setState(372); + setState(354); 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() ); @@ -2006,7 +1910,7 @@ public final ExprContext expr() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(375); + setState(357); ((ExprContext)_localctx).ID = match(ID); ((ExprContext)_localctx).ret = new Expr((((ExprContext)_localctx).ID!=null?((ExprContext)_localctx).ID.getText():null), false, List.of() ); } @@ -2049,16 +1953,16 @@ public void exitRule(ParseTreeListener listener) { public final ConcatenationContext concatenation() throws RecognitionException { ConcatenationContext _localctx = new ConcatenationContext(_ctx, getState()); - enterRule(_localctx, 42, RULE_concatenation); + enterRule(_localctx, 40, RULE_concatenation); try { enterOuterAlt(_localctx, 1); { - setState(379); + setState(361); match(LBRACE); - setState(380); + setState(362); ((ConcatenationContext)_localctx).citems = citems(); ((ConcatenationContext)_localctx).ret = new Concatenation( ((ConcatenationContext)_localctx).citems.ret ); - setState(382); + setState(364); match(RBRACE); } } @@ -2103,28 +2007,28 @@ public void exitRule(ParseTreeListener listener) { public final CitemsContext citems() throws RecognitionException { CitemsContext _localctx = new CitemsContext(_ctx, getState()); - enterRule(_localctx, 44, RULE_citems); + enterRule(_localctx, 42, RULE_citems); int _la; try { enterOuterAlt(_localctx, 1); { - setState(384); + setState(366); ((CitemsContext)_localctx).citem = citem(); _localctx.ret.add( ((CitemsContext)_localctx).citem.ret ); - setState(392); + setState(374); _errHandler.sync(this); _la = _input.LA(1); while (_la==PLUS) { { { - setState(386); + setState(368); match(PLUS); - setState(387); + setState(369); ((CitemsContext)_localctx).citem = citem(); _localctx.ret.add( ((CitemsContext)_localctx).citem.ret ); } } - setState(394); + setState(376); _errHandler.sync(this); _la = _input.LA(1); } @@ -2170,15 +2074,15 @@ public void exitRule(ParseTreeListener listener) { public final CitemContext citem() throws RecognitionException { CitemContext _localctx = new CitemContext(_ctx, getState()); - enterRule(_localctx, 46, RULE_citem); + enterRule(_localctx, 44, RULE_citem); try { - setState(405); + setState(387); _errHandler.sync(this); switch (_input.LA(1)) { case ID: enterOuterAlt(_localctx, 1); { - setState(395); + setState(377); ((CitemContext)_localctx).ID = match(ID); ((CitemContext)_localctx).ret = new Expr( (((CitemContext)_localctx).ID!=null?((CitemContext)_localctx).ID.getText():null), false, List.of() ); } @@ -2186,7 +2090,7 @@ public final CitemContext citem() throws RecognitionException { case DSTRING: enterOuterAlt(_localctx, 2); { - setState(397); + setState(379); ((CitemContext)_localctx).DSTRING = match(DSTRING); ((CitemContext)_localctx).ret = sdStringToString( (((CitemContext)_localctx).DSTRING!=null?((CitemContext)_localctx).DSTRING.getText():null) ); } @@ -2194,7 +2098,7 @@ public final CitemContext citem() throws RecognitionException { case SSTRING: enterOuterAlt(_localctx, 3); { - setState(399); + setState(381); ((CitemContext)_localctx).SSTRING = match(SSTRING); ((CitemContext)_localctx).ret = sdStringToString( (((CitemContext)_localctx).SSTRING!=null?((CitemContext)_localctx).SSTRING.getText():null) ); } @@ -2202,7 +2106,7 @@ public final CitemContext citem() throws RecognitionException { case DECDIGITS: enterOuterAlt(_localctx, 4); { - setState(401); + setState(383); ((CitemContext)_localctx).DECDIGITS = match(DECDIGITS); ((CitemContext)_localctx).ret = new NumericLiteral( (((CitemContext)_localctx).DECDIGITS!=null?((CitemContext)_localctx).DECDIGITS.getText():null) ); } @@ -2210,7 +2114,7 @@ public final CitemContext citem() throws RecognitionException { case FLOAT: enterOuterAlt(_localctx, 5); { - setState(403); + setState(385); ((CitemContext)_localctx).FLOAT = match(FLOAT); ((CitemContext)_localctx).ret = new NumericLiteral( (((CitemContext)_localctx).FLOAT!=null?((CitemContext)_localctx).FLOAT.getText():null) ); } @@ -2257,13 +2161,13 @@ public void exitRule(ParseTreeListener listener) { public final MathContext math() throws RecognitionException { MathContext _localctx = new MathContext(_ctx, getState()); - enterRule(_localctx, 48, RULE_math); + enterRule(_localctx, 46, RULE_math); try { enterOuterAlt(_localctx, 1); { - setState(407); + setState(389); ((MathContext)_localctx).mathOperation = mathOperation(); - setState(408); + setState(390); ((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) ); } @@ -2299,13 +2203,12 @@ public void exitRule(ParseTreeListener listener) { public final NumberContext number() throws RecognitionException { NumberContext _localctx = new NumberContext(_ctx, getState()); - enterRule(_localctx, 50, RULE_number); + enterRule(_localctx, 48, RULE_number); try { - setState(414); + setState(396); _errHandler.sync(this); switch (_input.LA(1)) { case EOF: - case DEFAULT: case IF: case THEN: case ELSE: @@ -2334,14 +2237,14 @@ public final NumberContext number() throws RecognitionException { case DECDIGITS: enterOuterAlt(_localctx, 2); { - setState(412); + setState(394); match(DECDIGITS); } break; case FLOAT: enterOuterAlt(_localctx, 3); { - setState(413); + setState(395); match(FLOAT); } break; @@ -2382,14 +2285,14 @@ public void exitRule(ParseTreeListener listener) { public final MathOperationContext mathOperation() throws RecognitionException { MathOperationContext _localctx = new MathOperationContext(_ctx, getState()); - enterRule(_localctx, 52, RULE_mathOperation); + enterRule(_localctx, 50, RULE_mathOperation); int _la; try { enterOuterAlt(_localctx, 1); { - setState(416); + setState(398); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 790273982464L) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 395136991232L) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2411,7 +2314,7 @@ public final MathOperationContext mathOperation() throws RecognitionException { } public static final String _serializedATN = - "\u0004\u00012\u01a3\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+ + "\u0004\u00011\u0191\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"+ @@ -2419,281 +2322,268 @@ 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"+ - "\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\u0019\u0007\u0019\u0001\u0000\u0003\u00006\b\u0000\u0001\u0000"+ + "\u0003\u00009\b\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0003\u0000"+ + ">\b\u0000\u0001\u0000\u0003\u0000A\b\u0000\u0001\u0000\u0003\u0000D\b"+ + "\u0000\u0001\u0000\u0001\u0000\u0003\u0000H\b\u0000\u0001\u0000\u0001"+ + "\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0003\u0001R\b\u0001\u0001\u0001\u0001\u0001\u0001\u0001\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"+ + "\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003"+ + "\u0002c\b\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001"+ + "\u0003\u0001\u0003\u0004\u0003k\b\u0003\u000b\u0003\f\u0003l\u0001\u0004"+ + "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0004\u0004"+ + "u\b\u0004\u000b\u0004\f\u0004v\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+ + "\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u007f\b\u0005\u0001\u0006\u0001"+ + "\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001"+ + "\u0007\u0001\u0007\u0005\u0007\u008a\b\u0007\n\u0007\f\u0007\u008d\t\u0007"+ + "\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0005\b\u0095\b\b\n\b"+ + "\f\b\u0098\t\b\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t"+ + "\u0003\t\u00a1\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\u00b0\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\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\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"; + "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u00c2\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\u00d6\b\r\u0001\u000e\u0003\u000e\u00d9\b\u000e\u0001\u000e\u0001\u000e"+ + "\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0003\u000f\u00e1\b\u000f"+ + "\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010"+ + "\u0001\u0010\u0001\u0010\u0001\u0010\u0005\u0010\u00ec\b\u0010\n\u0010"+ + "\f\u0010\u00ef\t\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+ + "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+ + "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0003\u0011\u00ff\b\u0011"+ + "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+ + "\u0001\u0012\u0001\u0012\u0005\u0012\u0109\b\u0012\n\u0012\f\u0012\u010c"+ + "\t\u0012\u0001\u0012\u0003\u0012\u010f\b\u0012\u0001\u0012\u0001\u0012"+ + "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+ + "\u0005\u0012\u0119\b\u0012\n\u0012\f\u0012\u011c\t\u0012\u0001\u0012\u0003"+ + "\u0012\u011f\b\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0003"+ + "\u0012\u0125\b\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+ + "\u0012\u0003\u0012\u012c\b\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+ + "\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0005"+ + "\u0012\u0137\b\u0012\n\u0012\f\u0012\u013a\t\u0012\u0001\u0012\u0001\u0012"+ + "\u0001\u0012\u0001\u0012\u0003\u0012\u0140\b\u0012\u0001\u0012\u0001\u0012"+ + "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+ + "\u0005\u0012\u014a\b\u0012\n\u0012\f\u0012\u014d\t\u0012\u0001\u0012\u0001"+ + "\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u0153\b\u0012\u0001\u0012\u0001"+ + "\u0012\u0001\u0012\u0003\u0012\u0158\b\u0012\u0001\u0012\u0001\u0012\u0003"+ + "\u0012\u015c\b\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0003\u0013\u0161"+ + "\b\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0003"+ + "\u0013\u0168\b\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001"+ + "\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001"+ + "\u0015\u0005\u0015\u0175\b\u0015\n\u0015\f\u0015\u0178\t\u0015\u0001\u0016"+ + "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+ + "\u0001\u0016\u0001\u0016\u0001\u0016\u0003\u0016\u0184\b\u0016\u0001\u0017"+ + "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018"+ + "\u0003\u0018\u018d\b\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0000\u0000"+ + "\u001a\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018"+ + "\u001a\u001c\u001e \"$&(*,.02\u0000\u0003\u0001\u0000\u0007\b\u0001\u0000"+ + "\t\u0012\u0002\u0000\"$&&\u01b3\u00005\u0001\u0000\u0000\u0000\u0002K"+ + "\u0001\u0000\u0000\u0000\u0004b\u0001\u0000\u0000\u0000\u0006d\u0001\u0000"+ + "\u0000\u0000\bn\u0001\u0000\u0000\u0000\n~\u0001\u0000\u0000\u0000\f\u0080"+ + "\u0001\u0000\u0000\u0000\u000e\u0083\u0001\u0000\u0000\u0000\u0010\u008e"+ + "\u0001\u0000\u0000\u0000\u0012\u00a0\u0001\u0000\u0000\u0000\u0014\u00af"+ + "\u0001\u0000\u0000\u0000\u0016\u00c1\u0001\u0000\u0000\u0000\u0018\u00c3"+ + "\u0001\u0000\u0000\u0000\u001a\u00d5\u0001\u0000\u0000\u0000\u001c\u00d8"+ + "\u0001\u0000\u0000\u0000\u001e\u00dc\u0001\u0000\u0000\u0000 \u00e5\u0001"+ + "\u0000\u0000\u0000\"\u00fe\u0001\u0000\u0000\u0000$\u015b\u0001\u0000"+ + "\u0000\u0000&\u0167\u0001\u0000\u0000\u0000(\u0169\u0001\u0000\u0000\u0000"+ + "*\u016e\u0001\u0000\u0000\u0000,\u0183\u0001\u0000\u0000\u0000.\u0185"+ + "\u0001\u0000\u0000\u00000\u018c\u0001\u0000\u0000\u00002\u018e\u0001\u0000"+ + "\u0000\u000046\u0005\u0015\u0000\u000054\u0001\u0000\u0000\u000056\u0001"+ + "\u0000\u0000\u000068\u0001\u0000\u0000\u000079\u0005-\u0000\u000087\u0001"+ + "\u0000\u0000\u000089\u0001\u0000\u0000\u00009=\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>@\u0001\u0000\u0000\u0000?A\u0003\u0018\f\u0000@?\u0001\u0000\u0000"+ + "\u0000@A\u0001\u0000\u0000\u0000AC\u0001\u0000\u0000\u0000BD\u0003\u001e"+ + "\u000f\u0000CB\u0001\u0000\u0000\u0000CD\u0001\u0000\u0000\u0000DG\u0001"+ + "\u0000\u0000\u0000EF\u0005\u0001\u0000\u0000FH\u0003\f\u0006\u0000GE\u0001"+ + "\u0000\u0000\u0000GH\u0001\u0000\u0000\u0000HI\u0001\u0000\u0000\u0000"+ + "IJ\u0006\u0000\uffff\uffff\u0000J\u0001\u0001\u0000\u0000\u0000KL\u0005"+ + "\u0001\u0000\u0000LM\u0003\f\u0006\u0000MN\u0005\u0002\u0000\u0000NQ\u0003"+ + "$\u0012\u0000OP\u0005\u0003\u0000\u0000PR\u0003$\u0012\u0000QO\u0001\u0000"+ + "\u0000\u0000QR\u0001\u0000\u0000\u0000RS\u0001\u0000\u0000\u0000ST\u0005"+ + "\u0004\u0000\u0000TU\u0006\u0001\uffff\uffff\u0000U\u0003\u0001\u0000"+ + "\u0000\u0000VW\u0003$\u0012\u0000WX\u0005\u0018\u0000\u0000XY\u0003\u0006"+ + "\u0003\u0000YZ\u0005\u0019\u0000\u0000Z[\u0006\u0002\uffff\uffff\u0000"+ + "[c\u0001\u0000\u0000\u0000\\]\u0003$\u0012\u0000]^\u0005\u0018\u0000\u0000"+ + "^_\u0003\n\u0005\u0000_`\u0005\u0019\u0000\u0000`a\u0006\u0002\uffff\uffff"+ + "\u0000ac\u0001\u0000\u0000\u0000bV\u0001\u0000\u0000\u0000b\\\u0001\u0000"+ + "\u0000\u0000c\u0005\u0001\u0000\u0000\u0000de\u0003,\u0016\u0000ej\u0006"+ + "\u0003\uffff\uffff\u0000fg\u0005%\u0000\u0000gh\u0003,\u0016\u0000hi\u0006"+ + "\u0003\uffff\uffff\u0000ik\u0001\u0000\u0000\u0000jf\u0001\u0000\u0000"+ + "\u0000kl\u0001\u0000\u0000\u0000lj\u0001\u0000\u0000\u0000lm\u0001\u0000"+ + "\u0000\u0000m\u0007\u0001\u0000\u0000\u0000no\u0003,\u0016\u0000ot\u0006"+ + "\u0004\uffff\uffff\u0000pq\u0005%\u0000\u0000qr\u0003,\u0016\u0000rs\u0006"+ + "\u0004\uffff\uffff\u0000su\u0001\u0000\u0000\u0000tp\u0001\u0000\u0000"+ + "\u0000uv\u0001\u0000\u0000\u0000vt\u0001\u0000\u0000\u0000vw\u0001\u0000"+ + "\u0000\u0000w\t\u0001\u0000\u0000\u0000xy\u0003\b\u0004\u0000yz\u0006"+ + "\u0005\uffff\uffff\u0000z\u007f\u0001\u0000\u0000\u0000{|\u0003$\u0012"+ + "\u0000|}\u0006\u0005\uffff\uffff\u0000}\u007f\u0001\u0000\u0000\u0000"+ + "~x\u0001\u0000\u0000\u0000~{\u0001\u0000\u0000\u0000\u007f\u000b\u0001"+ + "\u0000\u0000\u0000\u0080\u0081\u0003\u000e\u0007\u0000\u0081\u0082\u0006"+ + "\u0006\uffff\uffff\u0000\u0082\r\u0001\u0000\u0000\u0000\u0083\u0084\u0003"+ + "\u0010\b\u0000\u0084\u008b\u0006\u0007\uffff\uffff\u0000\u0085\u0086\u0005"+ + "\u0006\u0000\u0000\u0086\u0087\u0003\u0010\b\u0000\u0087\u0088\u0006\u0007"+ + "\uffff\uffff\u0000\u0088\u008a\u0001\u0000\u0000\u0000\u0089\u0085\u0001"+ + "\u0000\u0000\u0000\u008a\u008d\u0001\u0000\u0000\u0000\u008b\u0089\u0001"+ + "\u0000\u0000\u0000\u008b\u008c\u0001\u0000\u0000\u0000\u008c\u000f\u0001"+ + "\u0000\u0000\u0000\u008d\u008b\u0001\u0000\u0000\u0000\u008e\u008f\u0003"+ + "\u0012\t\u0000\u008f\u0096\u0006\b\uffff\uffff\u0000\u0090\u0091\u0005"+ + "\u0005\u0000\u0000\u0091\u0092\u0003\u0012\t\u0000\u0092\u0093\u0006\b"+ + "\uffff\uffff\u0000\u0093\u0095\u0001\u0000\u0000\u0000\u0094\u0090\u0001"+ + "\u0000\u0000\u0000\u0095\u0098\u0001\u0000\u0000\u0000\u0096\u0094\u0001"+ + "\u0000\u0000\u0000\u0096\u0097\u0001\u0000\u0000\u0000\u0097\u0011\u0001"+ + "\u0000\u0000\u0000\u0098\u0096\u0001\u0000\u0000\u0000\u0099\u009a\u0007"+ + "\u0000\u0000\u0000\u009a\u009b\u0003\u0012\t\u0000\u009b\u009c\u0006\t"+ + "\uffff\uffff\u0000\u009c\u00a1\u0001\u0000\u0000\u0000\u009d\u009e\u0003"+ + "\u0014\n\u0000\u009e\u009f\u0006\t\uffff\uffff\u0000\u009f\u00a1\u0001"+ + "\u0000\u0000\u0000\u00a0\u0099\u0001\u0000\u0000\u0000\u00a0\u009d\u0001"+ + "\u0000\u0000\u0000\u00a1\u0013\u0001\u0000\u0000\u0000\u00a2\u00a3\u0005"+ + "\u001b\u0000\u0000\u00a3\u00a4\u0003\f\u0006\u0000\u00a4\u00a5\u0005\u001c"+ + "\u0000\u0000\u00a5\u00a6\u0006\n\uffff\uffff\u0000\u00a6\u00b0\u0001\u0000"+ + "\u0000\u0000\u00a7\u00a8\u0003$\u0012\u0000\u00a8\u00a9\u0007\u0001\u0000"+ + "\u0000\u00a9\u00aa\u0003\u0016\u000b\u0000\u00aa\u00ab\u0006\n\uffff\uffff"+ + "\u0000\u00ab\u00b0\u0001\u0000\u0000\u0000\u00ac\u00ad\u0003$\u0012\u0000"+ + "\u00ad\u00ae\u0006\n\uffff\uffff\u0000\u00ae\u00b0\u0001\u0000\u0000\u0000"+ + "\u00af\u00a2\u0001\u0000\u0000\u0000\u00af\u00a7\u0001\u0000\u0000\u0000"+ + "\u00af\u00ac\u0001\u0000\u0000\u0000\u00b0\u0015\u0001\u0000\u0000\u0000"+ + "\u00b1\u00b2\u0005(\u0000\u0000\u00b2\u00c2\u0006\u000b\uffff\uffff\u0000"+ + "\u00b3\u00b4\u0005\'\u0000\u0000\u00b4\u00c2\u0006\u000b\uffff\uffff\u0000"+ + "\u00b5\u00b6\u0005)\u0000\u0000\u00b6\u00c2\u0006\u000b\uffff\uffff\u0000"+ + "\u00b7\u00b8\u0005&\u0000\u0000\u00b8\u00b9\u0005)\u0000\u0000\u00b9\u00c2"+ + "\u0006\u000b\uffff\uffff\u0000\u00ba\u00bb\u0005*\u0000\u0000\u00bb\u00c2"+ + "\u0006\u000b\uffff\uffff\u0000\u00bc\u00bd\u0005&\u0000\u0000\u00bd\u00be"+ + "\u0005*\u0000\u0000\u00be\u00c2\u0006\u000b\uffff\uffff\u0000\u00bf\u00c0"+ + "\u0005+\u0000\u0000\u00c0\u00c2\u0006\u000b\uffff\uffff\u0000\u00c1\u00b1"+ + "\u0001\u0000\u0000\u0000\u00c1\u00b3\u0001\u0000\u0000\u0000\u00c1\u00b5"+ + "\u0001\u0000\u0000\u0000\u00c1\u00b7\u0001\u0000\u0000\u0000\u00c1\u00ba"+ + "\u0001\u0000\u0000\u0000\u00c1\u00bc\u0001\u0000\u0000\u0000\u00c1\u00bf"+ + "\u0001\u0000\u0000\u0000\u00c2\u0017\u0001\u0000\u0000\u0000\u00c3\u00c4"+ + "\u0005\u001f\u0000\u0000\u00c4\u00c5\u0003\u001a\r\u0000\u00c5\u00c6\u0006"+ + "\f\uffff\uffff\u0000\u00c6\u0019\u0001\u0000\u0000\u0000\u00c7\u00c8\u0005"+ + "(\u0000\u0000\u00c8\u00d6\u0006\r\uffff\uffff\u0000\u00c9\u00ca\u0005"+ + "\'\u0000\u0000\u00ca\u00d6\u0006\r\uffff\uffff\u0000\u00cb\u00cc\u0003"+ + "\u001c\u000e\u0000\u00cc\u00cd\u0006\r\uffff\uffff\u0000\u00cd\u00d6\u0001"+ + "\u0000\u0000\u0000\u00ce\u00cf\u0005*\u0000\u0000\u00cf\u00d6\u0006\r"+ + "\uffff\uffff\u0000\u00d0\u00d1\u0005+\u0000\u0000\u00d1\u00d6\u0006\r"+ + "\uffff\uffff\u0000\u00d2\u00d3\u0005\u001d\u0000\u0000\u00d3\u00d4\u0005"+ + "\u001e\u0000\u0000\u00d4\u00d6\u0006\r\uffff\uffff\u0000\u00d5\u00c7\u0001"+ + "\u0000\u0000\u0000\u00d5\u00c9\u0001\u0000\u0000\u0000\u00d5\u00cb\u0001"+ + "\u0000\u0000\u0000\u00d5\u00ce\u0001\u0000\u0000\u0000\u00d5\u00d0\u0001"+ + "\u0000\u0000\u0000\u00d5\u00d2\u0001\u0000\u0000\u0000\u00d6\u001b\u0001"+ + "\u0000\u0000\u0000\u00d7\u00d9\u0005&\u0000\u0000\u00d8\u00d7\u0001\u0000"+ + "\u0000\u0000\u00d8\u00d9\u0001\u0000\u0000\u0000\u00d9\u00da\u0001\u0000"+ + "\u0000\u0000\u00da\u00db\u0005)\u0000\u0000\u00db\u001d\u0001\u0000\u0000"+ + "\u0000\u00dc\u00dd\u0005 \u0000\u0000\u00dd\u00de\u0005,\u0000\u0000\u00de"+ + "\u00e0\u0005\u001b\u0000\u0000\u00df\u00e1\u0003 \u0010\u0000\u00e0\u00df"+ + "\u0001\u0000\u0000\u0000\u00e0\u00e1\u0001\u0000\u0000\u0000\u00e1\u00e2"+ + "\u0001\u0000\u0000\u0000\u00e2\u00e3\u0005\u001c\u0000\u0000\u00e3\u00e4"+ + "\u0006\u000f\uffff\uffff\u0000\u00e4\u001f\u0001\u0000\u0000\u0000\u00e5"+ + "\u00e6\u0003\"\u0011\u0000\u00e6\u00ed\u0006\u0010\uffff\uffff\u0000\u00e7"+ + "\u00e8\u0005!\u0000\u0000\u00e8\u00e9\u0003\"\u0011\u0000\u00e9\u00ea"+ + "\u0006\u0010\uffff\uffff\u0000\u00ea\u00ec\u0001\u0000\u0000\u0000\u00eb"+ + "\u00e7\u0001\u0000\u0000\u0000\u00ec\u00ef\u0001\u0000\u0000\u0000\u00ed"+ + "\u00eb\u0001\u0000\u0000\u0000\u00ed\u00ee\u0001\u0000\u0000\u0000\u00ee"+ + "!\u0001\u0000\u0000\u0000\u00ef\u00ed\u0001\u0000\u0000\u0000\u00f0\u00f1"+ + "\u0005)\u0000\u0000\u00f1\u00ff\u0006\u0011\uffff\uffff\u0000\u00f2\u00f3"+ + "\u0005&\u0000\u0000\u00f3\u00f4\u0005)\u0000\u0000\u00f4\u00ff\u0006\u0011"+ + "\uffff\uffff\u0000\u00f5\u00f6\u0005*\u0000\u0000\u00f6\u00ff\u0006\u0011"+ + "\uffff\uffff\u0000\u00f7\u00f8\u0005&\u0000\u0000\u00f8\u00f9\u0005*\u0000"+ + "\u0000\u00f9\u00ff\u0006\u0011\uffff\uffff\u0000\u00fa\u00fb\u0005(\u0000"+ + "\u0000\u00fb\u00ff\u0006\u0011\uffff\uffff\u0000\u00fc\u00fd\u0005\'\u0000"+ + "\u0000\u00fd\u00ff\u0006\u0011\uffff\uffff\u0000\u00fe\u00f0\u0001\u0000"+ + "\u0000\u0000\u00fe\u00f2\u0001\u0000\u0000\u0000\u00fe\u00f5\u0001\u0000"+ + "\u0000\u0000\u00fe\u00f7\u0001\u0000\u0000\u0000\u00fe\u00fa\u0001\u0000"+ + "\u0000\u0000\u00fe\u00fc\u0001\u0000\u0000\u0000\u00ff#\u0001\u0000\u0000"+ + "\u0000\u0100\u0101\u0005\u0014\u0000\u0000\u0101\u0102\u0005\u001a\u0000"+ + "\u0000\u0102\u0103\u0003&\u0013\u0000\u0103\u010a\u0006\u0012\uffff\uffff"+ + "\u0000\u0104\u0105\u0005\u001a\u0000\u0000\u0105\u0106\u0003&\u0013\u0000"+ + "\u0106\u0107\u0006\u0012\uffff\uffff\u0000\u0107\u0109\u0001\u0000\u0000"+ + "\u0000\u0108\u0104\u0001\u0000\u0000\u0000\u0109\u010c\u0001\u0000\u0000"+ + "\u0000\u010a\u0108\u0001\u0000\u0000\u0000\u010a\u010b\u0001\u0000\u0000"+ + "\u0000\u010b\u010e\u0001\u0000\u0000\u0000\u010c\u010a\u0001\u0000\u0000"+ + "\u0000\u010d\u010f\u0003.\u0017\u0000\u010e\u010d\u0001\u0000\u0000\u0000"+ + "\u010e\u010f\u0001\u0000\u0000\u0000\u010f\u0110\u0001\u0000\u0000\u0000"+ + "\u0110\u0111\u0006\u0012\uffff\uffff\u0000\u0111\u015c\u0001\u0000\u0000"+ + "\u0000\u0112\u0113\u0005\u0013\u0000\u0000\u0113\u011a\u0006\u0012\uffff"+ + "\uffff\u0000\u0114\u0115\u0005\u001a\u0000\u0000\u0115\u0116\u0003&\u0013"+ + "\u0000\u0116\u0117\u0006\u0012\uffff\uffff\u0000\u0117\u0119\u0001\u0000"+ + "\u0000\u0000\u0118\u0114\u0001\u0000\u0000\u0000\u0119\u011c\u0001\u0000"+ + "\u0000\u0000\u011a\u0118\u0001\u0000\u0000\u0000\u011a\u011b\u0001\u0000"+ + "\u0000\u0000\u011b\u011e\u0001\u0000\u0000\u0000\u011c\u011a\u0001\u0000"+ + "\u0000\u0000\u011d\u011f\u0003.\u0017\u0000\u011e\u011d\u0001\u0000\u0000"+ + "\u0000\u011e\u011f\u0001\u0000\u0000\u0000\u011f\u0120\u0001\u0000\u0000"+ + "\u0000\u0120\u015c\u0006\u0012\uffff\uffff\u0000\u0121\u0122\u0003&\u0013"+ + "\u0000\u0122\u0124\u0006\u0012\uffff\uffff\u0000\u0123\u0125\u0003.\u0017"+ + "\u0000\u0124\u0123\u0001\u0000\u0000\u0000\u0124\u0125\u0001\u0000\u0000"+ + "\u0000\u0125\u0126\u0001\u0000\u0000\u0000\u0126\u0127\u0006\u0012\uffff"+ + "\uffff\u0000\u0127\u015c\u0001\u0000\u0000\u0000\u0128\u0129\u0003&\u0013"+ + "\u0000\u0129\u012b\u0006\u0012\uffff\uffff\u0000\u012a\u012c\u0005\u001a"+ + "\u0000\u0000\u012b\u012a\u0001\u0000\u0000\u0000\u012b\u012c\u0001\u0000"+ + "\u0000\u0000\u012c\u012d\u0001\u0000\u0000\u0000\u012d\u012e\u0003(\u0014"+ + "\u0000\u012e\u012f\u0006\u0012\uffff\uffff\u0000\u012f\u015c\u0001\u0000"+ + "\u0000\u0000\u0130\u0131\u0003&\u0013\u0000\u0131\u0138\u0006\u0012\uffff"+ + "\uffff\u0000\u0132\u0133\u0005\u001a\u0000\u0000\u0133\u0134\u0003&\u0013"+ + "\u0000\u0134\u0135\u0006\u0012\uffff\uffff\u0000\u0135\u0137\u0001\u0000"+ + "\u0000\u0000\u0136\u0132\u0001\u0000\u0000\u0000\u0137\u013a\u0001\u0000"+ + "\u0000\u0000\u0138\u0136\u0001\u0000\u0000\u0000\u0138\u0139\u0001\u0000"+ + "\u0000\u0000\u0139\u013b\u0001\u0000\u0000\u0000\u013a\u0138\u0001\u0000"+ + "\u0000\u0000\u013b\u013c\u0005\u001a\u0000\u0000\u013c\u013d\u0003&\u0013"+ + "\u0000\u013d\u013f\u0006\u0012\uffff\uffff\u0000\u013e\u0140\u0003.\u0017"+ + "\u0000\u013f\u013e\u0001\u0000\u0000\u0000\u013f\u0140\u0001\u0000\u0000"+ + "\u0000\u0140\u0141\u0001\u0000\u0000\u0000\u0141\u0142\u0006\u0012\uffff"+ + "\uffff\u0000\u0142\u015c\u0001\u0000\u0000\u0000\u0143\u0144\u0003&\u0013"+ + "\u0000\u0144\u014b\u0006\u0012\uffff\uffff\u0000\u0145\u0146\u0005\u001a"+ + "\u0000\u0000\u0146\u0147\u0003&\u0013\u0000\u0147\u0148\u0006\u0012\uffff"+ + "\uffff\u0000\u0148\u014a\u0001\u0000\u0000\u0000\u0149\u0145\u0001\u0000"+ + "\u0000\u0000\u014a\u014d\u0001\u0000\u0000\u0000\u014b\u0149\u0001\u0000"+ + "\u0000\u0000\u014b\u014c\u0001\u0000\u0000\u0000\u014c\u014e\u0001\u0000"+ + "\u0000\u0000\u014d\u014b\u0001\u0000\u0000\u0000\u014e\u014f\u0005\u001a"+ + "\u0000\u0000\u014f\u0150\u0003&\u0013\u0000\u0150\u0152\u0006\u0012\uffff"+ + "\uffff\u0000\u0151\u0153\u0005\u001a\u0000\u0000\u0152\u0151\u0001\u0000"+ + "\u0000\u0000\u0152\u0153\u0001\u0000\u0000\u0000\u0153\u0154\u0001\u0000"+ + "\u0000\u0000\u0154\u0155\u0003(\u0014\u0000\u0155\u0157\u0006\u0012\uffff"+ + "\uffff\u0000\u0156\u0158\u0003.\u0017\u0000\u0157\u0156\u0001\u0000\u0000"+ + "\u0000\u0157\u0158\u0001\u0000\u0000\u0000\u0158\u0159\u0001\u0000\u0000"+ + "\u0000\u0159\u015a\u0006\u0012\uffff\uffff\u0000\u015a\u015c\u0001\u0000"+ + "\u0000\u0000\u015b\u0100\u0001\u0000\u0000\u0000\u015b\u0112\u0001\u0000"+ + "\u0000\u0000\u015b\u0121\u0001\u0000\u0000\u0000\u015b\u0128\u0001\u0000"+ + "\u0000\u0000\u015b\u0130\u0001\u0000\u0000\u0000\u015b\u0143\u0001\u0000"+ + "\u0000\u0000\u015c%\u0001\u0000\u0000\u0000\u015d\u015e\u0005,\u0000\u0000"+ + "\u015e\u0160\u0005\u001b\u0000\u0000\u015f\u0161\u0003 \u0010\u0000\u0160"+ + "\u015f\u0001\u0000\u0000\u0000\u0160\u0161\u0001\u0000\u0000\u0000\u0161"+ + "\u0162\u0001\u0000\u0000\u0000\u0162\u0163\u0005\u001c\u0000\u0000\u0163"+ + "\u0164\u0001\u0000\u0000\u0000\u0164\u0168\u0006\u0013\uffff\uffff\u0000"+ + "\u0165\u0166\u0005,\u0000\u0000\u0166\u0168\u0006\u0013\uffff\uffff\u0000"+ + "\u0167\u015d\u0001\u0000\u0000\u0000\u0167\u0165\u0001\u0000\u0000\u0000"+ + "\u0168\'\u0001\u0000\u0000\u0000\u0169\u016a\u0005\u0018\u0000\u0000\u016a"+ + "\u016b\u0003*\u0015\u0000\u016b\u016c\u0006\u0014\uffff\uffff\u0000\u016c"+ + "\u016d\u0005\u0019\u0000\u0000\u016d)\u0001\u0000\u0000\u0000\u016e\u016f"+ + "\u0003,\u0016\u0000\u016f\u0176\u0006\u0015\uffff\uffff\u0000\u0170\u0171"+ + "\u0005%\u0000\u0000\u0171\u0172\u0003,\u0016\u0000\u0172\u0173\u0006\u0015"+ + "\uffff\uffff\u0000\u0173\u0175\u0001\u0000\u0000\u0000\u0174\u0170\u0001"+ + "\u0000\u0000\u0000\u0175\u0178\u0001\u0000\u0000\u0000\u0176\u0174\u0001"+ + "\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000\u0000\u0177+\u0001\u0000"+ + "\u0000\u0000\u0178\u0176\u0001\u0000\u0000\u0000\u0179\u017a\u0005,\u0000"+ + "\u0000\u017a\u0184\u0006\u0016\uffff\uffff\u0000\u017b\u017c\u0005\'\u0000"+ + "\u0000\u017c\u0184\u0006\u0016\uffff\uffff\u0000\u017d\u017e\u0005(\u0000"+ + "\u0000\u017e\u0184\u0006\u0016\uffff\uffff\u0000\u017f\u0180\u0005)\u0000"+ + "\u0000\u0180\u0184\u0006\u0016\uffff\uffff\u0000\u0181\u0182\u0005*\u0000"+ + "\u0000\u0182\u0184\u0006\u0016\uffff\uffff\u0000\u0183\u0179\u0001\u0000"+ + "\u0000\u0000\u0183\u017b\u0001\u0000\u0000\u0000\u0183\u017d\u0001\u0000"+ + "\u0000\u0000\u0183\u017f\u0001\u0000\u0000\u0000\u0183\u0181\u0001\u0000"+ + "\u0000\u0000\u0184-\u0001\u0000\u0000\u0000\u0185\u0186\u00032\u0019\u0000"+ + "\u0186\u0187\u00030\u0018\u0000\u0187\u0188\u0006\u0017\uffff\uffff\u0000"+ + "\u0188/\u0001\u0000\u0000\u0000\u0189\u018d\u0001\u0000\u0000\u0000\u018a"+ + "\u018d\u0005)\u0000\u0000\u018b\u018d\u0005*\u0000\u0000\u018c\u0189\u0001"+ + "\u0000\u0000\u0000\u018c\u018a\u0001\u0000\u0000\u0000\u018c\u018b\u0001"+ + "\u0000\u0000\u0000\u018d1\u0001\u0000\u0000\u0000\u018e\u018f\u0007\u0002"+ + "\u0000\u0000\u018f3\u0001\u0000\u0000\u0000&58=@CGQblv~\u008b\u0096\u00a0"+ + "\u00af\u00c1\u00d5\u00d8\u00e0\u00ed\u00fe\u010a\u010e\u011a\u011e\u0124"+ + "\u012b\u0138\u013f\u014b\u0152\u0157\u015b\u0160\u0167\u0176\u0183\u018c"; 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 c5b7b605bd..e57a89a05a 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 @@ -1,68 +1,67 @@ -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 -'if'=2 -'then'=3 -'else'=4 -'end'=5 -'and'=6 -'or'=7 -'not'=8 -'!'=9 -'eq'=10 -'ne'=11 -'eqi'=12 -'contains'=13 -'=='=14 -'!='=15 -'>='=16 -'<='=17 -'>'=18 -'<'=19 +IF=1 +THEN=2 +ELSE=3 +END=4 +AND=5 +OR=6 +NOT=7 +BANG=8 +EQ_KW=9 +NE_KW=10 +EQI_KW=11 +CONTAINS_KW=12 +EQEQ=13 +NEQ=14 +GE_OP=15 +LE_OP=16 +GT_OP=17 +LT_OP=18 +VAR_ID=19 +ROOT=20 +BLOCK_COMMENT=21 +HORZ_WS=22 +VERT_WS=23 +LBRACE=24 +RBRACE=25 +DOT=26 +LPAREN=27 +RPAREN=28 +LBRACK=29 +RBRACK=30 +DQUESTION=31 +SEMI=32 +COMMA=33 +STAR=34 +SLASH=35 +PERCENT=36 +PLUS=37 +MINUS=38 +DSTRING=39 +SSTRING=40 +DECDIGITS=41 +FLOAT=42 +BOOLEAN=43 +ID=44 +CAST_TYPE=45 +ERR_CHAR=46 +C_HORZ_WS=47 +C_VERT_WS=48 +CERR_CHAR=49 +'if'=1 +'then'=2 +'else'=3 +'end'=4 +'and'=5 +'or'=6 +'not'=7 +'!'=8 +'eq'=9 +'ne'=10 +'eqi'=11 +'contains'=12 +'=='=13 +'!='=14 +'>='=15 +'<='=16 +'>'=17 +'<'=18 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 5a928ae667..f8f04cbf20 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 @@ -250,18 +250,6 @@ public class TemplateGrammarExpressionBaseListener implements TemplateGrammarExp *

The default implementation does nothing.

*/ @Override public void exitFunctionArg(TemplateGrammarExpression.FunctionArgContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterOrExprs(TemplateGrammarExpression.OrExprsContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitOrExprs(TemplateGrammarExpression.OrExprsContext 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 dda23399d0..2aa4a63c56 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 @@ -209,16 +209,6 @@ public interface TemplateGrammarExpressionListener extends ParseTreeListener { * @param ctx the parse tree */ void exitFunctionArg(TemplateGrammarExpression.FunctionArgContext ctx); - /** - * Enter a parse tree produced by {@link TemplateGrammarExpression#orExprs}. - * @param ctx the parse tree - */ - void enterOrExprs(TemplateGrammarExpression.OrExprsContext ctx); - /** - * Exit a parse tree produced by {@link TemplateGrammarExpression#orExprs}. - * @param ctx the parse tree - */ - void exitOrExprs(TemplateGrammarExpression.OrExprsContext ctx); /** * Enter a parse tree produced by {@link TemplateGrammarExpression#exprs}. * @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 271d55dc96..0b4d580579 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 @@ -1,6 +1,5 @@ token literal names: null -null 'if' 'then' 'else' @@ -53,7 +52,6 @@ null token symbolic names: null -DEFAULT IF THEN ELSE @@ -115,7 +113,6 @@ DQuote Underscore Comma Semi -Pipe Dot LParen RParen @@ -129,7 +126,6 @@ Minus DQuestion LT GT -Default NameChar EscSeq UnicodeEsc @@ -142,7 +138,6 @@ DecDigits Float True False -DEFAULT IF THEN ELSE @@ -196,7 +191,6 @@ C_VERT_WS CRBRACE CPLUS CDOT -CDEFAULT CVAR_ID CROOT CID @@ -215,4 +209,4 @@ DEFAULT_MODE Concatenation atn: -[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 +[4, 0, 49, 565, 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, 1, 0, 1, 0, 3, 0, 197, 8, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 207, 8, 3, 10, 3, 12, 3, 210, 9, 3, 1, 3, 1, 3, 1, 3, 3, 3, 215, 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, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 3, 23, 259, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 266, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 273, 8, 25, 3, 25, 275, 8, 25, 3, 25, 277, 8, 25, 3, 25, 279, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 284, 8, 26, 10, 26, 12, 26, 287, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 5, 27, 294, 8, 27, 10, 27, 12, 27, 297, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 303, 8, 28, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 4, 31, 310, 8, 31, 11, 31, 12, 31, 311, 1, 32, 1, 32, 1, 32, 3, 32, 317, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 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, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 399, 8, 53, 10, 53, 12, 53, 402, 9, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 4, 56, 409, 8, 56, 11, 56, 12, 56, 410, 1, 56, 1, 56, 1, 57, 4, 57, 416, 8, 57, 11, 57, 12, 57, 417, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 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, 78, 5, 78, 469, 8, 78, 10, 78, 12, 78, 472, 9, 78, 1, 79, 1, 79, 1, 79, 4, 79, 477, 8, 79, 11, 79, 12, 79, 478, 1, 79, 3, 79, 482, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 4, 83, 495, 8, 83, 11, 83, 12, 83, 496, 1, 83, 1, 83, 1, 84, 4, 84, 502, 8, 84, 11, 84, 12, 84, 503, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 525, 8, 88, 10, 88, 12, 88, 528, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 5, 90, 539, 8, 90, 10, 90, 12, 90, 542, 9, 90, 1, 90, 1, 90, 1, 91, 1, 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, 208, 0, 96, 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, 1, 74, 2, 76, 3, 78, 4, 80, 5, 82, 6, 84, 7, 86, 8, 88, 9, 90, 10, 92, 11, 94, 12, 96, 13, 98, 14, 100, 15, 102, 16, 104, 17, 106, 18, 108, 19, 110, 20, 112, 21, 114, 22, 116, 23, 118, 24, 120, 25, 122, 26, 124, 27, 126, 28, 128, 29, 130, 30, 132, 31, 134, 32, 136, 33, 138, 34, 140, 35, 142, 36, 144, 37, 146, 38, 148, 39, 150, 40, 152, 41, 154, 42, 156, 43, 158, 44, 160, 45, 162, 46, 164, 0, 166, 0, 168, 47, 170, 48, 172, 0, 174, 0, 176, 0, 178, 0, 180, 0, 182, 0, 184, 0, 186, 0, 188, 0, 190, 0, 192, 49, 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, 560, 0, 72, 1, 0, 0, 0, 0, 74, 1, 0, 0, 0, 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, 1, 168, 1, 0, 0, 0, 1, 170, 1, 0, 0, 0, 1, 172, 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, 2, 196, 1, 0, 0, 0, 4, 198, 1, 0, 0, 0, 6, 200, 1, 0, 0, 0, 8, 202, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 220, 1, 0, 0, 0, 16, 222, 1, 0, 0, 0, 18, 224, 1, 0, 0, 0, 20, 226, 1, 0, 0, 0, 22, 228, 1, 0, 0, 0, 24, 230, 1, 0, 0, 0, 26, 232, 1, 0, 0, 0, 28, 234, 1, 0, 0, 0, 30, 236, 1, 0, 0, 0, 32, 238, 1, 0, 0, 0, 34, 240, 1, 0, 0, 0, 36, 242, 1, 0, 0, 0, 38, 244, 1, 0, 0, 0, 40, 246, 1, 0, 0, 0, 42, 248, 1, 0, 0, 0, 44, 251, 1, 0, 0, 0, 46, 253, 1, 0, 0, 0, 48, 258, 1, 0, 0, 0, 50, 260, 1, 0, 0, 0, 52, 267, 1, 0, 0, 0, 54, 280, 1, 0, 0, 0, 56, 290, 1, 0, 0, 0, 58, 302, 1, 0, 0, 0, 60, 304, 1, 0, 0, 0, 62, 306, 1, 0, 0, 0, 64, 309, 1, 0, 0, 0, 66, 313, 1, 0, 0, 0, 68, 318, 1, 0, 0, 0, 70, 323, 1, 0, 0, 0, 72, 329, 1, 0, 0, 0, 74, 332, 1, 0, 0, 0, 76, 337, 1, 0, 0, 0, 78, 342, 1, 0, 0, 0, 80, 346, 1, 0, 0, 0, 82, 350, 1, 0, 0, 0, 84, 353, 1, 0, 0, 0, 86, 357, 1, 0, 0, 0, 88, 359, 1, 0, 0, 0, 90, 362, 1, 0, 0, 0, 92, 365, 1, 0, 0, 0, 94, 369, 1, 0, 0, 0, 96, 378, 1, 0, 0, 0, 98, 381, 1, 0, 0, 0, 100, 384, 1, 0, 0, 0, 102, 387, 1, 0, 0, 0, 104, 390, 1, 0, 0, 0, 106, 392, 1, 0, 0, 0, 108, 394, 1, 0, 0, 0, 110, 403, 1, 0, 0, 0, 112, 405, 1, 0, 0, 0, 114, 408, 1, 0, 0, 0, 116, 415, 1, 0, 0, 0, 118, 421, 1, 0, 0, 0, 120, 425, 1, 0, 0, 0, 122, 429, 1, 0, 0, 0, 124, 431, 1, 0, 0, 0, 126, 433, 1, 0, 0, 0, 128, 435, 1, 0, 0, 0, 130, 437, 1, 0, 0, 0, 132, 439, 1, 0, 0, 0, 134, 441, 1, 0, 0, 0, 136, 443, 1, 0, 0, 0, 138, 445, 1, 0, 0, 0, 140, 447, 1, 0, 0, 0, 142, 449, 1, 0, 0, 0, 144, 451, 1, 0, 0, 0, 146, 453, 1, 0, 0, 0, 148, 455, 1, 0, 0, 0, 150, 457, 1, 0, 0, 0, 152, 459, 1, 0, 0, 0, 154, 461, 1, 0, 0, 0, 156, 463, 1, 0, 0, 0, 158, 465, 1, 0, 0, 0, 160, 473, 1, 0, 0, 0, 162, 485, 1, 0, 0, 0, 164, 489, 1, 0, 0, 0, 166, 491, 1, 0, 0, 0, 168, 494, 1, 0, 0, 0, 170, 501, 1, 0, 0, 0, 172, 507, 1, 0, 0, 0, 174, 512, 1, 0, 0, 0, 176, 516, 1, 0, 0, 0, 178, 520, 1, 0, 0, 0, 180, 531, 1, 0, 0, 0, 182, 535, 1, 0, 0, 0, 184, 545, 1, 0, 0, 0, 186, 549, 1, 0, 0, 0, 188, 553, 1, 0, 0, 0, 190, 557, 1, 0, 0, 0, 192, 561, 1, 0, 0, 0, 194, 197, 3, 4, 1, 0, 195, 197, 3, 6, 2, 0, 196, 194, 1, 0, 0, 0, 196, 195, 1, 0, 0, 0, 197, 3, 1, 0, 0, 0, 198, 199, 7, 0, 0, 0, 199, 5, 1, 0, 0, 0, 200, 201, 7, 1, 0, 0, 201, 7, 1, 0, 0, 0, 202, 203, 5, 47, 0, 0, 203, 204, 5, 42, 0, 0, 204, 208, 1, 0, 0, 0, 205, 207, 9, 0, 0, 0, 206, 205, 1, 0, 0, 0, 207, 210, 1, 0, 0, 0, 208, 209, 1, 0, 0, 0, 208, 206, 1, 0, 0, 0, 209, 214, 1, 0, 0, 0, 210, 208, 1, 0, 0, 0, 211, 212, 5, 42, 0, 0, 212, 215, 5, 47, 0, 0, 213, 215, 5, 0, 0, 1, 214, 211, 1, 0, 0, 0, 214, 213, 1, 0, 0, 0, 215, 9, 1, 0, 0, 0, 216, 217, 5, 92, 0, 0, 217, 11, 1, 0, 0, 0, 218, 219, 5, 39, 0, 0, 219, 13, 1, 0, 0, 0, 220, 221, 5, 34, 0, 0, 221, 15, 1, 0, 0, 0, 222, 223, 5, 95, 0, 0, 223, 17, 1, 0, 0, 0, 224, 225, 5, 44, 0, 0, 225, 19, 1, 0, 0, 0, 226, 227, 5, 59, 0, 0, 227, 21, 1, 0, 0, 0, 228, 229, 5, 46, 0, 0, 229, 23, 1, 0, 0, 0, 230, 231, 5, 40, 0, 0, 231, 25, 1, 0, 0, 0, 232, 233, 5, 41, 0, 0, 233, 27, 1, 0, 0, 0, 234, 235, 5, 91, 0, 0, 235, 29, 1, 0, 0, 0, 236, 237, 5, 93, 0, 0, 237, 31, 1, 0, 0, 0, 238, 239, 5, 42, 0, 0, 239, 33, 1, 0, 0, 0, 240, 241, 5, 47, 0, 0, 241, 35, 1, 0, 0, 0, 242, 243, 5, 37, 0, 0, 243, 37, 1, 0, 0, 0, 244, 245, 5, 43, 0, 0, 245, 39, 1, 0, 0, 0, 246, 247, 5, 45, 0, 0, 247, 41, 1, 0, 0, 0, 248, 249, 5, 63, 0, 0, 249, 250, 5, 63, 0, 0, 250, 43, 1, 0, 0, 0, 251, 252, 5, 60, 0, 0, 252, 45, 1, 0, 0, 0, 253, 254, 5, 62, 0, 0, 254, 47, 1, 0, 0, 0, 255, 259, 7, 2, 0, 0, 256, 259, 3, 16, 7, 0, 257, 259, 7, 3, 0, 0, 258, 255, 1, 0, 0, 0, 258, 256, 1, 0, 0, 0, 258, 257, 1, 0, 0, 0, 259, 49, 1, 0, 0, 0, 260, 265, 3, 10, 4, 0, 261, 266, 7, 4, 0, 0, 262, 266, 3, 52, 25, 0, 263, 266, 9, 0, 0, 0, 264, 266, 5, 0, 0, 1, 265, 261, 1, 0, 0, 0, 265, 262, 1, 0, 0, 0, 265, 263, 1, 0, 0, 0, 265, 264, 1, 0, 0, 0, 266, 51, 1, 0, 0, 0, 267, 278, 5, 117, 0, 0, 268, 276, 3, 60, 29, 0, 269, 274, 3, 60, 29, 0, 270, 272, 3, 60, 29, 0, 271, 273, 3, 60, 29, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 275, 1, 0, 0, 0, 274, 270, 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, 275, 277, 1, 0, 0, 0, 276, 269, 1, 0, 0, 0, 276, 277, 1, 0, 0, 0, 277, 279, 1, 0, 0, 0, 278, 268, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 53, 1, 0, 0, 0, 280, 285, 3, 12, 5, 0, 281, 284, 3, 50, 24, 0, 282, 284, 8, 5, 0, 0, 283, 281, 1, 0, 0, 0, 283, 282, 1, 0, 0, 0, 284, 287, 1, 0, 0, 0, 285, 283, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 288, 1, 0, 0, 0, 287, 285, 1, 0, 0, 0, 288, 289, 3, 12, 5, 0, 289, 55, 1, 0, 0, 0, 290, 295, 3, 14, 6, 0, 291, 294, 3, 50, 24, 0, 292, 294, 8, 6, 0, 0, 293, 291, 1, 0, 0, 0, 293, 292, 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, 3, 14, 6, 0, 299, 57, 1, 0, 0, 0, 300, 303, 3, 68, 33, 0, 301, 303, 3, 70, 34, 0, 302, 300, 1, 0, 0, 0, 302, 301, 1, 0, 0, 0, 303, 59, 1, 0, 0, 0, 304, 305, 7, 7, 0, 0, 305, 61, 1, 0, 0, 0, 306, 307, 7, 8, 0, 0, 307, 63, 1, 0, 0, 0, 308, 310, 3, 62, 30, 0, 309, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 65, 1, 0, 0, 0, 313, 314, 3, 64, 31, 0, 314, 316, 3, 22, 10, 0, 315, 317, 3, 64, 31, 0, 316, 315, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 67, 1, 0, 0, 0, 318, 319, 5, 116, 0, 0, 319, 320, 5, 114, 0, 0, 320, 321, 5, 117, 0, 0, 321, 322, 5, 101, 0, 0, 322, 69, 1, 0, 0, 0, 323, 324, 5, 102, 0, 0, 324, 325, 5, 97, 0, 0, 325, 326, 5, 108, 0, 0, 326, 327, 5, 115, 0, 0, 327, 328, 5, 101, 0, 0, 328, 71, 1, 0, 0, 0, 329, 330, 5, 105, 0, 0, 330, 331, 5, 102, 0, 0, 331, 73, 1, 0, 0, 0, 332, 333, 5, 116, 0, 0, 333, 334, 5, 104, 0, 0, 334, 335, 5, 101, 0, 0, 335, 336, 5, 110, 0, 0, 336, 75, 1, 0, 0, 0, 337, 338, 5, 101, 0, 0, 338, 339, 5, 108, 0, 0, 339, 340, 5, 115, 0, 0, 340, 341, 5, 101, 0, 0, 341, 77, 1, 0, 0, 0, 342, 343, 5, 101, 0, 0, 343, 344, 5, 110, 0, 0, 344, 345, 5, 100, 0, 0, 345, 79, 1, 0, 0, 0, 346, 347, 5, 97, 0, 0, 347, 348, 5, 110, 0, 0, 348, 349, 5, 100, 0, 0, 349, 81, 1, 0, 0, 0, 350, 351, 5, 111, 0, 0, 351, 352, 5, 114, 0, 0, 352, 83, 1, 0, 0, 0, 353, 354, 5, 110, 0, 0, 354, 355, 5, 111, 0, 0, 355, 356, 5, 116, 0, 0, 356, 85, 1, 0, 0, 0, 357, 358, 5, 33, 0, 0, 358, 87, 1, 0, 0, 0, 359, 360, 5, 101, 0, 0, 360, 361, 5, 113, 0, 0, 361, 89, 1, 0, 0, 0, 362, 363, 5, 110, 0, 0, 363, 364, 5, 101, 0, 0, 364, 91, 1, 0, 0, 0, 365, 366, 5, 101, 0, 0, 366, 367, 5, 113, 0, 0, 367, 368, 5, 105, 0, 0, 368, 93, 1, 0, 0, 0, 369, 370, 5, 99, 0, 0, 370, 371, 5, 111, 0, 0, 371, 372, 5, 110, 0, 0, 372, 373, 5, 116, 0, 0, 373, 374, 5, 97, 0, 0, 374, 375, 5, 105, 0, 0, 375, 376, 5, 110, 0, 0, 376, 377, 5, 115, 0, 0, 377, 95, 1, 0, 0, 0, 378, 379, 5, 61, 0, 0, 379, 380, 5, 61, 0, 0, 380, 97, 1, 0, 0, 0, 381, 382, 5, 33, 0, 0, 382, 383, 5, 61, 0, 0, 383, 99, 1, 0, 0, 0, 384, 385, 5, 62, 0, 0, 385, 386, 5, 61, 0, 0, 386, 101, 1, 0, 0, 0, 387, 388, 5, 60, 0, 0, 388, 389, 5, 61, 0, 0, 389, 103, 1, 0, 0, 0, 390, 391, 5, 62, 0, 0, 391, 105, 1, 0, 0, 0, 392, 393, 5, 60, 0, 0, 393, 107, 1, 0, 0, 0, 394, 395, 5, 36, 0, 0, 395, 400, 3, 48, 23, 0, 396, 399, 3, 48, 23, 0, 397, 399, 3, 62, 30, 0, 398, 396, 1, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 402, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 109, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 403, 404, 5, 36, 0, 0, 404, 111, 1, 0, 0, 0, 405, 406, 3, 8, 3, 0, 406, 113, 1, 0, 0, 0, 407, 409, 3, 4, 1, 0, 408, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 413, 6, 56, 0, 0, 413, 115, 1, 0, 0, 0, 414, 416, 3, 6, 2, 0, 415, 414, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 420, 6, 57, 0, 0, 420, 117, 1, 0, 0, 0, 421, 422, 3, 164, 81, 0, 422, 423, 1, 0, 0, 0, 423, 424, 6, 58, 1, 0, 424, 119, 1, 0, 0, 0, 425, 426, 3, 166, 82, 0, 426, 427, 1, 0, 0, 0, 427, 428, 6, 59, 2, 0, 428, 121, 1, 0, 0, 0, 429, 430, 3, 22, 10, 0, 430, 123, 1, 0, 0, 0, 431, 432, 3, 24, 11, 0, 432, 125, 1, 0, 0, 0, 433, 434, 3, 26, 12, 0, 434, 127, 1, 0, 0, 0, 435, 436, 3, 28, 13, 0, 436, 129, 1, 0, 0, 0, 437, 438, 3, 30, 14, 0, 438, 131, 1, 0, 0, 0, 439, 440, 3, 42, 20, 0, 440, 133, 1, 0, 0, 0, 441, 442, 3, 20, 9, 0, 442, 135, 1, 0, 0, 0, 443, 444, 3, 18, 8, 0, 444, 137, 1, 0, 0, 0, 445, 446, 3, 32, 15, 0, 446, 139, 1, 0, 0, 0, 447, 448, 3, 34, 16, 0, 448, 141, 1, 0, 0, 0, 449, 450, 3, 36, 17, 0, 450, 143, 1, 0, 0, 0, 451, 452, 3, 38, 18, 0, 452, 145, 1, 0, 0, 0, 453, 454, 3, 40, 19, 0, 454, 147, 1, 0, 0, 0, 455, 456, 3, 56, 27, 0, 456, 149, 1, 0, 0, 0, 457, 458, 3, 54, 26, 0, 458, 151, 1, 0, 0, 0, 459, 460, 3, 64, 31, 0, 460, 153, 1, 0, 0, 0, 461, 462, 3, 66, 32, 0, 462, 155, 1, 0, 0, 0, 463, 464, 3, 58, 28, 0, 464, 157, 1, 0, 0, 0, 465, 470, 3, 48, 23, 0, 466, 469, 3, 48, 23, 0, 467, 469, 3, 62, 30, 0, 468, 466, 1, 0, 0, 0, 468, 467, 1, 0, 0, 0, 469, 472, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 159, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 473, 476, 3, 44, 21, 0, 474, 477, 3, 48, 23, 0, 475, 477, 3, 122, 60, 0, 476, 474, 1, 0, 0, 0, 476, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 481, 1, 0, 0, 0, 480, 482, 3, 160, 79, 0, 481, 480, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 3, 46, 22, 0, 484, 161, 1, 0, 0, 0, 485, 486, 3, 4, 1, 0, 486, 487, 1, 0, 0, 0, 487, 488, 6, 80, 0, 0, 488, 163, 1, 0, 0, 0, 489, 490, 5, 123, 0, 0, 490, 165, 1, 0, 0, 0, 491, 492, 5, 125, 0, 0, 492, 167, 1, 0, 0, 0, 493, 495, 3, 4, 1, 0, 494, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 6, 83, 0, 0, 499, 169, 1, 0, 0, 0, 500, 502, 3, 6, 2, 0, 501, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 6, 84, 0, 0, 506, 171, 1, 0, 0, 0, 507, 508, 3, 166, 82, 0, 508, 509, 1, 0, 0, 0, 509, 510, 6, 85, 2, 0, 510, 511, 6, 85, 3, 0, 511, 173, 1, 0, 0, 0, 512, 513, 3, 38, 18, 0, 513, 514, 1, 0, 0, 0, 514, 515, 6, 86, 4, 0, 515, 175, 1, 0, 0, 0, 516, 517, 3, 22, 10, 0, 517, 518, 1, 0, 0, 0, 518, 519, 6, 87, 5, 0, 519, 177, 1, 0, 0, 0, 520, 521, 5, 36, 0, 0, 521, 526, 3, 48, 23, 0, 522, 525, 3, 48, 23, 0, 523, 525, 3, 62, 30, 0, 524, 522, 1, 0, 0, 0, 524, 523, 1, 0, 0, 0, 525, 528, 1, 0, 0, 0, 526, 524, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 529, 1, 0, 0, 0, 528, 526, 1, 0, 0, 0, 529, 530, 6, 88, 6, 0, 530, 179, 1, 0, 0, 0, 531, 532, 5, 36, 0, 0, 532, 533, 1, 0, 0, 0, 533, 534, 6, 89, 7, 0, 534, 181, 1, 0, 0, 0, 535, 540, 3, 48, 23, 0, 536, 539, 3, 48, 23, 0, 537, 539, 3, 62, 30, 0, 538, 536, 1, 0, 0, 0, 538, 537, 1, 0, 0, 0, 539, 542, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 543, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 543, 544, 6, 90, 8, 0, 544, 183, 1, 0, 0, 0, 545, 546, 3, 56, 27, 0, 546, 547, 1, 0, 0, 0, 547, 548, 6, 91, 9, 0, 548, 185, 1, 0, 0, 0, 549, 550, 3, 54, 26, 0, 550, 551, 1, 0, 0, 0, 551, 552, 6, 92, 10, 0, 552, 187, 1, 0, 0, 0, 553, 554, 3, 64, 31, 0, 554, 555, 1, 0, 0, 0, 555, 556, 6, 93, 11, 0, 556, 189, 1, 0, 0, 0, 557, 558, 3, 66, 32, 0, 558, 559, 1, 0, 0, 0, 559, 560, 6, 94, 12, 0, 560, 191, 1, 0, 0, 0, 561, 562, 7, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 6, 95, 0, 0, 564, 193, 1, 0, 0, 0, 33, 0, 1, 196, 208, 214, 258, 265, 272, 274, 276, 278, 283, 285, 293, 295, 302, 311, 316, 398, 400, 410, 417, 468, 470, 476, 478, 481, 496, 503, 524, 526, 538, 540, 13, 6, 0, 0, 5, 1, 0, 4, 0, 0, 7, 25, 0, 7, 37, 0, 7, 26, 0, 7, 19, 0, 7, 20, 0, 7, 44, 0, 7, 39, 0, 7, 40, 0, 7, 41, 0, 7, 42, 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 66dd024767..7dbe0d7982 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, 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=1, THEN=2, ELSE=3, END=4, AND=5, OR=6, NOT=7, BANG=8, EQ_KW=9, NE_KW=10, + EQI_KW=11, CONTAINS_KW=12, EQEQ=13, NEQ=14, GE_OP=15, LE_OP=16, GT_OP=17, + LT_OP=18, VAR_ID=19, ROOT=20, BLOCK_COMMENT=21, HORZ_WS=22, VERT_WS=23, + LBRACE=24, RBRACE=25, DOT=26, LPAREN=27, RPAREN=28, LBRACK=29, RBRACK=30, + DQUESTION=31, SEMI=32, COMMA=33, STAR=34, SLASH=35, PERCENT=36, PLUS=37, + MINUS=38, DSTRING=39, SSTRING=40, DECDIGITS=41, FLOAT=42, BOOLEAN=43, + ID=44, CAST_TYPE=45, ERR_CHAR=46, C_HORZ_WS=47, C_VERT_WS=48, CERR_CHAR=49; public static final int Concatenation=1; public static String[] channelNames = { @@ -39,26 +39,25 @@ public class TemplateLexerExpression extends Lexer { private static String[] makeRuleNames() { return new String[] { "Ws", "Hws", "Vws", "BlockComment", "Esc", "SQuote", "DQuote", "Underscore", - "Comma", "Semi", "Pipe", "Dot", "LParen", "RParen", "LBrack", "RBrack", - "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", "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" + "Comma", "Semi", "Dot", "LParen", "RParen", "LBrack", "RBrack", "Star", + "Slash", "Percent", "Plus", "Minus", "DQuestion", "LT", "GT", "NameChar", + "EscSeq", "UnicodeEsc", "SQuoteLiteral", "DQuoteLiteral", "BoolLiteral", + "HexDigit", "DecDigit", "DecDigits", "Float", "True", "False", "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", "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'", "'and'", "'or'", "'not'", + null, "'if'", "'then'", "'else'", "'end'", "'and'", "'or'", "'not'", "'!'", "'eq'", "'ne'", "'eqi'", "'contains'", "'=='", "'!='", "'>='", "'<='", "'>'", "'<'" }; @@ -66,10 +65,10 @@ private static String[] makeLiteralNames() { private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { - 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", + null, "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" @@ -134,7 +133,7 @@ public TemplateLexerExpression(CharStream input) { public ATN getATN() { return _ATN; } public static final String _serializedATN = - "\u0004\u00002\u025b\u0006\uffff\uffff\u0006\uffff\uffff\u0002\u0000\u0007"+ + "\u0004\u00001\u0235\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,355 +156,333 @@ 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`\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"+ - "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"; + "\\\u0007\\\u0002]\u0007]\u0002^\u0007^\u0002_\u0007_\u0001\u0000\u0001"+ + "\u0000\u0003\u0000\u00c5\b\u0000\u0001\u0001\u0001\u0001\u0001\u0002\u0001"+ + "\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0005\u0003\u00cf"+ + "\b\u0003\n\u0003\f\u0003\u00d2\t\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ + "\u0003\u0003\u00d7\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\u0014\u0001\u0015\u0001\u0015"+ + "\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0003\u0017"+ + "\u0103\b\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+ + "\u0003\u0018\u010a\b\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+ + "\u0001\u0019\u0003\u0019\u0111\b\u0019\u0003\u0019\u0113\b\u0019\u0003"+ + "\u0019\u0115\b\u0019\u0003\u0019\u0117\b\u0019\u0001\u001a\u0001\u001a"+ + "\u0001\u001a\u0005\u001a\u011c\b\u001a\n\u001a\f\u001a\u011f\t\u001a\u0001"+ + "\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0005\u001b\u0126"+ + "\b\u001b\n\u001b\f\u001b\u0129\t\u001b\u0001\u001b\u0001\u001b\u0001\u001c"+ + "\u0001\u001c\u0003\u001c\u012f\b\u001c\u0001\u001d\u0001\u001d\u0001\u001e"+ + "\u0001\u001e\u0001\u001f\u0004\u001f\u0136\b\u001f\u000b\u001f\f\u001f"+ + "\u0137\u0001 \u0001 \u0001 \u0003 \u013d\b \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*\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\u00011\u00011\u00011\u00012\u00012\u00012\u0001"+ + "3\u00013\u00014\u00014\u00015\u00015\u00015\u00015\u00055\u018f\b5\n5"+ + "\f5\u0192\t5\u00016\u00016\u00017\u00017\u00018\u00048\u0199\b8\u000b"+ + "8\f8\u019a\u00018\u00018\u00019\u00049\u01a0\b9\u000b9\f9\u01a1\u0001"+ + "9\u00019\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0001"+ + "<\u0001<\u0001=\u0001=\u0001>\u0001>\u0001?\u0001?\u0001@\u0001@\u0001"+ + "A\u0001A\u0001B\u0001B\u0001C\u0001C\u0001D\u0001D\u0001E\u0001E\u0001"+ + "F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001J\u0001J\u0001"+ + "K\u0001K\u0001L\u0001L\u0001M\u0001M\u0001N\u0001N\u0001N\u0005N\u01d5"+ + "\bN\nN\fN\u01d8\tN\u0001O\u0001O\u0001O\u0004O\u01dd\bO\u000bO\fO\u01de"+ + "\u0001O\u0003O\u01e2\bO\u0001O\u0001O\u0001P\u0001P\u0001P\u0001P\u0001"+ + "Q\u0001Q\u0001R\u0001R\u0001S\u0004S\u01ef\bS\u000bS\fS\u01f0\u0001S\u0001"+ + "S\u0001T\u0004T\u01f6\bT\u000bT\fT\u01f7\u0001T\u0001T\u0001U\u0001U\u0001"+ + "U\u0001U\u0001U\u0001V\u0001V\u0001V\u0001V\u0001W\u0001W\u0001W\u0001"+ + "W\u0001X\u0001X\u0001X\u0001X\u0005X\u020d\bX\nX\fX\u0210\tX\u0001X\u0001"+ + "X\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0005Z\u021b\bZ\nZ"+ + "\fZ\u021e\tZ\u0001Z\u0001Z\u0001[\u0001[\u0001[\u0001[\u0001\\\u0001\\"+ + "\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001^\u0001"+ + "^\u0001_\u0001_\u0001_\u0001_\u0001\u00d0\u0000`\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\u0000"+ + "4\u00006\u00008\u0000:\u0000<\u0000>\u0000@\u0000B\u0000D\u0000F\u0000"+ + "H\u0001J\u0002L\u0003N\u0004P\u0005R\u0006T\u0007V\bX\tZ\n\\\u000b^\f"+ + "`\rb\u000ed\u000ff\u0010h\u0011j\u0012l\u0013n\u0014p\u0015r\u0016t\u0017"+ + "v\u0018x\u0019z\u001a|\u001b~\u001c\u0080\u001d\u0082\u001e\u0084\u001f"+ + "\u0086 \u0088!\u008a\"\u008c#\u008e$\u0090%\u0092&\u0094\'\u0096(\u0098"+ + ")\u009a*\u009c+\u009e,\u00a0-\u00a2.\u00a4\u0000\u00a6\u0000\u00a8/\u00aa"+ + "0\u00ac\u0000\u00ae\u0000\u00b0\u0000\u00b2\u0000\u00b4\u0000\u00b6\u0000"+ + "\u00b8\u0000\u00ba\u0000\u00bc\u0000\u00be\u0000\u00c01\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\"\"\'\'\\\\b"+ + "bffnnrrtt\u0004\u0000\n\n\r\r\'\'\\\\\u0004\u0000\n\n\r\r\"\"\\\\\u0003"+ + "\u000009AFaf\u0001\u000009\u0230\u0000H\u0001\u0000\u0000\u0000\u0000"+ + "J\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\u0000"+ + "X\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\u0000"+ + "f\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\u0000"+ + "t\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\u0001\u00a8\u0001\u0000\u0000\u0000"+ + "\u0001\u00aa\u0001\u0000\u0000\u0000\u0001\u00ac\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"+ + "\u0002\u00c4\u0001\u0000\u0000\u0000\u0004\u00c6\u0001\u0000\u0000\u0000"+ + "\u0006\u00c8\u0001\u0000\u0000\u0000\b\u00ca\u0001\u0000\u0000\u0000\n"+ + "\u00d8\u0001\u0000\u0000\u0000\f\u00da\u0001\u0000\u0000\u0000\u000e\u00dc"+ + "\u0001\u0000\u0000\u0000\u0010\u00de\u0001\u0000\u0000\u0000\u0012\u00e0"+ + "\u0001\u0000\u0000\u0000\u0014\u00e2\u0001\u0000\u0000\u0000\u0016\u00e4"+ + "\u0001\u0000\u0000\u0000\u0018\u00e6\u0001\u0000\u0000\u0000\u001a\u00e8"+ + "\u0001\u0000\u0000\u0000\u001c\u00ea\u0001\u0000\u0000\u0000\u001e\u00ec"+ + "\u0001\u0000\u0000\u0000 \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,"+ + "\u00fb\u0001\u0000\u0000\u0000.\u00fd\u0001\u0000\u0000\u00000\u0102\u0001"+ + "\u0000\u0000\u00002\u0104\u0001\u0000\u0000\u00004\u010b\u0001\u0000\u0000"+ + "\u00006\u0118\u0001\u0000\u0000\u00008\u0122\u0001\u0000\u0000\u0000:"+ + "\u012e\u0001\u0000\u0000\u0000<\u0130\u0001\u0000\u0000\u0000>\u0132\u0001"+ + "\u0000\u0000\u0000@\u0135\u0001\u0000\u0000\u0000B\u0139\u0001\u0000\u0000"+ + "\u0000D\u013e\u0001\u0000\u0000\u0000F\u0143\u0001\u0000\u0000\u0000H"+ + "\u0149\u0001\u0000\u0000\u0000J\u014c\u0001\u0000\u0000\u0000L\u0151\u0001"+ + "\u0000\u0000\u0000N\u0156\u0001\u0000\u0000\u0000P\u015a\u0001\u0000\u0000"+ + "\u0000R\u015e\u0001\u0000\u0000\u0000T\u0161\u0001\u0000\u0000\u0000V"+ + "\u0165\u0001\u0000\u0000\u0000X\u0167\u0001\u0000\u0000\u0000Z\u016a\u0001"+ + "\u0000\u0000\u0000\\\u016d\u0001\u0000\u0000\u0000^\u0171\u0001\u0000"+ + "\u0000\u0000`\u017a\u0001\u0000\u0000\u0000b\u017d\u0001\u0000\u0000\u0000"+ + "d\u0180\u0001\u0000\u0000\u0000f\u0183\u0001\u0000\u0000\u0000h\u0186"+ + "\u0001\u0000\u0000\u0000j\u0188\u0001\u0000\u0000\u0000l\u018a\u0001\u0000"+ + "\u0000\u0000n\u0193\u0001\u0000\u0000\u0000p\u0195\u0001\u0000\u0000\u0000"+ + "r\u0198\u0001\u0000\u0000\u0000t\u019f\u0001\u0000\u0000\u0000v\u01a5"+ + "\u0001\u0000\u0000\u0000x\u01a9\u0001\u0000\u0000\u0000z\u01ad\u0001\u0000"+ + "\u0000\u0000|\u01af\u0001\u0000\u0000\u0000~\u01b1\u0001\u0000\u0000\u0000"+ + "\u0080\u01b3\u0001\u0000\u0000\u0000\u0082\u01b5\u0001\u0000\u0000\u0000"+ + "\u0084\u01b7\u0001\u0000\u0000\u0000\u0086\u01b9\u0001\u0000\u0000\u0000"+ + "\u0088\u01bb\u0001\u0000\u0000\u0000\u008a\u01bd\u0001\u0000\u0000\u0000"+ + "\u008c\u01bf\u0001\u0000\u0000\u0000\u008e\u01c1\u0001\u0000\u0000\u0000"+ + "\u0090\u01c3\u0001\u0000\u0000\u0000\u0092\u01c5\u0001\u0000\u0000\u0000"+ + "\u0094\u01c7\u0001\u0000\u0000\u0000\u0096\u01c9\u0001\u0000\u0000\u0000"+ + "\u0098\u01cb\u0001\u0000\u0000\u0000\u009a\u01cd\u0001\u0000\u0000\u0000"+ + "\u009c\u01cf\u0001\u0000\u0000\u0000\u009e\u01d1\u0001\u0000\u0000\u0000"+ + "\u00a0\u01d9\u0001\u0000\u0000\u0000\u00a2\u01e5\u0001\u0000\u0000\u0000"+ + "\u00a4\u01e9\u0001\u0000\u0000\u0000\u00a6\u01eb\u0001\u0000\u0000\u0000"+ + "\u00a8\u01ee\u0001\u0000\u0000\u0000\u00aa\u01f5\u0001\u0000\u0000\u0000"+ + "\u00ac\u01fb\u0001\u0000\u0000\u0000\u00ae\u0200\u0001\u0000\u0000\u0000"+ + "\u00b0\u0204\u0001\u0000\u0000\u0000\u00b2\u0208\u0001\u0000\u0000\u0000"+ + "\u00b4\u0213\u0001\u0000\u0000\u0000\u00b6\u0217\u0001\u0000\u0000\u0000"+ + "\u00b8\u0221\u0001\u0000\u0000\u0000\u00ba\u0225\u0001\u0000\u0000\u0000"+ + "\u00bc\u0229\u0001\u0000\u0000\u0000\u00be\u022d\u0001\u0000\u0000\u0000"+ + "\u00c0\u0231\u0001\u0000\u0000\u0000\u00c2\u00c5\u0003\u0004\u0001\u0000"+ + "\u00c3\u00c5\u0003\u0006\u0002\u0000\u00c4\u00c2\u0001\u0000\u0000\u0000"+ + "\u00c4\u00c3\u0001\u0000\u0000\u0000\u00c5\u0003\u0001\u0000\u0000\u0000"+ + "\u00c6\u00c7\u0007\u0000\u0000\u0000\u00c7\u0005\u0001\u0000\u0000\u0000"+ + "\u00c8\u00c9\u0007\u0001\u0000\u0000\u00c9\u0007\u0001\u0000\u0000\u0000"+ + "\u00ca\u00cb\u0005/\u0000\u0000\u00cb\u00cc\u0005*\u0000\u0000\u00cc\u00d0"+ + "\u0001\u0000\u0000\u0000\u00cd\u00cf\t\u0000\u0000\u0000\u00ce\u00cd\u0001"+ + "\u0000\u0000\u0000\u00cf\u00d2\u0001\u0000\u0000\u0000\u00d0\u00d1\u0001"+ + "\u0000\u0000\u0000\u00d0\u00ce\u0001\u0000\u0000\u0000\u00d1\u00d6\u0001"+ + "\u0000\u0000\u0000\u00d2\u00d0\u0001\u0000\u0000\u0000\u00d3\u00d4\u0005"+ + "*\u0000\u0000\u00d4\u00d7\u0005/\u0000\u0000\u00d5\u00d7\u0005\u0000\u0000"+ + "\u0001\u00d6\u00d3\u0001\u0000\u0000\u0000\u00d6\u00d5\u0001\u0000\u0000"+ + "\u0000\u00d7\t\u0001\u0000\u0000\u0000\u00d8\u00d9\u0005\\\u0000\u0000"+ + "\u00d9\u000b\u0001\u0000\u0000\u0000\u00da\u00db\u0005\'\u0000\u0000\u00db"+ + "\r\u0001\u0000\u0000\u0000\u00dc\u00dd\u0005\"\u0000\u0000\u00dd\u000f"+ + "\u0001\u0000\u0000\u0000\u00de\u00df\u0005_\u0000\u0000\u00df\u0011\u0001"+ + "\u0000\u0000\u0000\u00e0\u00e1\u0005,\u0000\u0000\u00e1\u0013\u0001\u0000"+ + "\u0000\u0000\u00e2\u00e3\u0005;\u0000\u0000\u00e3\u0015\u0001\u0000\u0000"+ + "\u0000\u00e4\u00e5\u0005.\u0000\u0000\u00e5\u0017\u0001\u0000\u0000\u0000"+ + "\u00e6\u00e7\u0005(\u0000\u0000\u00e7\u0019\u0001\u0000\u0000\u0000\u00e8"+ + "\u00e9\u0005)\u0000\u0000\u00e9\u001b\u0001\u0000\u0000\u0000\u00ea\u00eb"+ + "\u0005[\u0000\u0000\u00eb\u001d\u0001\u0000\u0000\u0000\u00ec\u00ed\u0005"+ + "]\u0000\u0000\u00ed\u001f\u0001\u0000\u0000\u0000\u00ee\u00ef\u0005*\u0000"+ + "\u0000\u00ef!\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\u00fa\u0005?\u0000\u0000\u00fa+"+ + "\u0001\u0000\u0000\u0000\u00fb\u00fc\u0005<\u0000\u0000\u00fc-\u0001\u0000"+ + "\u0000\u0000\u00fd\u00fe\u0005>\u0000\u0000\u00fe/\u0001\u0000\u0000\u0000"+ + "\u00ff\u0103\u0007\u0002\u0000\u0000\u0100\u0103\u0003\u0010\u0007\u0000"+ + "\u0101\u0103\u0007\u0003\u0000\u0000\u0102\u00ff\u0001\u0000\u0000\u0000"+ + "\u0102\u0100\u0001\u0000\u0000\u0000\u0102\u0101\u0001\u0000\u0000\u0000"+ + "\u01031\u0001\u0000\u0000\u0000\u0104\u0109\u0003\n\u0004\u0000\u0105"+ + "\u010a\u0007\u0004\u0000\u0000\u0106\u010a\u00034\u0019\u0000\u0107\u010a"+ + "\t\u0000\u0000\u0000\u0108\u010a\u0005\u0000\u0000\u0001\u0109\u0105\u0001"+ + "\u0000\u0000\u0000\u0109\u0106\u0001\u0000\u0000\u0000\u0109\u0107\u0001"+ + "\u0000\u0000\u0000\u0109\u0108\u0001\u0000\u0000\u0000\u010a3\u0001\u0000"+ + "\u0000\u0000\u010b\u0116\u0005u\u0000\u0000\u010c\u0114\u0003<\u001d\u0000"+ + "\u010d\u0112\u0003<\u001d\u0000\u010e\u0110\u0003<\u001d\u0000\u010f\u0111"+ + "\u0003<\u001d\u0000\u0110\u010f\u0001\u0000\u0000\u0000\u0110\u0111\u0001"+ + "\u0000\u0000\u0000\u0111\u0113\u0001\u0000\u0000\u0000\u0112\u010e\u0001"+ + "\u0000\u0000\u0000\u0112\u0113\u0001\u0000\u0000\u0000\u0113\u0115\u0001"+ + "\u0000\u0000\u0000\u0114\u010d\u0001\u0000\u0000\u0000\u0114\u0115\u0001"+ + "\u0000\u0000\u0000\u0115\u0117\u0001\u0000\u0000\u0000\u0116\u010c\u0001"+ + "\u0000\u0000\u0000\u0116\u0117\u0001\u0000\u0000\u0000\u01175\u0001\u0000"+ + "\u0000\u0000\u0118\u011d\u0003\f\u0005\u0000\u0119\u011c\u00032\u0018"+ + "\u0000\u011a\u011c\b\u0005\u0000\u0000\u011b\u0119\u0001\u0000\u0000\u0000"+ + "\u011b\u011a\u0001\u0000\u0000\u0000\u011c\u011f\u0001\u0000\u0000\u0000"+ + "\u011d\u011b\u0001\u0000\u0000\u0000\u011d\u011e\u0001\u0000\u0000\u0000"+ + "\u011e\u0120\u0001\u0000\u0000\u0000\u011f\u011d\u0001\u0000\u0000\u0000"+ + "\u0120\u0121\u0003\f\u0005\u0000\u01217\u0001\u0000\u0000\u0000\u0122"+ + "\u0127\u0003\u000e\u0006\u0000\u0123\u0126\u00032\u0018\u0000\u0124\u0126"+ + "\b\u0006\u0000\u0000\u0125\u0123\u0001\u0000\u0000\u0000\u0125\u0124\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\u0003"+ + "\u000e\u0006\u0000\u012b9\u0001\u0000\u0000\u0000\u012c\u012f\u0003D!"+ + "\u0000\u012d\u012f\u0003F\"\u0000\u012e\u012c\u0001\u0000\u0000\u0000"+ + "\u012e\u012d\u0001\u0000\u0000\u0000\u012f;\u0001\u0000\u0000\u0000\u0130"+ + "\u0131\u0007\u0007\u0000\u0000\u0131=\u0001\u0000\u0000\u0000\u0132\u0133"+ + "\u0007\b\u0000\u0000\u0133?\u0001\u0000\u0000\u0000\u0134\u0136\u0003"+ + ">\u001e\u0000\u0135\u0134\u0001\u0000\u0000\u0000\u0136\u0137\u0001\u0000"+ + "\u0000\u0000\u0137\u0135\u0001\u0000\u0000\u0000\u0137\u0138\u0001\u0000"+ + "\u0000\u0000\u0138A\u0001\u0000\u0000\u0000\u0139\u013a\u0003@\u001f\u0000"+ + "\u013a\u013c\u0003\u0016\n\u0000\u013b\u013d\u0003@\u001f\u0000\u013c"+ + "\u013b\u0001\u0000\u0000\u0000\u013c\u013d\u0001\u0000\u0000\u0000\u013d"+ + "C\u0001\u0000\u0000\u0000\u013e\u013f\u0005t\u0000\u0000\u013f\u0140\u0005"+ + "r\u0000\u0000\u0140\u0141\u0005u\u0000\u0000\u0141\u0142\u0005e\u0000"+ + "\u0000\u0142E\u0001\u0000\u0000\u0000\u0143\u0144\u0005f\u0000\u0000\u0144"+ + "\u0145\u0005a\u0000\u0000\u0145\u0146\u0005l\u0000\u0000\u0146\u0147\u0005"+ + "s\u0000\u0000\u0147\u0148\u0005e\u0000\u0000\u0148G\u0001\u0000\u0000"+ + "\u0000\u0149\u014a\u0005i\u0000\u0000\u014a\u014b\u0005f\u0000\u0000\u014b"+ + "I\u0001\u0000\u0000\u0000\u014c\u014d\u0005t\u0000\u0000\u014d\u014e\u0005"+ + "h\u0000\u0000\u014e\u014f\u0005e\u0000\u0000\u014f\u0150\u0005n\u0000"+ + "\u0000\u0150K\u0001\u0000\u0000\u0000\u0151\u0152\u0005e\u0000\u0000\u0152"+ + "\u0153\u0005l\u0000\u0000\u0153\u0154\u0005s\u0000\u0000\u0154\u0155\u0005"+ + "e\u0000\u0000\u0155M\u0001\u0000\u0000\u0000\u0156\u0157\u0005e\u0000"+ + "\u0000\u0157\u0158\u0005n\u0000\u0000\u0158\u0159\u0005d\u0000\u0000\u0159"+ + "O\u0001\u0000\u0000\u0000\u015a\u015b\u0005a\u0000\u0000\u015b\u015c\u0005"+ + "n\u0000\u0000\u015c\u015d\u0005d\u0000\u0000\u015dQ\u0001\u0000\u0000"+ + "\u0000\u015e\u015f\u0005o\u0000\u0000\u015f\u0160\u0005r\u0000\u0000\u0160"+ + "S\u0001\u0000\u0000\u0000\u0161\u0162\u0005n\u0000\u0000\u0162\u0163\u0005"+ + "o\u0000\u0000\u0163\u0164\u0005t\u0000\u0000\u0164U\u0001\u0000\u0000"+ + "\u0000\u0165\u0166\u0005!\u0000\u0000\u0166W\u0001\u0000\u0000\u0000\u0167"+ + "\u0168\u0005e\u0000\u0000\u0168\u0169\u0005q\u0000\u0000\u0169Y\u0001"+ + "\u0000\u0000\u0000\u016a\u016b\u0005n\u0000\u0000\u016b\u016c\u0005e\u0000"+ + "\u0000\u016c[\u0001\u0000\u0000\u0000\u016d\u016e\u0005e\u0000\u0000\u016e"+ + "\u016f\u0005q\u0000\u0000\u016f\u0170\u0005i\u0000\u0000\u0170]\u0001"+ + "\u0000\u0000\u0000\u0171\u0172\u0005c\u0000\u0000\u0172\u0173\u0005o\u0000"+ + "\u0000\u0173\u0174\u0005n\u0000\u0000\u0174\u0175\u0005t\u0000\u0000\u0175"+ + "\u0176\u0005a\u0000\u0000\u0176\u0177\u0005i\u0000\u0000\u0177\u0178\u0005"+ + "n\u0000\u0000\u0178\u0179\u0005s\u0000\u0000\u0179_\u0001\u0000\u0000"+ + "\u0000\u017a\u017b\u0005=\u0000\u0000\u017b\u017c\u0005=\u0000\u0000\u017c"+ + "a\u0001\u0000\u0000\u0000\u017d\u017e\u0005!\u0000\u0000\u017e\u017f\u0005"+ + "=\u0000\u0000\u017fc\u0001\u0000\u0000\u0000\u0180\u0181\u0005>\u0000"+ + "\u0000\u0181\u0182\u0005=\u0000\u0000\u0182e\u0001\u0000\u0000\u0000\u0183"+ + "\u0184\u0005<\u0000\u0000\u0184\u0185\u0005=\u0000\u0000\u0185g\u0001"+ + "\u0000\u0000\u0000\u0186\u0187\u0005>\u0000\u0000\u0187i\u0001\u0000\u0000"+ + "\u0000\u0188\u0189\u0005<\u0000\u0000\u0189k\u0001\u0000\u0000\u0000\u018a"+ + "\u018b\u0005$\u0000\u0000\u018b\u0190\u00030\u0017\u0000\u018c\u018f\u0003"+ + "0\u0017\u0000\u018d\u018f\u0003>\u001e\u0000\u018e\u018c\u0001\u0000\u0000"+ + "\u0000\u018e\u018d\u0001\u0000\u0000\u0000\u018f\u0192\u0001\u0000\u0000"+ + "\u0000\u0190\u018e\u0001\u0000\u0000\u0000\u0190\u0191\u0001\u0000\u0000"+ + "\u0000\u0191m\u0001\u0000\u0000\u0000\u0192\u0190\u0001\u0000\u0000\u0000"+ + "\u0193\u0194\u0005$\u0000\u0000\u0194o\u0001\u0000\u0000\u0000\u0195\u0196"+ + "\u0003\b\u0003\u0000\u0196q\u0001\u0000\u0000\u0000\u0197\u0199\u0003"+ + "\u0004\u0001\u0000\u0198\u0197\u0001\u0000\u0000\u0000\u0199\u019a\u0001"+ + "\u0000\u0000\u0000\u019a\u0198\u0001\u0000\u0000\u0000\u019a\u019b\u0001"+ + "\u0000\u0000\u0000\u019b\u019c\u0001\u0000\u0000\u0000\u019c\u019d\u0006"+ + "8\u0000\u0000\u019ds\u0001\u0000\u0000\u0000\u019e\u01a0\u0003\u0006\u0002"+ + "\u0000\u019f\u019e\u0001\u0000\u0000\u0000\u01a0\u01a1\u0001\u0000\u0000"+ + "\u0000\u01a1\u019f\u0001\u0000\u0000\u0000\u01a1\u01a2\u0001\u0000\u0000"+ + "\u0000\u01a2\u01a3\u0001\u0000\u0000\u0000\u01a3\u01a4\u00069\u0000\u0000"+ + "\u01a4u\u0001\u0000\u0000\u0000\u01a5\u01a6\u0003\u00a4Q\u0000\u01a6\u01a7"+ + "\u0001\u0000\u0000\u0000\u01a7\u01a8\u0006:\u0001\u0000\u01a8w\u0001\u0000"+ + "\u0000\u0000\u01a9\u01aa\u0003\u00a6R\u0000\u01aa\u01ab\u0001\u0000\u0000"+ + "\u0000\u01ab\u01ac\u0006;\u0002\u0000\u01acy\u0001\u0000\u0000\u0000\u01ad"+ + "\u01ae\u0003\u0016\n\u0000\u01ae{\u0001\u0000\u0000\u0000\u01af\u01b0"+ + "\u0003\u0018\u000b\u0000\u01b0}\u0001\u0000\u0000\u0000\u01b1\u01b2\u0003"+ + "\u001a\f\u0000\u01b2\u007f\u0001\u0000\u0000\u0000\u01b3\u01b4\u0003\u001c"+ + "\r\u0000\u01b4\u0081\u0001\u0000\u0000\u0000\u01b5\u01b6\u0003\u001e\u000e"+ + "\u0000\u01b6\u0083\u0001\u0000\u0000\u0000\u01b7\u01b8\u0003*\u0014\u0000"+ + "\u01b8\u0085\u0001\u0000\u0000\u0000\u01b9\u01ba\u0003\u0014\t\u0000\u01ba"+ + "\u0087\u0001\u0000\u0000\u0000\u01bb\u01bc\u0003\u0012\b\u0000\u01bc\u0089"+ + "\u0001\u0000\u0000\u0000\u01bd\u01be\u0003 \u000f\u0000\u01be\u008b\u0001"+ + "\u0000\u0000\u0000\u01bf\u01c0\u0003\"\u0010\u0000\u01c0\u008d\u0001\u0000"+ + "\u0000\u0000\u01c1\u01c2\u0003$\u0011\u0000\u01c2\u008f\u0001\u0000\u0000"+ + "\u0000\u01c3\u01c4\u0003&\u0012\u0000\u01c4\u0091\u0001\u0000\u0000\u0000"+ + "\u01c5\u01c6\u0003(\u0013\u0000\u01c6\u0093\u0001\u0000\u0000\u0000\u01c7"+ + "\u01c8\u00038\u001b\u0000\u01c8\u0095\u0001\u0000\u0000\u0000\u01c9\u01ca"+ + "\u00036\u001a\u0000\u01ca\u0097\u0001\u0000\u0000\u0000\u01cb\u01cc\u0003"+ + "@\u001f\u0000\u01cc\u0099\u0001\u0000\u0000\u0000\u01cd\u01ce\u0003B "+ + "\u0000\u01ce\u009b\u0001\u0000\u0000\u0000\u01cf\u01d0\u0003:\u001c\u0000"+ + "\u01d0\u009d\u0001\u0000\u0000\u0000\u01d1\u01d6\u00030\u0017\u0000\u01d2"+ + "\u01d5\u00030\u0017\u0000\u01d3\u01d5\u0003>\u001e\u0000\u01d4\u01d2\u0001"+ + "\u0000\u0000\u0000\u01d4\u01d3\u0001\u0000\u0000\u0000\u01d5\u01d8\u0001"+ + "\u0000\u0000\u0000\u01d6\u01d4\u0001\u0000\u0000\u0000\u01d6\u01d7\u0001"+ + "\u0000\u0000\u0000\u01d7\u009f\u0001\u0000\u0000\u0000\u01d8\u01d6\u0001"+ + "\u0000\u0000\u0000\u01d9\u01dc\u0003,\u0015\u0000\u01da\u01dd\u00030\u0017"+ + "\u0000\u01db\u01dd\u0003z<\u0000\u01dc\u01da\u0001\u0000\u0000\u0000\u01dc"+ + "\u01db\u0001\u0000\u0000\u0000\u01dd\u01de\u0001\u0000\u0000\u0000\u01de"+ + "\u01dc\u0001\u0000\u0000\u0000\u01de\u01df\u0001\u0000\u0000\u0000\u01df"+ + "\u01e1\u0001\u0000\u0000\u0000\u01e0\u01e2\u0003\u00a0O\u0000\u01e1\u01e0"+ + "\u0001\u0000\u0000\u0000\u01e1\u01e2\u0001\u0000\u0000\u0000\u01e2\u01e3"+ + "\u0001\u0000\u0000\u0000\u01e3\u01e4\u0003.\u0016\u0000\u01e4\u00a1\u0001"+ + "\u0000\u0000\u0000\u01e5\u01e6\u0003\u0004\u0001\u0000\u01e6\u01e7\u0001"+ + "\u0000\u0000\u0000\u01e7\u01e8\u0006P\u0000\u0000\u01e8\u00a3\u0001\u0000"+ + "\u0000\u0000\u01e9\u01ea\u0005{\u0000\u0000\u01ea\u00a5\u0001\u0000\u0000"+ + "\u0000\u01eb\u01ec\u0005}\u0000\u0000\u01ec\u00a7\u0001\u0000\u0000\u0000"+ + "\u01ed\u01ef\u0003\u0004\u0001\u0000\u01ee\u01ed\u0001\u0000\u0000\u0000"+ + "\u01ef\u01f0\u0001\u0000\u0000\u0000\u01f0\u01ee\u0001\u0000\u0000\u0000"+ + "\u01f0\u01f1\u0001\u0000\u0000\u0000\u01f1\u01f2\u0001\u0000\u0000\u0000"+ + "\u01f2\u01f3\u0006S\u0000\u0000\u01f3\u00a9\u0001\u0000\u0000\u0000\u01f4"+ + "\u01f6\u0003\u0006\u0002\u0000\u01f5\u01f4\u0001\u0000\u0000\u0000\u01f6"+ + "\u01f7\u0001\u0000\u0000\u0000\u01f7\u01f5\u0001\u0000\u0000\u0000\u01f7"+ + "\u01f8\u0001\u0000\u0000\u0000\u01f8\u01f9\u0001\u0000\u0000\u0000\u01f9"+ + "\u01fa\u0006T\u0000\u0000\u01fa\u00ab\u0001\u0000\u0000\u0000\u01fb\u01fc"+ + "\u0003\u00a6R\u0000\u01fc\u01fd\u0001\u0000\u0000\u0000\u01fd\u01fe\u0006"+ + "U\u0002\u0000\u01fe\u01ff\u0006U\u0003\u0000\u01ff\u00ad\u0001\u0000\u0000"+ + "\u0000\u0200\u0201\u0003&\u0012\u0000\u0201\u0202\u0001\u0000\u0000\u0000"+ + "\u0202\u0203\u0006V\u0004\u0000\u0203\u00af\u0001\u0000\u0000\u0000\u0204"+ + "\u0205\u0003\u0016\n\u0000\u0205\u0206\u0001\u0000\u0000\u0000\u0206\u0207"+ + "\u0006W\u0005\u0000\u0207\u00b1\u0001\u0000\u0000\u0000\u0208\u0209\u0005"+ + "$\u0000\u0000\u0209\u020e\u00030\u0017\u0000\u020a\u020d\u00030\u0017"+ + "\u0000\u020b\u020d\u0003>\u001e\u0000\u020c\u020a\u0001\u0000\u0000\u0000"+ + "\u020c\u020b\u0001\u0000\u0000\u0000\u020d\u0210\u0001\u0000\u0000\u0000"+ + "\u020e\u020c\u0001\u0000\u0000\u0000\u020e\u020f\u0001\u0000\u0000\u0000"+ + "\u020f\u0211\u0001\u0000\u0000\u0000\u0210\u020e\u0001\u0000\u0000\u0000"+ + "\u0211\u0212\u0006X\u0006\u0000\u0212\u00b3\u0001\u0000\u0000\u0000\u0213"+ + "\u0214\u0005$\u0000\u0000\u0214\u0215\u0001\u0000\u0000\u0000\u0215\u0216"+ + "\u0006Y\u0007\u0000\u0216\u00b5\u0001\u0000\u0000\u0000\u0217\u021c\u0003"+ + "0\u0017\u0000\u0218\u021b\u00030\u0017\u0000\u0219\u021b\u0003>\u001e"+ + "\u0000\u021a\u0218\u0001\u0000\u0000\u0000\u021a\u0219\u0001\u0000\u0000"+ + "\u0000\u021b\u021e\u0001\u0000\u0000\u0000\u021c\u021a\u0001\u0000\u0000"+ + "\u0000\u021c\u021d\u0001\u0000\u0000\u0000\u021d\u021f\u0001\u0000\u0000"+ + "\u0000\u021e\u021c\u0001\u0000\u0000\u0000\u021f\u0220\u0006Z\b\u0000"+ + "\u0220\u00b7\u0001\u0000\u0000\u0000\u0221\u0222\u00038\u001b\u0000\u0222"+ + "\u0223\u0001\u0000\u0000\u0000\u0223\u0224\u0006[\t\u0000\u0224\u00b9"+ + "\u0001\u0000\u0000\u0000\u0225\u0226\u00036\u001a\u0000\u0226\u0227\u0001"+ + "\u0000\u0000\u0000\u0227\u0228\u0006\\\n\u0000\u0228\u00bb\u0001\u0000"+ + "\u0000\u0000\u0229\u022a\u0003@\u001f\u0000\u022a\u022b\u0001\u0000\u0000"+ + "\u0000\u022b\u022c\u0006]\u000b\u0000\u022c\u00bd\u0001\u0000\u0000\u0000"+ + "\u022d\u022e\u0003B \u0000\u022e\u022f\u0001\u0000\u0000\u0000\u022f\u0230"+ + "\u0006^\f\u0000\u0230\u00bf\u0001\u0000\u0000\u0000\u0231\u0232\u0007"+ + "\u0000\u0000\u0000\u0232\u0233\u0001\u0000\u0000\u0000\u0233\u0234\u0006"+ + "_\u0000\u0000\u0234\u00c1\u0001\u0000\u0000\u0000!\u0000\u0001\u00c4\u00d0"+ + "\u00d6\u0102\u0109\u0110\u0112\u0114\u0116\u011b\u011d\u0125\u0127\u012e"+ + "\u0137\u013c\u018e\u0190\u019a\u01a1\u01d4\u01d6\u01dc\u01de\u01e1\u01f0"+ + "\u01f7\u020c\u020e\u021a\u021c\r\u0006\u0000\u0000\u0005\u0001\u0000\u0004"+ + "\u0000\u0000\u0007\u0019\u0000\u0007%\u0000\u0007\u001a\u0000\u0007\u0013"+ + "\u0000\u0007\u0014\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 c5b7b605bd..e57a89a05a 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 @@ -1,68 +1,67 @@ -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 -'if'=2 -'then'=3 -'else'=4 -'end'=5 -'and'=6 -'or'=7 -'not'=8 -'!'=9 -'eq'=10 -'ne'=11 -'eqi'=12 -'contains'=13 -'=='=14 -'!='=15 -'>='=16 -'<='=17 -'>'=18 -'<'=19 +IF=1 +THEN=2 +ELSE=3 +END=4 +AND=5 +OR=6 +NOT=7 +BANG=8 +EQ_KW=9 +NE_KW=10 +EQI_KW=11 +CONTAINS_KW=12 +EQEQ=13 +NEQ=14 +GE_OP=15 +LE_OP=16 +GT_OP=17 +LT_OP=18 +VAR_ID=19 +ROOT=20 +BLOCK_COMMENT=21 +HORZ_WS=22 +VERT_WS=23 +LBRACE=24 +RBRACE=25 +DOT=26 +LPAREN=27 +RPAREN=28 +LBRACK=29 +RBRACK=30 +DQUESTION=31 +SEMI=32 +COMMA=33 +STAR=34 +SLASH=35 +PERCENT=36 +PLUS=37 +MINUS=38 +DSTRING=39 +SSTRING=40 +DECDIGITS=41 +FLOAT=42 +BOOLEAN=43 +ID=44 +CAST_TYPE=45 +ERR_CHAR=46 +C_HORZ_WS=47 +C_VERT_WS=48 +CERR_CHAR=49 +'if'=1 +'then'=2 +'else'=3 +'end'=4 +'and'=5 +'or'=6 +'not'=7 +'!'=8 +'eq'=9 +'ne'=10 +'eqi'=11 +'contains'=12 +'=='=13 +'!='=14 +'>='=15 +'<='=16 +'>'=17 +'<'=18 diff --git a/oap-formats/oap-template/src/main/java/oap/template/render/AstRenderOr.java b/oap-formats/oap-template/src/main/java/oap/template/render/AstRenderOr.java deleted file mode 100644 index e36cbda7ba..0000000000 --- a/oap-formats/oap-template/src/main/java/oap/template/render/AstRenderOr.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * 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.render; - -import lombok.ToString; -import oap.template.TemplateAccumulator; -import oap.template.runtime.RuntimeContext; - -import java.util.ArrayList; -import java.util.List; -import java.util.function.Supplier; - -@ToString( callSuper = true ) -public class AstRenderOr extends AstRenderIfElse { - public final ArrayList or = new ArrayList<>(); - - public AstRenderOr( TemplateType type, List or ) { - super( type ); - - for( AstRender ast : or ) { - AstRenderTryBlock astTryBlock = new AstRenderTryBlock( type ); - astTryBlock.addChild( ast ); - this.or.add( astTryBlock ); - } - } - - @Override - public void print( StringBuilder buffer, String prefix, String childrenPrefix ) { - printTop( buffer, prefix ); - buffer.append( childrenPrefix ).append( "│OR" ); - buffer.append( '\n' ); - - for( int i = 0; i < or.size(); i++ ) { - String cp = "│".repeat( or.size() - i ); - or.get( i ).print( buffer, childrenPrefix + cp + "└── ", childrenPrefix + cp + " " ); - } - - super.print( buffer, prefix, childrenPrefix ); - } - - @Override - protected String getTrue() { - return ".isNotEmpty()"; - } - - @Override - protected String getFalseToString() { - return "isEmpty()"; - } - - @Override - protected String getInnerVariable( Supplier newVariable ) { - return null; - } - - @Override - protected String getInnerVariableSetter( String variableName, Render render ) { - return null; - } - - @Override - public void render( Render render ) { - String orVariable = render.newVariable(); - - AstRender ast; - - Render r = render; - r.ntab().append( render.templateAccumulator.getClass().getTypeName() ).append( " " ).append( orVariable ).append( " = acc.newInstance();" ); - for( int i = 0; i < or.size(); i++ ) { - ast = or.get( i ); - AstRenderTryBlock astRunnable = ( AstRenderTryBlock ) ast; - - String newFunctionId = render.newVariable(); - String templateAccumulatorName = "acc_" + newFunctionId; - - astRunnable.render( newFunctionId, templateAccumulatorName, r.newBlock() ); - r = r - .ntab().append( "boolean is_empty_%s = %s.getAsBoolean();", newFunctionId, newFunctionId ) - .ntab().append( "if( !is_empty_%s ) { ", newFunctionId ) - .tabInc().ntab().append( "%s = %s;", orVariable, templateAccumulatorName ) - .tabDec(); - - if( i < or.size() - 1 ) { - r = r.ntab().append( "} else {" ).tabInc(); - } - } - - for( int i = 0; i < or.size(); i++ ) { - r = r.tabDec().ntab().append( "}" ); - } - - Render newRender = r.withField( orVariable ); - super.render( newRender ); - } - - @Override - @SuppressWarnings( { "unchecked", "rawtypes" } ) - public void interpret( RuntimeContext ctx ) { - TemplateAccumulator orAcc = ctx.acc.newInstance(); - boolean found = false; - for( AstRender orItem : or ) { - TemplateAccumulator tryAcc = ctx.acc.newInstance(); - boolean[] tryEmpty = { false }; - RuntimeContext tryCtx = ctx.withAcc( tryAcc ).withTryEmpty( tryEmpty ); - orItem.interpret( tryCtx ); - if( !tryEmpty[0] ) { - orAcc = tryAcc; - found = true; - break; - } - } - TemplateAccumulator winner = orAcc; - if( found && winner.isNotEmpty() ) { - children.forEach( c -> c.interpret( ctx.withCurrentObject( winner ) ) ); - } else { - interpretElse( ctx ); - } - } -} diff --git a/oap-formats/oap-template/src/main/java/oap/template/render/AstRenderTryBlock.java b/oap-formats/oap-template/src/main/java/oap/template/render/AstRenderTryBlock.java deleted file mode 100644 index c57ad8dc54..0000000000 --- a/oap-formats/oap-template/src/main/java/oap/template/render/AstRenderTryBlock.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * 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.render; - -import lombok.ToString; -import oap.template.runtime.RuntimeContext; - -@ToString( callSuper = true ) -public class AstRenderTryBlock extends AstRender { - public AstRenderTryBlock( TemplateType type ) { - super( type ); - } - - @Override - public void render( Render render ) { - String newFunctionId = render.newVariable(); - String templateAccumulatorName = "acc_" + newFunctionId; - - render( newFunctionId, templateAccumulatorName, render ); - } - - public void render( String newFunctionId, String templateAccumulatorName, Render render ) { - String emptyVariable = "empty_" + newFunctionId; - - render - .ntab().append( "var %s = acc.newInstance();", templateAccumulatorName ) - .ntab().append( "BooleanSupplier %s = () -> {", newFunctionId ) - .tabInc() - .ntab().append( "boolean %s = false;", emptyVariable ); - - Render newRender = render.withParentType( type ) - .withTryVariable( emptyVariable ) - .withTemplateAccumulatorName( templateAccumulatorName ) - .tabInc(); - children.forEach( ast -> ast.render( newRender ) ); - - render - .tabInc() - .ntab().append( " return %s;", emptyVariable ) - .tabDec() - .ntab().append( "};" ); - } - - @Override - public void interpret( RuntimeContext ctx ) { - children.forEach( c -> c.interpret( ctx ) ); - } -} diff --git a/oap-formats/oap-template/src/main/java/oap/template/render/Render.java b/oap-formats/oap-template/src/main/java/oap/template/render/Render.java index 4659c95c79..ecbc9665d7 100644 --- a/oap-formats/oap-template/src/main/java/oap/template/render/Render.java +++ b/oap-formats/oap-template/src/main/java/oap/template/render/Render.java @@ -178,7 +178,7 @@ public String newVariableWithCustomPrefix( String prefix ) { @SuppressWarnings( { "checkstyle:ParameterAssignment", "checkstyle:OverloadMethodsDeclarationOrder" } ) public NewVariable newVariable( String name ) { - name = name.replaceAll( "[\\s,-?]", "_" ); + name = name.replaceAll( "[\\s,?\\-]", "_" ); String fullName = variableNameWithPrefix( name ); Iterator> it = variables.descendingIterator(); 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 48a9f8065a..c0182cc056 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 @@ -72,7 +72,6 @@ import java.util.regex.Matcher; import java.util.regex.Pattern; -import static oap.template.ErrorStrategy.IGNORE; import static org.apache.commons.lang3.StringUtils.stripEnd; import static org.apache.commons.lang3.StringUtils.stripStart; @@ -193,51 +192,20 @@ static AstRender toAst( Expression expression, TemplateType templateType, Templa private static AstRender toAst( Expression expression, TemplateType templateType, TemplateType rootTemplateType, String castType, String defaultValue, Map> builtInFunction, ErrorStrategy errorStrategy, Map rangeVarTypes ) throws ClassNotFoundException { - ArrayList orAst = new ArrayList(); - - TemplateType lastTemplateType = null; + Chain list = new Chain(); - for( int i = 0; i < expression.or.size(); i++ ) { - Exprs item = expression.or.get( i ); + if( expression.comment != null ) list.add( new AstRenderComment( templateType, expression.comment ) ); + if( !expression.or.isEmpty() ) { + Exprs item = expression.or.getFirst(); TemplateType effectiveType = item.rootScoped ? rootTemplateType : ( item.varName != null && rangeVarTypes.containsKey( item.varName ) ) ? rangeVarTypes.get( item.varName ) : templateType; TemplateType expressionResultType = TemplateAstUtils.findExpressionResultType( effectiveType, item, errorStrategy, rangeVarTypes ); - - ErrorStrategy itemErrorStrategy = i < expression.or.size() - 1 ? IGNORE : errorStrategy; - AstRender itemAst = TemplateAstUtils.toAst( item, - expression.or.size() == 1 ? expression.function : null, - effectiveType, rootTemplateType, expressionResultType, castType, defaultValue, builtInFunction, itemErrorStrategy, rangeVarTypes ); - orAst.add( itemAst ); - - TemplateType itemTemplateType = findLastsTemplateType( itemAst ); - if( lastTemplateType != null && !lastTemplateType.equals( itemTemplateType ) ) { - throw new TemplateException( "last " + lastTemplateType + " current " + itemTemplateType ); - } - - lastTemplateType = itemTemplateType; - } - - Chain list = new Chain(); - - if( expression.comment != null ) list.add( new AstRenderComment( templateType, expression.comment ) ); - - if( orAst.size() > 1 ) { - FieldType castFieldType = FieldType.parse( castType != null ? castType : lastTemplateType.getTypeName() ); - - AstRenderOr ast = new AstRenderOr( templateType, orAst ); - ast.elseAstRender = new AstRenderPrintValue( lastTemplateType, defaultValue, castFieldType ); - if( expression.function != null ) { - AstRender astRenderFunction = getFunction( expression.function.name, expression.function.arguments, builtInFunction, errorStrategy ); - ast.addChild( astRenderFunction ); - astRenderFunction.addChild( new AstRenderPrintField( templateType, castFieldType ) ); - } else - ast.addChild( new AstRenderPrintField( templateType, null ) ); - list.add( ast ); - } else if( !orAst.isEmpty() ) { - list.add( orAst.getFirst() ); + AstRender itemAst = TemplateAstUtils.toAst( item, expression.function, + effectiveType, rootTemplateType, expressionResultType, castType, defaultValue, builtInFunction, errorStrategy, rangeVarTypes ); + list.add( itemAst ); } AstRender mainAst = list.head(); diff --git a/oap-formats/oap-template/src/main/java/oap/template/tree/Expression.java b/oap-formats/oap-template/src/main/java/oap/template/tree/Expression.java index 3c59cd4987..f7f033921e 100644 --- a/oap-formats/oap-template/src/main/java/oap/template/tree/Expression.java +++ b/oap-formats/oap-template/src/main/java/oap/template/tree/Expression.java @@ -28,7 +28,6 @@ import javax.annotation.Nullable; import java.util.ArrayList; -import java.util.Iterator; import java.util.List; @ToString @@ -84,14 +83,8 @@ public String print() { sb.append( "└── " ).append( bodyExprs.print() ).append( '\n' ); } if( !or.isEmpty() ) { - sb.append( or.size() > 1 ? "OR\n" : "ROOT\n" ); - - Iterator it = or.iterator(); - while( it.hasNext() ) { - Exprs orItem = it.next(); - sb.append( it.hasNext() ? "├── " : "└── " ).append( orItem.print() ); - } - + sb.append( "ROOT\n" ); + sb.append( "└── " ).append( or.getFirst().print() ); if( function != null ) sb.append( "FUNCTION " ).append( function.print() ).append( '\n' ); } return sb.toString(); diff --git a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineConditionTest.java b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineConditionTest.java index dcb8cab675..c638d32808 100644 --- a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineConditionTest.java +++ b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineConditionTest.java @@ -55,6 +55,24 @@ public void testIfConditionFalse() { .isEqualTo( "" ); } + @Test + public void testIfListNotEmpty() { + TestTemplateClass c = new TestTemplateClass(); + c.field = "val"; + c.list = List.of( 1 ); + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ if list then field end }}", STRING, null ).render( c ).get() ) + .isEqualTo( "val" ); + } + + @Test + public void testIfListEmpty() { + TestTemplateClass c = new TestTemplateClass(); + c.field = "val"; + c.list = List.of(); + assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ if list then field end }}", STRING, null ).render( c ).get() ) + .isEqualTo( "" ); + } + @Test public void testIfElseConditionFalse() { TestTemplateClass c = new TestTemplateClass(); @@ -213,6 +231,18 @@ public void testBlockIfElseFalse() { .isEqualTo( "else-val" ); } + @Test + public void testBlockIfElseList() { + TestTemplateClass c = new TestTemplateClass(); + c.child = new TestTemplateClass(); + c.child.list = List.of( 1 ); + c.child.listString = List.of( "1" ); + c.field2 = "else-val"; + assertThat( getTemplate( testMethodName, new TypeRef() {}, + "{{% if child.listString }}{{ child.listString }}{{% else }}{{ child.list }}{{% end }}", STRING, null ).render( c ).get() ) + .isEqualTo( "['1']" ); + } + @Test public void testBlockIfElseFalseMap() { HashMap c = new HashMap<>(); diff --git a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineOrRuntimeTest.java b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineOrRuntimeTest.java deleted file mode 100644 index c61d1d8c93..0000000000 --- a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineOrRuntimeTest.java +++ /dev/null @@ -1,8 +0,0 @@ -package oap.template; - -public class TemplateEngineOrRuntimeTest extends TemplateEngineOrTest { - @Override - protected boolean useRuntime() { - return true; - } -} diff --git a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineOrTest.java b/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineOrTest.java deleted file mode 100644 index aed4c88f18..0000000000 --- a/oap-formats/oap-template/src/test/java/oap/template/TemplateEngineOrTest.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * 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 java.util.List; - -import static oap.template.TemplateAccumulators.STRING; -import static org.assertj.core.api.Assertions.assertThat; - -public class TemplateEngineOrTest extends AbstractTemplateEngineTest { - @Test - public void testOrEmptyString() { - TestTemplateClass c = new TestTemplateClass(); - c.field2 = "f2"; - - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ field | default field2 }}", STRING, null ).render( c ).get() ) - .isEqualTo( "f2" ); - } - - @Test - public void testOrNull() { - TestTemplateClass c = new TestTemplateClass(); - - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ field | default field2 }}", STRING, null ).render( c ).get() ) - .isEqualTo( "" ); - } - - @Test - public void testOrCollections() { - TestTemplateClass c = new TestTemplateClass(); - c.list2 = List.of( 2, 3 ); - - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ list | default list2 }}", STRING, null ).render( c ).get() ) - .isEqualTo( "[2,3]" ); - } -} 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 42b7275149..68dcf5f8da 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 @@ -185,24 +185,6 @@ public void testChain() { .isEqualTo( "val3" ); } - @Test - public void testOrEmptyString() { - TestTemplateClass c = new TestTemplateClass(); - c.field2 = "f2"; - - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ field | default field2 }}", STRING, null ).render( c ).get() ) - .isEqualTo( "f2" ); - } - - @Test - public void testOrCollections() { - TestTemplateClass c = new TestTemplateClass(); - c.list2 = List.of( 2, 3 ); - - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ list | default list2 }}", STRING, null ).render( c ).get() ) - .isEqualTo( "[2,3]" ); - } - @Test public void testOptional() { TestTemplateClass c = new TestTemplateClass(); @@ -360,22 +342,6 @@ public void testErrorSyntax() { .isInstanceOf( TemplateException.class ); } - @Test - public void testExt() { - TestTemplateClass c = new TestTemplateClass(); - c.ext2 = new TestTemplateClassExt( "ev" ); - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ ext.a | default ext2.a }}", STRING, null ).render( c ).get() ) - .isEqualTo( "ev" ); - } - - @Test - public void testDefaultExt() { - TestTemplateClass c = new TestTemplateClass(); - c.ext3.a = "123"; - assertThat( getTemplate( testMethodName, new TypeRef() {}, "{{ ext2.a | default ext3.a }}", STRING, null ).render( c ).get() ) - .isEqualTo( "123" ); - } - @Test public void testConcatenation() { TestTemplateClass c = new TestTemplateClass(); 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 538c1ef2cc..7a0edd3491 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 @@ -43,17 +43,6 @@ public void testInlineWithField() { .isEqualTo( "val" ); } - @Test - public void testInlineWithFallback() { - TestTemplateClass c = new TestTemplateClass(); - c.child = new TestTemplateClass(); - c.child.field = null; - c.child.field2 = "fb"; - assertThat( getTemplate( testMethodName, new TypeRef() {}, - "{{ child{field | default field2} }}", STRING, null ).render( c ).get() ) - .isEqualTo( "fb" ); - } - @Test public void testInlineWithNullScope() { TestTemplateClass c = new TestTemplateClass(); @@ -114,17 +103,6 @@ public void testBlockWithRootScope() { .isEqualTo( "root-val" ); } - @Test - public void testInlineWithRootScopeFallback() { - TestTemplateClass c = new TestTemplateClass(); - c.field = "root-val"; - c.child = new TestTemplateClass(); - c.child.field = null; - assertThat( getTemplate( testMethodName, new TypeRef() {}, - "{{ child{field | default $.field} }}", STRING, null ).render( c ).get() ) - .isEqualTo( "root-val" ); - } - @Test public void testBlockWithNullScopeUsesDefault() { TestTemplateClass c = new TestTemplateClass(); diff --git a/pom.xml b/pom.xml index 253c268da6..6001d9787a 100644 --- a/pom.xml +++ b/pom.xml @@ -57,7 +57,7 @@ - 25.6.3 + 25.6.4 25.0.1 25.0.0 From 0733cfe83e09115ff838e8a0f0a8e991ed991c2f Mon Sep 17 00:00:00 2001 From: "igor.petrenko" Date: Wed, 29 Apr 2026 08:30:03 +0300 Subject: [PATCH 2/2] CE-154 oap-template: remove or ( a|b ) --- .../logstream/formats/rowbinary/RowBinaryObjectLoggerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oap-formats/oap-logstream/oap-logstream-test/src/test/java/oap/logstream/formats/rowbinary/RowBinaryObjectLoggerTest.java b/oap-formats/oap-logstream/oap-logstream-test/src/test/java/oap/logstream/formats/rowbinary/RowBinaryObjectLoggerTest.java index 392894bc8d..964eaa7328 100644 --- a/oap-formats/oap-logstream/oap-logstream-test/src/test/java/oap/logstream/formats/rowbinary/RowBinaryObjectLoggerTest.java +++ b/oap-formats/oap-logstream/oap-logstream-test/src/test/java/oap/logstream/formats/rowbinary/RowBinaryObjectLoggerTest.java @@ -181,8 +181,8 @@ public void testOptimization() { assertThat( listener.javaCode ) .isEqualTo( "{{ /* model MODEL1 id a path a type STRING defaultValue '' */a ?? \"\" }}" - + "{{ /* model MODEL1 id b path b type INTEGER defaultValue '0' */b ?? 0 }}" + "{{ /* model MODEL1 id or path if a then a else aa end type STRING defaultValue '' */if a then a else aa end ?? \"\" }}" + + "{{ /* model MODEL1 id b path b type INTEGER defaultValue '0' */b ?? 0 }}" + "{{% with subData }}" + "{{ /* model MODEL1 id a2 path subData.a type STRING defaultValue '' */a ?? \"\" }}" + "{{ /* model MODEL1 id aa2 path subData.aa type STRING defaultValue '' */aa ?? \"\" }}"