From ea71012d3fe14dd0b69f36be4f96bdfe9155ebae Mon Sep 17 00:00:00 2001 From: William Vandervalk <45567423+interdependence@users.noreply.github.com> Date: Fri, 15 Mar 2024 11:26:49 -0400 Subject: [PATCH] Fix conflicts in attribute/keyword parsing --- Cargo.toml | 2 +- grammar.js | 92 +- package.json | 2 +- queries/highlights.scm | 1 - src/grammar.json | 911 +- src/node-types.json | 161 +- src/parser.c | 33164 +++++++++++------------------------ src/tree_sitter/parser.h | 16 +- test/corpus/statements.txt | 31 +- 9 files changed, 10501 insertions(+), 23879 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d826853..1c158b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-htmldjango" description = "htmldjango grammar for the tree-sitter parsing library" -version = "0.1.1" +version = "1.0.0" keywords = ["incremental", "parsing", "htmldjango"] categories = ["parsing", "text-editors"] repository = "https://github.com/interdependence/tree-sitter-htmldjango" diff --git a/grammar.js b/grammar.js index 33d4f81..895f088 100644 --- a/grammar.js +++ b/grammar.js @@ -1,8 +1,7 @@ module.exports = grammar({ name: "htmldjango", - // Handle whitespace explicitly - extras: $ => [], + word: $ => $._identifier, rules: { template: $ => repeat( @@ -13,16 +12,39 @@ module.exports = grammar({ $._expression, $._statement, $._comment, - $.content, - /\s+/ + $.content ), // General rules - keyword: $ => choice("on", "off", "with", "as", "silent", "only", "from", "random", "by"), + keyword: $ => token(seq( + choice( + "on", + "off", + "with", + "as", + "silent", + "only", + "from", + "random", + "by" + ), + /\s/ + )), + keyword_operator: $ => token(seq( + choice( + "and", + "or", + "not", + "in", + "not in", + "is", + "is not" + ), + /\s/ + )), operator: $ => choice("==", "!=", "<", ">", "<=", ">="), - keyword_operator: $ => choice("and", "or", "not", "in", "not in", "is", "is not"), - number: $ => repeat1(/[0-9]/), - boolean: $ => choice("True", "False"), + number: $ => /[0-9]+/, + boolean: $ => token(seq(choice("True", "False"), /\s/)), string: $ => seq( choice( seq("'", repeat(/[^']/), "'"), @@ -31,24 +53,23 @@ module.exports = grammar({ repeat(seq("|", $.filter)) ), - _word: $ => repeat1(/[A-Za-z0-9_]/), - _ws: $ => repeat1(" "), + _identifier: $ => /\w+/, // Expressions - _expression: $ => seq("{{", optional($._ws), $.variable, optional($._ws), "}}"), + _expression: $ => seq("{{", $.variable, "}}"), variable: $ => seq($.variable_name, repeat(seq("|", $.filter))), // Django variables cannot start with an "_", can contain one or more words separated by a "." - variable_name: $ => seq(repeat1(/[A-Za-z]/), optional($._word), repeat(seq(".", $._word))), - + variable_name: $ => /[a-zA-Z](\w+)?((\.?\w)+)?/, + filter: $ => seq($.filter_name, optional(seq(":", choice($.filter_argument, $._quoted_filter_argument)))), - filter_name: $ => $._word, - filter_argument: $ => seq($._word, repeat(seq(".", $._word))), + filter_name: $ => $._identifier, + filter_argument: $ => seq($._identifier, repeat(seq(".", $._identifier))), _quoted_filter_argument: $ => choice( seq("'", alias(repeat(/[^']/), $.filter_argument), "'"), seq('"', alias(repeat(/[^"]/), $.filter_argument), '"') ), - + // Statements // unpaired type {% tag %} // paired type {% tag %}..{% endtag %} @@ -57,8 +78,7 @@ module.exports = grammar({ alias($.if_statement, $.paired_statement), alias($.for_statement, $.paired_statement), alias($.filter_statement, $.paired_statement), - $.unpaired_statement, - $.detatched_end_statement + $.unpaired_statement ), paired_statement: $ => { @@ -73,13 +93,13 @@ module.exports = grammar({ ]; return choice(...tag_names.map((tag_name) => seq( - "{%", $._ws, alias(tag_name + " ", $.tag_name), optional($._ws), repeat($._attribute), "%}", + "{%", alias(tag_name, $.tag_name), repeat($._attribute), "%}", repeat($._node), - "{%", $._ws, "end", alias(tag_name + " ", $.tag_name), optional($._ws), repeat($._attribute), alias("%}", $.end_paired_statement)))); + "{%", alias("end" + tag_name, $.tag_name), repeat($._attribute), alias("%}", $.end_paired_statement)))); }, if_statement: $ => seq( - "{%", $._ws, alias("if ", $.tag_name), optional($._ws), repeat($._attribute), "%}", + "{%", alias("if", $.tag_name), repeat($._attribute), "%}", repeat($._node), repeat(prec.left(seq( alias($.elif_statement, $.branch_statement), @@ -89,30 +109,28 @@ module.exports = grammar({ alias($.else_statement, $.branch_statement), repeat($._node), )), - "{%", $._ws, "end", alias("if ", $.tag_name), optional($._ws), alias("%}", $.end_paired_statement) + "{%", alias("endif", $.tag_name), alias("%}", $.end_paired_statement) ), - elif_statement: $ => seq("{%", $._ws, alias("elif ", $.tag_name), optional($._ws), repeat($._attribute), "%}"), - else_statement: $ => seq("{%", $._ws, alias("else ", $.tag_name), optional($._ws), "%}"), + elif_statement: $ => seq("{%", alias("elif", $.tag_name), repeat($._attribute), "%}"), + else_statement: $ => seq("{%", alias("else", $.tag_name), "%}"), for_statement: $ => seq( - "{%", $._ws, alias("for ", $.tag_name), optional($._ws), repeat($._attribute), "%}", + "{%", alias("for", $.tag_name), repeat($._attribute), "%}", repeat($._node), optional(seq( alias($.empty_statement, $.branch_statement), repeat($._node), )), - "{%", $._ws, "end", alias("for ", $.tag_name), optional($._ws), alias("%}", $.end_paired_statement) + "{%", alias("endfor", $.tag_name), alias("%}", $.end_paired_statement) ), - empty_statement: $ => seq("{%", $._ws, alias("empty ", $.tag_name), optional($._ws), repeat($._attribute), "%}"), + empty_statement: $ => seq("{%", alias("empty", $.tag_name), repeat($._attribute), "%}"), filter_statement: $ => seq( - "{%", $._ws, alias("filter ", $.tag_name), optional($._ws), $.filter, repeat(seq("|", $.filter)), $._ws, "%}", + "{%", alias("filter", $.tag_name), $.filter, repeat(seq("|", $.filter)), "%}", repeat($._node), - "{%", $._ws, "end", alias("filter ", $.tag_name), optional($._ws), alias("%}", $.end_paired_statement) + "{%", alias("endfilter", $.tag_name), alias("%}", $.end_paired_statement) ), - - unpaired_statement: $ => seq("{%", $._ws, alias($._word, $.tag_name), $._ws, repeat($._attribute), "%}"), - detatched_end_statement: $ => seq("{%", $._ws, "end", alias($._word, $.tag_name), $._ws, repeat($._attribute), "%}"), + unpaired_statement: $ => seq("{%", alias($._identifier, $.tag_name), repeat($._attribute), "%}"), _attribute: $ => seq( choice( @@ -124,11 +142,7 @@ module.exports = grammar({ $.string, $.variable ), - choice( - $._ws, - seq(optional($._ws), ",", optional($._ws)), - seq(optional($._ws), "=", optional($._ws)) - ) + optional(choice(",", "=")) ), // Comments @@ -140,10 +154,10 @@ module.exports = grammar({ ), unpaired_comment: $ => seq("{#", repeat(/.|\s/), repeat(seq(alias($.unpaired_comment, ""), repeat(/.|\s/))), "#}"), paired_comment: $ => seq( - alias("{%", ""), $._ws, "comment", optional(seq($._ws, $._word)), $._ws, alias("%}", ""), + alias("{%", ""), "comment", optional($._identifier), alias("%}", ""), repeat(/.|\s/), repeat(seq(alias($.paired_comment, ""), repeat(/.|\s/))), - alias("{%", ""), $._ws, "endcomment", $._ws, alias("%}", "") + alias("{%", ""), "endcomment", alias("%}", "") ), // All other content diff --git a/package.json b/package.json index 2d7ffc6..cbbb9b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-htmldjango", - "version": "0.1.1", + "version": "1.0.0", "description": "A tree-sitter grammar for the Django template language", "main": "bindings/node", "scripts": { diff --git a/queries/highlights.scm b/queries/highlights.scm index a2a7556..9b632b9 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -12,7 +12,6 @@ ] @tag [ - "end" (tag_name) ] @function diff --git a/src/grammar.json b/src/grammar.json index bf4e98e..ef506b7 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,5 +1,6 @@ { "name": "htmldjango", + "word": "_identifier", "rules": { "template": { "type": "REPEAT", @@ -26,53 +27,106 @@ { "type": "SYMBOL", "name": "content" - }, - { - "type": "PATTERN", - "value": "\\s+" } ] }, "keyword": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "on" - }, - { - "type": "STRING", - "value": "off" - }, - { - "type": "STRING", - "value": "with" - }, - { - "type": "STRING", - "value": "as" - }, - { - "type": "STRING", - "value": "silent" - }, - { - "type": "STRING", - "value": "only" - }, - { - "type": "STRING", - "value": "from" - }, - { - "type": "STRING", - "value": "random" - }, - { - "type": "STRING", - "value": "by" - } - ] + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "on" + }, + { + "type": "STRING", + "value": "off" + }, + { + "type": "STRING", + "value": "with" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "STRING", + "value": "silent" + }, + { + "type": "STRING", + "value": "only" + }, + { + "type": "STRING", + "value": "from" + }, + { + "type": "STRING", + "value": "random" + }, + { + "type": "STRING", + "value": "by" + } + ] + }, + { + "type": "PATTERN", + "value": "\\s" + } + ] + } + }, + "keyword_operator": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "not in" + }, + { + "type": "STRING", + "value": "is" + }, + { + "type": "STRING", + "value": "is not" + } + ] + }, + { + "type": "PATTERN", + "value": "\\s" + } + ] + } }, "operator": { "type": "CHOICE", @@ -103,58 +157,34 @@ } ] }, - "keyword_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "STRING", - "value": "or" - }, - { - "type": "STRING", - "value": "not" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "STRING", - "value": "not in" - }, - { - "type": "STRING", - "value": "is" - }, - { - "type": "STRING", - "value": "is not" - } - ] - }, "number": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } + "type": "PATTERN", + "value": "[0-9]+" }, "boolean": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "True" - }, - { - "type": "STRING", - "value": "False" - } - ] + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "True" + }, + { + "type": "STRING", + "value": "False" + } + ] + }, + { + "type": "PATTERN", + "value": "\\s" + } + ] + } }, "string": { "type": "SEQ", @@ -222,19 +252,9 @@ } ] }, - "_word": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[A-Za-z0-9_]" - } - }, - "_ws": { - "type": "REPEAT1", - "content": { - "type": "STRING", - "value": " " - } + "_identifier": { + "type": "PATTERN", + "value": "\\w+" }, "_expression": { "type": "SEQ", @@ -243,34 +263,10 @@ "type": "STRING", "value": "{{" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "SYMBOL", "name": "variable" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", "value": "}}" @@ -303,44 +299,8 @@ ] }, "variable_name": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[A-Za-z]" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_word" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_word" - } - ] - } - } - ] + "type": "PATTERN", + "value": "[a-zA-Z](\\w+)?((\\.?\\w)+)?" }, "filter": { "type": "SEQ", @@ -383,14 +343,14 @@ }, "filter_name": { "type": "SYMBOL", - "name": "_word" + "name": "_identifier" }, "filter_argument": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "_word" + "name": "_identifier" }, { "type": "REPEAT", @@ -403,7 +363,7 @@ }, { "type": "SYMBOL", - "name": "_word" + "name": "_identifier" } ] } @@ -502,10 +462,6 @@ { "type": "SYMBOL", "name": "unpaired_statement" - }, - { - "type": "SYMBOL", - "name": "detatched_end_statement" } ] }, @@ -519,31 +475,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "autoescape " + "value": "autoescape" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -566,35 +506,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "autoescape " + "value": "endautoescape" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -620,31 +540,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "block " + "value": "block" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -667,35 +571,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "block " + "value": "endblock" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -721,31 +605,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "blocktranslate " + "value": "blocktranslate" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -768,35 +636,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "blocktranslate " + "value": "endblocktranslate" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -822,31 +670,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "ifchanged " + "value": "ifchanged" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -869,35 +701,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "ifchanged " + "value": "endifchanged" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -923,31 +735,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "spaceless " + "value": "spaceless" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -970,35 +766,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "spaceless " + "value": "endspaceless" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -1024,31 +800,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "verbatim " + "value": "verbatim" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -1071,35 +831,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "verbatim " + "value": "endverbatim" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -1125,31 +865,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "with " + "value": "with" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -1172,35 +896,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "with " + "value": "endwith" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -1228,31 +932,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "if " + "value": "if" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -1332,35 +1020,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "if " + "value": "endif" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "ALIAS", "content": { @@ -1379,31 +1047,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "elif " + "value": "elif" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -1424,31 +1076,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "else " + "value": "else" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", "value": "%}" @@ -1462,31 +1098,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "for " + "value": "for" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -1538,35 +1158,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "for " + "value": "endfor" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "ALIAS", "content": { @@ -1585,31 +1185,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "empty " + "value": "empty" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "REPEAT", "content": { @@ -1630,31 +1214,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "filter " + "value": "filter" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "SYMBOL", "name": "filter" @@ -1675,10 +1243,6 @@ ] } }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "STRING", "value": "%}" @@ -1694,35 +1258,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, { "type": "ALIAS", "content": { "type": "STRING", - "value": "filter " + "value": "endfilter" }, "named": true, "value": "tag_name" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "ALIAS", "content": { @@ -1741,64 +1285,15 @@ "type": "STRING", "value": "{%" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_word" + "name": "_identifier" }, "named": true, "value": "tag_name" }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_attribute" - } - }, - { - "type": "STRING", - "value": "%}" - } - ] - }, - "detatched_end_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{%" - }, - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "STRING", - "value": "end" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_word" - }, - "named": true, - "value": "tag_name" - }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "REPEAT", "content": { @@ -1852,74 +1347,20 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "SEQ", + "type": "CHOICE", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", "value": "," }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] + "type": "STRING", + "value": "=" } ] }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "BLANK" } ] } @@ -1994,10 +1435,6 @@ "named": false, "value": "" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "STRING", "value": "comment" @@ -2006,27 +1443,14 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_ws" - }, - { - "type": "SYMBOL", - "name": "_word" - } - ] + "type": "SYMBOL", + "name": "_identifier" }, { "type": "BLANK" } ] }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { @@ -2076,18 +1500,10 @@ "named": false, "value": "" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "STRING", "value": "endcomment" }, - { - "type": "SYMBOL", - "name": "_ws" - }, { "type": "ALIAS", "content": { @@ -2104,7 +1520,12 @@ "value": "([^\\{]|\\{[^{%#])+" } }, - "extras": [], + "extras": [ + { + "type": "PATTERN", + "value": "\\s" + } + ], "conflicts": [], "precedences": [], "externals": [], diff --git a/src/node-types.json b/src/node-types.json index 8c37f58..067f70c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4,11 +4,6 @@ "named": false, "fields": {} }, - { - "type": "boolean", - "named": true, - "fields": {} - }, { "type": "branch_statement", "named": true, @@ -52,49 +47,6 @@ ] } }, - { - "type": "detatched_end_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "boolean", - "named": true - }, - { - "type": "keyword", - "named": true - }, - { - "type": "keyword_operator", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "operator", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tag_name", - "named": true - }, - { - "type": "variable", - "named": true - } - ] - } - }, { "type": "filter", "named": true, @@ -124,21 +76,6 @@ "named": true, "fields": {} }, - { - "type": "keyword", - "named": true, - "fields": {} - }, - { - "type": "keyword_operator", - "named": true, - "fields": {} - }, - { - "type": "number", - "named": true, - "fields": {} - }, { "type": "operator", "named": true, @@ -169,10 +106,6 @@ "type": "content", "named": true }, - { - "type": "detatched_end_statement", - "named": true - }, { "type": "end_paired_statement", "named": true @@ -243,11 +176,6 @@ ] } }, - { - "type": "tag_name", - "named": true, - "fields": {} - }, { "type": "template", "named": true, @@ -260,10 +188,6 @@ "type": "content", "named": true }, - { - "type": "detatched_end_statement", - "named": true - }, { "type": "paired_comment", "named": true @@ -354,19 +278,10 @@ ] } }, - { - "type": "variable_name", - "named": true, - "fields": {} - }, { "type": "", "named": false }, - { - "type": " ", - "named": false - }, { "type": "!=", "named": false @@ -424,24 +339,8 @@ "named": false }, { - "type": "False", - "named": false - }, - { - "type": "True", - "named": false - }, - { - "type": "and", - "named": false - }, - { - "type": "as", - "named": false - }, - { - "type": "by", - "named": false + "type": "boolean", + "named": true }, { "type": "comment", @@ -451,10 +350,6 @@ "type": "content", "named": true }, - { - "type": "end", - "named": false - }, { "type": "end_paired_statement", "named": true @@ -464,56 +359,24 @@ "named": false }, { - "type": "from", - "named": false + "type": "keyword", + "named": true }, { - "type": "in", - "named": false + "type": "keyword_operator", + "named": true }, { - "type": "is", - "named": false + "type": "number", + "named": true }, { - "type": "is not", - "named": false + "type": "tag_name", + "named": true }, { - "type": "not", - "named": false - }, - { - "type": "not in", - "named": false - }, - { - "type": "off", - "named": false - }, - { - "type": "on", - "named": false - }, - { - "type": "only", - "named": false - }, - { - "type": "or", - "named": false - }, - { - "type": "random", - "named": false - }, - { - "type": "silent", - "named": false - }, - { - "type": "with", - "named": false + "type": "variable_name", + "named": true }, { "type": "{#", diff --git a/src/parser.c b/src/parser.c index 24c371c..647401a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -#include +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -6,182 +6,156 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1007 +#define STATE_COUNT 502 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 106 +#define SYMBOL_COUNT 88 #define ALIAS_COUNT 2 -#define TOKEN_COUNT 63 +#define TOKEN_COUNT 55 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 -#define MAX_ALIAS_SEQUENCE_LENGTH 16 -#define PRODUCTION_ID_COUNT 19 +#define MAX_ALIAS_SEQUENCE_LENGTH 11 +#define PRODUCTION_ID_COUNT 16 -enum { - aux_sym__node_token1 = 1, - anon_sym_on = 2, - anon_sym_off = 3, - anon_sym_with = 4, - anon_sym_as = 5, - anon_sym_silent = 6, - anon_sym_only = 7, - anon_sym_from = 8, - anon_sym_random = 9, - anon_sym_by = 10, - anon_sym_EQ_EQ = 11, - anon_sym_BANG_EQ = 12, - anon_sym_LT = 13, - anon_sym_GT = 14, - anon_sym_LT_EQ = 15, - anon_sym_GT_EQ = 16, - anon_sym_and = 17, - anon_sym_or = 18, - anon_sym_not = 19, - anon_sym_in = 20, - anon_sym_notin = 21, - anon_sym_is = 22, - anon_sym_isnot = 23, - aux_sym_number_token1 = 24, - anon_sym_True = 25, - anon_sym_False = 26, - anon_sym_SQUOTE = 27, - aux_sym_string_token1 = 28, - anon_sym_DQUOTE = 29, - aux_sym_string_token2 = 30, - anon_sym_PIPE = 31, - aux_sym__word_token1 = 32, - anon_sym_ = 33, - anon_sym_LBRACE_LBRACE = 34, - anon_sym_RBRACE_RBRACE = 35, - aux_sym_variable_name_token1 = 36, - anon_sym_DOT = 37, - anon_sym_COLON = 38, - anon_sym_LBRACE_PERCENT = 39, - anon_sym_autoescape = 40, - anon_sym_PERCENT_RBRACE = 41, - anon_sym_end = 42, - anon_sym_block = 43, - anon_sym_blocktranslate = 44, - anon_sym_ifchanged = 45, - anon_sym_spaceless = 46, - anon_sym_verbatim = 47, - anon_sym_with2 = 48, - anon_sym_if = 49, - anon_sym_elif = 50, - anon_sym_else = 51, - anon_sym_for = 52, - anon_sym_empty = 53, - anon_sym_filter = 54, - anon_sym_COMMA = 55, - anon_sym_EQ = 56, - anon_sym_LBRACE_POUND = 57, - aux_sym_unpaired_comment_token1 = 58, - anon_sym_POUND_RBRACE = 59, - anon_sym_comment = 60, - anon_sym_endcomment = 61, - sym_content = 62, - sym_template = 63, - sym__node = 64, - sym_keyword = 65, - sym_operator = 66, - sym_keyword_operator = 67, - sym_number = 68, - sym_boolean = 69, - sym_string = 70, - aux_sym__word = 71, - aux_sym__ws = 72, - sym__expression = 73, - sym_variable = 74, - sym_variable_name = 75, - sym_filter = 76, - sym_filter_name = 77, - sym_filter_argument = 78, - sym__quoted_filter_argument = 79, - sym__statement = 80, - sym_paired_statement = 81, - sym_if_statement = 82, - sym_elif_statement = 83, - sym_else_statement = 84, - sym_for_statement = 85, - sym_empty_statement = 86, - sym_filter_statement = 87, - sym_unpaired_statement = 88, - sym_detatched_end_statement = 89, - sym__attribute = 90, - sym__comment = 91, - sym_unpaired_comment = 92, - sym_paired_comment = 93, - aux_sym_template_repeat1 = 94, - aux_sym_number_repeat1 = 95, - aux_sym_string_repeat1 = 96, - aux_sym_string_repeat2 = 97, - aux_sym_string_repeat3 = 98, - aux_sym_variable_name_repeat1 = 99, - aux_sym_variable_name_repeat2 = 100, - aux_sym_paired_statement_repeat1 = 101, - aux_sym_if_statement_repeat1 = 102, - aux_sym_unpaired_comment_repeat1 = 103, - aux_sym_unpaired_comment_repeat2 = 104, - aux_sym_paired_comment_repeat1 = 105, - anon_alias_sym_ = 106, - alias_sym_end_paired_statement = 107, +enum ts_symbol_identifiers { + sym__identifier = 1, + sym_keyword = 2, + sym_keyword_operator = 3, + anon_sym_EQ_EQ = 4, + anon_sym_BANG_EQ = 5, + anon_sym_LT = 6, + anon_sym_GT = 7, + anon_sym_LT_EQ = 8, + anon_sym_GT_EQ = 9, + sym_number = 10, + sym_boolean = 11, + anon_sym_SQUOTE = 12, + aux_sym_string_token1 = 13, + anon_sym_DQUOTE = 14, + aux_sym_string_token2 = 15, + anon_sym_PIPE = 16, + anon_sym_LBRACE_LBRACE = 17, + anon_sym_RBRACE_RBRACE = 18, + sym_variable_name = 19, + anon_sym_COLON = 20, + anon_sym_DOT = 21, + anon_sym_LBRACE_PERCENT = 22, + anon_sym_autoescape = 23, + anon_sym_PERCENT_RBRACE = 24, + anon_sym_endautoescape = 25, + anon_sym_block = 26, + anon_sym_endblock = 27, + anon_sym_blocktranslate = 28, + anon_sym_endblocktranslate = 29, + anon_sym_ifchanged = 30, + anon_sym_endifchanged = 31, + anon_sym_spaceless = 32, + anon_sym_endspaceless = 33, + anon_sym_verbatim = 34, + anon_sym_endverbatim = 35, + anon_sym_with = 36, + anon_sym_endwith = 37, + anon_sym_if = 38, + anon_sym_endif = 39, + anon_sym_elif = 40, + anon_sym_else = 41, + anon_sym_for = 42, + anon_sym_endfor = 43, + anon_sym_empty = 44, + anon_sym_filter = 45, + anon_sym_endfilter = 46, + anon_sym_COMMA = 47, + anon_sym_EQ = 48, + anon_sym_LBRACE_POUND = 49, + aux_sym_unpaired_comment_token1 = 50, + anon_sym_POUND_RBRACE = 51, + anon_sym_comment = 52, + anon_sym_endcomment = 53, + sym_content = 54, + sym_template = 55, + sym__node = 56, + sym_operator = 57, + sym_string = 58, + sym__expression = 59, + sym_variable = 60, + sym_filter = 61, + sym_filter_name = 62, + sym_filter_argument = 63, + sym__quoted_filter_argument = 64, + sym__statement = 65, + sym_paired_statement = 66, + sym_if_statement = 67, + sym_elif_statement = 68, + sym_else_statement = 69, + sym_for_statement = 70, + sym_empty_statement = 71, + sym_filter_statement = 72, + sym_unpaired_statement = 73, + sym__attribute = 74, + sym__comment = 75, + sym_unpaired_comment = 76, + sym_paired_comment = 77, + aux_sym_template_repeat1 = 78, + aux_sym_string_repeat1 = 79, + aux_sym_string_repeat2 = 80, + aux_sym_string_repeat3 = 81, + aux_sym_filter_argument_repeat1 = 82, + aux_sym_paired_statement_repeat1 = 83, + aux_sym_if_statement_repeat1 = 84, + aux_sym_unpaired_comment_repeat1 = 85, + aux_sym_unpaired_comment_repeat2 = 86, + aux_sym_paired_comment_repeat1 = 87, + anon_alias_sym_ = 88, + alias_sym_end_paired_statement = 89, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", - [aux_sym__node_token1] = "_node_token1", - [anon_sym_on] = "on", - [anon_sym_off] = "off", - [anon_sym_with] = "with", - [anon_sym_as] = "as", - [anon_sym_silent] = "silent", - [anon_sym_only] = "only", - [anon_sym_from] = "from", - [anon_sym_random] = "random", - [anon_sym_by] = "by", + [sym__identifier] = "_identifier", + [sym_keyword] = "keyword", + [sym_keyword_operator] = "keyword_operator", [anon_sym_EQ_EQ] = "==", [anon_sym_BANG_EQ] = "!=", [anon_sym_LT] = "<", [anon_sym_GT] = ">", [anon_sym_LT_EQ] = "<=", [anon_sym_GT_EQ] = ">=", - [anon_sym_and] = "and", - [anon_sym_or] = "or", - [anon_sym_not] = "not", - [anon_sym_in] = "in", - [anon_sym_notin] = "not in", - [anon_sym_is] = "is", - [anon_sym_isnot] = "is not", - [aux_sym_number_token1] = "number_token1", - [anon_sym_True] = "True", - [anon_sym_False] = "False", + [sym_number] = "number", + [sym_boolean] = "boolean", [anon_sym_SQUOTE] = "'", [aux_sym_string_token1] = "string_token1", [anon_sym_DQUOTE] = "\"", [aux_sym_string_token2] = "string_token2", [anon_sym_PIPE] = "|", - [aux_sym__word_token1] = "_word_token1", - [anon_sym_] = " ", [anon_sym_LBRACE_LBRACE] = "{{", [anon_sym_RBRACE_RBRACE] = "}}", - [aux_sym_variable_name_token1] = "variable_name_token1", - [anon_sym_DOT] = ".", + [sym_variable_name] = "variable_name", [anon_sym_COLON] = ":", + [anon_sym_DOT] = ".", [anon_sym_LBRACE_PERCENT] = "{%", [anon_sym_autoescape] = "tag_name", [anon_sym_PERCENT_RBRACE] = "%}", - [anon_sym_end] = "end", + [anon_sym_endautoescape] = "tag_name", [anon_sym_block] = "tag_name", + [anon_sym_endblock] = "tag_name", [anon_sym_blocktranslate] = "tag_name", + [anon_sym_endblocktranslate] = "tag_name", [anon_sym_ifchanged] = "tag_name", + [anon_sym_endifchanged] = "tag_name", [anon_sym_spaceless] = "tag_name", + [anon_sym_endspaceless] = "tag_name", [anon_sym_verbatim] = "tag_name", - [anon_sym_with2] = "tag_name", + [anon_sym_endverbatim] = "tag_name", + [anon_sym_with] = "tag_name", + [anon_sym_endwith] = "tag_name", [anon_sym_if] = "tag_name", + [anon_sym_endif] = "tag_name", [anon_sym_elif] = "tag_name", [anon_sym_else] = "tag_name", [anon_sym_for] = "tag_name", + [anon_sym_endfor] = "tag_name", [anon_sym_empty] = "tag_name", [anon_sym_filter] = "tag_name", + [anon_sym_endfilter] = "tag_name", [anon_sym_COMMA] = ",", [anon_sym_EQ] = "=", [anon_sym_LBRACE_POUND] = "{#", @@ -192,17 +166,10 @@ static const char * const ts_symbol_names[] = { [sym_content] = "content", [sym_template] = "template", [sym__node] = "_node", - [sym_keyword] = "keyword", [sym_operator] = "operator", - [sym_keyword_operator] = "keyword_operator", - [sym_number] = "number", - [sym_boolean] = "boolean", [sym_string] = "string", - [aux_sym__word] = "_word", - [aux_sym__ws] = "_ws", [sym__expression] = "_expression", [sym_variable] = "variable", - [sym_variable_name] = "variable_name", [sym_filter] = "filter", [sym_filter_name] = "filter_name", [sym_filter_argument] = "filter_argument", @@ -216,18 +183,15 @@ static const char * const ts_symbol_names[] = { [sym_empty_statement] = "branch_statement", [sym_filter_statement] = "paired_statement", [sym_unpaired_statement] = "unpaired_statement", - [sym_detatched_end_statement] = "detatched_end_statement", [sym__attribute] = "_attribute", [sym__comment] = "_comment", [sym_unpaired_comment] = "unpaired_comment", [sym_paired_comment] = "paired_comment", [aux_sym_template_repeat1] = "template_repeat1", - [aux_sym_number_repeat1] = "number_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_string_repeat2] = "string_repeat2", [aux_sym_string_repeat3] = "string_repeat3", - [aux_sym_variable_name_repeat1] = "variable_name_repeat1", - [aux_sym_variable_name_repeat2] = "variable_name_repeat2", + [aux_sym_filter_argument_repeat1] = "filter_argument_repeat1", [aux_sym_paired_statement_repeat1] = "paired_statement_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_unpaired_comment_repeat1] = "unpaired_comment_repeat1", @@ -239,60 +203,52 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, - [aux_sym__node_token1] = aux_sym__node_token1, - [anon_sym_on] = anon_sym_on, - [anon_sym_off] = anon_sym_off, - [anon_sym_with] = anon_sym_with, - [anon_sym_as] = anon_sym_as, - [anon_sym_silent] = anon_sym_silent, - [anon_sym_only] = anon_sym_only, - [anon_sym_from] = anon_sym_from, - [anon_sym_random] = anon_sym_random, - [anon_sym_by] = anon_sym_by, + [sym__identifier] = sym__identifier, + [sym_keyword] = sym_keyword, + [sym_keyword_operator] = sym_keyword_operator, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_and] = anon_sym_and, - [anon_sym_or] = anon_sym_or, - [anon_sym_not] = anon_sym_not, - [anon_sym_in] = anon_sym_in, - [anon_sym_notin] = anon_sym_notin, - [anon_sym_is] = anon_sym_is, - [anon_sym_isnot] = anon_sym_isnot, - [aux_sym_number_token1] = aux_sym_number_token1, - [anon_sym_True] = anon_sym_True, - [anon_sym_False] = anon_sym_False, + [sym_number] = sym_number, + [sym_boolean] = sym_boolean, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [aux_sym_string_token1] = aux_sym_string_token1, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_string_token2] = aux_sym_string_token2, [anon_sym_PIPE] = anon_sym_PIPE, - [aux_sym__word_token1] = aux_sym__word_token1, - [anon_sym_] = anon_sym_, [anon_sym_LBRACE_LBRACE] = anon_sym_LBRACE_LBRACE, [anon_sym_RBRACE_RBRACE] = anon_sym_RBRACE_RBRACE, - [aux_sym_variable_name_token1] = aux_sym_variable_name_token1, - [anon_sym_DOT] = anon_sym_DOT, + [sym_variable_name] = sym_variable_name, [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_DOT] = anon_sym_DOT, [anon_sym_LBRACE_PERCENT] = anon_sym_LBRACE_PERCENT, [anon_sym_autoescape] = anon_sym_autoescape, [anon_sym_PERCENT_RBRACE] = anon_sym_PERCENT_RBRACE, - [anon_sym_end] = anon_sym_end, + [anon_sym_endautoescape] = anon_sym_autoescape, [anon_sym_block] = anon_sym_autoescape, + [anon_sym_endblock] = anon_sym_autoescape, [anon_sym_blocktranslate] = anon_sym_autoescape, + [anon_sym_endblocktranslate] = anon_sym_autoescape, [anon_sym_ifchanged] = anon_sym_autoescape, + [anon_sym_endifchanged] = anon_sym_autoescape, [anon_sym_spaceless] = anon_sym_autoescape, + [anon_sym_endspaceless] = anon_sym_autoescape, [anon_sym_verbatim] = anon_sym_autoescape, - [anon_sym_with2] = anon_sym_autoescape, + [anon_sym_endverbatim] = anon_sym_autoescape, + [anon_sym_with] = anon_sym_autoescape, + [anon_sym_endwith] = anon_sym_autoescape, [anon_sym_if] = anon_sym_autoescape, + [anon_sym_endif] = anon_sym_autoescape, [anon_sym_elif] = anon_sym_autoescape, [anon_sym_else] = anon_sym_autoescape, [anon_sym_for] = anon_sym_autoescape, + [anon_sym_endfor] = anon_sym_autoescape, [anon_sym_empty] = anon_sym_autoescape, [anon_sym_filter] = anon_sym_autoescape, + [anon_sym_endfilter] = anon_sym_autoescape, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_LBRACE_POUND] = anon_sym_LBRACE_POUND, @@ -303,17 +259,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_content] = sym_content, [sym_template] = sym_template, [sym__node] = sym__node, - [sym_keyword] = sym_keyword, [sym_operator] = sym_operator, - [sym_keyword_operator] = sym_keyword_operator, - [sym_number] = sym_number, - [sym_boolean] = sym_boolean, [sym_string] = sym_string, - [aux_sym__word] = aux_sym__word, - [aux_sym__ws] = aux_sym__ws, [sym__expression] = sym__expression, [sym_variable] = sym_variable, - [sym_variable_name] = sym_variable_name, [sym_filter] = sym_filter, [sym_filter_name] = sym_filter_name, [sym_filter_argument] = sym_filter_argument, @@ -327,18 +276,15 @@ static const TSSymbol ts_symbol_map[] = { [sym_empty_statement] = sym_elif_statement, [sym_filter_statement] = sym_paired_statement, [sym_unpaired_statement] = sym_unpaired_statement, - [sym_detatched_end_statement] = sym_detatched_end_statement, [sym__attribute] = sym__attribute, [sym__comment] = sym__comment, [sym_unpaired_comment] = sym_unpaired_comment, [sym_paired_comment] = sym_paired_comment, [aux_sym_template_repeat1] = aux_sym_template_repeat1, - [aux_sym_number_repeat1] = aux_sym_number_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_string_repeat2] = aux_sym_string_repeat2, [aux_sym_string_repeat3] = aux_sym_string_repeat3, - [aux_sym_variable_name_repeat1] = aux_sym_variable_name_repeat1, - [aux_sym_variable_name_repeat2] = aux_sym_variable_name_repeat2, + [aux_sym_filter_argument_repeat1] = aux_sym_filter_argument_repeat1, [aux_sym_paired_statement_repeat1] = aux_sym_paired_statement_repeat1, [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_unpaired_comment_repeat1] = aux_sym_unpaired_comment_repeat1, @@ -353,45 +299,17 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [aux_sym__node_token1] = { + [sym__identifier] = { .visible = false, - .named = false, + .named = true, }, - [anon_sym_on] = { + [sym_keyword] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_off] = { + [sym_keyword_operator] = { .visible = true, - .named = false, - }, - [anon_sym_with] = { - .visible = true, - .named = false, - }, - [anon_sym_as] = { - .visible = true, - .named = false, - }, - [anon_sym_silent] = { - .visible = true, - .named = false, - }, - [anon_sym_only] = { - .visible = true, - .named = false, - }, - [anon_sym_from] = { - .visible = true, - .named = false, - }, - [anon_sym_random] = { - .visible = true, - .named = false, - }, - [anon_sym_by] = { - .visible = true, - .named = false, + .named = true, }, [anon_sym_EQ_EQ] = { .visible = true, @@ -417,45 +335,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_and] = { + [sym_number] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_or] = { + [sym_boolean] = { .visible = true, - .named = false, - }, - [anon_sym_not] = { - .visible = true, - .named = false, - }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, - [anon_sym_notin] = { - .visible = true, - .named = false, - }, - [anon_sym_is] = { - .visible = true, - .named = false, - }, - [anon_sym_isnot] = { - .visible = true, - .named = false, - }, - [aux_sym_number_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_True] = { - .visible = true, - .named = false, - }, - [anon_sym_False] = { - .visible = true, - .named = false, + .named = true, }, [anon_sym_SQUOTE] = { .visible = true, @@ -477,14 +363,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym__word_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_] = { - .visible = true, - .named = false, - }, [anon_sym_LBRACE_LBRACE] = { .visible = true, .named = false, @@ -493,15 +371,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_variable_name_token1] = { - .visible = false, - .named = false, + [sym_variable_name] = { + .visible = true, + .named = true, }, - [anon_sym_DOT] = { + [anon_sym_COLON] = { .visible = true, .named = false, }, - [anon_sym_COLON] = { + [anon_sym_DOT] = { .visible = true, .named = false, }, @@ -517,31 +395,55 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_end] = { + [anon_sym_endautoescape] = { .visible = true, - .named = false, + .named = true, }, [anon_sym_block] = { .visible = true, .named = true, }, + [anon_sym_endblock] = { + .visible = true, + .named = true, + }, [anon_sym_blocktranslate] = { .visible = true, .named = true, }, + [anon_sym_endblocktranslate] = { + .visible = true, + .named = true, + }, [anon_sym_ifchanged] = { .visible = true, .named = true, }, + [anon_sym_endifchanged] = { + .visible = true, + .named = true, + }, [anon_sym_spaceless] = { .visible = true, .named = true, }, + [anon_sym_endspaceless] = { + .visible = true, + .named = true, + }, [anon_sym_verbatim] = { .visible = true, .named = true, }, - [anon_sym_with2] = { + [anon_sym_endverbatim] = { + .visible = true, + .named = true, + }, + [anon_sym_with] = { + .visible = true, + .named = true, + }, + [anon_sym_endwith] = { .visible = true, .named = true, }, @@ -549,6 +451,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_endif] = { + .visible = true, + .named = true, + }, [anon_sym_elif] = { .visible = true, .named = true, @@ -561,6 +467,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_endfor] = { + .visible = true, + .named = true, + }, [anon_sym_empty] = { .visible = true, .named = true, @@ -569,6 +479,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_endfilter] = { + .visible = true, + .named = true, + }, [anon_sym_COMMA] = { .visible = true, .named = false, @@ -609,38 +523,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_keyword] = { - .visible = true, - .named = true, - }, [sym_operator] = { .visible = true, .named = true, }, - [sym_keyword_operator] = { - .visible = true, - .named = true, - }, - [sym_number] = { - .visible = true, - .named = true, - }, - [sym_boolean] = { - .visible = true, - .named = true, - }, [sym_string] = { .visible = true, .named = true, }, - [aux_sym__word] = { - .visible = false, - .named = false, - }, - [aux_sym__ws] = { - .visible = false, - .named = false, - }, [sym__expression] = { .visible = false, .named = true, @@ -649,10 +539,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_variable_name] = { - .visible = true, - .named = true, - }, [sym_filter] = { .visible = true, .named = true, @@ -705,10 +591,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_detatched_end_statement] = { - .visible = true, - .named = true, - }, [sym__attribute] = { .visible = false, .named = true, @@ -729,10 +611,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_number_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_string_repeat1] = { .visible = false, .named = false, @@ -745,11 +623,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_variable_name_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_variable_name_repeat2] = { + [aux_sym_filter_argument_repeat1] = { .visible = false, .named = false, }, @@ -789,80 +663,68 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = anon_alias_sym_, }, [2] = { - [2] = anon_sym_autoescape, + [1] = anon_sym_autoescape, }, [3] = { - [3] = anon_sym_autoescape, + [5] = alias_sym_end_paired_statement, }, [4] = { - [1] = sym_filter_argument, + [0] = anon_alias_sym_, + [2] = anon_alias_sym_, + [3] = anon_alias_sym_, + [5] = anon_alias_sym_, }, [5] = { - [8] = alias_sym_end_paired_statement, + [6] = alias_sym_end_paired_statement, }, [6] = { - [9] = alias_sym_end_paired_statement, + [1] = sym_filter_argument, }, [7] = { [0] = anon_alias_sym_, - [4] = anon_alias_sym_, - [5] = anon_alias_sym_, - [9] = anon_alias_sym_, - }, - [8] = { - [10] = alias_sym_end_paired_statement, - }, - [9] = { - [0] = anon_alias_sym_, + [3] = anon_alias_sym_, [4] = anon_alias_sym_, [6] = anon_alias_sym_, - [10] = anon_alias_sym_, + }, + [8] = { + [0] = anon_alias_sym_, + [2] = anon_alias_sym_, + [4] = anon_alias_sym_, + [6] = anon_alias_sym_, + }, + [9] = { + [7] = alias_sym_end_paired_statement, }, [10] = { - [11] = alias_sym_end_paired_statement, + [0] = anon_alias_sym_, + [3] = anon_alias_sym_, + [5] = anon_alias_sym_, + [7] = anon_alias_sym_, }, [11] = { [0] = anon_alias_sym_, - [4] = anon_alias_sym_, + [2] = anon_alias_sym_, + [5] = anon_alias_sym_, [7] = anon_alias_sym_, - [11] = anon_alias_sym_, }, [12] = { - [0] = anon_alias_sym_, - [6] = anon_alias_sym_, - [7] = anon_alias_sym_, - [11] = anon_alias_sym_, + [8] = alias_sym_end_paired_statement, }, [13] = { - [12] = alias_sym_end_paired_statement, - }, - [14] = { [0] = anon_alias_sym_, + [3] = anon_alias_sym_, [6] = anon_alias_sym_, [8] = anon_alias_sym_, - [12] = anon_alias_sym_, + }, + [14] = { + [9] = alias_sym_end_paired_statement, }, [15] = { - [13] = alias_sym_end_paired_statement, - }, - [16] = { - [0] = anon_alias_sym_, - [6] = anon_alias_sym_, - [9] = anon_alias_sym_, - [13] = anon_alias_sym_, - }, - [17] = { - [14] = alias_sym_end_paired_statement, - }, - [18] = { - [15] = alias_sym_end_paired_statement, + [10] = alias_sym_end_paired_statement, }, }; static const uint16_t ts_non_terminal_alias_map[] = { - aux_sym__word, 2, - aux_sym__word, - anon_sym_autoescape, sym_unpaired_comment, 2, sym_unpaired_comment, anon_alias_sym_, @@ -883,210 +745,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, + [4] = 4, [5] = 5, [6] = 6, [7] = 7, [8] = 8, [9] = 9, - [10] = 10, + [10] = 5, [11] = 11, [12] = 12, [13] = 13, - [14] = 14, - [15] = 9, + [14] = 6, + [15] = 15, [16] = 16, [17] = 17, - [18] = 3, + [18] = 18, [19] = 19, [20] = 20, [21] = 21, [22] = 22, - [23] = 11, - [24] = 24, - [25] = 25, + [23] = 23, + [24] = 19, + [25] = 18, [26] = 26, - [27] = 27, - [28] = 22, - [29] = 12, + [27] = 17, + [28] = 28, + [29] = 16, [30] = 30, [31] = 31, - [32] = 32, - [33] = 27, - [34] = 26, - [35] = 25, - [36] = 24, - [37] = 17, - [38] = 19, + [32] = 15, + [33] = 9, + [34] = 13, + [35] = 35, + [36] = 23, + [37] = 37, + [38] = 22, [39] = 39, - [40] = 32, + [40] = 21, [41] = 41, - [42] = 7, - [43] = 21, - [44] = 31, + [42] = 20, + [43] = 43, + [44] = 44, [45] = 45, - [46] = 20, - [47] = 14, - [48] = 8, - [49] = 41, - [50] = 10, + [46] = 43, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 31, [51] = 51, - [52] = 5, - [53] = 30, - [54] = 54, + [52] = 52, + [53] = 53, + [54] = 12, [55] = 55, - [56] = 39, - [57] = 55, + [56] = 11, + [57] = 57, [58] = 58, - [59] = 6, - [60] = 13, - [61] = 16, - [62] = 62, - [63] = 63, + [59] = 26, + [60] = 7, + [61] = 30, + [62] = 52, + [63] = 44, [64] = 64, - [65] = 65, - [66] = 62, - [67] = 67, - [68] = 63, - [69] = 69, - [70] = 70, - [71] = 71, + [65] = 58, + [66] = 47, + [67] = 51, + [68] = 35, + [69] = 45, + [70] = 48, + [71] = 49, [72] = 72, [73] = 73, - [74] = 74, - [75] = 71, - [76] = 65, + [74] = 41, + [75] = 75, + [76] = 76, [77] = 77, [78] = 78, [79] = 79, [80] = 80, - [81] = 74, + [81] = 81, [82] = 82, - [83] = 73, - [84] = 78, + [83] = 83, + [84] = 84, [85] = 85, - [86] = 82, - [87] = 72, + [86] = 86, + [87] = 87, [88] = 88, - [89] = 70, - [90] = 90, - [91] = 91, - [92] = 79, - [93] = 69, + [89] = 87, + [90] = 88, + [91] = 85, + [92] = 92, + [93] = 84, [94] = 94, - [95] = 80, + [95] = 95, [96] = 96, [97] = 97, - [98] = 64, - [99] = 85, - [100] = 100, + [98] = 98, + [99] = 99, + [100] = 95, [101] = 101, [102] = 102, - [103] = 96, - [104] = 91, + [103] = 103, + [104] = 104, [105] = 105, [106] = 106, - [107] = 77, - [108] = 100, - [109] = 105, - [110] = 94, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 110, [111] = 111, - [112] = 88, - [113] = 113, - [114] = 102, - [115] = 90, - [116] = 101, + [112] = 112, + [113] = 107, + [114] = 114, + [115] = 106, + [116] = 116, [117] = 117, [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, + [119] = 112, + [120] = 103, + [121] = 111, [122] = 122, - [123] = 123, - [124] = 124, - [125] = 123, - [126] = 126, - [127] = 124, - [128] = 128, - [129] = 128, + [123] = 110, + [124] = 99, + [125] = 109, + [126] = 97, + [127] = 108, + [128] = 96, + [129] = 104, [130] = 130, - [131] = 131, - [132] = 126, - [133] = 130, - [134] = 131, + [131] = 98, + [132] = 132, + [133] = 122, + [134] = 101, [135] = 135, - [136] = 136, + [136] = 132, [137] = 137, - [138] = 135, - [139] = 136, + [138] = 138, + [139] = 139, [140] = 140, - [141] = 141, - [142] = 142, - [143] = 141, - [144] = 142, + [141] = 114, + [142] = 117, + [143] = 143, + [144] = 118, [145] = 145, - [146] = 146, - [147] = 145, - [148] = 146, - [149] = 149, + [146] = 94, + [147] = 116, + [148] = 143, + [149] = 137, [150] = 150, - [151] = 151, + [151] = 145, [152] = 152, [153] = 153, - [154] = 154, - [155] = 155, - [156] = 156, - [157] = 157, + [154] = 130, + [155] = 150, + [156] = 152, + [157] = 153, [158] = 158, [159] = 159, - [160] = 154, + [160] = 160, [161] = 161, [162] = 162, [163] = 163, - [164] = 164, + [164] = 140, [165] = 165, [166] = 166, - [167] = 164, + [167] = 167, [168] = 168, [169] = 169, - [170] = 166, - [171] = 161, - [172] = 165, + [170] = 163, + [171] = 171, + [172] = 169, [173] = 173, [174] = 174, - [175] = 175, - [176] = 163, - [177] = 159, - [178] = 178, - [179] = 179, - [180] = 158, - [181] = 153, - [182] = 182, - [183] = 183, - [184] = 152, - [185] = 151, - [186] = 173, - [187] = 187, - [188] = 149, - [189] = 189, - [190] = 190, + [175] = 171, + [176] = 165, + [177] = 173, + [178] = 167, + [179] = 174, + [180] = 180, + [181] = 139, + [182] = 158, + [183] = 166, + [184] = 159, + [185] = 168, + [186] = 86, + [187] = 162, + [188] = 180, + [189] = 160, + [190] = 161, [191] = 191, - [192] = 157, + [192] = 192, [193] = 193, - [194] = 194, - [195] = 195, - [196] = 196, + [194] = 191, + [195] = 193, + [196] = 192, [197] = 197, [198] = 198, [199] = 199, - [200] = 193, - [201] = 201, - [202] = 202, - [203] = 198, + [200] = 200, + [201] = 198, + [202] = 199, + [203] = 197, [204] = 204, - [205] = 137, - [206] = 204, - [207] = 196, + [205] = 205, + [206] = 206, + [207] = 207, [208] = 208, [209] = 209, [210] = 210, @@ -1094,98 +956,98 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [212] = 212, [213] = 213, [214] = 214, - [215] = 155, + [215] = 215, [216] = 216, [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, - [222] = 208, + [222] = 222, [223] = 223, - [224] = 183, - [225] = 219, - [226] = 187, - [227] = 168, - [228] = 202, - [229] = 150, - [230] = 230, - [231] = 156, - [232] = 232, - [233] = 210, - [234] = 169, - [235] = 174, - [236] = 217, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 226, + [230] = 211, + [231] = 228, + [232] = 209, + [233] = 233, + [234] = 227, + [235] = 235, + [236] = 236, [237] = 237, - [238] = 218, + [238] = 238, [239] = 239, - [240] = 220, - [241] = 241, - [242] = 223, - [243] = 175, - [244] = 244, - [245] = 245, - [246] = 239, - [247] = 178, + [240] = 240, + [241] = 204, + [242] = 233, + [243] = 225, + [244] = 222, + [245] = 240, + [246] = 224, + [247] = 221, [248] = 248, - [249] = 249, - [250] = 212, - [251] = 179, - [252] = 248, - [253] = 253, - [254] = 254, - [255] = 182, - [256] = 256, - [257] = 257, - [258] = 213, - [259] = 214, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 230, - [265] = 265, - [266] = 265, - [267] = 221, - [268] = 263, - [269] = 190, - [270] = 257, - [271] = 191, - [272] = 261, - [273] = 253, - [274] = 260, - [275] = 189, - [276] = 256, - [277] = 249, - [278] = 245, - [279] = 254, - [280] = 241, - [281] = 237, - [282] = 232, - [283] = 194, - [284] = 216, - [285] = 244, - [286] = 195, - [287] = 211, - [288] = 209, - [289] = 262, - [290] = 199, - [291] = 201, - [292] = 292, - [293] = 293, + [249] = 220, + [250] = 248, + [251] = 219, + [252] = 218, + [253] = 205, + [254] = 217, + [255] = 223, + [256] = 216, + [257] = 215, + [258] = 238, + [259] = 237, + [260] = 214, + [261] = 213, + [262] = 212, + [263] = 210, + [264] = 208, + [265] = 239, + [266] = 207, + [267] = 206, + [268] = 236, + [269] = 235, + [270] = 270, + [271] = 270, + [272] = 272, + [273] = 273, + [274] = 272, + [275] = 273, + [276] = 273, + [277] = 272, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 280, + [285] = 285, + [286] = 281, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 283, + [291] = 282, + [292] = 282, + [293] = 283, [294] = 294, - [295] = 293, - [296] = 296, - [297] = 294, - [298] = 292, - [299] = 296, - [300] = 118, + [295] = 295, + [296] = 280, + [297] = 281, + [298] = 298, + [299] = 299, + [300] = 300, [301] = 301, [302] = 302, [303] = 303, [304] = 304, [305] = 305, - [306] = 302, + [306] = 306, [307] = 307, [308] = 308, [309] = 309, @@ -1195,136 +1057,136 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [313] = 313, [314] = 314, [315] = 315, - [316] = 314, + [316] = 316, [317] = 317, [318] = 318, [319] = 319, [320] = 320, - [321] = 304, + [321] = 321, [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, + [323] = 300, + [324] = 304, + [325] = 288, [326] = 326, - [327] = 327, + [327] = 278, [328] = 328, - [329] = 329, - [330] = 330, + [329] = 328, + [330] = 295, [331] = 331, - [332] = 332, - [333] = 118, - [334] = 334, - [335] = 312, - [336] = 336, - [337] = 328, - [338] = 338, - [339] = 317, - [340] = 340, + [332] = 298, + [333] = 279, + [334] = 301, + [335] = 313, + [336] = 316, + [337] = 337, + [338] = 311, + [339] = 339, + [340] = 303, [341] = 341, - [342] = 342, + [342] = 331, [343] = 343, [344] = 344, [345] = 345, - [346] = 305, - [347] = 347, - [348] = 310, - [349] = 308, + [346] = 306, + [347] = 302, + [348] = 312, + [349] = 349, [350] = 350, - [351] = 309, - [352] = 342, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 350, - [358] = 347, - [359] = 313, - [360] = 345, - [361] = 315, - [362] = 344, - [363] = 318, - [364] = 340, - [365] = 320, - [366] = 341, - [367] = 323, - [368] = 356, - [369] = 325, - [370] = 353, - [371] = 301, - [372] = 307, - [373] = 303, - [374] = 355, - [375] = 324, - [376] = 343, - [377] = 319, - [378] = 354, - [379] = 331, - [380] = 338, - [381] = 336, - [382] = 322, - [383] = 311, - [384] = 332, - [385] = 330, - [386] = 329, - [387] = 334, - [388] = 327, - [389] = 326, - [390] = 118, + [351] = 287, + [352] = 309, + [353] = 308, + [354] = 307, + [355] = 305, + [356] = 310, + [357] = 328, + [358] = 331, + [359] = 320, + [360] = 321, + [361] = 345, + [362] = 317, + [363] = 350, + [364] = 315, + [365] = 314, + [366] = 299, + [367] = 318, + [368] = 319, + [369] = 369, + [370] = 294, + [371] = 285, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 285, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 377, + [383] = 383, + [384] = 375, + [385] = 373, + [386] = 386, + [387] = 387, + [388] = 373, + [389] = 294, + [390] = 390, [391] = 391, [392] = 392, [393] = 393, [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, + [395] = 394, + [396] = 393, + [397] = 387, [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, - [402] = 402, + [399] = 374, + [400] = 398, + [401] = 393, + [402] = 378, [403] = 403, [404] = 404, - [405] = 405, - [406] = 406, + [405] = 398, + [406] = 379, [407] = 407, [408] = 408, - [409] = 409, + [409] = 374, [410] = 410, [411] = 411, - [412] = 412, - [413] = 413, + [412] = 341, + [413] = 319, [414] = 414, [415] = 415, [416] = 416, [417] = 417, - [418] = 418, + [418] = 316, [419] = 419, [420] = 420, [421] = 421, - [422] = 404, - [423] = 423, + [422] = 421, + [423] = 415, [424] = 424, - [425] = 425, - [426] = 426, + [425] = 419, + [426] = 417, [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, + [428] = 420, + [429] = 313, + [430] = 424, [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, + [432] = 415, + [433] = 421, + [434] = 278, + [435] = 320, [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 415, + [437] = 431, + [438] = 420, + [439] = 309, + [440] = 427, + [441] = 419, + [442] = 417, + [443] = 312, + [444] = 431, + [445] = 427, [446] = 446, [447] = 447, [448] = 448, @@ -1332,1535 +1194,1322 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [450] = 450, [451] = 451, [452] = 452, - [453] = 452, - [454] = 447, + [453] = 453, + [454] = 454, [455] = 455, - [456] = 452, + [456] = 456, [457] = 457, - [458] = 458, + [458] = 453, [459] = 459, [460] = 460, - [461] = 439, - [462] = 449, - [463] = 447, - [464] = 464, - [465] = 451, + [461] = 459, + [462] = 462, + [463] = 463, + [464] = 462, + [465] = 465, [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, + [467] = 462, + [468] = 450, + [469] = 451, [470] = 470, - [471] = 471, - [472] = 472, - [473] = 118, - [474] = 472, - [475] = 475, - [476] = 476, + [471] = 470, + [472] = 466, + [473] = 446, + [474] = 455, + [475] = 454, + [476] = 466, [477] = 477, - [478] = 471, + [478] = 478, [479] = 479, - [480] = 480, + [480] = 479, [481] = 481, - [482] = 475, - [483] = 483, + [482] = 449, + [483] = 477, [484] = 484, - [485] = 485, - [486] = 486, - [487] = 483, - [488] = 416, - [489] = 470, - [490] = 458, - [491] = 468, - [492] = 437, + [485] = 446, + [486] = 465, + [487] = 487, + [488] = 488, + [489] = 463, + [490] = 460, + [491] = 455, + [492] = 488, [493] = 493, - [494] = 436, - [495] = 435, - [496] = 432, - [497] = 428, - [498] = 498, - [499] = 427, - [500] = 425, - [501] = 477, - [502] = 502, - [503] = 503, - [504] = 477, - [505] = 505, - [506] = 424, - [507] = 423, - [508] = 476, - [509] = 420, - [510] = 483, - [511] = 421, - [512] = 407, - [513] = 471, - [514] = 514, - [515] = 515, - [516] = 516, - [517] = 517, - [518] = 405, - [519] = 480, - [520] = 480, - [521] = 411, - [522] = 413, - [523] = 455, - [524] = 414, - [525] = 418, - [526] = 442, - [527] = 470, - [528] = 412, - [529] = 426, - [530] = 433, - [531] = 403, - [532] = 441, - [533] = 434, - [534] = 431, - [535] = 417, - [536] = 408, - [537] = 419, - [538] = 429, - [539] = 440, - [540] = 446, - [541] = 450, - [542] = 457, - [543] = 444, - [544] = 448, - [545] = 460, - [546] = 443, - [547] = 430, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 548, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 554, - [556] = 556, - [557] = 556, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 562, - [566] = 561, - [567] = 564, - [568] = 549, - [569] = 569, - [570] = 569, - [571] = 559, - [572] = 572, - [573] = 563, - [574] = 564, - [575] = 118, - [576] = 576, - [577] = 552, - [578] = 118, - [579] = 562, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 582, - [584] = 581, - [585] = 580, - [586] = 561, - [587] = 553, - [588] = 558, - [589] = 550, - [590] = 563, - [591] = 582, - [592] = 572, - [593] = 593, - [594] = 594, - [595] = 549, - [596] = 596, - [597] = 597, - [598] = 553, - [599] = 580, - [600] = 596, - [601] = 569, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 619, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 623, - [624] = 624, - [625] = 625, - [626] = 626, - [627] = 627, - [628] = 628, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 633, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 623, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 608, - [649] = 614, - [650] = 621, - [651] = 622, - [652] = 630, - [653] = 638, - [654] = 654, - [655] = 654, - [656] = 647, - [657] = 646, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 603, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 668, - [669] = 669, - [670] = 604, - [671] = 671, - [672] = 672, - [673] = 673, - [674] = 674, - [675] = 645, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 677, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 702, - [718] = 718, - [719] = 719, - [720] = 720, - [721] = 721, - [722] = 722, - [723] = 416, - [724] = 597, - [725] = 451, - [726] = 458, - [727] = 701, - [728] = 642, - [729] = 641, - [730] = 640, - [731] = 639, - [732] = 638, - [733] = 637, - [734] = 636, - [735] = 635, - [736] = 634, - [737] = 712, - [738] = 633, - [739] = 632, - [740] = 740, - [741] = 630, - [742] = 710, - [743] = 629, - [744] = 628, - [745] = 709, - [746] = 627, - [747] = 626, - [748] = 708, - [749] = 625, - [750] = 624, - [751] = 606, - [752] = 622, - [753] = 621, - [754] = 620, - [755] = 706, - [756] = 619, - [757] = 705, - [758] = 618, - [759] = 617, - [760] = 760, - [761] = 761, - [762] = 703, - [763] = 616, - [764] = 615, - [765] = 765, - [766] = 766, - [767] = 766, - [768] = 614, - [769] = 613, - [770] = 677, - [771] = 700, - [772] = 772, - [773] = 699, - [774] = 612, - [775] = 611, - [776] = 740, - [777] = 777, - [778] = 697, - [779] = 610, - [780] = 609, - [781] = 696, - [782] = 695, - [783] = 694, - [784] = 693, - [785] = 692, - [786] = 691, - [787] = 690, - [788] = 658, - [789] = 659, - [790] = 760, - [791] = 660, - [792] = 661, - [793] = 662, - [794] = 664, - [795] = 765, - [796] = 665, - [797] = 666, - [798] = 689, - [799] = 799, - [800] = 765, - [801] = 801, - [802] = 766, - [803] = 667, - [804] = 668, - [805] = 669, - [806] = 806, - [807] = 671, - [808] = 672, - [809] = 673, - [810] = 644, - [811] = 811, - [812] = 674, - [813] = 813, - [814] = 631, - [815] = 676, - [816] = 760, - [817] = 817, - [818] = 679, - [819] = 680, - [820] = 681, - [821] = 682, - [822] = 683, - [823] = 684, - [824] = 806, - [825] = 605, - [826] = 685, - [827] = 678, - [828] = 607, - [829] = 687, - [830] = 688, - [831] = 608, - [832] = 832, - [833] = 740, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 838, - [853] = 839, - [854] = 844, - [855] = 848, - [856] = 856, - [857] = 844, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 843, - [863] = 842, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 841, - [868] = 840, - [869] = 869, - [870] = 870, - [871] = 851, - [872] = 872, - [873] = 873, - [874] = 428, - [875] = 834, - [876] = 860, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 880, - [881] = 839, - [882] = 882, - [883] = 838, - [884] = 884, - [885] = 837, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 836, - [891] = 856, - [892] = 892, - [893] = 420, - [894] = 858, - [895] = 895, - [896] = 896, - [897] = 850, - [898] = 898, - [899] = 899, - [900] = 861, - [901] = 901, - [902] = 864, - [903] = 903, - [904] = 865, - [905] = 905, - [906] = 866, - [907] = 907, - [908] = 869, - [909] = 909, - [910] = 870, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 851, - [916] = 916, - [917] = 872, - [918] = 918, - [919] = 873, - [920] = 886, - [921] = 887, - [922] = 898, - [923] = 923, - [924] = 877, - [925] = 878, - [926] = 926, - [927] = 927, - [928] = 879, - [929] = 926, - [930] = 930, - [931] = 880, - [932] = 888, - [933] = 933, - [934] = 889, - [935] = 935, - [936] = 892, - [937] = 937, - [938] = 895, - [939] = 939, - [940] = 940, - [941] = 896, - [942] = 942, - [943] = 943, - [944] = 845, - [945] = 846, - [946] = 847, - [947] = 947, - [948] = 948, - [949] = 848, - [950] = 413, - [951] = 850, - [952] = 835, - [953] = 953, - [954] = 954, - [955] = 899, - [956] = 901, - [957] = 440, - [958] = 903, - [959] = 905, - [960] = 907, - [961] = 909, - [962] = 911, - [963] = 912, - [964] = 913, - [965] = 914, - [966] = 916, - [967] = 918, - [968] = 448, - [969] = 969, - [970] = 414, - [971] = 953, - [972] = 954, - [973] = 849, - [974] = 927, - [975] = 942, - [976] = 930, - [977] = 933, - [978] = 935, - [979] = 937, - [980] = 939, - [981] = 940, - [982] = 948, - [983] = 983, - [984] = 947, - [985] = 985, - [986] = 859, - [987] = 884, - [988] = 953, - [989] = 954, - [990] = 990, - [991] = 948, - [992] = 947, - [993] = 969, - [994] = 859, - [995] = 943, - [996] = 884, - [997] = 943, - [998] = 998, - [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 1001, - [1003] = 1000, - [1004] = 998, - [1005] = 999, - [1006] = 1006, + [494] = 454, + [495] = 452, + [496] = 448, + [497] = 478, + [498] = 456, + [499] = 449, + [500] = 478, + [501] = 447, }; -static inline bool aux_sym_string_token1_character_set_1(int32_t c) { - return (c < '0' - ? (c < '\'' - ? (c < ' ' - ? c == 0 - : (c <= ' ' || c == '"')) - : (c <= '\'' || (c < '.' - ? c == ',' - : c <= '.'))) - : (c <= ':' || (c < '_' - ? (c < 'A' - ? (c >= '<' && c <= '>') - : c <= 'Z') - : (c <= '_' || (c < '|' - ? (c >= 'a' && c <= 'z') - : c <= '|'))))); -} - static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(146); - if (!aux_sym_string_token1_character_set_1(lookahead)) ADVANCE(176); - if (lookahead == ' ') ADVANCE(198); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == ',') ADVANCE(231); - if (lookahead == '.') ADVANCE(213); - if (lookahead == ':') ADVANCE(214); - if (lookahead == '<') ADVANCE(159); - if (lookahead == '=') ADVANCE(232); - if (lookahead == '>') ADVANCE(161); - if (lookahead == '_') ADVANCE(176); - if (lookahead == '|') ADVANCE(179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(172); + if (eof) ADVANCE(21); + if (lookahead == '!') ADVANCE(7); + if (lookahead == '"') ADVANCE(38); + if (lookahead == '#') ADVANCE(11); + if (lookahead == '%') ADVANCE(12); + if (lookahead == '\'') ADVANCE(35); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '.') ADVANCE(97); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '<') ADVANCE(28); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '>') ADVANCE(29); + if (lookahead == 'F') ADVANCE(44); + if (lookahead == 'T') ADVANCE(51); + if (lookahead == 'a') ADVANCE(48); + if (lookahead == 'i') ADVANCE(49); + if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'o') ADVANCE(52); + if (lookahead == '{') ADVANCE(4); + if (lookahead == '|') ADVANCE(41); + if (lookahead == '}') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(176); + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 1: - if (lookahead == ' ') ADVANCE(198); - if (lookahead == '!') ADVANCE(27); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(140); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == ',') ADVANCE(231); - if (lookahead == '<') ADVANCE(160); - if (lookahead == '=') ADVANCE(233); - if (lookahead == '>') ADVANCE(162); - if (lookahead == 'F') ADVANCE(202); - if (lookahead == 'T') ADVANCE(210); - if (lookahead == 'a') ADVANCE(207); - if (lookahead == 'b') ADVANCE(212); - if (lookahead == 'f') ADVANCE(211); - if (lookahead == 'i') ADVANCE(208); - if (lookahead == 'n') ADVANCE(209); - if (lookahead == 'o') ADVANCE(204); - if (lookahead == 'r') ADVANCE(203); - if (lookahead == 's') ADVANCE(205); - if (lookahead == 'w') ADVANCE(206); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '}') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(172); + if (lookahead == '!') ADVANCE(7); + if (lookahead == '"') ADVANCE(38); + if (lookahead == '%') ADVANCE(12); + if (lookahead == '\'') ADVANCE(35); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '.') ADVANCE(97); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '<') ADVANCE(28); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '>') ADVANCE(29); + if (lookahead == 'F') ADVANCE(63); + if (lookahead == 'T') ADVANCE(84); + if (lookahead == 'a') ADVANCE(78); + if (lookahead == 'b') ADVANCE(91); + if (lookahead == 'f') ADVANCE(85); + if (lookahead == 'i') ADVANCE(80); + if (lookahead == 'n') ADVANCE(82); + if (lookahead == 'o') ADVANCE(70); + if (lookahead == 'r') ADVANCE(64); + if (lookahead == 's') ADVANCE(72); + if (lookahead == 'w') ADVANCE(73); + if (lookahead == '|') ADVANCE(41); + if (lookahead == '}') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(201); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 2: - if (lookahead == ' ') ADVANCE(198); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '%') ADVANCE(140); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == ',') ADVANCE(231); - if (lookahead == '.') ADVANCE(213); - if (lookahead == ':') ADVANCE(214); - if (lookahead == '=') ADVANCE(232); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '}') ADVANCE(141); + if (lookahead == '"') ADVANCE(38); + if (lookahead == '%') ADVANCE(12); + if (lookahead == '\'') ADVANCE(35); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(2) if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(180); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 3: - if (lookahead == ' ') ADVANCE(198); - if (lookahead == '%') ADVANCE(140); - if (lookahead == ',') ADVANCE(231); - if (lookahead == '=') ADVANCE(232); - if (lookahead == '}') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(172); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(201); + if (lookahead == '"') ADVANCE(38); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(40); + if (lookahead != 0) ADVANCE(39); END_STATE(); case 4: - if (lookahead == ' ') ADVANCE(198); - if (lookahead == ',') ADVANCE(231); - if (lookahead == '.') ADVANCE(213); - if (lookahead == ':') ADVANCE(214); - if (lookahead == '=') ADVANCE(232); - if (lookahead == 'a') ADVANCE(197); - if (lookahead == 'b') ADVANCE(189); - if (lookahead == 'c') ADVANCE(195); - if (lookahead == 'e') ADVANCE(188); - if (lookahead == 'f') ADVANCE(186); - if (lookahead == 'i') ADVANCE(182); - if (lookahead == 's') ADVANCE(196); - if (lookahead == 'v') ADVANCE(181); - if (lookahead == 'w') ADVANCE(187); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '}') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(180); + if (lookahead == '#') ADVANCE(102); + if (lookahead == '%') ADVANCE(98); + if (lookahead == '{') ADVANCE(59); END_STATE(); case 5: - if (lookahead == ' ') ADVANCE(198); - if (lookahead == 'a') ADVANCE(197); - if (lookahead == 'b') ADVANCE(189); - if (lookahead == 'c') ADVANCE(195); - if (lookahead == 'e') ADVANCE(192); - if (lookahead == 'f') ADVANCE(186); - if (lookahead == 'i') ADVANCE(182); - if (lookahead == 's') ADVANCE(196); - if (lookahead == 'v') ADVANCE(181); - if (lookahead == 'w') ADVANCE(187); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(180); + if (lookahead == '#') ADVANCE(102); + if (lookahead == '%') ADVANCE(98); + if (lookahead == '{') ADVANCE(59); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 6: - if (lookahead == ' ') ADVANCE(198); - if (lookahead == 'a') ADVANCE(197); - if (lookahead == 'b') ADVANCE(189); - if (lookahead == 'c') ADVANCE(195); - if (lookahead == 'e') ADVANCE(193); - if (lookahead == 'f') ADVANCE(186); - if (lookahead == 'i') ADVANCE(182); - if (lookahead == 's') ADVANCE(196); - if (lookahead == 'v') ADVANCE(181); - if (lookahead == 'w') ADVANCE(187); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(180); + if (lookahead == '\'') ADVANCE(35); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(37); + if (lookahead != 0) ADVANCE(36); END_STATE(); case 7: - if (lookahead == ' ') ADVANCE(198); - if (lookahead == 'c') ADVANCE(104); - if (lookahead == 'e') ADVANCE(96); + if (lookahead == '=') ADVANCE(27); END_STATE(); case 8: - if (lookahead == ' ') ADVANCE(225); + if (lookahead == 'n') ADVANCE(14); END_STATE(); case 9: - if (lookahead == ' ') ADVANCE(225); - if (lookahead == 'c') ADVANCE(69); + if (lookahead == 'o') ADVANCE(10); END_STATE(); case 10: - if (lookahead == ' ') ADVANCE(228); + if (lookahead == 't') ADVANCE(14); END_STATE(); case 11: - if (lookahead == ' ') ADVANCE(226); + if (lookahead == '}') ADVANCE(109); END_STATE(); case 12: - if (lookahead == ' ') ADVANCE(227); + if (lookahead == '}') ADVANCE(99); END_STATE(); case 13: - if (lookahead == ' ') ADVANCE(224); + if (lookahead == '}') ADVANCE(60); END_STATE(); case 14: - if (lookahead == ' ') ADVANCE(219); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(23); END_STATE(); case 15: - if (lookahead == ' ') ADVANCE(219); - if (lookahead == 't') ADVANCE(114); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(107); + if (lookahead == '#') ADVANCE(106); + if (lookahead == '{') ADVANCE(104); + if (lookahead != 0) ADVANCE(103); END_STATE(); case 16: - if (lookahead == ' ') ADVANCE(230); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(108); + if (lookahead == '{') ADVANCE(105); + if (lookahead != 0) ADVANCE(103); END_STATE(); case 17: - if (lookahead == ' ') ADVANCE(223); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(17) + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 18: - if (lookahead == ' ') ADVANCE(221); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 19: - if (lookahead == ' ') ADVANCE(222); - END_STATE(); - case 20: - if (lookahead == ' ') ADVANCE(216); - END_STATE(); - case 21: - if (lookahead == ' ') ADVANCE(220); - END_STATE(); - case 22: - if (lookahead == ' ') ADVANCE(229); - END_STATE(); - case 23: - if (lookahead == '"') ADVANCE(177); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 24: - if (lookahead == '#') ADVANCE(234); - END_STATE(); - case 25: - if (lookahead == '#') ADVANCE(234); - if (lookahead == '%') ADVANCE(215); - if (lookahead == '{') ADVANCE(199); - if (lookahead != 0) ADVANCE(242); - END_STATE(); - case 26: - if (lookahead == '\'') ADVANCE(175); - if (lookahead != 0) ADVANCE(176); - END_STATE(); - case 27: - if (lookahead == '=') ADVANCE(158); - END_STATE(); - case 28: - if (lookahead == 'a') ADVANCE(197); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 29: - if (lookahead == 'a') ADVANCE(109); - END_STATE(); - case 30: - if (lookahead == 'a') ADVANCE(43); - END_STATE(); - case 31: - if (lookahead == 'a') ADVANCE(92); - END_STATE(); - case 32: - if (lookahead == 'a') ADVANCE(97); - END_STATE(); - case 33: - if (lookahead == 'a') ADVANCE(128); - END_STATE(); - case 34: - if (lookahead == 'a') ADVANCE(133); - END_STATE(); - case 35: - if (lookahead == 'b') ADVANCE(33); - END_STATE(); - case 36: - if (lookahead == 'b') ADVANCE(190); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 37: - if (lookahead == 'b') ADVANCE(191); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 38: - if (lookahead == 'c') ADVANCE(76); - END_STATE(); - case 39: - if (lookahead == 'c') ADVANCE(69); - END_STATE(); - case 40: - if (lookahead == 'c') ADVANCE(77); - END_STATE(); - case 41: - if (lookahead == 'c') ADVANCE(78); - END_STATE(); - case 42: - if (lookahead == 'c') ADVANCE(29); - END_STATE(); - case 43: - if (lookahead == 'c') ADVANCE(60); - END_STATE(); - case 44: - if (lookahead == 'c') ADVANCE(108); - END_STATE(); - case 45: - if (lookahead == 'd') ADVANCE(165); - END_STATE(); - case 46: - if (lookahead == 'd') ADVANCE(218); - END_STATE(); - case 47: - if (lookahead == 'd') ADVANCE(44); - END_STATE(); - case 48: - if (lookahead == 'd') ADVANCE(18); - END_STATE(); - case 49: - if (lookahead == 'd') ADVANCE(102); - END_STATE(); - case 50: - if (lookahead == 'e') ADVANCE(173); - END_STATE(); - case 51: - if (lookahead == 'e') ADVANCE(174); - END_STATE(); - case 52: - if (lookahead == 'e') ADVANCE(117); - END_STATE(); - case 53: - if (lookahead == 'e') ADVANCE(95); - END_STATE(); - case 54: - if (lookahead == 'e') ADVANCE(119); - END_STATE(); - case 55: - if (lookahead == 'e') ADVANCE(12); - END_STATE(); - case 56: - if (lookahead == 'e') ADVANCE(48); - END_STATE(); - case 57: - if (lookahead == 'e') ADVANCE(20); - END_STATE(); - case 58: - if (lookahead == 'e') ADVANCE(21); - END_STATE(); - case 59: - if (lookahead == 'e') ADVANCE(113); - END_STATE(); - case 60: - if (lookahead == 'e') ADVANCE(82); - END_STATE(); - case 61: - if (lookahead == 'e') ADVANCE(98); - END_STATE(); - case 62: - if (lookahead == 'e') ADVANCE(99); - END_STATE(); - case 63: - if (lookahead == 'f') ADVANCE(149); - END_STATE(); - case 64: - if (lookahead == 'f') ADVANCE(194); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 65: - if (lookahead == 'f') ADVANCE(185); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 66: - if (lookahead == 'f') ADVANCE(11); - END_STATE(); - case 67: - if (lookahead == 'g') ADVANCE(56); - END_STATE(); - case 68: - if (lookahead == 'h') ADVANCE(150); - END_STATE(); - case 69: - if (lookahead == 'h') ADVANCE(31); - END_STATE(); - case 70: - if (lookahead == 'h') ADVANCE(13); - END_STATE(); - case 71: - if (lookahead == 'i') ADVANCE(66); - if (lookahead == 's') ADVANCE(55); - END_STATE(); - case 72: - if (lookahead == 'i') ADVANCE(183); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 73: - if (lookahead == 'i') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 74: - if (lookahead == 'i') ADVANCE(91); - END_STATE(); - case 75: - if (lookahead == 'i') ADVANCE(87); - END_STATE(); - case 76: - if (lookahead == 'k') ADVANCE(15); - END_STATE(); - case 77: - if (lookahead == 'k') ADVANCE(14); - END_STATE(); - case 78: - if (lookahead == 'k') ADVANCE(130); - END_STATE(); - case 79: - if (lookahead == 'l') ADVANCE(116); - END_STATE(); - case 80: - if (lookahead == 'l') ADVANCE(53); - END_STATE(); - case 81: - if (lookahead == 'l') ADVANCE(132); - END_STATE(); - case 82: - if (lookahead == 'l') ADVANCE(54); - END_STATE(); - case 83: - if (lookahead == 'l') ADVANCE(34); - END_STATE(); - case 84: - if (lookahead == 'm') ADVANCE(154); - END_STATE(); - case 85: - if (lookahead == 'm') ADVANCE(155); - END_STATE(); - case 86: - if (lookahead == 'm') ADVANCE(88); - END_STATE(); - case 87: - if (lookahead == 'm') ADVANCE(17); - END_STATE(); - case 88: - if (lookahead == 'm') ADVANCE(61); - END_STATE(); - case 89: - if (lookahead == 'm') ADVANCE(62); - END_STATE(); - case 90: - if (lookahead == 'm') ADVANCE(89); - END_STATE(); - case 91: - if (lookahead == 'n') ADVANCE(169); - END_STATE(); - case 92: - if (lookahead == 'n') ADVANCE(67); - END_STATE(); - case 93: - if (lookahead == 'n') ADVANCE(49); - END_STATE(); - case 94: - if (lookahead == 'n') ADVANCE(103); - END_STATE(); - case 95: - if (lookahead == 'n') ADVANCE(124); - END_STATE(); - case 96: - if (lookahead == 'n') ADVANCE(47); - END_STATE(); - case 97: - if (lookahead == 'n') ADVANCE(118); - END_STATE(); - case 98: - if (lookahead == 'n') ADVANCE(125); - END_STATE(); - case 99: - if (lookahead == 'n') ADVANCE(126); - END_STATE(); - case 100: - if (lookahead == 'o') ADVANCE(84); - END_STATE(); - case 101: - if (lookahead == 'o') ADVANCE(38); - END_STATE(); - case 102: - if (lookahead == 'o') ADVANCE(85); - END_STATE(); - case 103: - if (lookahead == 'o') ADVANCE(123); - END_STATE(); - case 104: - if (lookahead == 'o') ADVANCE(86); - END_STATE(); - case 105: - if (lookahead == 'o') ADVANCE(52); - END_STATE(); - case 106: - if (lookahead == 'o') ADVANCE(40); - END_STATE(); - case 107: - if (lookahead == 'o') ADVANCE(41); - END_STATE(); - case 108: - if (lookahead == 'o') ADVANCE(90); - END_STATE(); - case 109: - if (lookahead == 'p') ADVANCE(57); - END_STATE(); - case 110: - if (lookahead == 'p') ADVANCE(127); - END_STATE(); - case 111: - if (lookahead == 'r') ADVANCE(10); - END_STATE(); - case 112: - if (lookahead == 'r') ADVANCE(35); - END_STATE(); - case 113: - if (lookahead == 'r') ADVANCE(16); - END_STATE(); - case 114: - if (lookahead == 'r') ADVANCE(32); - END_STATE(); - case 115: - if (lookahead == 's') ADVANCE(196); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 116: - if (lookahead == 's') ADVANCE(51); - END_STATE(); - case 117: - if (lookahead == 's') ADVANCE(42); - END_STATE(); - case 118: - if (lookahead == 's') ADVANCE(83); - END_STATE(); - case 119: - if (lookahead == 's') ADVANCE(120); - END_STATE(); - case 120: - if (lookahead == 's') ADVANCE(19); - END_STATE(); - case 121: - if (lookahead == 't') ADVANCE(167); - END_STATE(); - case 122: - if (lookahead == 't') ADVANCE(68); - END_STATE(); - case 123: - if (lookahead == 't') ADVANCE(171); - END_STATE(); - case 124: - if (lookahead == 't') ADVANCE(152); - END_STATE(); - case 125: - if (lookahead == 't') ADVANCE(240); - END_STATE(); - case 126: - if (lookahead == 't') ADVANCE(241); - END_STATE(); - case 127: - if (lookahead == 't') ADVANCE(138); - END_STATE(); - case 128: - if (lookahead == 't') ADVANCE(75); - END_STATE(); - case 129: - if (lookahead == 't') ADVANCE(70); - END_STATE(); - case 130: - if (lookahead == 't') ADVANCE(114); - END_STATE(); - case 131: - if (lookahead == 't') ADVANCE(105); - END_STATE(); - case 132: - if (lookahead == 't') ADVANCE(59); - END_STATE(); - case 133: - if (lookahead == 't') ADVANCE(58); - END_STATE(); - case 134: - if (lookahead == 'u') ADVANCE(50); - END_STATE(); - case 135: - if (lookahead == 'v') ADVANCE(181); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 136: - if (lookahead == 'w') ADVANCE(187); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); - END_STATE(); - case 137: - if (lookahead == 'y') ADVANCE(153); - END_STATE(); - case 138: - if (lookahead == 'y') ADVANCE(22); - END_STATE(); - case 139: - if (lookahead == '}') ADVANCE(239); - END_STATE(); - case 140: - if (lookahead == '}') ADVANCE(217); - END_STATE(); - case 141: - if (lookahead == '}') ADVANCE(200); - END_STATE(); - case 142: if (lookahead != 0 && lookahead != '#' && lookahead != '%' && - lookahead != '{') ADVANCE(242); + lookahead != '{') ADVANCE(111); END_STATE(); - case 143: - if (lookahead != 0 && - lookahead != '#' && - lookahead != '{') ADVANCE(235); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '{') ADVANCE(236); + case 20: + if (eof) ADVANCE(21); + if (lookahead == '{') ADVANCE(5); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(110); + if (lookahead != 0) ADVANCE(111); END_STATE(); - case 144: - if (lookahead != 0 && - lookahead != '{') ADVANCE(235); - if (lookahead == '{') ADVANCE(237); - END_STATE(); - case 145: - if (eof) ADVANCE(146); - if (lookahead == '{') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(147); - if (lookahead != 0) ADVANCE(242); - END_STATE(); - case 146: + case 21: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 147: - ACCEPT_TOKEN(aux_sym__node_token1); - if (lookahead == '{') ADVANCE(142); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(147); - if (lookahead != 0) ADVANCE(242); + case 22: + ACCEPT_TOKEN(sym_keyword); END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_on); - if (lookahead == 'l') ADVANCE(137); + case 23: + ACCEPT_TOKEN(sym_keyword_operator); END_STATE(); - case 149: - ACCEPT_TOKEN(anon_sym_off); + case 24: + ACCEPT_TOKEN(sym_keyword_operator); + if (lookahead == 'i') ADVANCE(8); END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_with); + case 25: + ACCEPT_TOKEN(sym_keyword_operator); + if (lookahead == 'n') ADVANCE(9); END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_as); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_silent); - END_STATE(); - case 153: - ACCEPT_TOKEN(anon_sym_only); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_from); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_random); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_by); - END_STATE(); - case 157: + case 26: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 158: + case 27: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 159: + case 28: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(30); END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(163); - END_STATE(); - case 161: + case 29: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(31); END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(164); - END_STATE(); - case 163: + case 30: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 164: + case 31: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_and); + case 32: + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym_or); + case 33: + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_not); - if (lookahead == ' ') ADVANCE(74); + case 34: + ACCEPT_TOKEN(sym_boolean); END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 169: - ACCEPT_TOKEN(anon_sym_notin); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_is); - if (lookahead == ' ') ADVANCE(94); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_isnot); - END_STATE(); - case 172: - ACCEPT_TOKEN(aux_sym_number_token1); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_True); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_False); - END_STATE(); - case 175: + case 35: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 176: + case 36: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 177: + case 37: + ACCEPT_TOKEN(aux_sym_string_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(37); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(36); + END_STATE(); + case 38: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 178: + case 39: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 179: + case 40: + ACCEPT_TOKEN(aux_sym_string_token2); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(40); + if (lookahead != 0 && + lookahead != '"') ADVANCE(39); + END_STATE(); + case 41: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 180: - ACCEPT_TOKEN(aux_sym__word_token1); + case 42: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == ' ') ADVANCE(25); + if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 181: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'e') ADVANCE(112); + case 43: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == ' ') ADVANCE(24); + if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 182: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'f') ADVANCE(9); + case 44: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'a') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 183: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'f') ADVANCE(39); + case 45: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'd') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 184: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'f') ADVANCE(8); + case 46: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'e') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 185: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'i') ADVANCE(81); + case 47: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'l') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 186: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'i') ADVANCE(81); - if (lookahead == 'o') ADVANCE(111); + case 48: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'n') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 187: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'i') ADVANCE(129); + case 49: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'n') ADVANCE(56); + if (lookahead == 's') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 188: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'l') ADVANCE(71); - if (lookahead == 'n') ADVANCE(46); + case 50: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'o') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 189: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'l') ADVANCE(101); + case 51: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'r') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 190: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'l') ADVANCE(106); + case 52: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'r') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 191: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'l') ADVANCE(107); + case 53: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 's') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 192: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'm') ADVANCE(110); - if (lookahead == 'n') ADVANCE(46); + case 54: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 't') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 193: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'n') ADVANCE(46); + case 55: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == 'u') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 194: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'o') ADVANCE(111); + case 56: + ACCEPT_TOKEN(sym__identifier); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 195: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'o') ADVANCE(86); + case 57: + ACCEPT_TOKEN(sym__identifier); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(34); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 196: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'p') ADVANCE(30); + case 58: + ACCEPT_TOKEN(sym__identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 197: - ACCEPT_TOKEN(aux_sym__word_token1); - if (lookahead == 'u') ADVANCE(131); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_); - END_STATE(); - case 199: + case 59: ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); END_STATE(); - case 200: + case 60: ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); END_STATE(); - case 201: - ACCEPT_TOKEN(aux_sym_variable_name_token1); + case 61: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == ' ') ADVANCE(25); + if (lookahead == '.') ADVANCE(18); + if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 202: - ACCEPT_TOKEN(aux_sym_variable_name_token1); + case 62: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == ' ') ADVANCE(24); + if (lookahead == '.') ADVANCE(18); + if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 63: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'a') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 64: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); if (lookahead == 'a') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 203: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'a') ADVANCE(93); + case 65: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'd') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 204: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'f') ADVANCE(63); - if (lookahead == 'n') ADVANCE(148); - if (lookahead == 'r') ADVANCE(166); + case 66: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'd') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 205: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'i') ADVANCE(80); + case 67: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'e') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 206: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'i') ADVANCE(122); + case 68: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'e') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 207: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'n') ADVANCE(45); - if (lookahead == 's') ADVANCE(151); + case 69: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'f') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 208: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'n') ADVANCE(168); - if (lookahead == 's') ADVANCE(170); + case 70: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'f') ADVANCE(69); + if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'r') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 209: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'o') ADVANCE(121); + case 71: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'h') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 210: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'r') ADVANCE(134); + case 72: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'i') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 211: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'r') ADVANCE(100); + case 73: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'i') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 212: - ACCEPT_TOKEN(aux_sym_variable_name_token1); - if (lookahead == 'y') ADVANCE(156); + case 74: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'l') ADVANCE(91); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_DOT); + case 75: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'l') ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); - case 214: + case 76: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'l') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 77: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'm') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 78: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'n') ADVANCE(66); + if (lookahead == 's') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 79: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'n') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 80: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'n') ADVANCE(92); + if (lookahead == 's') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 81: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'n') ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 82: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'o') ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 83: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'o') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 84: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'r') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 85: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'r') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 86: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 's') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 87: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 't') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 88: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 't') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 89: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 't') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 90: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'u') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 91: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (lookahead == 'y') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 92: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 93: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(34); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 94: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 95: + ACCEPT_TOKEN(sym_variable_name); + if (lookahead == '.') ADVANCE(18); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + END_STATE(); + case 96: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 215: + case 97: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 98: ACCEPT_TOKEN(anon_sym_LBRACE_PERCENT); END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_autoescape); - END_STATE(); - case 217: + case 99: ACCEPT_TOKEN(anon_sym_PERCENT_RBRACE); END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_end); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_block); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_blocktranslate); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_ifchanged); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_spaceless); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_verbatim); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_with2); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_elif); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_empty); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_filter); - END_STATE(); - case 231: + case 100: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 232: + case 101: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(26); END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(157); - END_STATE(); - case 234: + case 102: ACCEPT_TOKEN(anon_sym_LBRACE_POUND); END_STATE(); - case 235: + case 103: ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); END_STATE(); - case 236: + case 104: ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); - if (lookahead == '#') ADVANCE(234); + if (lookahead == '#') ADVANCE(102); END_STATE(); - case 237: + case 105: ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); - if (lookahead == '%') ADVANCE(215); + if (lookahead == '%') ADVANCE(98); END_STATE(); - case 238: + case 106: ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); - if (lookahead == '}') ADVANCE(239); + if (lookahead == '}') ADVANCE(109); END_STATE(); - case 239: + case 107: + ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(107); + if (lookahead == '#') ADVANCE(106); + if (lookahead == '{') ADVANCE(104); + if (lookahead != 0) ADVANCE(103); + END_STATE(); + case 108: + ACCEPT_TOKEN(aux_sym_unpaired_comment_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(108); + if (lookahead == '{') ADVANCE(105); + if (lookahead != 0) ADVANCE(103); + END_STATE(); + case 109: ACCEPT_TOKEN(anon_sym_POUND_RBRACE); END_STATE(); - case 240: + case 110: + ACCEPT_TOKEN(sym_content); + if (lookahead == '{') ADVANCE(5); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(110); + if (lookahead != 0) ADVANCE(111); + END_STATE(); + case 111: + ACCEPT_TOKEN(sym_content); + if (lookahead == '{') ADVANCE(19); + if (lookahead != 0) ADVANCE(111); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'a') ADVANCE(1); + if (lookahead == 'b') ADVANCE(2); + if (lookahead == 'c') ADVANCE(3); + if (lookahead == 'e') ADVANCE(4); + if (lookahead == 'f') ADVANCE(5); + if (lookahead == 'i') ADVANCE(6); + if (lookahead == 's') ADVANCE(7); + if (lookahead == 'v') ADVANCE(8); + if (lookahead == 'w') ADVANCE(9); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + if (lookahead == 'u') ADVANCE(10); + END_STATE(); + case 2: + if (lookahead == 'l') ADVANCE(11); + END_STATE(); + case 3: + if (lookahead == 'o') ADVANCE(12); + END_STATE(); + case 4: + if (lookahead == 'l') ADVANCE(13); + if (lookahead == 'm') ADVANCE(14); + if (lookahead == 'n') ADVANCE(15); + END_STATE(); + case 5: + if (lookahead == 'i') ADVANCE(16); + if (lookahead == 'o') ADVANCE(17); + END_STATE(); + case 6: + if (lookahead == 'f') ADVANCE(18); + END_STATE(); + case 7: + if (lookahead == 'p') ADVANCE(19); + END_STATE(); + case 8: + if (lookahead == 'e') ADVANCE(20); + END_STATE(); + case 9: + if (lookahead == 'i') ADVANCE(21); + END_STATE(); + case 10: + if (lookahead == 't') ADVANCE(22); + END_STATE(); + case 11: + if (lookahead == 'o') ADVANCE(23); + END_STATE(); + case 12: + if (lookahead == 'm') ADVANCE(24); + END_STATE(); + case 13: + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 's') ADVANCE(26); + END_STATE(); + case 14: + if (lookahead == 'p') ADVANCE(27); + END_STATE(); + case 15: + if (lookahead == 'd') ADVANCE(28); + END_STATE(); + case 16: + if (lookahead == 'l') ADVANCE(29); + END_STATE(); + case 17: + if (lookahead == 'r') ADVANCE(30); + END_STATE(); + case 18: + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'c') ADVANCE(31); + END_STATE(); + case 19: + if (lookahead == 'a') ADVANCE(32); + END_STATE(); + case 20: + if (lookahead == 'r') ADVANCE(33); + END_STATE(); + case 21: + if (lookahead == 't') ADVANCE(34); + END_STATE(); + case 22: + if (lookahead == 'o') ADVANCE(35); + END_STATE(); + case 23: + if (lookahead == 'c') ADVANCE(36); + END_STATE(); + case 24: + if (lookahead == 'm') ADVANCE(37); + END_STATE(); + case 25: + if (lookahead == 'f') ADVANCE(38); + END_STATE(); + case 26: + if (lookahead == 'e') ADVANCE(39); + END_STATE(); + case 27: + if (lookahead == 't') ADVANCE(40); + END_STATE(); + case 28: + if (lookahead == 'a') ADVANCE(41); + if (lookahead == 'b') ADVANCE(42); + if (lookahead == 'c') ADVANCE(43); + if (lookahead == 'f') ADVANCE(44); + if (lookahead == 'i') ADVANCE(45); + if (lookahead == 's') ADVANCE(46); + if (lookahead == 'v') ADVANCE(47); + if (lookahead == 'w') ADVANCE(48); + END_STATE(); + case 29: + if (lookahead == 't') ADVANCE(49); + END_STATE(); + case 30: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 31: + if (lookahead == 'h') ADVANCE(50); + END_STATE(); + case 32: + if (lookahead == 'c') ADVANCE(51); + END_STATE(); + case 33: + if (lookahead == 'b') ADVANCE(52); + END_STATE(); + case 34: + if (lookahead == 'h') ADVANCE(53); + END_STATE(); + case 35: + if (lookahead == 'e') ADVANCE(54); + END_STATE(); + case 36: + if (lookahead == 'k') ADVANCE(55); + END_STATE(); + case 37: + if (lookahead == 'e') ADVANCE(56); + END_STATE(); + case 38: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 40: + if (lookahead == 'y') ADVANCE(57); + END_STATE(); + case 41: + if (lookahead == 'u') ADVANCE(58); + END_STATE(); + case 42: + if (lookahead == 'l') ADVANCE(59); + END_STATE(); + case 43: + if (lookahead == 'o') ADVANCE(60); + END_STATE(); + case 44: + if (lookahead == 'i') ADVANCE(61); + if (lookahead == 'o') ADVANCE(62); + END_STATE(); + case 45: + if (lookahead == 'f') ADVANCE(63); + END_STATE(); + case 46: + if (lookahead == 'p') ADVANCE(64); + END_STATE(); + case 47: + if (lookahead == 'e') ADVANCE(65); + END_STATE(); + case 48: + if (lookahead == 'i') ADVANCE(66); + END_STATE(); + case 49: + if (lookahead == 'e') ADVANCE(67); + END_STATE(); + case 50: + if (lookahead == 'a') ADVANCE(68); + END_STATE(); + case 51: + if (lookahead == 'e') ADVANCE(69); + END_STATE(); + case 52: + if (lookahead == 'a') ADVANCE(70); + END_STATE(); + case 53: + ACCEPT_TOKEN(anon_sym_with); + END_STATE(); + case 54: + if (lookahead == 's') ADVANCE(71); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 't') ADVANCE(72); + END_STATE(); + case 56: + if (lookahead == 'n') ADVANCE(73); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_empty); + END_STATE(); + case 58: + if (lookahead == 't') ADVANCE(74); + END_STATE(); + case 59: + if (lookahead == 'o') ADVANCE(75); + END_STATE(); + case 60: + if (lookahead == 'm') ADVANCE(76); + END_STATE(); + case 61: + if (lookahead == 'l') ADVANCE(77); + END_STATE(); + case 62: + if (lookahead == 'r') ADVANCE(78); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_endif); + if (lookahead == 'c') ADVANCE(79); + END_STATE(); + case 64: + if (lookahead == 'a') ADVANCE(80); + END_STATE(); + case 65: + if (lookahead == 'r') ADVANCE(81); + END_STATE(); + case 66: + if (lookahead == 't') ADVANCE(82); + END_STATE(); + case 67: + if (lookahead == 'r') ADVANCE(83); + END_STATE(); + case 68: + if (lookahead == 'n') ADVANCE(84); + END_STATE(); + case 69: + if (lookahead == 'l') ADVANCE(85); + END_STATE(); + case 70: + if (lookahead == 't') ADVANCE(86); + END_STATE(); + case 71: + if (lookahead == 'c') ADVANCE(87); + END_STATE(); + case 72: + if (lookahead == 'r') ADVANCE(88); + END_STATE(); + case 73: + if (lookahead == 't') ADVANCE(89); + END_STATE(); + case 74: + if (lookahead == 'o') ADVANCE(90); + END_STATE(); + case 75: + if (lookahead == 'c') ADVANCE(91); + END_STATE(); + case 76: + if (lookahead == 'm') ADVANCE(92); + END_STATE(); + case 77: + if (lookahead == 't') ADVANCE(93); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_endfor); + END_STATE(); + case 79: + if (lookahead == 'h') ADVANCE(94); + END_STATE(); + case 80: + if (lookahead == 'c') ADVANCE(95); + END_STATE(); + case 81: + if (lookahead == 'b') ADVANCE(96); + END_STATE(); + case 82: + if (lookahead == 'h') ADVANCE(97); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_filter); + END_STATE(); + case 84: + if (lookahead == 'g') ADVANCE(98); + END_STATE(); + case 85: + if (lookahead == 'e') ADVANCE(99); + END_STATE(); + case 86: + if (lookahead == 'i') ADVANCE(100); + END_STATE(); + case 87: + if (lookahead == 'a') ADVANCE(101); + END_STATE(); + case 88: + if (lookahead == 'a') ADVANCE(102); + END_STATE(); + case 89: ACCEPT_TOKEN(anon_sym_comment); END_STATE(); - case 241: + case 90: + if (lookahead == 'e') ADVANCE(103); + END_STATE(); + case 91: + if (lookahead == 'k') ADVANCE(104); + END_STATE(); + case 92: + if (lookahead == 'e') ADVANCE(105); + END_STATE(); + case 93: + if (lookahead == 'e') ADVANCE(106); + END_STATE(); + case 94: + if (lookahead == 'a') ADVANCE(107); + END_STATE(); + case 95: + if (lookahead == 'e') ADVANCE(108); + END_STATE(); + case 96: + if (lookahead == 'a') ADVANCE(109); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_endwith); + END_STATE(); + case 98: + if (lookahead == 'e') ADVANCE(110); + END_STATE(); + case 99: + if (lookahead == 's') ADVANCE(111); + END_STATE(); + case 100: + if (lookahead == 'm') ADVANCE(112); + END_STATE(); + case 101: + if (lookahead == 'p') ADVANCE(113); + END_STATE(); + case 102: + if (lookahead == 'n') ADVANCE(114); + END_STATE(); + case 103: + if (lookahead == 's') ADVANCE(115); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_endblock); + if (lookahead == 't') ADVANCE(116); + END_STATE(); + case 105: + if (lookahead == 'n') ADVANCE(117); + END_STATE(); + case 106: + if (lookahead == 'r') ADVANCE(118); + END_STATE(); + case 107: + if (lookahead == 'n') ADVANCE(119); + END_STATE(); + case 108: + if (lookahead == 'l') ADVANCE(120); + END_STATE(); + case 109: + if (lookahead == 't') ADVANCE(121); + END_STATE(); + case 110: + if (lookahead == 'd') ADVANCE(122); + END_STATE(); + case 111: + if (lookahead == 's') ADVANCE(123); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_verbatim); + END_STATE(); + case 113: + if (lookahead == 'e') ADVANCE(124); + END_STATE(); + case 114: + if (lookahead == 's') ADVANCE(125); + END_STATE(); + case 115: + if (lookahead == 'c') ADVANCE(126); + END_STATE(); + case 116: + if (lookahead == 'r') ADVANCE(127); + END_STATE(); + case 117: + if (lookahead == 't') ADVANCE(128); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_endfilter); + END_STATE(); + case 119: + if (lookahead == 'g') ADVANCE(129); + END_STATE(); + case 120: + if (lookahead == 'e') ADVANCE(130); + END_STATE(); + case 121: + if (lookahead == 'i') ADVANCE(131); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_ifchanged); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_spaceless); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_autoescape); + END_STATE(); + case 125: + if (lookahead == 'l') ADVANCE(132); + END_STATE(); + case 126: + if (lookahead == 'a') ADVANCE(133); + END_STATE(); + case 127: + if (lookahead == 'a') ADVANCE(134); + END_STATE(); + case 128: ACCEPT_TOKEN(anon_sym_endcomment); END_STATE(); - case 242: - ACCEPT_TOKEN(sym_content); - if (lookahead == '{') ADVANCE(142); - if (lookahead != 0) ADVANCE(242); + case 129: + if (lookahead == 'e') ADVANCE(135); + END_STATE(); + case 130: + if (lookahead == 's') ADVANCE(136); + END_STATE(); + case 131: + if (lookahead == 'm') ADVANCE(137); + END_STATE(); + case 132: + if (lookahead == 'a') ADVANCE(138); + END_STATE(); + case 133: + if (lookahead == 'p') ADVANCE(139); + END_STATE(); + case 134: + if (lookahead == 'n') ADVANCE(140); + END_STATE(); + case 135: + if (lookahead == 'd') ADVANCE(141); + END_STATE(); + case 136: + if (lookahead == 's') ADVANCE(142); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_endverbatim); + END_STATE(); + case 138: + if (lookahead == 't') ADVANCE(143); + END_STATE(); + case 139: + if (lookahead == 'e') ADVANCE(144); + END_STATE(); + case 140: + if (lookahead == 's') ADVANCE(145); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_endifchanged); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_endspaceless); + END_STATE(); + case 143: + if (lookahead == 'e') ADVANCE(146); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_endautoescape); + END_STATE(); + case 145: + if (lookahead == 'l') ADVANCE(147); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_blocktranslate); + END_STATE(); + case 147: + if (lookahead == 'a') ADVANCE(148); + END_STATE(); + case 148: + if (lookahead == 't') ADVANCE(149); + END_STATE(); + case 149: + if (lookahead == 'e') ADVANCE(150); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_endblocktranslate); END_STATE(); default: return false; @@ -2869,7 +2518,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 145}, + [1] = {.lex_state = 20}, [2] = {.lex_state = 1}, [3] = {.lex_state = 1}, [4] = {.lex_state = 1}, @@ -2909,15 +2558,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [38] = {.lex_state = 1}, [39] = {.lex_state = 1}, [40] = {.lex_state = 1}, - [41] = {.lex_state = 1}, + [41] = {.lex_state = 20}, [42] = {.lex_state = 1}, [43] = {.lex_state = 1}, - [44] = {.lex_state = 1}, - [45] = {.lex_state = 1}, + [44] = {.lex_state = 20}, + [45] = {.lex_state = 20}, [46] = {.lex_state = 1}, [47] = {.lex_state = 1}, [48] = {.lex_state = 1}, - [49] = {.lex_state = 1}, + [49] = {.lex_state = 20}, [50] = {.lex_state = 1}, [51] = {.lex_state = 1}, [52] = {.lex_state = 1}, @@ -2931,18 +2580,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 1}, [61] = {.lex_state = 1}, [62] = {.lex_state = 1}, - [63] = {.lex_state = 1}, + [63] = {.lex_state = 20}, [64] = {.lex_state = 1}, [65] = {.lex_state = 1}, [66] = {.lex_state = 1}, [67] = {.lex_state = 1}, [68] = {.lex_state = 1}, - [69] = {.lex_state = 1}, + [69] = {.lex_state = 20}, [70] = {.lex_state = 1}, - [71] = {.lex_state = 1}, + [71] = {.lex_state = 20}, [72] = {.lex_state = 1}, [73] = {.lex_state = 1}, - [74] = {.lex_state = 1}, + [74] = {.lex_state = 20}, [75] = {.lex_state = 1}, [76] = {.lex_state = 1}, [77] = {.lex_state = 1}, @@ -2952,8596 +2601,2780 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [81] = {.lex_state = 1}, [82] = {.lex_state = 1}, [83] = {.lex_state = 1}, - [84] = {.lex_state = 1}, - [85] = {.lex_state = 1}, - [86] = {.lex_state = 1}, - [87] = {.lex_state = 1}, - [88] = {.lex_state = 1}, - [89] = {.lex_state = 1}, - [90] = {.lex_state = 1}, - [91] = {.lex_state = 1}, - [92] = {.lex_state = 1}, - [93] = {.lex_state = 1}, - [94] = {.lex_state = 1}, - [95] = {.lex_state = 1}, - [96] = {.lex_state = 1}, - [97] = {.lex_state = 1}, - [98] = {.lex_state = 1}, - [99] = {.lex_state = 1}, - [100] = {.lex_state = 1}, - [101] = {.lex_state = 1}, - [102] = {.lex_state = 1}, - [103] = {.lex_state = 1}, - [104] = {.lex_state = 1}, + [84] = {.lex_state = 20}, + [85] = {.lex_state = 20}, + [86] = {.lex_state = 20}, + [87] = {.lex_state = 20}, + [88] = {.lex_state = 20}, + [89] = {.lex_state = 20}, + [90] = {.lex_state = 20}, + [91] = {.lex_state = 20}, + [92] = {.lex_state = 20}, + [93] = {.lex_state = 20}, + [94] = {.lex_state = 20}, + [95] = {.lex_state = 20}, + [96] = {.lex_state = 20}, + [97] = {.lex_state = 20}, + [98] = {.lex_state = 20}, + [99] = {.lex_state = 20}, + [100] = {.lex_state = 20}, + [101] = {.lex_state = 20}, + [102] = {.lex_state = 20}, + [103] = {.lex_state = 20}, + [104] = {.lex_state = 20}, [105] = {.lex_state = 1}, - [106] = {.lex_state = 1}, - [107] = {.lex_state = 1}, - [108] = {.lex_state = 1}, - [109] = {.lex_state = 1}, - [110] = {.lex_state = 1}, - [111] = {.lex_state = 1}, - [112] = {.lex_state = 1}, - [113] = {.lex_state = 1}, - [114] = {.lex_state = 1}, - [115] = {.lex_state = 1}, - [116] = {.lex_state = 1}, - [117] = {.lex_state = 1}, - [118] = {.lex_state = 1}, - [119] = {.lex_state = 1}, - [120] = {.lex_state = 1}, - [121] = {.lex_state = 1}, - [122] = {.lex_state = 1}, - [123] = {.lex_state = 145}, - [124] = {.lex_state = 145}, - [125] = {.lex_state = 145}, - [126] = {.lex_state = 145}, - [127] = {.lex_state = 145}, - [128] = {.lex_state = 145}, - [129] = {.lex_state = 145}, - [130] = {.lex_state = 145}, - [131] = {.lex_state = 145}, - [132] = {.lex_state = 145}, - [133] = {.lex_state = 145}, - [134] = {.lex_state = 145}, - [135] = {.lex_state = 145}, - [136] = {.lex_state = 145}, - [137] = {.lex_state = 145}, - [138] = {.lex_state = 145}, - [139] = {.lex_state = 145}, - [140] = {.lex_state = 145}, - [141] = {.lex_state = 145}, - [142] = {.lex_state = 145}, - [143] = {.lex_state = 145}, - [144] = {.lex_state = 145}, - [145] = {.lex_state = 145}, - [146] = {.lex_state = 145}, - [147] = {.lex_state = 145}, - [148] = {.lex_state = 145}, - [149] = {.lex_state = 145}, - [150] = {.lex_state = 145}, - [151] = {.lex_state = 145}, - [152] = {.lex_state = 145}, - [153] = {.lex_state = 145}, - [154] = {.lex_state = 145}, - [155] = {.lex_state = 145}, - [156] = {.lex_state = 145}, - [157] = {.lex_state = 145}, - [158] = {.lex_state = 145}, - [159] = {.lex_state = 145}, - [160] = {.lex_state = 145}, - [161] = {.lex_state = 145}, - [162] = {.lex_state = 145}, - [163] = {.lex_state = 145}, - [164] = {.lex_state = 145}, - [165] = {.lex_state = 145}, - [166] = {.lex_state = 145}, - [167] = {.lex_state = 145}, - [168] = {.lex_state = 145}, - [169] = {.lex_state = 145}, - [170] = {.lex_state = 145}, - [171] = {.lex_state = 145}, - [172] = {.lex_state = 145}, - [173] = {.lex_state = 145}, - [174] = {.lex_state = 145}, - [175] = {.lex_state = 145}, - [176] = {.lex_state = 145}, - [177] = {.lex_state = 145}, - [178] = {.lex_state = 145}, - [179] = {.lex_state = 145}, - [180] = {.lex_state = 145}, - [181] = {.lex_state = 145}, - [182] = {.lex_state = 145}, - [183] = {.lex_state = 145}, - [184] = {.lex_state = 145}, - [185] = {.lex_state = 145}, - [186] = {.lex_state = 145}, - [187] = {.lex_state = 145}, - [188] = {.lex_state = 145}, - [189] = {.lex_state = 4}, - [190] = {.lex_state = 145}, - [191] = {.lex_state = 145}, - [192] = {.lex_state = 145}, - [193] = {.lex_state = 145}, - [194] = {.lex_state = 145}, - [195] = {.lex_state = 145}, - [196] = {.lex_state = 4}, - [197] = {.lex_state = 145}, - [198] = {.lex_state = 145}, - [199] = {.lex_state = 145}, - [200] = {.lex_state = 145}, - [201] = {.lex_state = 145}, - [202] = {.lex_state = 145}, - [203] = {.lex_state = 145}, - [204] = {.lex_state = 145}, - [205] = {.lex_state = 145}, - [206] = {.lex_state = 145}, - [207] = {.lex_state = 4}, - [208] = {.lex_state = 145}, - [209] = {.lex_state = 145}, - [210] = {.lex_state = 145}, - [211] = {.lex_state = 145}, - [212] = {.lex_state = 145}, - [213] = {.lex_state = 145}, - [214] = {.lex_state = 145}, - [215] = {.lex_state = 145}, - [216] = {.lex_state = 145}, - [217] = {.lex_state = 145}, - [218] = {.lex_state = 145}, - [219] = {.lex_state = 145}, - [220] = {.lex_state = 145}, - [221] = {.lex_state = 145}, - [222] = {.lex_state = 145}, - [223] = {.lex_state = 145}, - [224] = {.lex_state = 145}, - [225] = {.lex_state = 145}, - [226] = {.lex_state = 145}, - [227] = {.lex_state = 145}, - [228] = {.lex_state = 145}, - [229] = {.lex_state = 145}, - [230] = {.lex_state = 145}, - [231] = {.lex_state = 145}, - [232] = {.lex_state = 145}, - [233] = {.lex_state = 145}, - [234] = {.lex_state = 145}, - [235] = {.lex_state = 145}, - [236] = {.lex_state = 145}, - [237] = {.lex_state = 145}, - [238] = {.lex_state = 145}, - [239] = {.lex_state = 145}, - [240] = {.lex_state = 145}, - [241] = {.lex_state = 145}, - [242] = {.lex_state = 145}, - [243] = {.lex_state = 145}, - [244] = {.lex_state = 4}, - [245] = {.lex_state = 145}, - [246] = {.lex_state = 145}, - [247] = {.lex_state = 145}, - [248] = {.lex_state = 145}, - [249] = {.lex_state = 145}, - [250] = {.lex_state = 145}, - [251] = {.lex_state = 145}, - [252] = {.lex_state = 145}, - [253] = {.lex_state = 145}, - [254] = {.lex_state = 145}, - [255] = {.lex_state = 145}, - [256] = {.lex_state = 145}, - [257] = {.lex_state = 145}, - [258] = {.lex_state = 145}, - [259] = {.lex_state = 145}, - [260] = {.lex_state = 145}, - [261] = {.lex_state = 145}, - [262] = {.lex_state = 4}, - [263] = {.lex_state = 145}, - [264] = {.lex_state = 145}, - [265] = {.lex_state = 145}, - [266] = {.lex_state = 145}, - [267] = {.lex_state = 145}, - [268] = {.lex_state = 145}, - [269] = {.lex_state = 145}, - [270] = {.lex_state = 145}, - [271] = {.lex_state = 145}, - [272] = {.lex_state = 145}, - [273] = {.lex_state = 145}, - [274] = {.lex_state = 145}, - [275] = {.lex_state = 4}, - [276] = {.lex_state = 145}, - [277] = {.lex_state = 145}, - [278] = {.lex_state = 145}, - [279] = {.lex_state = 145}, - [280] = {.lex_state = 145}, - [281] = {.lex_state = 145}, - [282] = {.lex_state = 145}, - [283] = {.lex_state = 145}, - [284] = {.lex_state = 145}, - [285] = {.lex_state = 4}, - [286] = {.lex_state = 145}, - [287] = {.lex_state = 145}, - [288] = {.lex_state = 145}, - [289] = {.lex_state = 4}, - [290] = {.lex_state = 145}, - [291] = {.lex_state = 145}, - [292] = {.lex_state = 5}, - [293] = {.lex_state = 5}, - [294] = {.lex_state = 5}, - [295] = {.lex_state = 5}, - [296] = {.lex_state = 5}, - [297] = {.lex_state = 5}, - [298] = {.lex_state = 5}, - [299] = {.lex_state = 5}, - [300] = {.lex_state = 4}, - [301] = {.lex_state = 6}, - [302] = {.lex_state = 6}, - [303] = {.lex_state = 6}, - [304] = {.lex_state = 6}, - [305] = {.lex_state = 6}, - [306] = {.lex_state = 6}, - [307] = {.lex_state = 6}, - [308] = {.lex_state = 6}, - [309] = {.lex_state = 6}, - [310] = {.lex_state = 6}, - [311] = {.lex_state = 6}, - [312] = {.lex_state = 6}, - [313] = {.lex_state = 6}, - [314] = {.lex_state = 6}, - [315] = {.lex_state = 6}, - [316] = {.lex_state = 6}, - [317] = {.lex_state = 6}, - [318] = {.lex_state = 6}, - [319] = {.lex_state = 6}, - [320] = {.lex_state = 6}, - [321] = {.lex_state = 6}, - [322] = {.lex_state = 6}, - [323] = {.lex_state = 6}, - [324] = {.lex_state = 6}, - [325] = {.lex_state = 6}, - [326] = {.lex_state = 6}, - [327] = {.lex_state = 6}, - [328] = {.lex_state = 6}, - [329] = {.lex_state = 6}, - [330] = {.lex_state = 6}, - [331] = {.lex_state = 6}, - [332] = {.lex_state = 6}, - [333] = {.lex_state = 5}, - [334] = {.lex_state = 6}, - [335] = {.lex_state = 6}, - [336] = {.lex_state = 6}, - [337] = {.lex_state = 6}, - [338] = {.lex_state = 6}, - [339] = {.lex_state = 6}, - [340] = {.lex_state = 6}, - [341] = {.lex_state = 6}, - [342] = {.lex_state = 6}, - [343] = {.lex_state = 6}, - [344] = {.lex_state = 6}, - [345] = {.lex_state = 6}, - [346] = {.lex_state = 6}, - [347] = {.lex_state = 6}, - [348] = {.lex_state = 6}, - [349] = {.lex_state = 6}, - [350] = {.lex_state = 6}, - [351] = {.lex_state = 6}, - [352] = {.lex_state = 6}, - [353] = {.lex_state = 6}, - [354] = {.lex_state = 6}, - [355] = {.lex_state = 6}, - [356] = {.lex_state = 6}, - [357] = {.lex_state = 6}, - [358] = {.lex_state = 6}, - [359] = {.lex_state = 6}, - [360] = {.lex_state = 6}, - [361] = {.lex_state = 6}, - [362] = {.lex_state = 6}, - [363] = {.lex_state = 6}, - [364] = {.lex_state = 6}, - [365] = {.lex_state = 6}, - [366] = {.lex_state = 6}, - [367] = {.lex_state = 6}, - [368] = {.lex_state = 6}, - [369] = {.lex_state = 6}, - [370] = {.lex_state = 6}, - [371] = {.lex_state = 6}, - [372] = {.lex_state = 6}, - [373] = {.lex_state = 6}, - [374] = {.lex_state = 6}, - [375] = {.lex_state = 6}, - [376] = {.lex_state = 6}, - [377] = {.lex_state = 6}, - [378] = {.lex_state = 6}, - [379] = {.lex_state = 6}, + [106] = {.lex_state = 20}, + [107] = {.lex_state = 20}, + [108] = {.lex_state = 20}, + [109] = {.lex_state = 20}, + [110] = {.lex_state = 20}, + [111] = {.lex_state = 20}, + [112] = {.lex_state = 20}, + [113] = {.lex_state = 20}, + [114] = {.lex_state = 20}, + [115] = {.lex_state = 20}, + [116] = {.lex_state = 20}, + [117] = {.lex_state = 20}, + [118] = {.lex_state = 20}, + [119] = {.lex_state = 20}, + [120] = {.lex_state = 20}, + [121] = {.lex_state = 20}, + [122] = {.lex_state = 20}, + [123] = {.lex_state = 20}, + [124] = {.lex_state = 20}, + [125] = {.lex_state = 20}, + [126] = {.lex_state = 20}, + [127] = {.lex_state = 20}, + [128] = {.lex_state = 20}, + [129] = {.lex_state = 20}, + [130] = {.lex_state = 20}, + [131] = {.lex_state = 20}, + [132] = {.lex_state = 20}, + [133] = {.lex_state = 20}, + [134] = {.lex_state = 20}, + [135] = {.lex_state = 20}, + [136] = {.lex_state = 20}, + [137] = {.lex_state = 20}, + [138] = {.lex_state = 1}, + [139] = {.lex_state = 20}, + [140] = {.lex_state = 20}, + [141] = {.lex_state = 20}, + [142] = {.lex_state = 20}, + [143] = {.lex_state = 20}, + [144] = {.lex_state = 20}, + [145] = {.lex_state = 20}, + [146] = {.lex_state = 20}, + [147] = {.lex_state = 20}, + [148] = {.lex_state = 20}, + [149] = {.lex_state = 20}, + [150] = {.lex_state = 20}, + [151] = {.lex_state = 20}, + [152] = {.lex_state = 20}, + [153] = {.lex_state = 20}, + [154] = {.lex_state = 20}, + [155] = {.lex_state = 20}, + [156] = {.lex_state = 20}, + [157] = {.lex_state = 20}, + [158] = {.lex_state = 20}, + [159] = {.lex_state = 20}, + [160] = {.lex_state = 20}, + [161] = {.lex_state = 20}, + [162] = {.lex_state = 20}, + [163] = {.lex_state = 20}, + [164] = {.lex_state = 20}, + [165] = {.lex_state = 20}, + [166] = {.lex_state = 20}, + [167] = {.lex_state = 20}, + [168] = {.lex_state = 20}, + [169] = {.lex_state = 20}, + [170] = {.lex_state = 20}, + [171] = {.lex_state = 20}, + [172] = {.lex_state = 20}, + [173] = {.lex_state = 20}, + [174] = {.lex_state = 20}, + [175] = {.lex_state = 20}, + [176] = {.lex_state = 20}, + [177] = {.lex_state = 20}, + [178] = {.lex_state = 20}, + [179] = {.lex_state = 20}, + [180] = {.lex_state = 20}, + [181] = {.lex_state = 20}, + [182] = {.lex_state = 20}, + [183] = {.lex_state = 20}, + [184] = {.lex_state = 20}, + [185] = {.lex_state = 20}, + [186] = {.lex_state = 20}, + [187] = {.lex_state = 20}, + [188] = {.lex_state = 20}, + [189] = {.lex_state = 20}, + [190] = {.lex_state = 20}, + [191] = {.lex_state = 2}, + [192] = {.lex_state = 2}, + [193] = {.lex_state = 2}, + [194] = {.lex_state = 2}, + [195] = {.lex_state = 2}, + [196] = {.lex_state = 2}, + [197] = {.lex_state = 2}, + [198] = {.lex_state = 2}, + [199] = {.lex_state = 2}, + [200] = {.lex_state = 1}, + [201] = {.lex_state = 2}, + [202] = {.lex_state = 2}, + [203] = {.lex_state = 2}, + [204] = {.lex_state = 2}, + [205] = {.lex_state = 2}, + [206] = {.lex_state = 2}, + [207] = {.lex_state = 2}, + [208] = {.lex_state = 2}, + [209] = {.lex_state = 2}, + [210] = {.lex_state = 2}, + [211] = {.lex_state = 2}, + [212] = {.lex_state = 2}, + [213] = {.lex_state = 2}, + [214] = {.lex_state = 2}, + [215] = {.lex_state = 2}, + [216] = {.lex_state = 2}, + [217] = {.lex_state = 2}, + [218] = {.lex_state = 2}, + [219] = {.lex_state = 2}, + [220] = {.lex_state = 2}, + [221] = {.lex_state = 2}, + [222] = {.lex_state = 2}, + [223] = {.lex_state = 2}, + [224] = {.lex_state = 2}, + [225] = {.lex_state = 2}, + [226] = {.lex_state = 2}, + [227] = {.lex_state = 2}, + [228] = {.lex_state = 2}, + [229] = {.lex_state = 2}, + [230] = {.lex_state = 2}, + [231] = {.lex_state = 2}, + [232] = {.lex_state = 2}, + [233] = {.lex_state = 2}, + [234] = {.lex_state = 2}, + [235] = {.lex_state = 2}, + [236] = {.lex_state = 2}, + [237] = {.lex_state = 2}, + [238] = {.lex_state = 2}, + [239] = {.lex_state = 2}, + [240] = {.lex_state = 2}, + [241] = {.lex_state = 2}, + [242] = {.lex_state = 2}, + [243] = {.lex_state = 2}, + [244] = {.lex_state = 2}, + [245] = {.lex_state = 2}, + [246] = {.lex_state = 2}, + [247] = {.lex_state = 2}, + [248] = {.lex_state = 2}, + [249] = {.lex_state = 2}, + [250] = {.lex_state = 2}, + [251] = {.lex_state = 2}, + [252] = {.lex_state = 2}, + [253] = {.lex_state = 2}, + [254] = {.lex_state = 2}, + [255] = {.lex_state = 2}, + [256] = {.lex_state = 2}, + [257] = {.lex_state = 2}, + [258] = {.lex_state = 2}, + [259] = {.lex_state = 2}, + [260] = {.lex_state = 2}, + [261] = {.lex_state = 2}, + [262] = {.lex_state = 2}, + [263] = {.lex_state = 2}, + [264] = {.lex_state = 2}, + [265] = {.lex_state = 2}, + [266] = {.lex_state = 2}, + [267] = {.lex_state = 2}, + [268] = {.lex_state = 2}, + [269] = {.lex_state = 2}, + [270] = {.lex_state = 2}, + [271] = {.lex_state = 2}, + [272] = {.lex_state = 15}, + [273] = {.lex_state = 15}, + [274] = {.lex_state = 15}, + [275] = {.lex_state = 15}, + [276] = {.lex_state = 15}, + [277] = {.lex_state = 15}, + [278] = {.lex_state = 20}, + [279] = {.lex_state = 20}, + [280] = {.lex_state = 16}, + [281] = {.lex_state = 16}, + [282] = {.lex_state = 16}, + [283] = {.lex_state = 16}, + [284] = {.lex_state = 16}, + [285] = {.lex_state = 20}, + [286] = {.lex_state = 16}, + [287] = {.lex_state = 20}, + [288] = {.lex_state = 20}, + [289] = {.lex_state = 2}, + [290] = {.lex_state = 16}, + [291] = {.lex_state = 16}, + [292] = {.lex_state = 16}, + [293] = {.lex_state = 16}, + [294] = {.lex_state = 20}, + [295] = {.lex_state = 20}, + [296] = {.lex_state = 16}, + [297] = {.lex_state = 16}, + [298] = {.lex_state = 20}, + [299] = {.lex_state = 20}, + [300] = {.lex_state = 20}, + [301] = {.lex_state = 20}, + [302] = {.lex_state = 20}, + [303] = {.lex_state = 20}, + [304] = {.lex_state = 20}, + [305] = {.lex_state = 20}, + [306] = {.lex_state = 20}, + [307] = {.lex_state = 20}, + [308] = {.lex_state = 20}, + [309] = {.lex_state = 20}, + [310] = {.lex_state = 20}, + [311] = {.lex_state = 20}, + [312] = {.lex_state = 20}, + [313] = {.lex_state = 20}, + [314] = {.lex_state = 20}, + [315] = {.lex_state = 20}, + [316] = {.lex_state = 20}, + [317] = {.lex_state = 20}, + [318] = {.lex_state = 20}, + [319] = {.lex_state = 20}, + [320] = {.lex_state = 20}, + [321] = {.lex_state = 0}, + [322] = {.lex_state = 20}, + [323] = {.lex_state = 20}, + [324] = {.lex_state = 20}, + [325] = {.lex_state = 20}, + [326] = {.lex_state = 15}, + [327] = {.lex_state = 20}, + [328] = {.lex_state = 0}, + [329] = {.lex_state = 0}, + [330] = {.lex_state = 20}, + [331] = {.lex_state = 0}, + [332] = {.lex_state = 20}, + [333] = {.lex_state = 20}, + [334] = {.lex_state = 20}, + [335] = {.lex_state = 20}, + [336] = {.lex_state = 20}, + [337] = {.lex_state = 20}, + [338] = {.lex_state = 20}, + [339] = {.lex_state = 15}, + [340] = {.lex_state = 20}, + [341] = {.lex_state = 15}, + [342] = {.lex_state = 0}, + [343] = {.lex_state = 20}, + [344] = {.lex_state = 0}, + [345] = {.lex_state = 0}, + [346] = {.lex_state = 20}, + [347] = {.lex_state = 20}, + [348] = {.lex_state = 20}, + [349] = {.lex_state = 20}, + [350] = {.lex_state = 0}, + [351] = {.lex_state = 20}, + [352] = {.lex_state = 20}, + [353] = {.lex_state = 20}, + [354] = {.lex_state = 20}, + [355] = {.lex_state = 20}, + [356] = {.lex_state = 20}, + [357] = {.lex_state = 0}, + [358] = {.lex_state = 0}, + [359] = {.lex_state = 20}, + [360] = {.lex_state = 0}, + [361] = {.lex_state = 0}, + [362] = {.lex_state = 20}, + [363] = {.lex_state = 0}, + [364] = {.lex_state = 20}, + [365] = {.lex_state = 20}, + [366] = {.lex_state = 20}, + [367] = {.lex_state = 20}, + [368] = {.lex_state = 20}, + [369] = {.lex_state = 20}, + [370] = {.lex_state = 20}, + [371] = {.lex_state = 20}, + [372] = {.lex_state = 3}, + [373] = {.lex_state = 0}, + [374] = {.lex_state = 0}, + [375] = {.lex_state = 2}, + [376] = {.lex_state = 15}, + [377] = {.lex_state = 0}, + [378] = {.lex_state = 0}, + [379] = {.lex_state = 2}, [380] = {.lex_state = 6}, - [381] = {.lex_state = 6}, - [382] = {.lex_state = 6}, - [383] = {.lex_state = 6}, - [384] = {.lex_state = 6}, - [385] = {.lex_state = 6}, - [386] = {.lex_state = 6}, - [387] = {.lex_state = 6}, - [388] = {.lex_state = 6}, - [389] = {.lex_state = 6}, + [381] = {.lex_state = 3}, + [382] = {.lex_state = 0}, + [383] = {.lex_state = 16}, + [384] = {.lex_state = 2}, + [385] = {.lex_state = 0}, + [386] = {.lex_state = 3}, + [387] = {.lex_state = 2}, + [388] = {.lex_state = 0}, + [389] = {.lex_state = 15}, [390] = {.lex_state = 6}, - [391] = {.lex_state = 2}, - [392] = {.lex_state = 2}, - [393] = {.lex_state = 2}, + [391] = {.lex_state = 6}, + [392] = {.lex_state = 3}, + [393] = {.lex_state = 0}, [394] = {.lex_state = 2}, [395] = {.lex_state = 2}, - [396] = {.lex_state = 2}, + [396] = {.lex_state = 0}, [397] = {.lex_state = 2}, - [398] = {.lex_state = 2}, - [399] = {.lex_state = 4}, - [400] = {.lex_state = 4}, - [401] = {.lex_state = 4}, - [402] = {.lex_state = 4}, - [403] = {.lex_state = 145}, - [404] = {.lex_state = 2}, - [405] = {.lex_state = 145}, + [398] = {.lex_state = 0}, + [399] = {.lex_state = 0}, + [400] = {.lex_state = 0}, + [401] = {.lex_state = 0}, + [402] = {.lex_state = 0}, + [403] = {.lex_state = 3}, + [404] = {.lex_state = 0}, + [405] = {.lex_state = 0}, [406] = {.lex_state = 2}, - [407] = {.lex_state = 145}, - [408] = {.lex_state = 145}, - [409] = {.lex_state = 4}, - [410] = {.lex_state = 4}, - [411] = {.lex_state = 145}, - [412] = {.lex_state = 145}, - [413] = {.lex_state = 145}, - [414] = {.lex_state = 145}, - [415] = {.lex_state = 3}, - [416] = {.lex_state = 145}, - [417] = {.lex_state = 145}, - [418] = {.lex_state = 145}, - [419] = {.lex_state = 145}, - [420] = {.lex_state = 145}, - [421] = {.lex_state = 145}, + [407] = {.lex_state = 16}, + [408] = {.lex_state = 2}, + [409] = {.lex_state = 0}, + [410] = {.lex_state = 0}, + [411] = {.lex_state = 6}, + [412] = {.lex_state = 16}, + [413] = {.lex_state = 15}, + [414] = {.lex_state = 6}, + [415] = {.lex_state = 2}, + [416] = {.lex_state = 6}, + [417] = {.lex_state = 2}, + [418] = {.lex_state = 16}, + [419] = {.lex_state = 2}, + [420] = {.lex_state = 2}, + [421] = {.lex_state = 2}, [422] = {.lex_state = 2}, - [423] = {.lex_state = 145}, - [424] = {.lex_state = 145}, - [425] = {.lex_state = 145}, - [426] = {.lex_state = 145}, - [427] = {.lex_state = 145}, - [428] = {.lex_state = 145}, - [429] = {.lex_state = 145}, - [430] = {.lex_state = 145}, - [431] = {.lex_state = 145}, - [432] = {.lex_state = 145}, - [433] = {.lex_state = 145}, - [434] = {.lex_state = 145}, - [435] = {.lex_state = 145}, - [436] = {.lex_state = 145}, - [437] = {.lex_state = 145}, - [438] = {.lex_state = 4}, - [439] = {.lex_state = 3}, - [440] = {.lex_state = 145}, - [441] = {.lex_state = 145}, - [442] = {.lex_state = 145}, - [443] = {.lex_state = 145}, - [444] = {.lex_state = 145}, - [445] = {.lex_state = 3}, - [446] = {.lex_state = 145}, - [447] = {.lex_state = 143}, - [448] = {.lex_state = 145}, - [449] = {.lex_state = 2}, - [450] = {.lex_state = 145}, - [451] = {.lex_state = 145}, - [452] = {.lex_state = 143}, - [453] = {.lex_state = 143}, - [454] = {.lex_state = 143}, - [455] = {.lex_state = 145}, - [456] = {.lex_state = 143}, - [457] = {.lex_state = 145}, - [458] = {.lex_state = 145}, - [459] = {.lex_state = 4}, - [460] = {.lex_state = 145}, - [461] = {.lex_state = 3}, - [462] = {.lex_state = 2}, - [463] = {.lex_state = 143}, - [464] = {.lex_state = 145}, - [465] = {.lex_state = 145}, - [466] = {.lex_state = 4}, - [467] = {.lex_state = 145}, - [468] = {.lex_state = 4}, - [469] = {.lex_state = 145}, - [470] = {.lex_state = 144}, - [471] = {.lex_state = 144}, - [472] = {.lex_state = 4}, - [473] = {.lex_state = 3}, - [474] = {.lex_state = 4}, - [475] = {.lex_state = 4}, - [476] = {.lex_state = 4}, - [477] = {.lex_state = 2}, - [478] = {.lex_state = 144}, - [479] = {.lex_state = 145}, - [480] = {.lex_state = 144}, - [481] = {.lex_state = 145}, - [482] = {.lex_state = 4}, - [483] = {.lex_state = 144}, - [484] = {.lex_state = 145}, - [485] = {.lex_state = 4}, - [486] = {.lex_state = 4}, - [487] = {.lex_state = 144}, - [488] = {.lex_state = 145}, - [489] = {.lex_state = 144}, - [490] = {.lex_state = 145}, - [491] = {.lex_state = 4}, - [492] = {.lex_state = 145}, - [493] = {.lex_state = 4}, - [494] = {.lex_state = 145}, - [495] = {.lex_state = 145}, - [496] = {.lex_state = 145}, - [497] = {.lex_state = 145}, - [498] = {.lex_state = 3}, - [499] = {.lex_state = 145}, - [500] = {.lex_state = 145}, - [501] = {.lex_state = 2}, - [502] = {.lex_state = 145}, - [503] = {.lex_state = 4}, - [504] = {.lex_state = 2}, - [505] = {.lex_state = 3}, - [506] = {.lex_state = 145}, - [507] = {.lex_state = 145}, - [508] = {.lex_state = 4}, - [509] = {.lex_state = 145}, - [510] = {.lex_state = 144}, - [511] = {.lex_state = 145}, - [512] = {.lex_state = 145}, - [513] = {.lex_state = 144}, - [514] = {.lex_state = 145}, - [515] = {.lex_state = 4}, - [516] = {.lex_state = 4}, - [517] = {.lex_state = 4}, - [518] = {.lex_state = 145}, - [519] = {.lex_state = 144}, - [520] = {.lex_state = 144}, - [521] = {.lex_state = 145}, - [522] = {.lex_state = 145}, - [523] = {.lex_state = 145}, - [524] = {.lex_state = 145}, - [525] = {.lex_state = 145}, - [526] = {.lex_state = 145}, - [527] = {.lex_state = 144}, - [528] = {.lex_state = 145}, - [529] = {.lex_state = 145}, - [530] = {.lex_state = 145}, - [531] = {.lex_state = 145}, - [532] = {.lex_state = 145}, - [533] = {.lex_state = 145}, - [534] = {.lex_state = 145}, - [535] = {.lex_state = 145}, - [536] = {.lex_state = 145}, - [537] = {.lex_state = 145}, - [538] = {.lex_state = 145}, - [539] = {.lex_state = 145}, - [540] = {.lex_state = 145}, - [541] = {.lex_state = 145}, - [542] = {.lex_state = 145}, - [543] = {.lex_state = 145}, - [544] = {.lex_state = 145}, - [545] = {.lex_state = 145}, - [546] = {.lex_state = 145}, - [547] = {.lex_state = 145}, - [548] = {.lex_state = 145}, - [549] = {.lex_state = 7}, - [550] = {.lex_state = 1}, - [551] = {.lex_state = 145}, - [552] = {.lex_state = 145}, - [553] = {.lex_state = 2}, - [554] = {.lex_state = 1}, - [555] = {.lex_state = 1}, - [556] = {.lex_state = 1}, - [557] = {.lex_state = 1}, - [558] = {.lex_state = 1}, - [559] = {.lex_state = 2}, - [560] = {.lex_state = 4}, - [561] = {.lex_state = 7}, - [562] = {.lex_state = 7}, - [563] = {.lex_state = 7}, - [564] = {.lex_state = 7}, - [565] = {.lex_state = 7}, - [566] = {.lex_state = 7}, - [567] = {.lex_state = 7}, - [568] = {.lex_state = 7}, - [569] = {.lex_state = 7}, - [570] = {.lex_state = 7}, - [571] = {.lex_state = 2}, - [572] = {.lex_state = 2}, - [573] = {.lex_state = 7}, - [574] = {.lex_state = 7}, - [575] = {.lex_state = 2}, - [576] = {.lex_state = 2}, - [577] = {.lex_state = 145}, - [578] = {.lex_state = 7}, - [579] = {.lex_state = 7}, - [580] = {.lex_state = 1}, - [581] = {.lex_state = 145}, - [582] = {.lex_state = 1}, - [583] = {.lex_state = 1}, - [584] = {.lex_state = 145}, - [585] = {.lex_state = 1}, - [586] = {.lex_state = 7}, - [587] = {.lex_state = 2}, - [588] = {.lex_state = 1}, - [589] = {.lex_state = 1}, - [590] = {.lex_state = 7}, - [591] = {.lex_state = 1}, - [592] = {.lex_state = 2}, - [593] = {.lex_state = 143}, - [594] = {.lex_state = 143}, - [595] = {.lex_state = 7}, - [596] = {.lex_state = 145}, - [597] = {.lex_state = 143}, - [598] = {.lex_state = 2}, - [599] = {.lex_state = 1}, - [600] = {.lex_state = 145}, - [601] = {.lex_state = 7}, - [602] = {.lex_state = 1}, - [603] = {.lex_state = 135}, - [604] = {.lex_state = 72}, - [605] = {.lex_state = 1}, - [606] = {.lex_state = 1}, - [607] = {.lex_state = 1}, - [608] = {.lex_state = 1}, - [609] = {.lex_state = 1}, - [610] = {.lex_state = 1}, - [611] = {.lex_state = 1}, - [612] = {.lex_state = 1}, - [613] = {.lex_state = 1}, - [614] = {.lex_state = 1}, - [615] = {.lex_state = 1}, - [616] = {.lex_state = 1}, - [617] = {.lex_state = 1}, - [618] = {.lex_state = 1}, - [619] = {.lex_state = 1}, - [620] = {.lex_state = 1}, - [621] = {.lex_state = 1}, - [622] = {.lex_state = 1}, - [623] = {.lex_state = 1}, - [624] = {.lex_state = 1}, - [625] = {.lex_state = 1}, - [626] = {.lex_state = 1}, - [627] = {.lex_state = 1}, - [628] = {.lex_state = 1}, - [629] = {.lex_state = 1}, - [630] = {.lex_state = 1}, - [631] = {.lex_state = 1}, - [632] = {.lex_state = 1}, - [633] = {.lex_state = 1}, - [634] = {.lex_state = 1}, - [635] = {.lex_state = 1}, - [636] = {.lex_state = 1}, - [637] = {.lex_state = 1}, - [638] = {.lex_state = 1}, - [639] = {.lex_state = 1}, - [640] = {.lex_state = 1}, - [641] = {.lex_state = 1}, - [642] = {.lex_state = 1}, - [643] = {.lex_state = 1}, - [644] = {.lex_state = 1}, - [645] = {.lex_state = 1}, - [646] = {.lex_state = 1}, - [647] = {.lex_state = 1}, - [648] = {.lex_state = 1}, - [649] = {.lex_state = 1}, - [650] = {.lex_state = 1}, - [651] = {.lex_state = 1}, - [652] = {.lex_state = 1}, - [653] = {.lex_state = 1}, - [654] = {.lex_state = 1}, - [655] = {.lex_state = 1}, - [656] = {.lex_state = 1}, - [657] = {.lex_state = 1}, - [658] = {.lex_state = 28}, - [659] = {.lex_state = 36}, - [660] = {.lex_state = 37}, - [661] = {.lex_state = 72}, - [662] = {.lex_state = 115}, - [663] = {.lex_state = 135}, - [664] = {.lex_state = 136}, - [665] = {.lex_state = 73}, - [666] = {.lex_state = 64}, - [667] = {.lex_state = 28}, - [668] = {.lex_state = 36}, - [669] = {.lex_state = 37}, - [670] = {.lex_state = 72}, - [671] = {.lex_state = 115}, - [672] = {.lex_state = 135}, - [673] = {.lex_state = 136}, - [674] = {.lex_state = 73}, - [675] = {.lex_state = 1}, - [676] = {.lex_state = 64}, - [677] = {.lex_state = 1}, - [678] = {.lex_state = 28}, - [679] = {.lex_state = 36}, - [680] = {.lex_state = 37}, - [681] = {.lex_state = 72}, - [682] = {.lex_state = 115}, - [683] = {.lex_state = 135}, - [684] = {.lex_state = 136}, - [685] = {.lex_state = 73}, - [686] = {.lex_state = 4}, - [687] = {.lex_state = 64}, - [688] = {.lex_state = 65}, - [689] = {.lex_state = 1}, - [690] = {.lex_state = 28}, - [691] = {.lex_state = 36}, - [692] = {.lex_state = 37}, - [693] = {.lex_state = 72}, - [694] = {.lex_state = 115}, - [695] = {.lex_state = 135}, - [696] = {.lex_state = 136}, - [697] = {.lex_state = 73}, - [698] = {.lex_state = 1}, - [699] = {.lex_state = 64}, - [700] = {.lex_state = 65}, - [701] = {.lex_state = 1}, - [702] = {.lex_state = 1}, - [703] = {.lex_state = 73}, - [704] = {.lex_state = 4}, - [705] = {.lex_state = 64}, - [706] = {.lex_state = 65}, - [707] = {.lex_state = 4}, - [708] = {.lex_state = 73}, - [709] = {.lex_state = 64}, - [710] = {.lex_state = 65}, - [711] = {.lex_state = 4}, - [712] = {.lex_state = 73}, - [713] = {.lex_state = 26}, - [714] = {.lex_state = 23}, - [715] = {.lex_state = 26}, - [716] = {.lex_state = 23}, - [717] = {.lex_state = 1}, - [718] = {.lex_state = 26}, - [719] = {.lex_state = 23}, - [720] = {.lex_state = 26}, - [721] = {.lex_state = 23}, - [722] = {.lex_state = 145}, - [723] = {.lex_state = 143}, - [724] = {.lex_state = 144}, - [725] = {.lex_state = 143}, - [726] = {.lex_state = 143}, - [727] = {.lex_state = 1}, - [728] = {.lex_state = 1}, - [729] = {.lex_state = 1}, - [730] = {.lex_state = 1}, - [731] = {.lex_state = 1}, - [732] = {.lex_state = 1}, - [733] = {.lex_state = 1}, - [734] = {.lex_state = 1}, - [735] = {.lex_state = 1}, - [736] = {.lex_state = 1}, - [737] = {.lex_state = 73}, - [738] = {.lex_state = 1}, - [739] = {.lex_state = 1}, - [740] = {.lex_state = 145}, - [741] = {.lex_state = 1}, - [742] = {.lex_state = 65}, - [743] = {.lex_state = 1}, - [744] = {.lex_state = 1}, - [745] = {.lex_state = 64}, - [746] = {.lex_state = 1}, - [747] = {.lex_state = 1}, - [748] = {.lex_state = 73}, - [749] = {.lex_state = 1}, - [750] = {.lex_state = 1}, - [751] = {.lex_state = 1}, - [752] = {.lex_state = 1}, - [753] = {.lex_state = 1}, - [754] = {.lex_state = 1}, - [755] = {.lex_state = 65}, - [756] = {.lex_state = 1}, - [757] = {.lex_state = 64}, - [758] = {.lex_state = 1}, - [759] = {.lex_state = 1}, - [760] = {.lex_state = 145}, - [761] = {.lex_state = 144}, - [762] = {.lex_state = 73}, - [763] = {.lex_state = 1}, - [764] = {.lex_state = 1}, - [765] = {.lex_state = 145}, - [766] = {.lex_state = 145}, - [767] = {.lex_state = 145}, - [768] = {.lex_state = 1}, - [769] = {.lex_state = 1}, - [770] = {.lex_state = 1}, - [771] = {.lex_state = 65}, - [772] = {.lex_state = 26}, - [773] = {.lex_state = 64}, - [774] = {.lex_state = 1}, - [775] = {.lex_state = 1}, - [776] = {.lex_state = 145}, - [777] = {.lex_state = 23}, - [778] = {.lex_state = 73}, - [779] = {.lex_state = 1}, - [780] = {.lex_state = 1}, - [781] = {.lex_state = 136}, - [782] = {.lex_state = 135}, - [783] = {.lex_state = 115}, - [784] = {.lex_state = 72}, - [785] = {.lex_state = 37}, - [786] = {.lex_state = 36}, - [787] = {.lex_state = 28}, - [788] = {.lex_state = 28}, - [789] = {.lex_state = 36}, - [790] = {.lex_state = 145}, - [791] = {.lex_state = 37}, - [792] = {.lex_state = 72}, - [793] = {.lex_state = 115}, - [794] = {.lex_state = 136}, - [795] = {.lex_state = 145}, - [796] = {.lex_state = 73}, - [797] = {.lex_state = 64}, - [798] = {.lex_state = 1}, - [799] = {.lex_state = 144}, - [800] = {.lex_state = 145}, - [801] = {.lex_state = 145}, - [802] = {.lex_state = 145}, - [803] = {.lex_state = 28}, - [804] = {.lex_state = 36}, - [805] = {.lex_state = 37}, - [806] = {.lex_state = 1}, - [807] = {.lex_state = 115}, - [808] = {.lex_state = 135}, - [809] = {.lex_state = 136}, - [810] = {.lex_state = 1}, - [811] = {.lex_state = 1}, - [812] = {.lex_state = 73}, - [813] = {.lex_state = 4}, - [814] = {.lex_state = 1}, - [815] = {.lex_state = 64}, - [816] = {.lex_state = 145}, - [817] = {.lex_state = 1}, - [818] = {.lex_state = 36}, - [819] = {.lex_state = 37}, - [820] = {.lex_state = 72}, - [821] = {.lex_state = 115}, - [822] = {.lex_state = 135}, - [823] = {.lex_state = 136}, - [824] = {.lex_state = 1}, - [825] = {.lex_state = 1}, - [826] = {.lex_state = 73}, - [827] = {.lex_state = 28}, - [828] = {.lex_state = 1}, - [829] = {.lex_state = 64}, - [830] = {.lex_state = 65}, - [831] = {.lex_state = 1}, - [832] = {.lex_state = 4}, - [833] = {.lex_state = 145}, - [834] = {.lex_state = 1}, - [835] = {.lex_state = 1}, - [836] = {.lex_state = 1}, - [837] = {.lex_state = 1}, - [838] = {.lex_state = 1}, - [839] = {.lex_state = 1}, - [840] = {.lex_state = 1}, - [841] = {.lex_state = 1}, - [842] = {.lex_state = 1}, - [843] = {.lex_state = 1}, - [844] = {.lex_state = 1}, - [845] = {.lex_state = 1}, - [846] = {.lex_state = 1}, - [847] = {.lex_state = 1}, - [848] = {.lex_state = 1}, - [849] = {.lex_state = 1}, - [850] = {.lex_state = 1}, - [851] = {.lex_state = 1}, - [852] = {.lex_state = 1}, - [853] = {.lex_state = 1}, - [854] = {.lex_state = 1}, - [855] = {.lex_state = 1}, - [856] = {.lex_state = 1}, - [857] = {.lex_state = 1}, - [858] = {.lex_state = 1}, - [859] = {.lex_state = 1}, - [860] = {.lex_state = 1}, - [861] = {.lex_state = 1}, - [862] = {.lex_state = 1}, - [863] = {.lex_state = 1}, - [864] = {.lex_state = 1}, - [865] = {.lex_state = 1}, - [866] = {.lex_state = 1}, - [867] = {.lex_state = 1}, - [868] = {.lex_state = 1}, - [869] = {.lex_state = 1}, - [870] = {.lex_state = 1}, - [871] = {.lex_state = 1}, - [872] = {.lex_state = 1}, - [873] = {.lex_state = 1}, - [874] = {.lex_state = 144}, - [875] = {.lex_state = 1}, - [876] = {.lex_state = 1}, - [877] = {.lex_state = 1}, - [878] = {.lex_state = 1}, - [879] = {.lex_state = 1}, - [880] = {.lex_state = 1}, - [881] = {.lex_state = 1}, - [882] = {.lex_state = 1}, - [883] = {.lex_state = 1}, - [884] = {.lex_state = 1}, - [885] = {.lex_state = 1}, - [886] = {.lex_state = 1}, - [887] = {.lex_state = 1}, - [888] = {.lex_state = 1}, - [889] = {.lex_state = 1}, - [890] = {.lex_state = 1}, - [891] = {.lex_state = 1}, - [892] = {.lex_state = 1}, - [893] = {.lex_state = 144}, - [894] = {.lex_state = 1}, - [895] = {.lex_state = 1}, - [896] = {.lex_state = 1}, - [897] = {.lex_state = 1}, - [898] = {.lex_state = 1}, - [899] = {.lex_state = 1}, - [900] = {.lex_state = 1}, - [901] = {.lex_state = 1}, - [902] = {.lex_state = 1}, - [903] = {.lex_state = 1}, - [904] = {.lex_state = 1}, - [905] = {.lex_state = 1}, - [906] = {.lex_state = 1}, - [907] = {.lex_state = 1}, - [908] = {.lex_state = 1}, - [909] = {.lex_state = 1}, - [910] = {.lex_state = 1}, - [911] = {.lex_state = 1}, - [912] = {.lex_state = 1}, - [913] = {.lex_state = 1}, - [914] = {.lex_state = 1}, - [915] = {.lex_state = 1}, - [916] = {.lex_state = 1}, - [917] = {.lex_state = 1}, - [918] = {.lex_state = 1}, - [919] = {.lex_state = 1}, - [920] = {.lex_state = 1}, - [921] = {.lex_state = 1}, - [922] = {.lex_state = 1}, - [923] = {.lex_state = 1}, - [924] = {.lex_state = 1}, - [925] = {.lex_state = 1}, - [926] = {.lex_state = 1}, - [927] = {.lex_state = 1}, - [928] = {.lex_state = 1}, - [929] = {.lex_state = 1}, - [930] = {.lex_state = 1}, - [931] = {.lex_state = 1}, - [932] = {.lex_state = 1}, - [933] = {.lex_state = 1}, - [934] = {.lex_state = 1}, - [935] = {.lex_state = 1}, - [936] = {.lex_state = 1}, - [937] = {.lex_state = 1}, - [938] = {.lex_state = 1}, - [939] = {.lex_state = 1}, - [940] = {.lex_state = 1}, - [941] = {.lex_state = 1}, - [942] = {.lex_state = 1}, - [943] = {.lex_state = 1}, - [944] = {.lex_state = 1}, - [945] = {.lex_state = 1}, - [946] = {.lex_state = 1}, - [947] = {.lex_state = 1}, - [948] = {.lex_state = 1}, - [949] = {.lex_state = 1}, - [950] = {.lex_state = 144}, - [951] = {.lex_state = 1}, - [952] = {.lex_state = 1}, - [953] = {.lex_state = 1}, - [954] = {.lex_state = 1}, - [955] = {.lex_state = 1}, - [956] = {.lex_state = 1}, - [957] = {.lex_state = 144}, - [958] = {.lex_state = 1}, - [959] = {.lex_state = 1}, - [960] = {.lex_state = 1}, - [961] = {.lex_state = 1}, - [962] = {.lex_state = 1}, - [963] = {.lex_state = 1}, - [964] = {.lex_state = 1}, - [965] = {.lex_state = 1}, - [966] = {.lex_state = 1}, - [967] = {.lex_state = 1}, - [968] = {.lex_state = 144}, - [969] = {.lex_state = 2}, - [970] = {.lex_state = 144}, - [971] = {.lex_state = 1}, - [972] = {.lex_state = 1}, - [973] = {.lex_state = 1}, - [974] = {.lex_state = 1}, - [975] = {.lex_state = 1}, - [976] = {.lex_state = 1}, - [977] = {.lex_state = 1}, - [978] = {.lex_state = 1}, - [979] = {.lex_state = 1}, - [980] = {.lex_state = 1}, - [981] = {.lex_state = 1}, - [982] = {.lex_state = 1}, - [983] = {.lex_state = 23}, - [984] = {.lex_state = 1}, - [985] = {.lex_state = 26}, - [986] = {.lex_state = 1}, - [987] = {.lex_state = 1}, - [988] = {.lex_state = 1}, - [989] = {.lex_state = 1}, - [990] = {.lex_state = 2}, - [991] = {.lex_state = 1}, - [992] = {.lex_state = 1}, - [993] = {.lex_state = 2}, - [994] = {.lex_state = 1}, - [995] = {.lex_state = 1}, - [996] = {.lex_state = 1}, - [997] = {.lex_state = 1}, - [998] = {.lex_state = 4}, - [999] = {.lex_state = 4}, - [1000] = {.lex_state = 4}, - [1001] = {.lex_state = 4}, - [1002] = {.lex_state = 4}, - [1003] = {.lex_state = 4}, - [1004] = {.lex_state = 4}, - [1005] = {.lex_state = 4}, - [1006] = {.lex_state = 0}, + [423] = {.lex_state = 2}, + [424] = {.lex_state = 17}, + [425] = {.lex_state = 2}, + [426] = {.lex_state = 2}, + [427] = {.lex_state = 2}, + [428] = {.lex_state = 2}, + [429] = {.lex_state = 16}, + [430] = {.lex_state = 17}, + [431] = {.lex_state = 2}, + [432] = {.lex_state = 2}, + [433] = {.lex_state = 2}, + [434] = {.lex_state = 16}, + [435] = {.lex_state = 16}, + [436] = {.lex_state = 3}, + [437] = {.lex_state = 2}, + [438] = {.lex_state = 2}, + [439] = {.lex_state = 16}, + [440] = {.lex_state = 2}, + [441] = {.lex_state = 2}, + [442] = {.lex_state = 2}, + [443] = {.lex_state = 16}, + [444] = {.lex_state = 2}, + [445] = {.lex_state = 2}, + [446] = {.lex_state = 0}, + [447] = {.lex_state = 0}, + [448] = {.lex_state = 0}, + [449] = {.lex_state = 0}, + [450] = {.lex_state = 0}, + [451] = {.lex_state = 0}, + [452] = {.lex_state = 0}, + [453] = {.lex_state = 0}, + [454] = {.lex_state = 0}, + [455] = {.lex_state = 0}, + [456] = {.lex_state = 0}, + [457] = {.lex_state = 2}, + [458] = {.lex_state = 0}, + [459] = {.lex_state = 0}, + [460] = {.lex_state = 0}, + [461] = {.lex_state = 0}, + [462] = {.lex_state = 0}, + [463] = {.lex_state = 0}, + [464] = {.lex_state = 0}, + [465] = {.lex_state = 0}, + [466] = {.lex_state = 0}, + [467] = {.lex_state = 0}, + [468] = {.lex_state = 0}, + [469] = {.lex_state = 0}, + [470] = {.lex_state = 0}, + [471] = {.lex_state = 0}, + [472] = {.lex_state = 0}, + [473] = {.lex_state = 0}, + [474] = {.lex_state = 0}, + [475] = {.lex_state = 0}, + [476] = {.lex_state = 0}, + [477] = {.lex_state = 0}, + [478] = {.lex_state = 0}, + [479] = {.lex_state = 0}, + [480] = {.lex_state = 0}, + [481] = {.lex_state = 0}, + [482] = {.lex_state = 0}, + [483] = {.lex_state = 0}, + [484] = {.lex_state = 2}, + [485] = {.lex_state = 0}, + [486] = {.lex_state = 0}, + [487] = {.lex_state = 2}, + [488] = {.lex_state = 0}, + [489] = {.lex_state = 0}, + [490] = {.lex_state = 0}, + [491] = {.lex_state = 0}, + [492] = {.lex_state = 0}, + [493] = {.lex_state = 0}, + [494] = {.lex_state = 0}, + [495] = {.lex_state = 0}, + [496] = {.lex_state = 0}, + [497] = {.lex_state = 0}, + [498] = {.lex_state = 0}, + [499] = {.lex_state = 0}, + [500] = {.lex_state = 0}, + [501] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), + [sym__identifier] = ACTIONS(1), + [sym_keyword_operator] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), - [aux_sym_number_token1] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [sym_number] = ACTIONS(1), + [sym_boolean] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), - [aux_sym_string_token1] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), - [aux_sym_string_token2] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), - [aux_sym__word_token1] = ACTIONS(1), - [anon_sym_] = ACTIONS(1), - [aux_sym_variable_name_token1] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_LBRACE_PERCENT] = ACTIONS(1), + [anon_sym_autoescape] = ACTIONS(1), + [anon_sym_PERCENT_RBRACE] = ACTIONS(1), + [anon_sym_endautoescape] = ACTIONS(1), + [anon_sym_block] = ACTIONS(1), + [anon_sym_endblock] = ACTIONS(1), + [anon_sym_blocktranslate] = ACTIONS(1), + [anon_sym_endblocktranslate] = ACTIONS(1), + [anon_sym_ifchanged] = ACTIONS(1), + [anon_sym_endifchanged] = ACTIONS(1), + [anon_sym_spaceless] = ACTIONS(1), + [anon_sym_endspaceless] = ACTIONS(1), + [anon_sym_verbatim] = ACTIONS(1), + [anon_sym_endverbatim] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), + [anon_sym_endwith] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_endif] = ACTIONS(1), + [anon_sym_elif] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_endfor] = ACTIONS(1), + [anon_sym_empty] = ACTIONS(1), + [anon_sym_filter] = ACTIONS(1), + [anon_sym_endfilter] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [aux_sym_unpaired_comment_token1] = ACTIONS(1), + [anon_sym_LBRACE_POUND] = ACTIONS(1), + [anon_sym_POUND_RBRACE] = ACTIONS(1), + [anon_sym_comment] = ACTIONS(1), + [anon_sym_endcomment] = ACTIONS(1), }, [1] = { - [sym_template] = STATE(1006), - [sym__node] = STATE(140), - [sym__expression] = STATE(140), - [sym__statement] = STATE(140), - [sym_paired_statement] = STATE(140), - [sym_if_statement] = STATE(140), - [sym_for_statement] = STATE(140), - [sym_filter_statement] = STATE(140), - [sym_unpaired_statement] = STATE(140), - [sym_detatched_end_statement] = STATE(140), - [sym__comment] = STATE(140), - [sym_unpaired_comment] = STATE(140), - [sym_paired_comment] = STATE(140), - [aux_sym_template_repeat1] = STATE(140), + [sym_template] = STATE(493), + [sym__node] = STATE(92), + [sym__expression] = STATE(92), + [sym__statement] = STATE(92), + [sym_paired_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_filter_statement] = STATE(92), + [sym_unpaired_statement] = STATE(92), + [sym__comment] = STATE(92), + [sym_unpaired_comment] = STATE(92), + [sym_paired_comment] = STATE(92), + [aux_sym_template_repeat1] = STATE(92), [ts_builtin_sym_end] = ACTIONS(3), - [aux_sym__node_token1] = ACTIONS(5), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7), - [anon_sym_LBRACE_PERCENT] = ACTIONS(9), - [anon_sym_LBRACE_POUND] = ACTIONS(11), - [sym_content] = ACTIONS(5), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5), + [anon_sym_LBRACE_PERCENT] = ACTIONS(7), + [anon_sym_LBRACE_POUND] = ACTIONS(9), + [sym_content] = ACTIONS(11), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(37), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + [0] = 4, + ACTIONS(17), 1, + anon_sym_DOT, + STATE(2), 1, + aux_sym_filter_argument_repeat1, + ACTIONS(15), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(98), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(13), 14, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [82] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(39), 1, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + anon_sym_COMMA, + [29] = 4, + ACTIONS(24), 1, + anon_sym_DOT, + STATE(2), 1, + aux_sym_filter_argument_repeat1, + ACTIONS(22), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(94), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(20), 14, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [164] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(41), 1, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + anon_sym_COMMA, + [58] = 4, + ACTIONS(24), 1, + anon_sym_DOT, + STATE(3), 1, + aux_sym_filter_argument_repeat1, + ACTIONS(28), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(64), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(26), 14, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [246] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(43), 1, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + anon_sym_COMMA, + [87] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(42), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(72), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [328] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(45), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(100), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [410] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(47), 1, - anon_sym_, - ACTIONS(49), 1, - anon_sym_PERCENT_RBRACE, - STATE(12), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(80), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [492] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(51), 1, - anon_sym_, - ACTIONS(53), 1, - anon_sym_PERCENT_RBRACE, - STATE(21), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(79), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [574] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(55), 1, - anon_sym_, - ACTIONS(57), 1, - anon_sym_PERCENT_RBRACE, - STATE(41), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(78), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [656] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(59), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(74), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [738] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(57), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(78), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [820] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(61), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(99), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [902] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(63), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(101), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [984] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(65), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(75), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1066] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(67), 1, - anon_sym_, - ACTIONS(69), 1, - anon_sym_PERCENT_RBRACE, - STATE(49), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(84), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1148] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(71), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(105), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1230] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(73), 1, - anon_sym_, - ACTIONS(75), 1, - anon_sym_PERCENT_RBRACE, - STATE(20), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(104), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1312] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(77), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(110), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1394] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(79), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(114), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1476] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(81), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(76), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1558] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(49), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(80), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1640] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(83), 1, - anon_sym_, - ACTIONS(85), 1, - anon_sym_PERCENT_RBRACE, - STATE(16), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(62), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1722] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(69), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(84), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1804] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(87), 1, - anon_sym_, - ACTIONS(89), 1, - anon_sym_PERCENT_RBRACE, - STATE(14), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(112), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1886] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(91), 1, - anon_sym_, - ACTIONS(93), 1, - anon_sym_PERCENT_RBRACE, - STATE(10), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(96), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [1968] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(95), 1, - anon_sym_, - ACTIONS(97), 1, - anon_sym_PERCENT_RBRACE, - STATE(5), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(86), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2050] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(99), 1, - anon_sym_, - ACTIONS(101), 1, - anon_sym_PERCENT_RBRACE, - STATE(30), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, STATE(68), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2132] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [125] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(103), 1, - anon_sym_, - ACTIONS(105), 1, - anon_sym_PERCENT_RBRACE, - STATE(61), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(44), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(66), 2, + STATE(20), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2214] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [163] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(107), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(46), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(85), 2, + STATE(30), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2296] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(109), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + [201] = 4, + ACTIONS(52), 1, + anon_sym_PIPE, + STATE(28), 1, + aux_sym_string_repeat3, + ACTIONS(50), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(69), 2, + sym_variable_name, + anon_sym_EQ, + ACTIONS(48), 13, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_RBRACE_RBRACE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [229] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(54), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2378] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [267] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(111), 1, - anon_sym_, - ACTIONS(113), 1, - anon_sym_PERCENT_RBRACE, - STATE(59), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(56), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(73), 2, + STATE(35), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2460] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [305] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(115), 1, - anon_sym_, - ACTIONS(117), 1, - anon_sym_PERCENT_RBRACE, - STATE(2), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(58), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(107), 2, + STATE(36), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2542] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [343] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(119), 1, - anon_sym_, - ACTIONS(121), 1, - anon_sym_PERCENT_RBRACE, - STATE(53), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(60), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(63), 2, + STATE(38), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2624] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [381] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(123), 1, - anon_sym_, - ACTIONS(125), 1, - anon_sym_PERCENT_RBRACE, - STATE(52), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(62), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(82), 2, + STATE(40), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2706] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [419] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(127), 1, - anon_sym_, - ACTIONS(129), 1, - anon_sym_PERCENT_RBRACE, - STATE(50), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(64), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(103), 2, + STATE(42), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2788] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [457] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(131), 1, - anon_sym_, - ACTIONS(133), 1, - anon_sym_PERCENT_RBRACE, - STATE(47), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(66), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(88), 2, + STATE(33), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2870] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [495] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(135), 1, - anon_sym_, - ACTIONS(137), 1, - anon_sym_PERCENT_RBRACE, - STATE(46), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(68), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(91), 2, + STATE(46), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [2952] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [533] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(139), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(70), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(102), 2, + STATE(48), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3034] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [571] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(141), 1, - anon_sym_, - ACTIONS(143), 1, - anon_sym_PERCENT_RBRACE, - STATE(23), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(72), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(115), 2, + STATE(50), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3116] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [609] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(145), 1, - anon_sym_, - ACTIONS(147), 1, - anon_sym_PERCENT_RBRACE, - STATE(4), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(74), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(77), 2, + STATE(52), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3198] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [647] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(53), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(76), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(79), 2, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3280] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [685] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(149), 1, - anon_sym_, - ACTIONS(151), 1, - anon_sym_PERCENT_RBRACE, - STATE(29), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(78), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(95), 2, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3362] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [723] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(151), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(80), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(95), 2, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3444] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [761] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(153), 1, - anon_sym_, - ACTIONS(155), 1, - anon_sym_PERCENT_RBRACE, - STATE(6), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(82), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(83), 2, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3526] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [799] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(157), 1, - anon_sym_, - ACTIONS(159), 1, - anon_sym_PERCENT_RBRACE, - STATE(54), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(84), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(106), 2, + STATE(62), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3608] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [837] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(161), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(86), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(65), 2, + STATE(31), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3690] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [875] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(163), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(46), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(71), 2, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3772] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [913] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(165), 1, - anon_sym_, - ACTIONS(167), 1, - anon_sym_PERCENT_RBRACE, - STATE(43), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(88), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(92), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3854] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(167), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(92), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [3936] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(169), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(81), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4018] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(171), 1, - anon_sym_, - ACTIONS(173), 1, - anon_sym_PERCENT_RBRACE, - STATE(58), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(113), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4100] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(175), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(87), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4182] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(177), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(93), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4264] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(179), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(97), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4346] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(181), 1, - anon_sym_, - ACTIONS(183), 1, - anon_sym_PERCENT_RBRACE, - STATE(13), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(89), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4428] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(185), 1, - anon_sym_, - ACTIONS(187), 1, - anon_sym_PERCENT_RBRACE, - STATE(11), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(90), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4510] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(189), 1, - anon_sym_, - ACTIONS(191), 1, - anon_sym_PERCENT_RBRACE, - STATE(60), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, STATE(70), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, + [951] = 4, + ACTIONS(52), 1, + anon_sym_PIPE, + STATE(64), 1, + aux_sym_string_repeat3, + ACTIONS(92), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(90), 13, sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_RBRACE_RBRACE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [979] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(94), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(43), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4592] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1017] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(193), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(96), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1055] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(98), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1093] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(100), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(9), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1131] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(102), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1169] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(104), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(21), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1207] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(106), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1245] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(108), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1283] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(110), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1321] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(112), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1359] = 2, + ACTIONS(15), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(13), 15, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, + anon_sym_DOT, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [1383] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(114), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1421] = 8, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(118), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + STATE(102), 1, + sym_elif_statement, + STATE(168), 1, + sym_else_statement, + STATE(345), 1, + aux_sym_if_statement_repeat1, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [1457] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(124), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1495] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(126), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1533] = 8, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(128), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(130), 1, + sym_content, + STATE(102), 1, + sym_elif_statement, + STATE(139), 1, + sym_else_statement, + STATE(363), 1, + aux_sym_if_statement_repeat1, + STATE(74), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [1569] = 8, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(128), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(139), 1, + sym_else_statement, + STATE(363), 1, + aux_sym_if_statement_repeat1, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [1605] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(132), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1643] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(134), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(51), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1681] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(136), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1719] = 8, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(138), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(140), 1, + sym_content, + STATE(102), 1, + sym_elif_statement, + STATE(103), 1, + sym_else_statement, + STATE(321), 1, + aux_sym_if_statement_repeat1, + STATE(45), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [1755] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(142), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1793] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(144), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1831] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(146), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1869] = 2, + ACTIONS(150), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(148), 15, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [1893] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(152), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(22), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1931] = 3, + ACTIONS(158), 1, + anon_sym_COLON, + ACTIONS(156), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(154), 14, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [1957] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(160), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(23), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [1995] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(162), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [2033] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(144), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(59), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [2071] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(164), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [2109] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(164), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(61), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [2147] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(166), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [2185] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(168), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(72), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [2223] = 8, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(170), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(172), 1, + sym_content, + STATE(102), 1, + sym_elif_statement, + STATE(181), 1, + sym_else_statement, + STATE(350), 1, + aux_sym_if_statement_repeat1, + STATE(41), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [2259] = 4, + ACTIONS(178), 1, + anon_sym_PIPE, + STATE(64), 1, + aux_sym_string_repeat3, + ACTIONS(176), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(174), 13, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_RBRACE_RBRACE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [2287] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(181), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, + anon_sym_LT, + anon_sym_GT, + STATE(26), 2, + sym__attribute, + aux_sym_paired_statement_repeat1, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [2325] = 9, + ACTIONS(36), 1, + anon_sym_SQUOTE, + ACTIONS(38), 1, + anon_sym_DQUOTE, + ACTIONS(40), 1, + sym_variable_name, + ACTIONS(183), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, STATE(67), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4674] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [2363] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(195), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(181), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(108), 2, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4756] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [2401] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(197), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(185), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(116), 2, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4838] = 19, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [2439] = 8, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(170), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(181), 1, + sym_else_statement, + STATE(350), 1, + aux_sym_if_statement_repeat1, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [2475] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(199), 1, - anon_sym_PERCENT_RBRACE, - STATE(118), 1, - aux_sym__ws, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(187), 1, + anon_sym_PERCENT_RBRACE, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(109), 2, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4920] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [2513] = 8, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(189), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(191), 1, + sym_content, + STATE(102), 1, + sym_elif_statement, + STATE(120), 1, + sym_else_statement, + STATE(360), 1, + aux_sym_if_statement_repeat1, + STATE(69), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [2549] = 9, + ACTIONS(202), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(71), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [4996] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(177), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5072] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(201), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5148] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(203), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5224] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(199), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5300] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, ACTIONS(205), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5376] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(109), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(208), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5452] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(207), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5528] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(197), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5604] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(209), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5680] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, ACTIONS(211), 1, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(199), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, + STATE(72), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(193), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5756] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + [2587] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(195), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, + ACTIONS(40), 1, sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5832] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, ACTIONS(213), 1, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, + STATE(37), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5908] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, + [2625] = 8, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(215), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [5984] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(185), 1, + sym_else_statement, + STATE(361), 1, + aux_sym_if_statement_repeat1, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [2661] = 9, + ACTIONS(36), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, + ACTIONS(38), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, + ACTIONS(40), 1, + sym_variable_name, ACTIONS(217), 1, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + ACTIONS(34), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, + STATE(57), 2, sym__attribute, aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + STATE(105), 3, + sym_operator, + sym_string, + sym_variable, + ACTIONS(30), 4, + sym_keyword, + sym_keyword_operator, + sym_number, + sym_boolean, + ACTIONS(32), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, + [2699] = 2, + ACTIONS(221), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(219), 14, sym_keyword, - sym_operator, sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6060] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(41), 1, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + anon_sym_COMMA, + [2722] = 4, + ACTIONS(52), 1, + anon_sym_PIPE, + STATE(80), 1, + aux_sym_string_repeat3, + ACTIONS(225), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(223), 12, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6136] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(53), 1, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + anon_sym_COMMA, + [2749] = 2, + ACTIONS(176), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(174), 14, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6212] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(49), 1, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + anon_sym_COMMA, + [2772] = 4, + ACTIONS(52), 1, + anon_sym_PIPE, + STATE(81), 1, + aux_sym_string_repeat3, + ACTIONS(229), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(227), 12, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6288] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(61), 1, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + anon_sym_COMMA, + [2799] = 4, + ACTIONS(52), 1, + anon_sym_PIPE, + STATE(64), 1, + aux_sym_string_repeat3, + ACTIONS(229), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(227), 12, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6364] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(219), 1, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + anon_sym_COMMA, + [2826] = 4, + ACTIONS(52), 1, + anon_sym_PIPE, + STATE(64), 1, + aux_sym_string_repeat3, + ACTIONS(233), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(231), 12, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6440] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(175), 1, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + anon_sym_COMMA, + [2853] = 2, + ACTIONS(237), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(235), 14, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6516] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(45), 1, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, + anon_sym_COMMA, + [2876] = 2, + ACTIONS(241), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, + sym_variable_name, + anon_sym_EQ, + ACTIONS(239), 14, + sym_keyword, + sym_keyword_operator, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, sym_number, sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6592] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, anon_sym_SQUOTE, - ACTIONS(31), 1, anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(167), 1, + anon_sym_PIPE, + anon_sym_RBRACE_RBRACE, anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6668] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(221), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6744] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(43), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6820] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(223), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6896] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(163), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [6972] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(63), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7048] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(57), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7124] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(161), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7200] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(151), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7276] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(225), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7352] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(227), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7428] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(107), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7504] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(59), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7580] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(229), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7656] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(231), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7732] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(233), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7808] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(235), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7884] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(237), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [7960] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(239), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8036] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(169), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8112] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(81), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8188] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(241), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8264] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(179), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8340] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(37), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8416] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, + anon_sym_COMMA, + [2899] = 6, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, ACTIONS(243), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8492] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, + anon_sym_LBRACE_PERCENT, ACTIONS(245), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8568] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(247), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8644] = 17, - ACTIONS(249), 1, - anon_sym_on, - ACTIONS(267), 1, - aux_sym_number_token1, - ACTIONS(273), 1, - anon_sym_SQUOTE, - ACTIONS(276), 1, - anon_sym_DQUOTE, - ACTIONS(279), 1, - aux_sym_variable_name_token1, - ACTIONS(282), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(258), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(264), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(270), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(255), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(261), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(252), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8720] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(65), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8796] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(193), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8872] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(284), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [8948] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(69), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [9024] = 17, - ACTIONS(13), 1, - anon_sym_on, - ACTIONS(25), 1, - aux_sym_number_token1, - ACTIONS(29), 1, - anon_sym_SQUOTE, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - aux_sym_variable_name_token1, - ACTIONS(286), 1, - anon_sym_PERCENT_RBRACE, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(498), 1, - aux_sym_number_repeat1, - ACTIONS(19), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(23), 2, - anon_sym_not, - anon_sym_is, - ACTIONS(27), 2, - anon_sym_True, - anon_sym_False, - STATE(111), 2, - sym__attribute, - aux_sym_paired_statement_repeat1, - ACTIONS(17), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(21), 5, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - STATE(560), 7, - sym_keyword, - sym_operator, - sym_keyword_operator, - sym_number, - sym_boolean, - sym_string, - sym_variable, - ACTIONS(15), 8, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - [9100] = 6, - ACTIONS(33), 1, - anon_sym_, - ACTIONS(292), 1, - anon_sym_COMMA, - ACTIONS(294), 1, - anon_sym_EQ, - STATE(118), 1, - aux_sym__ws, - ACTIONS(288), 6, - anon_sym_on, - anon_sym_LT, - anon_sym_GT, - anon_sym_not, - anon_sym_is, - aux_sym_variable_name_token1, - ACTIONS(290), 23, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - aux_sym_number_token1, - anon_sym_True, - anon_sym_False, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PERCENT_RBRACE, - [9146] = 4, - ACTIONS(300), 1, - anon_sym_, - STATE(118), 1, - aux_sym__ws, - ACTIONS(296), 7, - anon_sym_on, - anon_sym_LT, - anon_sym_GT, - anon_sym_not, - anon_sym_is, - aux_sym_variable_name_token1, - anon_sym_EQ, - ACTIONS(298), 24, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - aux_sym_number_token1, - anon_sym_True, - anon_sym_False, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PERCENT_RBRACE, - anon_sym_COMMA, - [9188] = 4, - ACTIONS(33), 1, - anon_sym_, - STATE(118), 1, - aux_sym__ws, - ACTIONS(303), 6, - anon_sym_on, - anon_sym_LT, - anon_sym_GT, - anon_sym_not, - anon_sym_is, - aux_sym_variable_name_token1, - ACTIONS(305), 23, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - aux_sym_number_token1, - anon_sym_True, - anon_sym_False, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PERCENT_RBRACE, - [9228] = 4, - ACTIONS(311), 1, - anon_sym_, - STATE(119), 1, - aux_sym__ws, - ACTIONS(307), 6, - anon_sym_on, - anon_sym_LT, - anon_sym_GT, - anon_sym_not, - anon_sym_is, - aux_sym_variable_name_token1, - ACTIONS(309), 23, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - aux_sym_number_token1, - anon_sym_True, - anon_sym_False, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PERCENT_RBRACE, - [9268] = 4, - ACTIONS(313), 1, - anon_sym_, + sym_content, STATE(122), 1, - aux_sym__ws, - ACTIONS(288), 6, - anon_sym_on, - anon_sym_LT, - anon_sym_GT, - anon_sym_not, - anon_sym_is, - aux_sym_variable_name_token1, - ACTIONS(290), 23, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - aux_sym_number_token1, - anon_sym_True, - anon_sym_False, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PERCENT_RBRACE, - [9308] = 4, - ACTIONS(33), 1, - anon_sym_, - STATE(118), 1, - aux_sym__ws, - ACTIONS(307), 6, - anon_sym_on, - anon_sym_LT, - anon_sym_GT, - anon_sym_not, - anon_sym_is, - aux_sym_variable_name_token1, - ACTIONS(309), 23, - anon_sym_off, - anon_sym_with, - anon_sym_as, - anon_sym_silent, - anon_sym_only, - anon_sym_from, - anon_sym_random, - anon_sym_by, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_in, - anon_sym_notin, - anon_sym_isnot, - aux_sym_number_token1, - anon_sym_True, - anon_sym_False, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_PERCENT_RBRACE, - [9348] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(319), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - STATE(162), 1, - sym_elif_statement, - STATE(265), 1, - sym_else_statement, - STATE(600), 1, - aux_sym_if_statement_repeat1, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9386] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(325), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(291), 1, - sym_else_statement, - STATE(577), 1, - aux_sym_if_statement_repeat1, - ACTIONS(323), 2, - aux_sym__node_token1, - sym_content, - STATE(125), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9424] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(327), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(266), 1, - sym_else_statement, - STATE(596), 1, - aux_sym_if_statement_repeat1, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9462] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(327), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(266), 1, - sym_else_statement, - STATE(596), 1, - aux_sym_if_statement_repeat1, - ACTIONS(329), 2, - aux_sym__node_token1, - sym_content, - STATE(134), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9500] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(333), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(201), 1, - sym_else_statement, - STATE(552), 1, - aux_sym_if_statement_repeat1, - ACTIONS(331), 2, - aux_sym__node_token1, - sym_content, - STATE(123), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9538] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(333), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(201), 1, - sym_else_statement, - STATE(552), 1, - aux_sym_if_statement_repeat1, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9576] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(325), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(291), 1, - sym_else_statement, - STATE(577), 1, - aux_sym_if_statement_repeat1, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9614] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(337), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(192), 1, - sym_else_statement, - STATE(551), 1, - aux_sym_if_statement_repeat1, - ACTIONS(335), 2, - aux_sym__node_token1, - sym_content, - STATE(129), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9652] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(339), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(239), 1, - sym_else_statement, - STATE(581), 1, - aux_sym_if_statement_repeat1, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9690] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(319), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - STATE(162), 1, - sym_elif_statement, - STATE(265), 1, - sym_else_statement, - STATE(600), 1, - aux_sym_if_statement_repeat1, - ACTIONS(341), 2, - aux_sym__node_token1, - sym_content, - STATE(131), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9728] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(345), 1, - anon_sym_LBRACE_PERCENT, - STATE(157), 1, - sym_else_statement, - STATE(162), 1, - sym_elif_statement, - STATE(548), 1, - aux_sym_if_statement_repeat1, - ACTIONS(343), 2, - aux_sym__node_token1, - sym_content, - STATE(128), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9766] = 8, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(347), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(246), 1, - sym_else_statement, - STATE(584), 1, - aux_sym_if_statement_repeat1, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [9804] = 6, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(351), 1, - anon_sym_LBRACE_PERCENT, - STATE(215), 1, sym_empty_statement, - ACTIONS(349), 2, - aux_sym__node_token1, - sym_content, - STATE(148), 13, + STATE(90), 12, sym__node, sym__expression, sym__statement, @@ -11550,24 +5383,22 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [9836] = 6, - ACTIONS(317), 1, + [2929] = 6, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(353), 1, - anon_sym_LBRACE_PERCENT, - STATE(240), 1, - sym_empty_statement, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(122), 1, sym_content, - STATE(205), 13, + ACTIONS(247), 1, + anon_sym_LBRACE_PERCENT, + STATE(133), 1, + sym_empty_statement, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11576,24 +5407,827 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [9868] = 6, - ACTIONS(355), 1, + [2959] = 6, + ACTIONS(249), 1, ts_builtin_sym_end, - ACTIONS(360), 1, + ACTIONS(251), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(363), 1, + ACTIONS(254), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(257), 1, + anon_sym_LBRACE_POUND, + ACTIONS(260), 1, + sym_content, + STATE(86), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [2989] = 6, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(263), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(265), 1, + sym_content, + STATE(106), 1, + sym_empty_statement, + STATE(91), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3019] = 6, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(267), 1, + anon_sym_LBRACE_PERCENT, + STATE(175), 1, + sym_empty_statement, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3049] = 6, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(269), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(271), 1, + sym_content, + STATE(115), 1, + sym_empty_statement, + STATE(85), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3079] = 6, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(273), 1, + anon_sym_LBRACE_PERCENT, + STATE(171), 1, + sym_empty_statement, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3109] = 6, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(243), 1, + anon_sym_LBRACE_PERCENT, + STATE(122), 1, + sym_empty_statement, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3139] = 6, + ACTIONS(5), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(7), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(9), 1, + anon_sym_LBRACE_POUND, + ACTIONS(275), 1, + ts_builtin_sym_end, + ACTIONS(277), 1, + sym_content, + STATE(86), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3169] = 6, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(247), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(279), 1, + sym_content, + STATE(133), 1, + sym_empty_statement, + STATE(88), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3199] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(281), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(283), 1, + sym_content, + STATE(119), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3226] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(285), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(287), 1, + sym_content, + STATE(98), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3253] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(289), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3280] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(289), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(291), 1, + sym_content, + STATE(129), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3307] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(293), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3334] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(295), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3361] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(295), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(297), 1, + sym_content, + STATE(131), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3388] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(299), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(301), 1, + sym_content, + STATE(125), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3415] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(303), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(306), 1, + sym_content, + STATE(135), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3442] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(308), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(310), 1, + sym_content, + STATE(137), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3469] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(312), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3496] = 4, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(320), 1, + anon_sym_EQ, + ACTIONS(316), 3, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + ACTIONS(314), 11, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PERCENT_RBRACE, + [3521] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(322), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(324), 1, + sym_content, + STATE(147), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3548] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(326), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(328), 1, + sym_content, + STATE(152), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3575] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(330), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3602] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(332), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3629] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(334), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3656] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(336), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3683] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(338), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3710] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(340), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(342), 1, + sym_content, + STATE(156), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3737] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(344), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3764] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(346), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(348), 1, + sym_content, + STATE(116), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3791] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(350), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3818] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(352), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(354), 1, + sym_content, + STATE(121), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3845] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(352), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3872] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(356), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3899] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(358), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(360), 1, + sym_content, + STATE(149), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3926] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(362), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [3953] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(364), 1, anon_sym_LBRACE_PERCENT, ACTIONS(366), 1, - anon_sym_LBRACE_POUND, - ACTIONS(357), 2, - aux_sym__node_token1, sym_content, - STATE(137), 13, + STATE(172), 12, sym__node, sym__expression, sym__statement, @@ -11602,24 +6236,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [9900] = 6, - ACTIONS(317), 1, + [3980] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(371), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(368), 1, anon_sym_LBRACE_PERCENT, - STATE(155), 1, - sym_empty_statement, - ACTIONS(369), 2, - aux_sym__node_token1, - sym_content, - STATE(146), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11628,24 +6258,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [9932] = 6, - ACTIONS(317), 1, + [4007] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(373), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(285), 1, anon_sym_LBRACE_PERCENT, - STATE(220), 1, - sym_empty_statement, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11654,24 +6280,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [9964] = 6, - ACTIONS(7), 1, + [4034] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(9), 1, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(370), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(11), 1, - anon_sym_LBRACE_POUND, - ACTIONS(375), 1, - ts_builtin_sym_end, - ACTIONS(377), 2, - aux_sym__node_token1, - sym_content, - STATE(137), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11680,24 +6302,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [9996] = 6, - ACTIONS(317), 1, + [4061] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(379), 1, + ACTIONS(372), 1, anon_sym_LBRACE_PERCENT, - STATE(260), 1, - sym_empty_statement, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(374), 1, sym_content, - STATE(205), 13, + STATE(104), 12, sym__node, sym__expression, sym__statement, @@ -11706,24 +6324,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10028] = 6, - ACTIONS(317), 1, + [4088] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(379), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(376), 1, anon_sym_LBRACE_PERCENT, - STATE(260), 1, - sym_empty_statement, - ACTIONS(381), 2, - aux_sym__node_token1, - sym_content, - STATE(136), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11732,24 +6346,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10060] = 6, - ACTIONS(317), 1, + [4115] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(383), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(372), 1, anon_sym_LBRACE_PERCENT, - STATE(274), 1, - sym_empty_statement, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11758,24 +6368,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10092] = 6, - ACTIONS(317), 1, + [4142] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(383), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(378), 1, anon_sym_LBRACE_PERCENT, - STATE(274), 1, - sym_empty_statement, - ACTIONS(385), 2, - aux_sym__node_token1, - sym_content, - STATE(139), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11784,24 +6390,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10124] = 6, - ACTIONS(317), 1, + [4169] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(389), 1, + ACTIONS(380), 1, anon_sym_LBRACE_PERCENT, - STATE(287), 1, - sym_empty_statement, - ACTIONS(387), 2, - aux_sym__node_token1, + ACTIONS(382), 1, sym_content, - STATE(141), 13, + STATE(108), 12, sym__node, sym__expression, sym__statement, @@ -11810,24 +6412,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10156] = 6, - ACTIONS(317), 1, + [4196] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(391), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(384), 1, anon_sym_LBRACE_PERCENT, - STATE(211), 1, - sym_empty_statement, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11836,24 +6434,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10188] = 6, - ACTIONS(317), 1, + [4223] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(391), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(299), 1, anon_sym_LBRACE_PERCENT, - STATE(211), 1, - sym_empty_statement, - ACTIONS(393), 2, - aux_sym__node_token1, - sym_content, - STATE(143), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11862,24 +6456,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10220] = 6, - ACTIONS(317), 1, + [4250] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(389), 1, + ACTIONS(350), 1, anon_sym_LBRACE_PERCENT, - STATE(287), 1, - sym_empty_statement, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(386), 1, sym_content, - STATE(205), 13, + STATE(169), 12, sym__node, sym__expression, sym__statement, @@ -11888,22 +6478,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10252] = 5, - ACTIONS(317), 1, + [4277] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(395), 1, + ACTIONS(388), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(390), 1, sym_content, - STATE(205), 13, + STATE(109), 12, sym__node, sym__expression, sym__statement, @@ -11912,22 +6500,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10281] = 5, - ACTIONS(317), 1, + [4304] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(397), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(392), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11936,22 +6522,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10310] = 5, - ACTIONS(317), 1, + [4331] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(395), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(388), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(399), 2, - aux_sym__node_token1, - sym_content, - STATE(235), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11960,22 +6544,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10339] = 5, - ACTIONS(317), 1, + [4358] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(401), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(394), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -11984,22 +6566,39 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10368] = 5, - ACTIONS(317), 1, + [4385] = 2, + ACTIONS(398), 4, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + anon_sym_EQ, + ACTIONS(396), 12, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PERCENT_RBRACE, + anon_sym_COMMA, + [4406] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(401), 1, + ACTIONS(394), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(403), 2, - aux_sym__node_token1, + ACTIONS(400), 1, sym_content, - STATE(247), 13, + STATE(183), 12, sym__node, sym__expression, sym__statement, @@ -12008,22 +6607,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10397] = 5, - ACTIONS(317), 1, + [4433] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(405), 1, + ACTIONS(402), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(404), 1, sym_content, - STATE(205), 13, + STATE(145), 12, sym__node, sym__expression, sym__statement, @@ -12032,22 +6629,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10426] = 5, - ACTIONS(317), 1, + [4460] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(409), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(406), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(407), 2, - aux_sym__node_token1, - sym_content, - STATE(209), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12056,22 +6651,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10455] = 5, - ACTIONS(317), 1, + [4487] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(411), 1, + ACTIONS(408), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(410), 1, sym_content, - STATE(205), 13, + STATE(111), 12, sym__node, sym__expression, sym__statement, @@ -12080,22 +6673,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10484] = 5, - ACTIONS(317), 1, + [4514] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(415), 1, + ACTIONS(344), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(413), 2, - aux_sym__node_token1, + ACTIONS(412), 1, sym_content, - STATE(199), 13, + STATE(123), 12, sym__node, sym__expression, sym__statement, @@ -12104,22 +6695,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10513] = 5, - ACTIONS(317), 1, + [4541] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(417), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(408), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12128,22 +6717,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10542] = 5, - ACTIONS(317), 1, + [4568] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(417), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(281), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(419), 2, - aux_sym__node_token1, - sym_content, - STATE(255), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12152,22 +6739,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10571] = 5, - ACTIONS(317), 1, + [4595] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(421), 1, + ACTIONS(414), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(416), 1, sym_content, - STATE(205), 13, + STATE(112), 12, sym__node, sym__expression, sym__statement, @@ -12176,22 +6761,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10600] = 5, - ACTIONS(317), 1, + [4622] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(421), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(364), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(423), 2, - aux_sym__node_token1, - sym_content, - STATE(173), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12200,22 +6783,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10629] = 5, - ACTIONS(317), 1, + [4649] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(427), 1, + ACTIONS(406), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(425), 2, - aux_sym__node_token1, + ACTIONS(418), 1, sym_content, - STATE(197), 13, + STATE(110), 12, sym__node, sym__expression, sym__statement, @@ -12224,22 +6805,196 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10658] = 5, - ACTIONS(317), 1, + [4676] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(420), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [4703] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(380), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [4730] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(414), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [4757] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(422), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [4784] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(422), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(424), 1, + sym_content, + STATE(165), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [4811] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(426), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(428), 1, + sym_content, + STATE(127), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [4838] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(426), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [4865] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, + ACTIONS(430), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [4892] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(430), 1, + anon_sym_LBRACE_PERCENT, ACTIONS(432), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(430), 2, - aux_sym__node_token1, sym_content, - STATE(194), 13, + STATE(176), 12, sym__node, sym__expression, sym__statement, @@ -12248,22 +7003,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10687] = 5, - ACTIONS(317), 1, + [4919] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, ACTIONS(434), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(436), 1, sym_content, - STATE(205), 13, + STATE(124), 12, sym__node, sym__expression, sym__statement, @@ -12272,94 +7025,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10716] = 5, - ACTIONS(317), 1, + [4946] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(432), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [10745] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, ACTIONS(438), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(436), 2, - aux_sym__node_token1, - sym_content, - STATE(190), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [10774] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [10803] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, ACTIONS(440), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, sym_content, - STATE(205), 13, + STATE(128), 12, sym__node, sym__expression, sym__statement, @@ -12368,22 +7047,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10832] = 5, - ACTIONS(317), 1, + [4973] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(440), 1, + ACTIONS(442), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(442), 2, - aux_sym__node_token1, + ACTIONS(444), 1, sym_content, - STATE(232), 13, + STATE(150), 12, sym__node, sym__expression, sym__statement, @@ -12392,70 +7069,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10861] = 5, - ACTIONS(317), 1, + [5000] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(434), 1, + ACTIONS(446), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(444), 2, - aux_sym__node_token1, - sym_content, - STATE(269), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [10890] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(405), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(446), 2, - aux_sym__node_token1, - sym_content, - STATE(186), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [10919] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, ACTIONS(448), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, sym_content, - STATE(205), 13, + STATE(136), 12, sym__node, sym__expression, sym__statement, @@ -12464,46 +7091,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [10948] = 5, - ACTIONS(317), 1, + [5027] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, ACTIONS(450), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [10977] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, ACTIONS(452), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, sym_content, - STATE(205), 13, + STATE(141), 12, sym__node, sym__expression, sym__statement, @@ -12512,22 +7113,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11006] = 5, - ACTIONS(317), 1, + [5054] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(452), 1, + ACTIONS(454), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(454), 2, - aux_sym__node_token1, + ACTIONS(456), 1, sym_content, - STATE(237), 13, + STATE(144), 12, sym__node, sym__expression, sym__statement, @@ -12536,46 +7135,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11035] = 5, - ACTIONS(317), 1, + [5081] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(448), 1, + ACTIONS(458), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(456), 2, - aux_sym__node_token1, - sym_content, - STATE(283), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11064] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, ACTIONS(460), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(458), 2, - aux_sym__node_token1, sym_content, - STATE(182), 13, + STATE(151), 12, sym__node, sym__expression, sym__statement, @@ -12584,22 +7157,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11093] = 5, - ACTIONS(317), 1, + [5108] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(462), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12608,22 +7179,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11122] = 5, - ACTIONS(317), 1, + [5135] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(462), 1, + ACTIONS(122), 1, + sym_content, + ACTIONS(464), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(464), 2, - aux_sym__node_token1, - sym_content, - STATE(241), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12632,46 +7201,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11151] = 5, - ACTIONS(317), 1, + [5162] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(460), 1, + ACTIONS(466), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11180] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, ACTIONS(468), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(466), 2, - aux_sym__node_token1, sym_content, - STATE(178), 13, + STATE(188), 12, sym__node, sym__expression, sym__statement, @@ -12680,22 +7223,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11209] = 5, - ACTIONS(317), 1, + [5189] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, + ACTIONS(464), 1, + anon_sym_LBRACE_PERCENT, ACTIONS(470), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, sym_content, - STATE(205), 13, + STATE(177), 12, sym__node, sym__expression, sym__statement, @@ -12704,22 +7245,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11238] = 5, - ACTIONS(317), 1, + [5216] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(470), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(472), 2, - aux_sym__node_token1, + ACTIONS(122), 1, sym_content, - STATE(245), 13, + ACTIONS(472), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12728,46 +7267,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11267] = 5, - ACTIONS(317), 1, + [5243] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(468), 1, + ACTIONS(474), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11296] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, ACTIONS(476), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(474), 2, - aux_sym__node_token1, sym_content, - STATE(174), 13, + STATE(118), 12, sym__node, sym__expression, sym__statement, @@ -12776,22 +7289,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11325] = 5, - ACTIONS(317), 1, + [5270] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, ACTIONS(478), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(480), 1, sym_content, - STATE(205), 13, + STATE(174), 12, sym__node, sym__expression, sym__statement, @@ -12800,22 +7311,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11354] = 5, - ACTIONS(317), 1, + [5297] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(478), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(480), 2, - aux_sym__node_token1, - sym_content, - STATE(249), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12824,22 +7333,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11383] = 5, - ACTIONS(317), 1, + [5324] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(476), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(122), 1, sym_content, - STATE(205), 13, + ACTIONS(466), 1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12848,59 +7355,284 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11412] = 18, + [5351] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(482), 1, - aux_sym__word_token1, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5378] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(472), 1, + anon_sym_LBRACE_PERCENT, ACTIONS(484), 1, - anon_sym_, + sym_content, + STATE(179), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5405] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(486), 1, - anon_sym_autoescape, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5432] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(488), 1, - anon_sym_end, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5459] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(488), 1, + anon_sym_LBRACE_PERCENT, ACTIONS(490), 1, - anon_sym_block, + sym_content, + STATE(180), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5486] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(492), 1, - anon_sym_blocktranslate, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5513] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(494), 1, - anon_sym_ifchanged, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5540] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(420), 1, + anon_sym_LBRACE_PERCENT, ACTIONS(496), 1, - anon_sym_spaceless, + sym_content, + STATE(166), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5567] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, ACTIONS(498), 1, - anon_sym_verbatim, + anon_sym_LBRACE_PERCENT, ACTIONS(500), 1, - anon_sym_with2, + sym_content, + STATE(99), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5594] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(502), 1, - anon_sym_if, + anon_sym_LBRACE_PERCENT, + STATE(186), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5621] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, ACTIONS(504), 1, - anon_sym_elif, + anon_sym_LBRACE_PERCENT, ACTIONS(506), 1, - anon_sym_else, + sym_content, + STATE(96), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5648] = 5, + ACTIONS(116), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(120), 1, + anon_sym_LBRACE_POUND, + ACTIONS(502), 1, + anon_sym_LBRACE_PERCENT, ACTIONS(508), 1, - anon_sym_for, + sym_content, + STATE(173), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5675] = 5, ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - STATE(300), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [11467] = 5, - ACTIONS(317), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(514), 1, + ACTIONS(513), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, + ACTIONS(516), 1, + anon_sym_LBRACE_POUND, + ACTIONS(519), 1, sym_content, - STATE(205), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -12909,70 +7641,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11496] = 5, - ACTIONS(317), 1, + [5702] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(514), 1, + ACTIONS(522), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(516), 2, - aux_sym__node_token1, - sym_content, - STATE(253), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11525] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(520), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(518), 2, - aux_sym__node_token1, - sym_content, - STATE(290), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11554] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, ACTIONS(524), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(522), 2, - aux_sym__node_token1, sym_content, - STATE(168), 13, + STATE(114), 12, sym__node, sym__expression, sym__statement, @@ -12981,22 +7663,20 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11583] = 5, - ACTIONS(317), 1, + [5729] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, + ACTIONS(122), 1, + sym_content, ACTIONS(526), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, + STATE(186), 12, sym__node, sym__expression, sym__statement, @@ -13005,131 +7685,42 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11612] = 5, - ACTIONS(317), 1, + [5756] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, - ACTIONS(526), 1, + ACTIONS(528), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(528), 2, - aux_sym__node_token1, - sym_content, - STATE(257), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11641] = 18, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, ACTIONS(530), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [11696] = 5, - ACTIONS(317), 1, + sym_content, + STATE(155), 12, + sym__node, + sym__expression, + sym__statement, + sym_paired_statement, + sym_if_statement, + sym_for_statement, + sym_filter_statement, + sym_unpaired_statement, + sym__comment, + sym_unpaired_comment, + sym_paired_comment, + aux_sym_template_repeat1, + [5783] = 5, + ACTIONS(116), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + ACTIONS(120), 1, anon_sym_LBRACE_POUND, ACTIONS(532), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11725] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(524), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11754] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, ACTIONS(534), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, sym_content, - STATE(205), 13, + STATE(132), 12, sym__node, sym__expression, sym__statement, @@ -13138,12053 +7729,4754 @@ static const uint16_t ts_small_parse_table[] = { sym_for_statement, sym_filter_statement, sym_unpaired_statement, - sym_detatched_end_statement, sym__comment, sym_unpaired_comment, sym_paired_comment, aux_sym_template_repeat1, - [11783] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, + [5810] = 15, + ACTIONS(536), 1, + sym__identifier, ACTIONS(538), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(536), 2, - aux_sym__node_token1, - sym_content, - STATE(227), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11812] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(534), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(540), 2, - aux_sym__node_token1, - sym_content, - STATE(263), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11841] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(542), 2, - aux_sym__node_token1, - sym_content, - STATE(267), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11870] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(538), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11899] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, ACTIONS(546), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(544), 2, - aux_sym__node_token1, - sym_content, - STATE(172), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11928] = 5, - ACTIONS(551), 1, - anon_sym_LBRACE_LBRACE, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, ACTIONS(554), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(557), 1, - anon_sym_LBRACE_POUND, - ACTIONS(548), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11957] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, + anon_sym_endif, + ACTIONS(556), 1, + anon_sym_elif, + ACTIONS(558), 1, + anon_sym_else, + ACTIONS(560), 1, + anon_sym_for, ACTIONS(562), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(560), 2, - aux_sym__node_token1, - sym_content, - STATE(165), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [11986] = 18, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, ACTIONS(564), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [12041] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(568), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(566), 2, - aux_sym__node_token1, - sym_content, - STATE(167), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12070] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(570), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12099] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(574), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(572), 2, - aux_sym__node_token1, - sym_content, - STATE(154), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12128] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(570), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(576), 2, - aux_sym__node_token1, - sym_content, - STATE(272), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12157] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(580), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(578), 2, - aux_sym__node_token1, - sym_content, - STATE(180), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12186] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(584), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(582), 2, - aux_sym__node_token1, - sym_content, - STATE(184), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12215] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(588), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(586), 2, - aux_sym__node_token1, - sym_content, - STATE(188), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12244] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(592), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(590), 2, - aux_sym__node_token1, - sym_content, - STATE(288), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12273] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(596), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(594), 2, - aux_sym__node_token1, - sym_content, - STATE(279), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12302] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(600), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(598), 2, - aux_sym__node_token1, - sym_content, - STATE(229), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12331] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(600), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12360] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(602), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12389] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(606), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(604), 2, - aux_sym__node_token1, - sym_content, - STATE(219), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12418] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(608), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12447] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(612), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(610), 2, - aux_sym__node_token1, - sym_content, - STATE(164), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12476] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(606), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12505] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(616), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(614), 2, - aux_sym__node_token1, - sym_content, - STATE(278), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12534] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(618), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12563] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(450), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(620), 2, - aux_sym__node_token1, - sym_content, - STATE(277), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12592] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(622), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12621] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(626), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(624), 2, - aux_sym__node_token1, - sym_content, - STATE(221), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12650] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(628), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12679] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(632), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(630), 2, - aux_sym__node_token1, - sym_content, - STATE(198), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12708] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(626), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12737] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(634), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12766] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(638), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(636), 2, - aux_sym__node_token1, - sym_content, - STATE(160), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12795] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(622), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(640), 2, - aux_sym__node_token1, - sym_content, - STATE(282), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12824] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(642), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12853] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(646), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(644), 2, - aux_sym__node_token1, - sym_content, - STATE(150), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12882] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(648), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12911] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(646), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12940] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(652), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(650), 2, - aux_sym__node_token1, - sym_content, - STATE(156), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12969] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(656), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(654), 2, - aux_sym__node_token1, - sym_content, - STATE(225), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [12998] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(658), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13027] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(656), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13056] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(642), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(660), 2, - aux_sym__node_token1, - sym_content, - STATE(281), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13085] = 18, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, anon_sym_comment, + [5856] = 15, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(556), 1, + anon_sym_elif, + ACTIONS(558), 1, + anon_sym_else, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(566), 1, + anon_sym_endif, + [5902] = 15, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(556), 1, + anon_sym_elif, + ACTIONS(558), 1, + anon_sym_else, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(568), 1, + anon_sym_endif, + [5948] = 15, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(556), 1, + anon_sym_elif, + ACTIONS(558), 1, + anon_sym_else, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(570), 1, + anon_sym_endif, + [5994] = 15, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(556), 1, + anon_sym_elif, + ACTIONS(558), 1, + anon_sym_else, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(572), 1, + anon_sym_endif, + [6040] = 15, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(556), 1, + anon_sym_elif, + ACTIONS(558), 1, + anon_sym_else, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(574), 1, + anon_sym_endif, + [6086] = 14, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(576), 1, + anon_sym_endfor, + ACTIONS(578), 1, + anon_sym_empty, + [6129] = 14, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(578), 1, + anon_sym_empty, + ACTIONS(580), 1, + anon_sym_endfor, + [6172] = 14, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(578), 1, + anon_sym_empty, + ACTIONS(582), 1, + anon_sym_endfor, + [6215] = 2, + ACTIONS(586), 3, + anon_sym_LT, + anon_sym_GT, + sym_variable_name, + ACTIONS(584), 11, + sym_keyword, + sym_keyword_operator, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_number, + sym_boolean, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_PERCENT_RBRACE, + [6234] = 14, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(578), 1, + anon_sym_empty, + ACTIONS(588), 1, + anon_sym_endfor, + [6277] = 14, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(578), 1, + anon_sym_empty, + ACTIONS(590), 1, + anon_sym_endfor, + [6320] = 14, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(578), 1, + anon_sym_empty, + ACTIONS(592), 1, + anon_sym_endfor, + [6363] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(594), 1, + anon_sym_endblock, + [6403] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(596), 1, + anon_sym_endifchanged, + [6443] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(598), 1, + anon_sym_endautoescape, + [6483] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(598), 1, + anon_sym_endblock, + [6523] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(598), 1, + anon_sym_endblocktranslate, + [6563] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(580), 1, + anon_sym_endfor, + [6603] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(598), 1, + anon_sym_endifchanged, + [6643] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(600), 1, + anon_sym_endfilter, + [6683] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(598), 1, + anon_sym_endspaceless, + [6723] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(598), 1, + anon_sym_endverbatim, + [6763] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(598), 1, + anon_sym_endwith, + [6803] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(596), 1, + anon_sym_endautoescape, + [6843] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(596), 1, + anon_sym_endblock, + [6883] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(596), 1, + anon_sym_endblocktranslate, + [6923] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(596), 1, + anon_sym_endspaceless, + [6963] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(596), 1, + anon_sym_endverbatim, + [7003] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(572), 1, + anon_sym_endif, + [7043] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(590), 1, + anon_sym_endfor, + [7083] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(602), 1, + anon_sym_endfilter, + [7123] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(604), 1, + anon_sym_endif, + [7163] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(606), 1, + anon_sym_endfor, + [7203] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(608), 1, + anon_sym_endif, + [7243] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(610), 1, + anon_sym_endif, + [7283] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(612), 1, + anon_sym_endfilter, + [7323] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(614), 1, + anon_sym_endfor, + [7363] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(616), 1, + anon_sym_endif, + [7403] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(618), 1, + anon_sym_endfilter, + [7443] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(620), 1, + anon_sym_endfor, + [7483] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(588), 1, + anon_sym_endfor, + [7523] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(622), 1, + anon_sym_endautoescape, + [7563] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(624), 1, + anon_sym_endfilter, + [7603] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(570), 1, + anon_sym_endif, + [7643] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(594), 1, + anon_sym_endwith, + [7683] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(594), 1, + anon_sym_endverbatim, + [7723] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(594), 1, + anon_sym_endspaceless, + [7763] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(594), 1, + anon_sym_endifchanged, + [7803] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(594), 1, + anon_sym_endblocktranslate, + [7843] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(622), 1, + anon_sym_endblock, + [7883] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(594), 1, + anon_sym_endautoescape, + [7923] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(626), 1, + anon_sym_endif, + [7963] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(628), 1, + anon_sym_endfilter, + [8003] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(622), 1, + anon_sym_endblocktranslate, + [8043] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(630), 1, + anon_sym_endfor, + [8083] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(582), 1, + anon_sym_endfor, + [8123] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(596), 1, + anon_sym_endwith, + [8163] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(568), 1, + anon_sym_endif, + [8203] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(632), 1, + anon_sym_endwith, + [8243] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(632), 1, + anon_sym_endverbatim, + [8283] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(632), 1, + anon_sym_endspaceless, + [8323] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(632), 1, + anon_sym_endifchanged, + [8363] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(632), 1, + anon_sym_endblocktranslate, + [8403] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(634), 1, + anon_sym_endif, + [8443] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(632), 1, + anon_sym_endblock, + [8483] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(632), 1, + anon_sym_endautoescape, + [8523] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(622), 1, + anon_sym_endspaceless, + [8563] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(622), 1, + anon_sym_endverbatim, + [8603] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(636), 1, + anon_sym_endwith, + [8643] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(636), 1, + anon_sym_endverbatim, + [8683] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(636), 1, + anon_sym_endspaceless, + [8723] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(636), 1, + anon_sym_endifchanged, + [8763] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(636), 1, + anon_sym_endblocktranslate, + [8803] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(622), 1, + anon_sym_endifchanged, + [8843] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(636), 1, + anon_sym_endblock, + [8883] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(636), 1, + anon_sym_endautoescape, + [8923] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + ACTIONS(622), 1, + anon_sym_endwith, + [8963] = 13, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(554), 1, + anon_sym_endif, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + [9003] = 12, + ACTIONS(638), 1, + sym__identifier, + ACTIONS(640), 1, + anon_sym_autoescape, + ACTIONS(642), 1, + anon_sym_block, + ACTIONS(644), 1, + anon_sym_blocktranslate, + ACTIONS(646), 1, + anon_sym_ifchanged, + ACTIONS(648), 1, + anon_sym_spaceless, + ACTIONS(650), 1, + anon_sym_verbatim, + ACTIONS(652), 1, + anon_sym_with, + ACTIONS(654), 1, + anon_sym_if, + ACTIONS(656), 1, + anon_sym_for, + ACTIONS(658), 1, + anon_sym_filter, + ACTIONS(660), 1, + anon_sym_comment, + [9040] = 12, + ACTIONS(536), 1, + sym__identifier, + ACTIONS(538), 1, + anon_sym_autoescape, + ACTIONS(540), 1, + anon_sym_block, + ACTIONS(542), 1, + anon_sym_blocktranslate, + ACTIONS(544), 1, + anon_sym_ifchanged, + ACTIONS(546), 1, + anon_sym_spaceless, + ACTIONS(548), 1, + anon_sym_verbatim, + ACTIONS(550), 1, + anon_sym_with, + ACTIONS(552), 1, + anon_sym_if, + ACTIONS(560), 1, + anon_sym_for, + ACTIONS(562), 1, + anon_sym_filter, + ACTIONS(564), 1, + anon_sym_comment, + [9077] = 6, ACTIONS(662), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [13140] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, anon_sym_LBRACE_POUND, ACTIONS(664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, + aux_sym_unpaired_comment_token1, + ACTIONS(666), 1, + anon_sym_POUND_RBRACE, + STATE(273), 1, + aux_sym_unpaired_comment_repeat1, + STATE(326), 1, sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13169] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + STATE(328), 1, + aux_sym_unpaired_comment_repeat2, + [9096] = 6, + ACTIONS(662), 1, anon_sym_LBRACE_POUND, ACTIONS(668), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(666), 2, - aux_sym__node_token1, - sym_content, - STATE(231), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13198] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, + aux_sym_unpaired_comment_token1, ACTIONS(670), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, + anon_sym_POUND_RBRACE, + STATE(326), 1, sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13227] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(668), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13256] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + STATE(341), 1, + aux_sym_unpaired_comment_repeat1, + STATE(342), 1, + aux_sym_unpaired_comment_repeat2, + [9115] = 6, + ACTIONS(662), 1, anon_sym_LBRACE_POUND, ACTIONS(672), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, + aux_sym_unpaired_comment_token1, + ACTIONS(674), 1, + anon_sym_POUND_RBRACE, + STATE(275), 1, + aux_sym_unpaired_comment_repeat1, + STATE(326), 1, sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13285] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + STATE(329), 1, + aux_sym_unpaired_comment_repeat2, + [9134] = 6, + ACTIONS(662), 1, anon_sym_LBRACE_POUND, + ACTIONS(668), 1, + aux_sym_unpaired_comment_token1, ACTIONS(676), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(674), 2, - aux_sym__node_token1, - sym_content, - STATE(158), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, + anon_sym_POUND_RBRACE, + STATE(326), 1, sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13314] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + STATE(331), 1, + aux_sym_unpaired_comment_repeat2, + STATE(341), 1, + aux_sym_unpaired_comment_repeat1, + [9153] = 6, + ACTIONS(662), 1, anon_sym_LBRACE_POUND, - ACTIONS(670), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(678), 2, - aux_sym__node_token1, - sym_content, - STATE(280), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, + ACTIONS(668), 1, + aux_sym_unpaired_comment_token1, + ACTIONS(678), 1, + anon_sym_POUND_RBRACE, + STATE(326), 1, sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13343] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(652), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13372] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + STATE(341), 1, + aux_sym_unpaired_comment_repeat1, + STATE(358), 1, + aux_sym_unpaired_comment_repeat2, + [9172] = 6, + ACTIONS(662), 1, anon_sym_LBRACE_POUND, ACTIONS(680), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13401] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, + aux_sym_unpaired_comment_token1, ACTIONS(682), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, + anon_sym_POUND_RBRACE, + STATE(276), 1, + aux_sym_unpaired_comment_repeat1, + STATE(326), 1, sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13430] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(616), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13459] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(682), 1, - anon_sym_LBRACE_PERCENT, + STATE(357), 1, + aux_sym_unpaired_comment_repeat2, + [9191] = 2, ACTIONS(684), 2, - aux_sym__node_token1, + ts_builtin_sym_end, sym_content, - STATE(238), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13488] = 5, - ACTIONS(317), 1, + ACTIONS(686), 3, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(686), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13517] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, anon_sym_LBRACE_POUND, - ACTIONS(690), 1, - anon_sym_LBRACE_PERCENT, + [9201] = 2, ACTIONS(688), 2, - aux_sym__node_token1, + ts_builtin_sym_end, sym_content, - STATE(152), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13546] = 5, - ACTIONS(317), 1, + ACTIONS(690), 3, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + anon_sym_LBRACE_PERCENT, anon_sym_LBRACE_POUND, + [9211] = 5, + ACTIONS(692), 1, + anon_sym_LBRACE_PERCENT, ACTIONS(694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(692), 2, - aux_sym__node_token1, - sym_content, - STATE(149), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, + aux_sym_unpaired_comment_token1, + STATE(291), 1, + aux_sym_unpaired_comment_repeat1, + STATE(383), 1, sym_paired_comment, - aux_sym_template_repeat1, - [13575] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, + STATE(388), 1, + aux_sym_paired_comment_repeat1, + [9227] = 5, + ACTIONS(696), 1, + anon_sym_LBRACE_PERCENT, ACTIONS(698), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(696), 2, - aux_sym__node_token1, - sym_content, - STATE(242), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, + aux_sym_unpaired_comment_token1, + STATE(383), 1, sym_paired_comment, - aux_sym_template_repeat1, - [13604] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, + STATE(401), 1, + aux_sym_paired_comment_repeat1, + STATE(412), 1, + aux_sym_unpaired_comment_repeat1, + [9243] = 5, ACTIONS(698), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13633] = 18, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, + aux_sym_unpaired_comment_token1, ACTIONS(700), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [13688] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(400), 1, + aux_sym_paired_comment_repeat1, + STATE(412), 1, + aux_sym_unpaired_comment_repeat1, + [9259] = 5, ACTIONS(702), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, + ACTIONS(704), 1, + aux_sym_unpaired_comment_token1, + STATE(281), 1, + aux_sym_unpaired_comment_repeat1, + STATE(383), 1, sym_paired_comment, - aux_sym_template_repeat1, - [13717] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, + STATE(399), 1, + aux_sym_paired_comment_repeat1, + [9275] = 5, ACTIONS(706), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(704), 2, - aux_sym__node_token1, - sym_content, - STATE(203), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, + ACTIONS(708), 1, + aux_sym_unpaired_comment_token1, + STATE(282), 1, + aux_sym_unpaired_comment_repeat1, + STATE(373), 1, + aux_sym_paired_comment_repeat1, + STATE(383), 1, sym_paired_comment, - aux_sym_template_repeat1, - [13746] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(702), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(708), 2, - aux_sym__node_token1, - sym_content, - STATE(252), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13775] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(712), 1, - anon_sym_LBRACE_PERCENT, + [9291] = 2, ACTIONS(710), 2, - aux_sym__node_token1, + ts_builtin_sym_end, sym_content, - STATE(248), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13804] = 5, - ACTIONS(317), 1, + ACTIONS(712), 3, anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, + anon_sym_LBRACE_PERCENT, anon_sym_LBRACE_POUND, + [9301] = 5, + ACTIONS(698), 1, + aux_sym_unpaired_comment_token1, ACTIONS(714), 1, anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, + STATE(383), 1, sym_paired_comment, - aux_sym_template_repeat1, - [13833] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(712), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13862] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(716), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13891] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(718), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13920] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(716), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(720), 2, - aux_sym__node_token1, - sym_content, - STATE(273), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13949] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(722), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [13978] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(724), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14007] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(722), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(726), 2, - aux_sym__node_token1, - sym_content, - STATE(223), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14036] = 18, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(728), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14091] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(732), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(730), 2, - aux_sym__node_token1, - sym_content, - STATE(218), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14120] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(734), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14149] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(736), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14178] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(732), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14207] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(738), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14236] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(740), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14265] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(742), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14294] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(744), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14323] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(748), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(746), 2, - aux_sym__node_token1, - sym_content, - STATE(254), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14352] = 18, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(750), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14407] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(744), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(752), 2, - aux_sym__node_token1, - sym_content, - STATE(270), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14436] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(756), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(754), 2, - aux_sym__node_token1, - sym_content, - STATE(261), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14465] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(756), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14494] = 18, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(758), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14549] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(760), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 2, - aux_sym__node_token1, - sym_content, - STATE(205), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14578] = 5, - ACTIONS(317), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(321), 1, - anon_sym_LBRACE_POUND, - ACTIONS(760), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(762), 2, - aux_sym__node_token1, - sym_content, - STATE(268), 13, - sym__node, - sym__expression, - sym__statement, - sym_paired_statement, - sym_if_statement, - sym_for_statement, - sym_filter_statement, - sym_unpaired_statement, - sym_detatched_end_statement, - sym__comment, - sym_unpaired_comment, - sym_paired_comment, - aux_sym_template_repeat1, - [14607] = 17, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(764), 1, - anon_sym_, - ACTIONS(766), 1, - anon_sym_end, - ACTIONS(768), 1, - anon_sym_empty, - STATE(333), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14659] = 17, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(764), 1, - anon_sym_, - ACTIONS(768), 1, - anon_sym_empty, - ACTIONS(770), 1, - anon_sym_end, - STATE(333), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14711] = 17, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(764), 1, - anon_sym_, - ACTIONS(768), 1, - anon_sym_empty, - ACTIONS(772), 1, - anon_sym_end, - STATE(333), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14763] = 17, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(764), 1, - anon_sym_, - ACTIONS(768), 1, - anon_sym_empty, - ACTIONS(774), 1, - anon_sym_end, - STATE(333), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14815] = 17, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(764), 1, - anon_sym_, - ACTIONS(768), 1, - anon_sym_empty, - ACTIONS(776), 1, - anon_sym_end, - STATE(333), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14867] = 17, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(764), 1, - anon_sym_, - ACTIONS(768), 1, - anon_sym_empty, - ACTIONS(778), 1, - anon_sym_end, - STATE(333), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14919] = 17, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(764), 1, - anon_sym_, - ACTIONS(768), 1, - anon_sym_empty, - ACTIONS(780), 1, - anon_sym_end, - STATE(333), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [14971] = 17, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(764), 1, - anon_sym_, - ACTIONS(768), 1, - anon_sym_empty, - ACTIONS(782), 1, - anon_sym_end, - STATE(333), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15023] = 4, - ACTIONS(296), 1, - aux_sym__word_token1, - ACTIONS(784), 1, - anon_sym_, - STATE(300), 1, - aux_sym__ws, - ACTIONS(298), 14, - anon_sym_autoescape, - anon_sym_end, - anon_sym_block, - anon_sym_blocktranslate, - anon_sym_ifchanged, - anon_sym_spaceless, - anon_sym_verbatim, - anon_sym_with2, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_for, - anon_sym_filter, - anon_sym_comment, - [15049] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(789), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15098] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(791), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15147] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(793), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15196] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(750), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15245] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(795), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15294] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(797), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15343] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(700), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15392] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(774), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15441] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(799), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15490] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(801), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15539] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(803), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15588] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(805), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15637] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(807), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15686] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(809), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15735] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(811), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15784] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(813), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15833] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(815), 1, - anon_sym_autoescape, - ACTIONS(817), 1, - anon_sym_end, - ACTIONS(819), 1, - anon_sym_block, - ACTIONS(821), 1, - anon_sym_blocktranslate, - ACTIONS(823), 1, - anon_sym_ifchanged, - ACTIONS(825), 1, - anon_sym_spaceless, - ACTIONS(827), 1, - anon_sym_verbatim, - ACTIONS(829), 1, - anon_sym_with2, - ACTIONS(831), 1, - anon_sym_if, - ACTIONS(833), 1, - anon_sym_for, - ACTIONS(835), 1, - anon_sym_filter, - ACTIONS(837), 1, - anon_sym_comment, - STATE(390), 1, - aux_sym__ws, - STATE(592), 1, - aux_sym__word, - [15882] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(839), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15931] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(841), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [15980] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(843), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16029] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(662), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16078] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(845), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16127] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(847), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16176] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(849), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16225] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(851), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16274] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(853), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16323] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(855), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16372] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(772), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16421] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(857), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16470] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(859), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16519] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(728), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16568] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(861), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16617] = 4, - ACTIONS(296), 1, - aux_sym__word_token1, - ACTIONS(863), 1, - anon_sym_, - STATE(333), 1, - aux_sym__ws, - ACTIONS(298), 13, - anon_sym_autoescape, - anon_sym_end, - anon_sym_block, - anon_sym_blocktranslate, - anon_sym_ifchanged, - anon_sym_spaceless, - anon_sym_verbatim, - anon_sym_with2, - anon_sym_if, - anon_sym_for, - anon_sym_empty, - anon_sym_filter, - anon_sym_comment, - [16642] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(776), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16691] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(866), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16740] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(868), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16789] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(778), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16838] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(870), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16887] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(872), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16936] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(874), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [16985] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(876), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17034] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(878), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17083] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(880), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17132] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(882), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17181] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(884), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17230] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(886), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17279] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(888), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17328] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(890), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17377] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(770), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17426] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(892), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17475] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(894), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17524] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(896), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17573] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(898), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17622] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(900), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17671] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(902), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17720] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(904), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17769] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(906), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17818] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(908), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17867] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(910), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17916] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(912), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [17965] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(914), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18014] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(916), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18063] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(918), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18112] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(920), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18161] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(922), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18210] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(924), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18259] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(926), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18308] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(928), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18357] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(930), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18406] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(932), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18455] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(934), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18504] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(758), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18553] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(936), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18602] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(938), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18651] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(940), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18700] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(942), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18749] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(944), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18798] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(946), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18847] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(488), 1, - anon_sym_end, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18896] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(948), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18945] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(950), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [18994] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(952), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [19043] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(954), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [19092] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(956), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [19141] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(958), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [19190] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(960), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [19239] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(782), 1, - anon_sym_end, - ACTIONS(787), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [19288] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(962), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [19337] = 16, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(486), 1, - anon_sym_autoescape, - ACTIONS(490), 1, - anon_sym_block, - ACTIONS(492), 1, - anon_sym_blocktranslate, - ACTIONS(494), 1, - anon_sym_ifchanged, - ACTIONS(496), 1, - anon_sym_spaceless, - ACTIONS(498), 1, - anon_sym_verbatim, - ACTIONS(500), 1, - anon_sym_with2, - ACTIONS(502), 1, - anon_sym_if, - ACTIONS(508), 1, - anon_sym_for, - ACTIONS(510), 1, - anon_sym_filter, - ACTIONS(512), 1, - anon_sym_comment, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(964), 1, - anon_sym_end, - STATE(390), 1, - aux_sym__ws, - STATE(572), 1, - aux_sym__word, - [19386] = 4, - ACTIONS(296), 1, - aux_sym__word_token1, - ACTIONS(966), 1, - anon_sym_, - STATE(390), 1, - aux_sym__ws, - ACTIONS(298), 12, - anon_sym_autoescape, - anon_sym_end, - anon_sym_block, - anon_sym_blocktranslate, - anon_sym_ifchanged, - anon_sym_spaceless, - anon_sym_verbatim, - anon_sym_with2, - anon_sym_if, - anon_sym_for, - anon_sym_filter, - anon_sym_comment, - [19410] = 7, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(973), 1, - aux_sym_variable_name_token1, - ACTIONS(975), 1, - anon_sym_DOT, - STATE(392), 1, - aux_sym__word, - STATE(394), 1, - aux_sym_variable_name_repeat1, - STATE(401), 1, - aux_sym_variable_name_repeat2, - ACTIONS(969), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [19436] = 5, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(975), 1, - anon_sym_DOT, - STATE(395), 1, - aux_sym__word, - STATE(400), 1, - aux_sym_variable_name_repeat2, - ACTIONS(977), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [19456] = 5, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(975), 1, - anon_sym_DOT, - STATE(395), 1, - aux_sym__word, - STATE(402), 1, - aux_sym_variable_name_repeat2, - ACTIONS(979), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [19476] = 3, - ACTIONS(983), 1, - aux_sym_variable_name_token1, - STATE(394), 1, - aux_sym_variable_name_repeat1, - ACTIONS(981), 7, - anon_sym_PIPE, - aux_sym__word_token1, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_EQ, - [19492] = 3, - ACTIONS(988), 1, - aux_sym__word_token1, - STATE(395), 1, - aux_sym__word, - ACTIONS(986), 7, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_EQ, - [19508] = 3, - ACTIONS(971), 1, - aux_sym__word_token1, - STATE(395), 1, - aux_sym__word, - ACTIONS(991), 6, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_EQ, - [19523] = 3, - ACTIONS(971), 1, - aux_sym__word_token1, - STATE(395), 1, - aux_sym__word, - ACTIONS(993), 6, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_EQ, - [19538] = 1, - ACTIONS(995), 8, - anon_sym_PIPE, - aux_sym__word_token1, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_EQ, - [19549] = 3, - ACTIONS(997), 1, - anon_sym_DOT, - STATE(399), 1, - aux_sym_variable_name_repeat2, - ACTIONS(993), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [19563] = 3, - ACTIONS(975), 1, - anon_sym_DOT, - STATE(399), 1, - aux_sym_variable_name_repeat2, - ACTIONS(1000), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [19577] = 3, - ACTIONS(975), 1, - anon_sym_DOT, - STATE(399), 1, - aux_sym_variable_name_repeat2, - ACTIONS(977), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [19591] = 3, - ACTIONS(975), 1, - anon_sym_DOT, - STATE(399), 1, - aux_sym_variable_name_repeat2, - ACTIONS(1002), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [19605] = 2, - ACTIONS(1006), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1004), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19616] = 6, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1008), 1, - anon_sym_, - STATE(396), 1, - aux_sym__word, - STATE(410), 1, - sym_filter_name, - STATE(556), 1, - sym_filter, - STATE(575), 1, - aux_sym__ws, - [19635] = 2, - ACTIONS(1012), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1010), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19646] = 5, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1014), 1, - anon_sym_SQUOTE, - ACTIONS(1016), 1, - anon_sym_DQUOTE, STATE(393), 1, - aux_sym__word, - STATE(515), 2, + aux_sym_paired_comment_repeat1, + STATE(412), 1, + aux_sym_unpaired_comment_repeat1, + [9317] = 2, + ACTIONS(716), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(718), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9327] = 2, + ACTIONS(720), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(722), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9337] = 4, + ACTIONS(724), 1, + sym__identifier, + ACTIONS(726), 1, + anon_sym_SQUOTE, + ACTIONS(728), 1, + anon_sym_DQUOTE, + STATE(76), 2, sym_filter_argument, sym__quoted_filter_argument, - [19663] = 2, - ACTIONS(1020), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1018), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, + [9351] = 5, + ACTIONS(730), 1, anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19674] = 2, - ACTIONS(1024), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1022), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19685] = 3, - ACTIONS(1026), 1, - anon_sym_PIPE, - STATE(409), 1, - aux_sym_string_repeat3, - ACTIONS(1029), 4, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [19698] = 2, - ACTIONS(1033), 1, - anon_sym_COLON, - ACTIONS(1031), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [19709] = 2, - ACTIONS(1037), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1035), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19720] = 2, - ACTIONS(1041), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1039), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19731] = 2, - ACTIONS(1045), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1043), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19742] = 2, - ACTIONS(1049), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1047), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19753] = 6, - ACTIONS(1051), 1, - anon_sym_, - ACTIONS(1053), 1, - aux_sym_variable_name_token1, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(461), 1, - aux_sym__ws, - STATE(655), 1, - sym_variable, - [19772] = 2, - ACTIONS(1057), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1055), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19783] = 2, - ACTIONS(1061), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1059), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19794] = 2, - ACTIONS(1065), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1063), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19805] = 2, - ACTIONS(1069), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1067), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19816] = 2, - ACTIONS(1073), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1071), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19827] = 2, - ACTIONS(1077), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1075), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19838] = 6, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1008), 1, - anon_sym_, - STATE(396), 1, - aux_sym__word, - STATE(410), 1, - sym_filter_name, - STATE(557), 1, - sym_filter, - STATE(575), 1, - aux_sym__ws, - [19857] = 2, - ACTIONS(1081), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1079), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19868] = 2, - ACTIONS(1085), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1083), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19879] = 2, - ACTIONS(1089), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1087), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19890] = 2, - ACTIONS(1093), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1091), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19901] = 2, - ACTIONS(1097), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1095), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19912] = 2, - ACTIONS(1101), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1099), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19923] = 2, - ACTIONS(1105), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1103), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19934] = 2, - ACTIONS(1109), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1107), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19945] = 2, - ACTIONS(1113), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1111), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19956] = 2, - ACTIONS(1117), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1115), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19967] = 2, - ACTIONS(1121), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1119), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19978] = 2, - ACTIONS(1125), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1123), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [19989] = 2, - ACTIONS(1129), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1127), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20000] = 2, - ACTIONS(1133), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1131), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20011] = 2, - ACTIONS(1137), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1135), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20022] = 3, - ACTIONS(1139), 1, - anon_sym_PIPE, - STATE(409), 1, - aux_sym_string_repeat3, - ACTIONS(1141), 4, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [20035] = 6, - ACTIONS(1053), 1, - aux_sym_variable_name_token1, - ACTIONS(1143), 1, - anon_sym_, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(473), 1, - aux_sym__ws, - STATE(647), 1, - sym_variable, - [20054] = 2, - ACTIONS(1147), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1145), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20065] = 2, - ACTIONS(1151), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1149), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20076] = 2, - ACTIONS(1155), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1153), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20087] = 2, - ACTIONS(1159), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1157), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20098] = 2, - ACTIONS(1163), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1161), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20109] = 6, - ACTIONS(1053), 1, - aux_sym_variable_name_token1, - ACTIONS(1165), 1, - anon_sym_, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(439), 1, - aux_sym__ws, - STATE(459), 1, - sym_variable_name, - STATE(654), 1, - sym_variable, - [20128] = 2, - ACTIONS(1169), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1167), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20139] = 6, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1173), 1, + ACTIONS(732), 1, aux_sym_unpaired_comment_token1, - ACTIONS(1175), 1, - anon_sym_POUND_RBRACE, - STATE(452), 1, - aux_sym_unpaired_comment_repeat1, - STATE(582), 1, - aux_sym_unpaired_comment_repeat2, - STATE(593), 1, - sym_unpaired_comment, - [20158] = 2, - ACTIONS(1179), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1177), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20169] = 6, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1181), 1, - anon_sym_, - STATE(396), 1, - aux_sym__word, - STATE(404), 1, - aux_sym__ws, - STATE(410), 1, - sym_filter_name, - STATE(558), 1, - sym_filter, - [20188] = 2, - ACTIONS(1185), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1183), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20199] = 2, - ACTIONS(1189), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1187), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20210] = 6, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1191), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1193), 1, - anon_sym_POUND_RBRACE, - STATE(585), 1, - aux_sym_unpaired_comment_repeat2, - STATE(593), 1, - sym_unpaired_comment, - STATE(597), 1, - aux_sym_unpaired_comment_repeat1, - [20229] = 6, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1191), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1195), 1, - anon_sym_POUND_RBRACE, - STATE(580), 1, - aux_sym_unpaired_comment_repeat2, - STATE(593), 1, - sym_unpaired_comment, - STATE(597), 1, - aux_sym_unpaired_comment_repeat1, - [20248] = 6, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1197), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1199), 1, - anon_sym_POUND_RBRACE, - STATE(453), 1, - aux_sym_unpaired_comment_repeat1, - STATE(583), 1, - aux_sym_unpaired_comment_repeat2, - STATE(593), 1, - sym_unpaired_comment, - [20267] = 2, - ACTIONS(1203), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1201), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20278] = 6, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1191), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1205), 1, - anon_sym_POUND_RBRACE, - STATE(593), 1, - sym_unpaired_comment, - STATE(597), 1, - aux_sym_unpaired_comment_repeat1, - STATE(599), 1, - aux_sym_unpaired_comment_repeat2, - [20297] = 2, - ACTIONS(1209), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1207), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20308] = 2, - ACTIONS(1213), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1211), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20319] = 3, - ACTIONS(1139), 1, - anon_sym_PIPE, - STATE(438), 1, - aux_sym_string_repeat3, - ACTIONS(1215), 4, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [20332] = 2, - ACTIONS(1219), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1217), 4, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20343] = 6, - ACTIONS(1053), 1, - aux_sym_variable_name_token1, - ACTIONS(1143), 1, - anon_sym_, - STATE(391), 1, - aux_sym_variable_name_repeat1, - STATE(459), 1, - sym_variable_name, - STATE(473), 1, - aux_sym__ws, - STATE(656), 1, - sym_variable, - [20362] = 6, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1221), 1, - anon_sym_, - STATE(396), 1, - aux_sym__word, - STATE(410), 1, - sym_filter_name, - STATE(422), 1, - aux_sym__ws, - STATE(588), 1, - sym_filter, - [20381] = 6, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1223), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1225), 1, - anon_sym_POUND_RBRACE, - STATE(456), 1, - aux_sym_unpaired_comment_repeat1, - STATE(591), 1, - aux_sym_unpaired_comment_repeat2, - STATE(593), 1, - sym_unpaired_comment, - [20400] = 2, - ACTIONS(1227), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1229), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20410] = 2, - ACTIONS(1189), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1187), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20420] = 1, - ACTIONS(1231), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [20428] = 2, - ACTIONS(1233), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1235), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20438] = 5, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(1237), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - [20454] = 2, - ACTIONS(1239), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1241), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20464] = 5, - ACTIONS(1243), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1245), 1, - aux_sym_unpaired_comment_token1, - STATE(724), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(795), 1, - aux_sym_paired_comment_repeat1, - [20480] = 5, - ACTIONS(1247), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1249), 1, - aux_sym_unpaired_comment_token1, - STATE(520), 1, - aux_sym_unpaired_comment_repeat1, - STATE(760), 1, - aux_sym_paired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - [20496] = 5, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(1251), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - [20512] = 3, - ACTIONS(1253), 1, - anon_sym_, - STATE(473), 1, - aux_sym__ws, - ACTIONS(298), 3, - anon_sym_RBRACE_RBRACE, - aux_sym_variable_name_token1, - anon_sym_PERCENT_RBRACE, - [20524] = 5, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(1256), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - [20540] = 5, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(1258), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - [20556] = 5, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(1260), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - [20572] = 5, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1008), 1, - anon_sym_, - ACTIONS(1262), 1, - anon_sym_PERCENT_RBRACE, - STATE(575), 1, - aux_sym__ws, - STATE(598), 1, - aux_sym__word, - [20588] = 5, - ACTIONS(1264), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1266), 1, - aux_sym_unpaired_comment_token1, - STATE(480), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(790), 1, - aux_sym_paired_comment_repeat1, - [20604] = 2, - ACTIONS(1268), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1270), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20614] = 5, - ACTIONS(1245), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1272), 1, - anon_sym_LBRACE_PERCENT, - STATE(724), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(776), 1, - aux_sym_paired_comment_repeat1, - [20630] = 2, - ACTIONS(1274), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1276), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20640] = 5, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(1278), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - [20656] = 5, - ACTIONS(1280), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1282), 1, - aux_sym_unpaired_comment_token1, - STATE(470), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(802), 1, - aux_sym_paired_comment_repeat1, - [20672] = 2, - ACTIONS(1284), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1286), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20682] = 3, - ACTIONS(1139), 1, - anon_sym_PIPE, - STATE(409), 1, - aux_sym_string_repeat3, - ACTIONS(1288), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [20694] = 1, - ACTIONS(1290), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [20702] = 5, - ACTIONS(1292), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1294), 1, - aux_sym_unpaired_comment_token1, - STATE(527), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(766), 1, - aux_sym_paired_comment_repeat1, - [20718] = 2, - ACTIONS(1057), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1055), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20728] = 5, - ACTIONS(1245), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1296), 1, - anon_sym_LBRACE_PERCENT, - STATE(724), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(800), 1, - aux_sym_paired_comment_repeat1, - [20744] = 2, - ACTIONS(1213), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1211), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20754] = 5, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(1298), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - [20770] = 2, - ACTIONS(1137), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1135), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20780] = 1, - ACTIONS(1029), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [20788] = 2, - ACTIONS(1133), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1131), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20798] = 2, - ACTIONS(1129), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1127), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20808] = 2, - ACTIONS(1117), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1115), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20818] = 2, - ACTIONS(1101), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1099), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20828] = 3, - ACTIONS(1300), 1, - aux_sym_number_token1, - STATE(505), 1, - aux_sym_number_repeat1, - ACTIONS(1302), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [20840] = 2, - ACTIONS(1097), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1095), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20850] = 2, - ACTIONS(1089), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1087), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20860] = 5, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1008), 1, - anon_sym_, - ACTIONS(1304), 1, - anon_sym_PERCENT_RBRACE, - STATE(553), 1, - aux_sym__word, - STATE(575), 1, - aux_sym__ws, - [20876] = 2, - ACTIONS(1306), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1308), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20886] = 3, - ACTIONS(1139), 1, - anon_sym_PIPE, - STATE(516), 1, - aux_sym_string_repeat3, - ACTIONS(1310), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [20898] = 5, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1008), 1, - anon_sym_, - ACTIONS(1312), 1, - anon_sym_PERCENT_RBRACE, - STATE(575), 1, - aux_sym__ws, - STATE(587), 1, - aux_sym__word, - [20914] = 3, - ACTIONS(1314), 1, - aux_sym_number_token1, - STATE(505), 1, - aux_sym_number_repeat1, - ACTIONS(1317), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [20926] = 2, - ACTIONS(1085), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1083), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20936] = 2, - ACTIONS(1081), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1079), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20946] = 5, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(504), 1, - anon_sym_elif, - ACTIONS(506), 1, - anon_sym_else, - ACTIONS(1319), 1, - anon_sym_end, - STATE(300), 1, - aux_sym__ws, - [20962] = 2, - ACTIONS(1073), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1071), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20972] = 5, - ACTIONS(1321), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1323), 1, - aux_sym_unpaired_comment_token1, - STATE(489), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(767), 1, - aux_sym_paired_comment_repeat1, - [20988] = 2, - ACTIONS(1077), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1075), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [20998] = 2, - ACTIONS(1020), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1018), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21008] = 5, - ACTIONS(1325), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1327), 1, - aux_sym_unpaired_comment_token1, - STATE(519), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(816), 1, - aux_sym_paired_comment_repeat1, - [21024] = 2, - ACTIONS(1329), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1331), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21034] = 1, - ACTIONS(1333), 5, - anon_sym_PIPE, - anon_sym_, - anon_sym_RBRACE_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [21042] = 3, - ACTIONS(1139), 1, - anon_sym_PIPE, - STATE(409), 1, - aux_sym_string_repeat3, - ACTIONS(1335), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [21054] = 3, - ACTIONS(1139), 1, - anon_sym_PIPE, - STATE(485), 1, - aux_sym_string_repeat3, - ACTIONS(1335), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [21066] = 2, - ACTIONS(1012), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1010), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21076] = 5, - ACTIONS(1245), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1337), 1, - anon_sym_LBRACE_PERCENT, - STATE(724), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(833), 1, - aux_sym_paired_comment_repeat1, - [21092] = 5, - ACTIONS(1245), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1339), 1, - anon_sym_LBRACE_PERCENT, - STATE(724), 1, - aux_sym_unpaired_comment_repeat1, - STATE(740), 1, - aux_sym_paired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - [21108] = 2, - ACTIONS(1037), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1035), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21118] = 2, - ACTIONS(1045), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1043), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21128] = 2, - ACTIONS(1203), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1201), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21138] = 2, - ACTIONS(1049), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1047), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21148] = 2, - ACTIONS(1065), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1063), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21158] = 2, - ACTIONS(1155), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1153), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21168] = 5, - ACTIONS(1245), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1341), 1, - anon_sym_LBRACE_PERCENT, - STATE(724), 1, - aux_sym_unpaired_comment_repeat1, - STATE(761), 1, - sym_paired_comment, - STATE(765), 1, - aux_sym_paired_comment_repeat1, - [21184] = 2, - ACTIONS(1041), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1039), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21194] = 2, - ACTIONS(1093), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1091), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21204] = 2, - ACTIONS(1121), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1119), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21214] = 2, - ACTIONS(1006), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1004), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21224] = 2, - ACTIONS(1151), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1149), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21234] = 2, - ACTIONS(1125), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1123), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21244] = 2, - ACTIONS(1113), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1111), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21254] = 2, - ACTIONS(1061), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1059), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21264] = 2, - ACTIONS(1024), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1022), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21274] = 2, - ACTIONS(1069), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1067), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21284] = 2, - ACTIONS(1105), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1103), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21294] = 2, - ACTIONS(1147), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1145), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21304] = 2, - ACTIONS(1169), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1167), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21314] = 2, - ACTIONS(1185), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1183), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21324] = 2, - ACTIONS(1209), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1207), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21334] = 2, - ACTIONS(1163), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1161), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21344] = 2, - ACTIONS(1179), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1177), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21354] = 2, - ACTIONS(1219), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1217), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21364] = 2, - ACTIONS(1159), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1157), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21374] = 2, - ACTIONS(1109), 2, - aux_sym__node_token1, - sym_content, - ACTIONS(1107), 3, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACE_PERCENT, - anon_sym_LBRACE_POUND, - [21384] = 4, - ACTIONS(1343), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(201), 1, - sym_else_statement, - STATE(722), 1, - aux_sym_if_statement_repeat1, - [21397] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1349), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21410] = 4, - ACTIONS(1139), 1, - anon_sym_PIPE, - ACTIONS(1351), 1, - anon_sym_, - STATE(409), 1, - aux_sym_string_repeat3, - STATE(798), 1, - aux_sym__ws, - [21423] = 4, - ACTIONS(1353), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(291), 1, - sym_else_statement, - STATE(722), 1, - aux_sym_if_statement_repeat1, - [21436] = 4, - ACTIONS(1355), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(265), 1, - sym_else_statement, - STATE(722), 1, - aux_sym_if_statement_repeat1, - [21449] = 4, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1357), 1, - anon_sym_, - STATE(395), 1, - aux_sym__word, - STATE(770), 1, - aux_sym__ws, - [21462] = 4, - ACTIONS(1139), 1, - anon_sym_PIPE, - ACTIONS(1359), 1, - anon_sym_, - STATE(409), 1, - aux_sym_string_repeat3, - STATE(701), 1, - aux_sym__ws, - [21475] = 4, - ACTIONS(1139), 1, - anon_sym_PIPE, - ACTIONS(1361), 1, - anon_sym_, - STATE(409), 1, - aux_sym_string_repeat3, - STATE(727), 1, - aux_sym__ws, - [21488] = 4, - ACTIONS(1139), 1, - anon_sym_PIPE, - ACTIONS(1361), 1, - anon_sym_, - STATE(550), 1, - aux_sym_string_repeat3, - STATE(727), 1, - aux_sym__ws, - [21501] = 4, - ACTIONS(1139), 1, - anon_sym_PIPE, - ACTIONS(1359), 1, - anon_sym_, - STATE(589), 1, - aux_sym_string_repeat3, - STATE(701), 1, - aux_sym__ws, - [21514] = 4, - ACTIONS(1139), 1, - anon_sym_PIPE, - ACTIONS(1363), 1, - anon_sym_, - STATE(555), 1, - aux_sym_string_repeat3, - STATE(717), 1, - aux_sym__ws, - [21527] = 4, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1365), 1, - anon_sym_, - STATE(3), 1, - aux_sym__ws, - STATE(395), 1, - aux_sym__word, - [21540] = 3, - ACTIONS(1367), 1, - anon_sym_, - STATE(117), 1, - aux_sym__ws, - ACTIONS(1369), 2, - anon_sym_COMMA, - anon_sym_EQ, - [21551] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1371), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21564] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1373), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21577] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1375), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21590] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1377), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21603] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1379), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21616] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1381), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21629] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1383), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21642] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1385), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21655] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1387), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21668] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1389), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21681] = 4, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1391), 1, - anon_sym_, - STATE(18), 1, - aux_sym__ws, - STATE(395), 1, - aux_sym__word, - [21694] = 4, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1393), 1, - anon_sym_, - STATE(19), 1, - aux_sym__ws, - STATE(395), 1, - aux_sym__word, - [21707] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1395), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21720] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1397), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21733] = 3, - ACTIONS(1399), 1, - anon_sym_, - STATE(575), 1, - aux_sym__ws, - ACTIONS(298), 2, - aux_sym__word_token1, - anon_sym_PERCENT_RBRACE, - [21744] = 4, - ACTIONS(971), 1, - aux_sym__word_token1, - STATE(396), 1, - aux_sym__word, - STATE(410), 1, - sym_filter_name, - STATE(493), 1, - sym_filter, - [21757] = 4, - ACTIONS(1402), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(266), 1, - sym_else_statement, - STATE(722), 1, - aux_sym_if_statement_repeat1, - [21770] = 3, - ACTIONS(1404), 1, - anon_sym_, - STATE(578), 1, - aux_sym__ws, - ACTIONS(298), 2, - anon_sym_comment, - anon_sym_endcomment, - [21781] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1407), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21794] = 4, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1409), 1, - anon_sym_POUND_RBRACE, - STATE(593), 1, - sym_unpaired_comment, - STATE(602), 1, - aux_sym_unpaired_comment_repeat2, - [21807] = 4, - ACTIONS(1411), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(202), 1, - sym_else_statement, - STATE(722), 1, - aux_sym_if_statement_repeat1, - [21820] = 4, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1193), 1, - anon_sym_POUND_RBRACE, - STATE(593), 1, - sym_unpaired_comment, - STATE(602), 1, - aux_sym_unpaired_comment_repeat2, - [21833] = 4, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1195), 1, - anon_sym_POUND_RBRACE, - STATE(593), 1, - sym_unpaired_comment, - STATE(602), 1, - aux_sym_unpaired_comment_repeat2, - [21846] = 4, - ACTIONS(1413), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(228), 1, - sym_else_statement, - STATE(722), 1, - aux_sym_if_statement_repeat1, - [21859] = 4, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1415), 1, - anon_sym_POUND_RBRACE, - STATE(593), 1, - sym_unpaired_comment, - STATE(602), 1, - aux_sym_unpaired_comment_repeat2, - [21872] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1417), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21885] = 4, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1419), 1, - anon_sym_, - STATE(395), 1, - aux_sym__word, - STATE(698), 1, - aux_sym__ws, - [21898] = 4, - ACTIONS(1139), 1, - anon_sym_PIPE, - ACTIONS(1421), 1, - anon_sym_, - STATE(554), 1, - aux_sym_string_repeat3, - STATE(702), 1, - aux_sym__ws, - [21911] = 4, - ACTIONS(1139), 1, - anon_sym_PIPE, - ACTIONS(1423), 1, - anon_sym_, - STATE(409), 1, - aux_sym_string_repeat3, - STATE(689), 1, - aux_sym__ws, - [21924] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1425), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21937] = 4, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1205), 1, - anon_sym_POUND_RBRACE, - STATE(593), 1, - sym_unpaired_comment, - STATE(602), 1, - aux_sym_unpaired_comment_repeat2, - [21950] = 4, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1427), 1, - anon_sym_, - STATE(38), 1, - aux_sym__ws, - STATE(395), 1, - aux_sym__word, - [21963] = 3, - ACTIONS(1431), 1, - aux_sym_unpaired_comment_token1, - STATE(594), 1, - aux_sym_unpaired_comment_repeat1, - ACTIONS(1429), 2, - anon_sym_LBRACE_POUND, - anon_sym_POUND_RBRACE, - [21974] = 3, - ACTIONS(1191), 1, - aux_sym_unpaired_comment_token1, - STATE(597), 1, - aux_sym_unpaired_comment_repeat1, - ACTIONS(1433), 2, - anon_sym_LBRACE_POUND, - anon_sym_POUND_RBRACE, - [21985] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1435), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [21998] = 4, - ACTIONS(1437), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(246), 1, - sym_else_statement, - STATE(722), 1, - aux_sym_if_statement_repeat1, - [22011] = 3, - ACTIONS(1441), 1, - aux_sym_unpaired_comment_token1, - STATE(597), 1, - aux_sym_unpaired_comment_repeat1, - ACTIONS(1439), 2, - anon_sym_LBRACE_POUND, - anon_sym_POUND_RBRACE, - [22022] = 4, - ACTIONS(971), 1, - aux_sym__word_token1, - ACTIONS(1444), 1, - anon_sym_, - STATE(395), 1, - aux_sym__word, - STATE(677), 1, - aux_sym__ws, - [22035] = 4, - ACTIONS(1171), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1446), 1, - anon_sym_POUND_RBRACE, - STATE(593), 1, - sym_unpaired_comment, - STATE(602), 1, - aux_sym_unpaired_comment_repeat2, - [22048] = 4, - ACTIONS(1448), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(239), 1, - sym_else_statement, - STATE(722), 1, - aux_sym_if_statement_repeat1, - [22061] = 4, - ACTIONS(1345), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - ACTIONS(1450), 1, - anon_sym_endcomment, - STATE(578), 1, - aux_sym__ws, - [22074] = 4, - ACTIONS(1452), 1, - anon_sym_LBRACE_POUND, - ACTIONS(1455), 1, - anon_sym_POUND_RBRACE, - STATE(593), 1, - sym_unpaired_comment, - STATE(602), 1, - aux_sym_unpaired_comment_repeat2, - [22087] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1457), 1, - anon_sym_verbatim, - STATE(571), 1, - aux_sym__word, - [22097] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1459), 1, - anon_sym_ifchanged, - STATE(571), 1, - aux_sym__word, - [22107] = 3, - ACTIONS(1461), 1, - anon_sym_, - ACTIONS(1463), 1, - anon_sym_PERCENT_RBRACE, - STATE(609), 1, - aux_sym__ws, - [22117] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1465), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22127] = 3, - ACTIONS(1465), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1467), 1, - anon_sym_, - STATE(611), 1, - aux_sym__ws, - [22137] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1469), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22147] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1471), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22157] = 3, - ACTIONS(1471), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1473), 1, - anon_sym_, - STATE(615), 1, - aux_sym__ws, - [22167] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1475), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22177] = 3, - ACTIONS(1475), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1477), 1, - anon_sym_, - STATE(617), 1, - aux_sym__ws, - [22187] = 3, - ACTIONS(1479), 1, - anon_sym_, - ACTIONS(1481), 1, - anon_sym_PERCENT_RBRACE, - STATE(620), 1, - aux_sym__ws, - [22197] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1483), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22207] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1485), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22217] = 3, - ACTIONS(1485), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1487), 1, - anon_sym_, - STATE(624), 1, - aux_sym__ws, - [22227] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1489), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22237] = 3, - ACTIONS(1489), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1491), 1, - anon_sym_, - STATE(626), 1, - aux_sym__ws, - [22247] = 3, - ACTIONS(1493), 1, - anon_sym_, - ACTIONS(1495), 1, - anon_sym_PERCENT_RBRACE, - STATE(628), 1, - aux_sym__ws, - [22257] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1495), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22267] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1497), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22277] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1499), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22287] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1501), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22297] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1503), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22307] = 3, - ACTIONS(1503), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1505), 1, - anon_sym_, - STATE(632), 1, - aux_sym__ws, - [22317] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1507), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22327] = 3, - ACTIONS(1507), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1509), 1, - anon_sym_, - STATE(634), 1, - aux_sym__ws, - [22337] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1511), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22347] = 3, - ACTIONS(1511), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1513), 1, - anon_sym_, - STATE(636), 1, - aux_sym__ws, - [22357] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1515), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22367] = 3, - ACTIONS(1517), 1, - anon_sym_, - ACTIONS(1519), 1, - anon_sym_PERCENT_RBRACE, - STATE(606), 1, - aux_sym__ws, - [22377] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1521), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22387] = 3, - ACTIONS(1521), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1523), 1, - anon_sym_, - STATE(639), 1, - aux_sym__ws, - [22397] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1525), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22407] = 3, - ACTIONS(1525), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1527), 1, - anon_sym_, - STATE(641), 1, - aux_sym__ws, - [22417] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1529), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22427] = 3, - ACTIONS(1529), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1531), 1, - anon_sym_, - STATE(642), 1, - aux_sym__ws, - [22437] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1533), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22447] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1535), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22457] = 3, - ACTIONS(1535), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1537), 1, - anon_sym_, - STATE(643), 1, - aux_sym__ws, - [22467] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1539), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22477] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1541), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22487] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1543), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22497] = 3, - ACTIONS(1545), 1, - anon_sym_, - ACTIONS(1547), 1, - anon_sym_PERCENT_RBRACE, - STATE(806), 1, - aux_sym__ws, - [22507] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1549), 1, - anon_sym_RBRACE_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22517] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1551), 1, - anon_sym_RBRACE_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22527] = 3, - ACTIONS(1551), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(1553), 1, - anon_sym_, - STATE(645), 1, - aux_sym__ws, - [22537] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1555), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22547] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1557), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22557] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1559), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22567] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1561), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22577] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1563), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22587] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1565), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22597] = 3, - ACTIONS(1567), 1, - anon_sym_, - ACTIONS(1569), 1, - anon_sym_RBRACE_RBRACE, - STATE(646), 1, - aux_sym__ws, - [22607] = 3, - ACTIONS(1571), 1, - anon_sym_, - ACTIONS(1573), 1, - anon_sym_RBRACE_RBRACE, - STATE(657), 1, - aux_sym__ws, - [22617] = 3, - ACTIONS(1575), 1, - anon_sym_, - ACTIONS(1577), 1, - anon_sym_RBRACE_RBRACE, - STATE(675), 1, - aux_sym__ws, - [22627] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1577), 1, - anon_sym_RBRACE_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22637] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1579), 1, - anon_sym_autoescape, - STATE(571), 1, - aux_sym__word, - [22647] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1579), 1, - anon_sym_block, - STATE(571), 1, - aux_sym__word, - [22657] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1579), 1, - anon_sym_blocktranslate, - STATE(571), 1, - aux_sym__word, - [22667] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1579), 1, - anon_sym_ifchanged, - STATE(571), 1, - aux_sym__word, - [22677] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1579), 1, - anon_sym_spaceless, - STATE(571), 1, - aux_sym__word, - [22687] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1579), 1, - anon_sym_verbatim, - STATE(571), 1, - aux_sym__word, - [22697] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1579), 1, - anon_sym_with2, - STATE(571), 1, - aux_sym__word, - [22707] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1581), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [22717] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1583), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [22727] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1585), 1, - anon_sym_autoescape, - STATE(571), 1, - aux_sym__word, - [22737] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1585), 1, - anon_sym_block, - STATE(571), 1, - aux_sym__word, - [22747] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1585), 1, - anon_sym_blocktranslate, - STATE(571), 1, - aux_sym__word, - [22757] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1585), 1, - anon_sym_ifchanged, - STATE(571), 1, - aux_sym__word, - [22767] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1585), 1, - anon_sym_spaceless, - STATE(571), 1, - aux_sym__word, - [22777] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1585), 1, - anon_sym_verbatim, - STATE(571), 1, - aux_sym__word, - [22787] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1585), 1, - anon_sym_with2, - STATE(571), 1, - aux_sym__word, - [22797] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1587), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [22807] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1589), 1, - anon_sym_RBRACE_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22817] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1591), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [22827] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1593), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22837] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1595), 1, - anon_sym_autoescape, - STATE(571), 1, - aux_sym__word, - [22847] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1595), 1, - anon_sym_block, - STATE(571), 1, - aux_sym__word, - [22857] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1595), 1, - anon_sym_blocktranslate, - STATE(571), 1, - aux_sym__word, - [22867] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1595), 1, - anon_sym_ifchanged, - STATE(571), 1, - aux_sym__word, - [22877] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1595), 1, - anon_sym_spaceless, - STATE(571), 1, - aux_sym__word, - [22887] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1595), 1, - anon_sym_verbatim, - STATE(571), 1, - aux_sym__word, - [22897] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1595), 1, - anon_sym_with2, - STATE(571), 1, - aux_sym__word, - [22907] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1597), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [22917] = 1, - ACTIONS(1599), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [22923] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1601), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [22933] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1603), 1, - anon_sym_filter, - STATE(571), 1, - aux_sym__word, - [22943] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1605), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [22953] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1607), 1, - anon_sym_autoescape, - STATE(571), 1, - aux_sym__word, - [22963] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1607), 1, - anon_sym_block, - STATE(571), 1, - aux_sym__word, - [22973] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1607), 1, - anon_sym_blocktranslate, - STATE(571), 1, - aux_sym__word, - [22983] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1607), 1, - anon_sym_ifchanged, - STATE(571), 1, - aux_sym__word, - [22993] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1607), 1, - anon_sym_spaceless, - STATE(571), 1, - aux_sym__word, - [23003] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1607), 1, - anon_sym_verbatim, - STATE(571), 1, - aux_sym__word, - [23013] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1607), 1, - anon_sym_with2, - STATE(571), 1, - aux_sym__word, - [23023] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1609), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [23033] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1611), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23043] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1613), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [23053] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1615), 1, - anon_sym_filter, - STATE(571), 1, - aux_sym__word, - [23063] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1617), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23073] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1619), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23083] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1621), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [23093] = 1, - ACTIONS(1623), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [23099] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1625), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [23109] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1627), 1, - anon_sym_filter, - STATE(571), 1, - aux_sym__word, - [23119] = 1, - ACTIONS(1629), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [23125] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1631), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [23135] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1633), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [23145] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1635), 1, - anon_sym_filter, - STATE(571), 1, - aux_sym__word, - [23155] = 1, - ACTIONS(1637), 3, - anon_sym_, - anon_sym_COMMA, - anon_sym_EQ, - [23161] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1639), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [23171] = 3, - ACTIONS(1641), 1, - anon_sym_SQUOTE, - ACTIONS(1643), 1, - aux_sym_string_token1, - STATE(715), 1, - aux_sym_string_repeat1, - [23181] = 3, - ACTIONS(1641), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - aux_sym_string_token2, - STATE(716), 1, - aux_sym_string_repeat2, - [23191] = 3, - ACTIONS(1643), 1, - aux_sym_string_token1, - ACTIONS(1647), 1, - anon_sym_SQUOTE, - STATE(720), 1, - aux_sym_string_repeat1, - [23201] = 3, - ACTIONS(1645), 1, - aux_sym_string_token2, - ACTIONS(1647), 1, - anon_sym_DQUOTE, - STATE(721), 1, - aux_sym_string_repeat2, - [23211] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1649), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23221] = 3, - ACTIONS(1643), 1, - aux_sym_string_token1, - ACTIONS(1651), 1, - anon_sym_SQUOTE, - STATE(772), 1, - aux_sym_string_repeat1, - [23231] = 3, - ACTIONS(1645), 1, - aux_sym_string_token2, - ACTIONS(1651), 1, - anon_sym_DQUOTE, - STATE(777), 1, - aux_sym_string_repeat2, - [23241] = 3, - ACTIONS(1653), 1, - anon_sym_SQUOTE, - ACTIONS(1655), 1, - aux_sym_string_token1, - STATE(720), 1, - aux_sym_string_repeat1, - [23251] = 3, - ACTIONS(1658), 1, - anon_sym_DQUOTE, - ACTIONS(1660), 1, - aux_sym_string_token2, - STATE(721), 1, - aux_sym_string_repeat2, - [23261] = 3, - ACTIONS(1663), 1, - anon_sym_LBRACE_PERCENT, - STATE(162), 1, - sym_elif_statement, - STATE(722), 1, - aux_sym_if_statement_repeat1, - [23271] = 2, - ACTIONS(1057), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1055), 2, - anon_sym_LBRACE_POUND, - anon_sym_POUND_RBRACE, - [23279] = 3, - ACTIONS(1439), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1666), 1, - aux_sym_unpaired_comment_token1, - STATE(724), 1, - aux_sym_unpaired_comment_repeat1, - [23289] = 2, - ACTIONS(1189), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1187), 2, - anon_sym_LBRACE_POUND, - anon_sym_POUND_RBRACE, - [23297] = 2, - ACTIONS(1213), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1211), 2, - anon_sym_LBRACE_POUND, - anon_sym_POUND_RBRACE, - [23305] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1669), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23315] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1671), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23325] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1673), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23335] = 3, - ACTIONS(1675), 1, - anon_sym_, - ACTIONS(1677), 1, - anon_sym_PERCENT_RBRACE, - STATE(623), 1, - aux_sym__ws, - [23345] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1677), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23355] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1679), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23365] = 3, - ACTIONS(1681), 1, - anon_sym_, - ACTIONS(1683), 1, - anon_sym_PERCENT_RBRACE, - STATE(728), 1, - aux_sym__ws, - [23375] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1683), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23385] = 3, - ACTIONS(1685), 1, - anon_sym_, - ACTIONS(1687), 1, - anon_sym_PERCENT_RBRACE, - STATE(729), 1, - aux_sym__ws, - [23395] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1687), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23405] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1689), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [23415] = 3, - ACTIONS(1691), 1, - anon_sym_, - ACTIONS(1693), 1, - anon_sym_PERCENT_RBRACE, - STATE(731), 1, - aux_sym__ws, - [23425] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1693), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23435] = 3, - ACTIONS(1695), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [23445] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1697), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23455] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1699), 1, - anon_sym_filter, - STATE(571), 1, - aux_sym__word, - [23465] = 3, - ACTIONS(1701), 1, - anon_sym_, - ACTIONS(1703), 1, - anon_sym_PERCENT_RBRACE, - STATE(734), 1, - aux_sym__ws, - [23475] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1703), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23485] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1705), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [23495] = 3, - ACTIONS(1707), 1, - anon_sym_, - ACTIONS(1709), 1, - anon_sym_PERCENT_RBRACE, - STATE(736), 1, - aux_sym__ws, - [23505] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1709), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23515] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1711), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [23525] = 3, - ACTIONS(1713), 1, - anon_sym_, - ACTIONS(1715), 1, - anon_sym_PERCENT_RBRACE, - STATE(739), 1, - aux_sym__ws, - [23535] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1715), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23545] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1717), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23555] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1719), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23565] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1721), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23575] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1723), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23585] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1725), 1, - anon_sym_filter, - STATE(571), 1, - aux_sym__word, - [23595] = 3, - ACTIONS(1723), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1727), 1, - anon_sym_, - STATE(744), 1, - aux_sym__ws, - [23605] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1729), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [23615] = 3, - ACTIONS(1731), 1, - anon_sym_, - ACTIONS(1733), 1, - anon_sym_PERCENT_RBRACE, - STATE(747), 1, - aux_sym__ws, - [23625] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1733), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23635] = 3, - ACTIONS(1339), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [23645] = 3, - ACTIONS(1735), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1737), 1, - aux_sym_unpaired_comment_token1, - STATE(799), 1, - aux_sym_unpaired_comment_repeat1, - [23655] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1739), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [23665] = 3, - ACTIONS(1741), 1, - anon_sym_, - ACTIONS(1743), 1, - anon_sym_PERCENT_RBRACE, - STATE(750), 1, - aux_sym__ws, - [23675] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1743), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23685] = 3, - ACTIONS(1745), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [23695] = 3, - ACTIONS(1341), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [23705] = 3, - ACTIONS(1296), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [23715] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1747), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23725] = 3, - ACTIONS(1749), 1, - anon_sym_, - ACTIONS(1751), 1, - anon_sym_PERCENT_RBRACE, - STATE(754), 1, - aux_sym__ws, - [23735] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1753), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23745] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1755), 1, - anon_sym_filter, - STATE(571), 1, - aux_sym__word, - [23755] = 3, - ACTIONS(1643), 1, - aux_sym_string_token1, - ACTIONS(1757), 1, - anon_sym_SQUOTE, - STATE(720), 1, - aux_sym_string_repeat1, - [23765] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1759), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [23775] = 3, - ACTIONS(1761), 1, - anon_sym_, - ACTIONS(1763), 1, - anon_sym_PERCENT_RBRACE, - STATE(759), 1, - aux_sym__ws, - [23785] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1763), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23795] = 3, - ACTIONS(1765), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [23805] = 3, - ACTIONS(1645), 1, - aux_sym_string_token2, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - STATE(721), 1, - aux_sym_string_repeat2, - [23815] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1767), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [23825] = 3, - ACTIONS(1769), 1, - anon_sym_, - ACTIONS(1771), 1, - anon_sym_PERCENT_RBRACE, - STATE(764), 1, - aux_sym__ws, - [23835] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1771), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [23845] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1773), 1, - anon_sym_with2, - STATE(571), 1, - aux_sym__word, - [23855] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1773), 1, - anon_sym_verbatim, - STATE(571), 1, - aux_sym__word, - [23865] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1773), 1, - anon_sym_spaceless, - STATE(571), 1, - aux_sym__word, - [23875] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1773), 1, - anon_sym_ifchanged, - STATE(571), 1, - aux_sym__word, - [23885] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1773), 1, - anon_sym_blocktranslate, - STATE(571), 1, - aux_sym__word, - [23895] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1773), 1, - anon_sym_block, - STATE(571), 1, - aux_sym__word, - [23905] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1773), 1, - anon_sym_autoescape, - STATE(571), 1, - aux_sym__word, - [23915] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1457), 1, - anon_sym_autoescape, - STATE(571), 1, - aux_sym__word, - [23925] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1457), 1, - anon_sym_block, - STATE(571), 1, - aux_sym__word, - [23935] = 3, - ACTIONS(1272), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [23945] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1457), 1, - anon_sym_blocktranslate, - STATE(571), 1, - aux_sym__word, - [23955] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1457), 1, - anon_sym_ifchanged, - STATE(571), 1, - aux_sym__word, - [23965] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1457), 1, - anon_sym_spaceless, - STATE(571), 1, - aux_sym__word, - [23975] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1457), 1, - anon_sym_with2, - STATE(571), 1, - aux_sym__word, - [23985] = 3, - ACTIONS(1775), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [23995] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1777), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [24005] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1779), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [24015] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1781), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [24025] = 3, - ACTIONS(1245), 1, - aux_sym_unpaired_comment_token1, - ACTIONS(1783), 1, - anon_sym_LBRACE_PERCENT, - STATE(724), 1, - aux_sym_unpaired_comment_repeat1, - [24035] = 3, - ACTIONS(1785), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [24045] = 3, - ACTIONS(1787), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [24055] = 3, - ACTIONS(1243), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [24065] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1459), 1, - anon_sym_autoescape, - STATE(571), 1, - aux_sym__word, - [24075] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1459), 1, - anon_sym_block, - STATE(571), 1, - aux_sym__word, - [24085] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1459), 1, - anon_sym_blocktranslate, - STATE(571), 1, - aux_sym__word, - [24095] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1463), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [24105] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1459), 1, - anon_sym_spaceless, - STATE(571), 1, - aux_sym__word, - [24115] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1459), 1, - anon_sym_verbatim, - STATE(571), 1, - aux_sym__word, - [24125] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1459), 1, - anon_sym_with2, - STATE(571), 1, - aux_sym__word, - [24135] = 3, - ACTIONS(1790), 1, - anon_sym_, - ACTIONS(1792), 1, - anon_sym_PERCENT_RBRACE, - STATE(824), 1, - aux_sym__ws, - [24145] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1794), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [24155] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1796), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [24165] = 3, - ACTIONS(484), 1, - anon_sym_, - ACTIONS(504), 1, - anon_sym_elif, - STATE(300), 1, - aux_sym__ws, - [24175] = 3, - ACTIONS(1798), 1, - anon_sym_, - ACTIONS(1800), 1, - anon_sym_PERCENT_RBRACE, - STATE(751), 1, - aux_sym__ws, - [24185] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1802), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [24195] = 3, - ACTIONS(1337), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [24205] = 3, - ACTIONS(1804), 1, - anon_sym_, - ACTIONS(1806), 1, - anon_sym_PERCENT_RBRACE, - STATE(811), 1, - aux_sym__ws, - [24215] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1808), 1, - anon_sym_block, - STATE(571), 1, - aux_sym__word, - [24225] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1808), 1, - anon_sym_blocktranslate, - STATE(571), 1, - aux_sym__word, - [24235] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1808), 1, - anon_sym_ifchanged, - STATE(571), 1, - aux_sym__word, - [24245] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1808), 1, - anon_sym_spaceless, - STATE(571), 1, - aux_sym__word, - [24255] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1808), 1, - anon_sym_verbatim, - STATE(571), 1, - aux_sym__word, - [24265] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1808), 1, - anon_sym_with2, - STATE(571), 1, - aux_sym__word, - [24275] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1810), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [24285] = 3, - ACTIONS(1810), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1812), 1, - anon_sym_, - STATE(780), 1, - aux_sym__ws, - [24295] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1814), 1, - anon_sym_if, - STATE(571), 1, - aux_sym__word, - [24305] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1808), 1, - anon_sym_autoescape, - STATE(571), 1, - aux_sym__word, - [24315] = 3, - ACTIONS(1717), 1, - anon_sym_PERCENT_RBRACE, - ACTIONS(1816), 1, - anon_sym_, - STATE(775), 1, - aux_sym__ws, - [24325] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1818), 1, - anon_sym_for, - STATE(571), 1, - aux_sym__word, - [24335] = 3, - ACTIONS(482), 1, - aux_sym__word_token1, - ACTIONS(1820), 1, - anon_sym_filter, - STATE(571), 1, - aux_sym__word, - [24345] = 3, - ACTIONS(1143), 1, - anon_sym_, - ACTIONS(1822), 1, - anon_sym_PERCENT_RBRACE, - STATE(473), 1, - aux_sym__ws, - [24355] = 3, - ACTIONS(787), 1, - anon_sym_, - ACTIONS(1347), 1, - anon_sym_comment, - STATE(390), 1, - aux_sym__ws, - [24365] = 3, - ACTIONS(1824), 1, - anon_sym_LBRACE_PERCENT, - STATE(761), 1, - sym_paired_comment, - STATE(801), 1, - aux_sym_paired_comment_repeat1, - [24375] = 2, - ACTIONS(1826), 1, - anon_sym_, - STATE(337), 1, - aux_sym__ws, - [24382] = 2, - ACTIONS(1828), 1, - anon_sym_, - STATE(340), 1, - aux_sym__ws, - [24389] = 2, - ACTIONS(1830), 1, - anon_sym_, - STATE(275), 1, - aux_sym__ws, - [24396] = 2, - ACTIONS(1832), 1, - anon_sym_, - STATE(338), 1, - aux_sym__ws, - [24403] = 2, - ACTIONS(1834), 1, - anon_sym_, - STATE(586), 1, - aux_sym__ws, - [24410] = 2, - ACTIONS(1836), 1, - anon_sym_, - STATE(579), 1, - aux_sym__ws, - [24417] = 2, - ACTIONS(1838), 1, - anon_sym_, - STATE(354), 1, - aux_sym__ws, - [24424] = 2, - ACTIONS(1840), 1, - anon_sym_, - STATE(475), 1, - aux_sym__ws, - [24431] = 2, - ACTIONS(1842), 1, - anon_sym_, - STATE(370), 1, - aux_sym__ws, - [24438] = 2, - ACTIONS(1844), 1, - anon_sym_, - STATE(376), 1, - aux_sym__ws, - [24445] = 2, - ACTIONS(1846), 1, - anon_sym_, - STATE(574), 1, - aux_sym__ws, - [24452] = 2, - ACTIONS(1848), 1, - anon_sym_, - STATE(382), 1, - aux_sym__ws, - [24459] = 2, - ACTIONS(1850), 1, - anon_sym_, - STATE(383), 1, - aux_sym__ws, - [24466] = 2, - ACTIONS(1852), 1, - anon_sym_, - STATE(352), 1, - aux_sym__ws, - [24473] = 2, - ACTIONS(1854), 1, - anon_sym_, - STATE(573), 1, - aux_sym__ws, - [24480] = 2, - ACTIONS(1856), 1, - anon_sym_, - STATE(292), 1, - aux_sym__ws, - [24487] = 2, - ACTIONS(1858), 1, - anon_sym_, - STATE(569), 1, - aux_sym__ws, - [24494] = 2, - ACTIONS(1860), 1, - anon_sym_, - STATE(568), 1, - aux_sym__ws, - [24501] = 2, - ACTIONS(1862), 1, - anon_sym_, - STATE(566), 1, - aux_sym__ws, - [24508] = 2, - ACTIONS(1864), 1, - anon_sym_, - STATE(565), 1, - aux_sym__ws, - [24515] = 2, - ACTIONS(1866), 1, - anon_sym_, - STATE(564), 1, - aux_sym__ws, - [24522] = 2, - ACTIONS(1868), 1, - anon_sym_, - STATE(563), 1, - aux_sym__ws, - [24529] = 2, - ACTIONS(1870), 1, - anon_sym_, - STATE(476), 1, - aux_sym__ws, - [24536] = 2, - ACTIONS(1872), 1, - anon_sym_, - STATE(567), 1, - aux_sym__ws, - [24543] = 2, - ACTIONS(1874), 1, - anon_sym_, - STATE(331), 1, - aux_sym__ws, - [24550] = 2, - ACTIONS(1876), 1, - anon_sym_, - STATE(768), 1, - aux_sym__ws, - [24557] = 2, - ACTIONS(1878), 1, - anon_sym_, - STATE(244), 1, - aux_sym__ws, - [24564] = 2, - ACTIONS(1880), 1, - anon_sym_, - STATE(325), 1, - aux_sym__ws, - [24571] = 2, - ACTIONS(1882), 1, - anon_sym_, - STATE(343), 1, - aux_sym__ws, - [24578] = 2, - ACTIONS(1884), 1, - anon_sym_, - STATE(353), 1, - aux_sym__ws, - [24585] = 2, - ACTIONS(1886), 1, - anon_sym_, - STATE(323), 1, - aux_sym__ws, - [24592] = 2, - ACTIONS(1888), 1, - anon_sym_, - STATE(320), 1, - aux_sym__ws, - [24599] = 2, - ACTIONS(1890), 1, - anon_sym_, - STATE(318), 1, - aux_sym__ws, - [24606] = 2, - ACTIONS(1892), 1, - anon_sym_, - STATE(482), 1, - aux_sym__ws, - [24613] = 2, - ACTIONS(1894), 1, - anon_sym_, - STATE(378), 1, - aux_sym__ws, - [24620] = 2, - ACTIONS(1896), 1, - anon_sym_, - STATE(315), 1, - aux_sym__ws, - [24627] = 2, - ACTIONS(1898), 1, - anon_sym_, - STATE(313), 1, - aux_sym__ws, - [24634] = 2, - ACTIONS(1900), 1, - anon_sym_, - STATE(595), 1, - aux_sym__ws, - [24641] = 2, - ACTIONS(1902), 1, - anon_sym_, - STATE(305), 1, - aux_sym__ws, - [24648] = 2, - ACTIONS(1904), 1, - anon_sym_, - STATE(294), 1, - aux_sym__ws, - [24655] = 2, - ACTIONS(1099), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1101), 1, - aux_sym_unpaired_comment_token1, - [24662] = 2, - ACTIONS(1906), 1, - anon_sym_, - STATE(328), 1, - aux_sym__ws, - [24669] = 2, - ACTIONS(1908), 1, - anon_sym_, - STATE(285), 1, - aux_sym__ws, - [24676] = 2, - ACTIONS(1910), 1, - anon_sym_, - STATE(472), 1, - aux_sym__ws, - [24683] = 2, - ACTIONS(1912), 1, - anon_sym_, - STATE(304), 1, - aux_sym__ws, - [24690] = 2, - ACTIONS(1914), 1, - anon_sym_, - STATE(335), 1, - aux_sym__ws, - [24697] = 2, - ACTIONS(1916), 1, - anon_sym_, - STATE(351), 1, - aux_sym__ws, - [24704] = 2, - ACTIONS(1918), 1, - anon_sym_, - STATE(562), 1, - aux_sym__ws, - [24711] = 2, - ACTIONS(1920), 1, - anon_sym_, - STATE(832), 1, - aux_sym__ws, - [24718] = 2, - ACTIONS(1922), 1, - anon_sym_, - STATE(561), 1, - aux_sym__ws, - [24725] = 2, - ACTIONS(1924), 1, - anon_sym_, - STATE(831), 1, - aux_sym__ws, - [24732] = 2, - ACTIONS(1926), 1, - anon_sym_, - STATE(380), 1, - aux_sym__ws, - [24739] = 2, - ACTIONS(1928), 1, - anon_sym_, - STATE(299), 1, - aux_sym__ws, - [24746] = 2, - ACTIONS(1930), 1, - anon_sym_, - STATE(387), 1, - aux_sym__ws, - [24753] = 2, - ACTIONS(1932), 1, - anon_sym_, - STATE(302), 1, - aux_sym__ws, - [24760] = 2, - ACTIONS(1934), 1, - anon_sym_, - STATE(373), 1, - aux_sym__ws, - [24767] = 2, - ACTIONS(1936), 1, - anon_sym_, - STATE(189), 1, - aux_sym__ws, - [24774] = 2, - ACTIONS(1938), 1, - anon_sym_, - STATE(508), 1, - aux_sym__ws, - [24781] = 2, - ACTIONS(1940), 1, - anon_sym_, - STATE(377), 1, - aux_sym__ws, - [24788] = 2, - ACTIONS(1071), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1073), 1, - aux_sym_unpaired_comment_token1, - [24795] = 2, - ACTIONS(1942), 1, - anon_sym_, - STATE(379), 1, - aux_sym__ws, - [24802] = 2, - ACTIONS(1944), 1, - anon_sym_, - STATE(316), 1, - aux_sym__ws, - [24809] = 2, - ACTIONS(1946), 1, - anon_sym_, - STATE(348), 1, - aux_sym__ws, - [24816] = 2, - ACTIONS(1948), 1, - anon_sym_, - STATE(570), 1, - aux_sym__ws, - [24823] = 2, - ACTIONS(1950), 1, - anon_sym_, - STATE(371), 1, - aux_sym__ws, - [24830] = 2, - ACTIONS(1952), 1, - anon_sym_, - STATE(293), 1, - aux_sym__ws, - [24837] = 2, - ACTIONS(1954), 1, - anon_sym_, - STATE(369), 1, - aux_sym__ws, - [24844] = 2, - ACTIONS(1956), 1, - anon_sym_, - STATE(349), 1, - aux_sym__ws, - [24851] = 2, - ACTIONS(1958), 1, - anon_sym_, - STATE(367), 1, - aux_sym__ws, - [24858] = 2, - ACTIONS(1960), 1, - anon_sym_, - STATE(491), 1, - aux_sym__ws, - [24865] = 2, - ACTIONS(1962), 1, - anon_sym_, - STATE(365), 1, - aux_sym__ws, - [24872] = 2, - ACTIONS(1964), 1, - anon_sym_, - STATE(289), 1, - aux_sym__ws, - [24879] = 2, - ACTIONS(1966), 1, - anon_sym_, - STATE(363), 1, - aux_sym__ws, - [24886] = 2, - ACTIONS(1968), 1, - anon_sym_, - STATE(372), 1, - aux_sym__ws, - [24893] = 2, - ACTIONS(1970), 1, - anon_sym_, - STATE(361), 1, - aux_sym__ws, - [24900] = 2, - ACTIONS(1972), 1, - anon_sym_, - STATE(375), 1, - aux_sym__ws, - [24907] = 2, - ACTIONS(1974), 1, - anon_sym_, - STATE(359), 1, - aux_sym__ws, - [24914] = 2, - ACTIONS(1976), 1, - anon_sym_, - STATE(389), 1, - aux_sym__ws, - [24921] = 2, - ACTIONS(1978), 1, - anon_sym_, - STATE(388), 1, - aux_sym__ws, - [24928] = 2, - ACTIONS(1980), 1, - anon_sym_, - STATE(386), 1, - aux_sym__ws, - [24935] = 2, - ACTIONS(1982), 1, - anon_sym_, - STATE(385), 1, - aux_sym__ws, - [24942] = 2, - ACTIONS(1984), 1, - anon_sym_, - STATE(549), 1, - aux_sym__ws, - [24949] = 2, - ACTIONS(1986), 1, - anon_sym_, - STATE(384), 1, - aux_sym__ws, - [24956] = 2, - ACTIONS(1988), 1, - anon_sym_, - STATE(346), 1, - aux_sym__ws, - [24963] = 2, - ACTIONS(1990), 1, - anon_sym_, - STATE(381), 1, - aux_sym__ws, - [24970] = 2, - ACTIONS(1992), 1, - anon_sym_, STATE(297), 1, - aux_sym__ws, - [24977] = 2, - ACTIONS(1994), 1, - anon_sym_, - STATE(296), 1, - aux_sym__ws, - [24984] = 2, - ACTIONS(1996), 1, - anon_sym_, - STATE(334), 1, - aux_sym__ws, - [24991] = 2, - ACTIONS(1998), 1, - anon_sym_, - STATE(301), 1, - aux_sym__ws, - [24998] = 2, - ACTIONS(2000), 1, - anon_sym_, - STATE(813), 1, - aux_sym__ws, - [25005] = 2, - ACTIONS(2002), 1, - anon_sym_, - STATE(474), 1, - aux_sym__ws, - [25012] = 2, - ACTIONS(2004), 1, - anon_sym_, - STATE(321), 1, - aux_sym__ws, - [25019] = 2, - ACTIONS(2006), 1, - anon_sym_, - STATE(355), 1, - aux_sym__ws, - [25026] = 2, - ACTIONS(2008), 1, - anon_sym_, - STATE(207), 1, - aux_sym__ws, - [25033] = 2, - ACTIONS(2010), 1, - anon_sym_, - STATE(312), 1, - aux_sym__ws, - [25040] = 2, - ACTIONS(2012), 1, - anon_sym_, + aux_sym_unpaired_comment_repeat1, + STATE(383), 1, + sym_paired_comment, + STATE(409), 1, + aux_sym_paired_comment_repeat1, + [9367] = 5, + ACTIONS(698), 1, + aux_sym_unpaired_comment_token1, + ACTIONS(734), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(405), 1, + aux_sym_paired_comment_repeat1, + STATE(412), 1, + aux_sym_unpaired_comment_repeat1, + [9383] = 5, + ACTIONS(698), 1, + aux_sym_unpaired_comment_token1, + ACTIONS(736), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(398), 1, + aux_sym_paired_comment_repeat1, + STATE(412), 1, + aux_sym_unpaired_comment_repeat1, + [9399] = 5, + ACTIONS(738), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(740), 1, + aux_sym_unpaired_comment_token1, + STATE(286), 1, + aux_sym_unpaired_comment_repeat1, STATE(374), 1, - aux_sym__ws, - [25047] = 2, - ACTIONS(2014), 1, - anon_sym_, - STATE(368), 1, - aux_sym__ws, - [25054] = 2, - ACTIONS(2016), 1, - anon_sym_, - STATE(309), 1, - aux_sym__ws, - [25061] = 2, - ACTIONS(2018), 1, - anon_sym_, - STATE(306), 1, - aux_sym__ws, - [25068] = 2, - ACTIONS(2020), 1, - anon_sym_, - STATE(350), 1, - aux_sym__ws, - [25075] = 2, - ACTIONS(2022), 1, - anon_sym_, - STATE(303), 1, - aux_sym__ws, - [25082] = 2, - ACTIONS(2024), 1, - anon_sym_, - STATE(347), 1, - aux_sym__ws, - [25089] = 2, - ACTIONS(2026), 1, - anon_sym_, - STATE(319), 1, - aux_sym__ws, - [25096] = 2, - ACTIONS(2028), 1, - anon_sym_, - STATE(345), 1, - aux_sym__ws, - [25103] = 2, - ACTIONS(2030), 1, - anon_sym_, - STATE(314), 1, - aux_sym__ws, - [25110] = 2, - ACTIONS(2032), 1, - anon_sym_, - STATE(344), 1, - aux_sym__ws, - [25117] = 2, - ACTIONS(2034), 1, - anon_sym_, - STATE(341), 1, - aux_sym__ws, - [25124] = 2, - ACTIONS(2036), 1, - anon_sym_, - STATE(310), 1, - aux_sym__ws, - [25131] = 2, - ACTIONS(2038), 1, - anon_sym_, - STATE(339), 1, - aux_sym__ws, - [25138] = 2, - ACTIONS(2040), 1, - anon_sym_, - STATE(477), 1, - aux_sym__ws, - [25145] = 2, - ACTIONS(2042), 1, - anon_sym_, - STATE(322), 1, - aux_sym__ws, - [25152] = 2, - ACTIONS(2044), 1, - anon_sym_, - STATE(311), 1, - aux_sym__ws, - [25159] = 2, - ACTIONS(2046), 1, - anon_sym_, - STATE(342), 1, - aux_sym__ws, - [25166] = 2, - ACTIONS(2048), 1, - anon_sym_, - STATE(753), 1, - aux_sym__ws, - [25173] = 2, - ACTIONS(2050), 1, - anon_sym_, - STATE(752), 1, - aux_sym__ws, - [25180] = 2, - ACTIONS(2052), 1, - anon_sym_, - STATE(590), 1, - aux_sym__ws, - [25187] = 2, - ACTIONS(1043), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1045), 1, - aux_sym_unpaired_comment_token1, - [25194] = 2, - ACTIONS(2054), 1, - anon_sym_, - STATE(601), 1, - aux_sym__ws, - [25201] = 2, - ACTIONS(2056), 1, - anon_sym_, - STATE(364), 1, - aux_sym__ws, - [25208] = 2, - ACTIONS(2058), 1, - anon_sym_, - STATE(732), 1, - aux_sym__ws, - [25215] = 2, - ACTIONS(2060), 1, - anon_sym_, - STATE(741), 1, - aux_sym__ws, - [25222] = 2, - ACTIONS(2062), 1, - anon_sym_, - STATE(295), 1, - aux_sym__ws, - [25229] = 2, - ACTIONS(2064), 1, - anon_sym_, - STATE(308), 1, - aux_sym__ws, - [25236] = 2, - ACTIONS(1145), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1147), 1, - aux_sym_unpaired_comment_token1, - [25243] = 2, - ACTIONS(2066), 1, - anon_sym_, - STATE(468), 1, - aux_sym__ws, - [25250] = 2, - ACTIONS(2068), 1, - anon_sym_, - STATE(262), 1, - aux_sym__ws, - [25257] = 2, - ACTIONS(2070), 1, - anon_sym_, - STATE(307), 1, - aux_sym__ws, - [25264] = 2, - ACTIONS(2072), 1, - anon_sym_, - STATE(324), 1, - aux_sym__ws, - [25271] = 2, - ACTIONS(2074), 1, - anon_sym_, - STATE(326), 1, - aux_sym__ws, - [25278] = 2, - ACTIONS(2076), 1, - anon_sym_, - STATE(327), 1, - aux_sym__ws, - [25285] = 2, - ACTIONS(2078), 1, - anon_sym_, - STATE(329), 1, - aux_sym__ws, - [25292] = 2, - ACTIONS(2080), 1, - anon_sym_, - STATE(330), 1, - aux_sym__ws, - [25299] = 2, - ACTIONS(2082), 1, - anon_sym_, - STATE(332), 1, - aux_sym__ws, - [25306] = 2, - ACTIONS(2084), 1, - anon_sym_, - STATE(336), 1, - aux_sym__ws, - [25313] = 2, - ACTIONS(1177), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1179), 1, - aux_sym_unpaired_comment_token1, - [25320] = 2, - ACTIONS(971), 1, - aux_sym__word_token1, - STATE(571), 1, - aux_sym__word, - [25327] = 2, - ACTIONS(1047), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1049), 1, - aux_sym_unpaired_comment_token1, - [25334] = 2, - ACTIONS(2086), 1, - anon_sym_, - STATE(653), 1, - aux_sym__ws, - [25341] = 2, - ACTIONS(2088), 1, - anon_sym_, - STATE(652), 1, - aux_sym__ws, - [25348] = 2, - ACTIONS(2090), 1, - anon_sym_, - STATE(298), 1, - aux_sym__ws, - [25355] = 2, - ACTIONS(2092), 1, - anon_sym_, - STATE(196), 1, - aux_sym__ws, - [25362] = 2, - ACTIONS(2094), 1, - anon_sym_, - STATE(317), 1, - aux_sym__ws, - [25369] = 2, - ACTIONS(2096), 1, - anon_sym_, - STATE(356), 1, - aux_sym__ws, - [25376] = 2, - ACTIONS(2098), 1, - anon_sym_, - STATE(357), 1, - aux_sym__ws, - [25383] = 2, - ACTIONS(2100), 1, - anon_sym_, - STATE(358), 1, - aux_sym__ws, - [25390] = 2, - ACTIONS(2102), 1, - anon_sym_, - STATE(360), 1, - aux_sym__ws, - [25397] = 2, - ACTIONS(2104), 1, - anon_sym_, - STATE(362), 1, - aux_sym__ws, - [25404] = 2, - ACTIONS(2106), 1, - anon_sym_, - STATE(366), 1, - aux_sym__ws, - [25411] = 2, - ACTIONS(2108), 1, - anon_sym_, - STATE(651), 1, - aux_sym__ws, - [25418] = 1, - ACTIONS(2110), 2, - anon_sym_DQUOTE, - aux_sym_string_token2, - [25423] = 2, - ACTIONS(2112), 1, - anon_sym_, - STATE(650), 1, - aux_sym__ws, - [25430] = 1, - ACTIONS(2114), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - [25435] = 2, - ACTIONS(2116), 1, - anon_sym_, - STATE(649), 1, - aux_sym__ws, - [25442] = 2, - ACTIONS(2118), 1, - anon_sym_, - STATE(648), 1, - aux_sym__ws, - [25449] = 2, - ACTIONS(2120), 1, - anon_sym_, - STATE(638), 1, - aux_sym__ws, - [25456] = 2, - ACTIONS(2122), 1, - anon_sym_, - STATE(630), 1, - aux_sym__ws, - [25463] = 2, - ACTIONS(971), 1, - aux_sym__word_token1, - STATE(397), 1, - aux_sym__word, - [25470] = 2, - ACTIONS(2124), 1, - anon_sym_, - STATE(622), 1, - aux_sym__ws, - [25477] = 2, - ACTIONS(2126), 1, - anon_sym_, - STATE(621), 1, - aux_sym__ws, - [25484] = 2, - ACTIONS(971), 1, - aux_sym__word_token1, - STATE(559), 1, - aux_sym__word, - [25491] = 2, - ACTIONS(2128), 1, - anon_sym_, - STATE(614), 1, - aux_sym__ws, - [25498] = 2, - ACTIONS(2130), 1, - anon_sym_, - STATE(501), 1, - aux_sym__ws, - [25505] = 2, - ACTIONS(2132), 1, - anon_sym_, - STATE(608), 1, - aux_sym__ws, - [25512] = 2, - ACTIONS(2134), 1, - anon_sym_, - STATE(504), 1, - aux_sym__ws, - [25519] = 1, - ACTIONS(1587), 1, - anon_sym_if, - [25523] = 1, - ACTIONS(1597), 1, - anon_sym_if, - [25527] = 1, - ACTIONS(1609), 1, - anon_sym_if, - [25531] = 1, - ACTIONS(1621), 1, - anon_sym_if, - [25535] = 1, - ACTIONS(1739), 1, - anon_sym_if, - [25539] = 1, - ACTIONS(1767), 1, - anon_sym_if, - [25543] = 1, - ACTIONS(1796), 1, - anon_sym_if, - [25547] = 1, - ACTIONS(1814), 1, - anon_sym_if, - [25551] = 1, - ACTIONS(2136), 1, + aux_sym_paired_comment_repeat1, + STATE(383), 1, + sym_paired_comment, + [9415] = 2, + ACTIONS(742), 2, ts_builtin_sym_end, + sym_content, + ACTIONS(744), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9425] = 2, + ACTIONS(746), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(748), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9435] = 5, + ACTIONS(750), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(752), 1, + aux_sym_unpaired_comment_token1, + STATE(292), 1, + aux_sym_unpaired_comment_repeat1, + STATE(383), 1, + sym_paired_comment, + STATE(385), 1, + aux_sym_paired_comment_repeat1, + [9451] = 5, + ACTIONS(698), 1, + aux_sym_unpaired_comment_token1, + ACTIONS(754), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(396), 1, + aux_sym_paired_comment_repeat1, + STATE(412), 1, + aux_sym_unpaired_comment_repeat1, + [9467] = 2, + ACTIONS(756), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(758), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9477] = 2, + ACTIONS(760), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(762), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9487] = 2, + ACTIONS(764), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(766), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9497] = 2, + ACTIONS(768), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(770), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9507] = 2, + ACTIONS(772), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(774), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9517] = 2, + ACTIONS(776), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(778), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9527] = 2, + ACTIONS(780), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(782), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9537] = 2, + ACTIONS(784), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(786), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9547] = 2, + ACTIONS(788), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(790), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9557] = 2, + ACTIONS(792), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(794), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9567] = 2, + ACTIONS(796), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(798), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9577] = 2, + ACTIONS(800), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(802), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9587] = 2, + ACTIONS(804), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(806), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9597] = 2, + ACTIONS(808), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(810), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9607] = 2, + ACTIONS(812), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(814), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9617] = 2, + ACTIONS(816), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(818), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9627] = 2, + ACTIONS(820), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(822), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9637] = 2, + ACTIONS(824), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(826), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9647] = 2, + ACTIONS(828), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(830), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9657] = 2, + ACTIONS(832), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(834), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9667] = 2, + ACTIONS(836), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(838), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9677] = 2, + ACTIONS(840), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(842), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9687] = 2, + ACTIONS(844), 2, + ts_builtin_sym_end, + sym_content, + ACTIONS(846), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9697] = 4, + ACTIONS(848), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(139), 1, + sym_else_statement, + STATE(410), 1, + aux_sym_if_statement_repeat1, + [9710] = 2, + ACTIONS(852), 1, + sym_content, + ACTIONS(850), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9719] = 2, + ACTIONS(764), 1, + sym_content, + ACTIONS(766), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9728] = 2, + ACTIONS(780), 1, + sym_content, + ACTIONS(782), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9737] = 2, + ACTIONS(720), 1, + sym_content, + ACTIONS(722), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9746] = 3, + ACTIONS(856), 1, + aux_sym_unpaired_comment_token1, + STATE(339), 1, + aux_sym_unpaired_comment_repeat1, + ACTIONS(854), 2, + anon_sym_LBRACE_POUND, + anon_sym_POUND_RBRACE, + [9757] = 2, + ACTIONS(684), 1, + sym_content, + ACTIONS(686), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9766] = 4, + ACTIONS(858), 1, + anon_sym_LBRACE_POUND, + ACTIONS(860), 1, + anon_sym_POUND_RBRACE, + STATE(326), 1, + sym_unpaired_comment, + STATE(344), 1, + aux_sym_unpaired_comment_repeat2, + [9779] = 4, + ACTIONS(858), 1, + anon_sym_LBRACE_POUND, + ACTIONS(862), 1, + anon_sym_POUND_RBRACE, + STATE(326), 1, + sym_unpaired_comment, + STATE(344), 1, + aux_sym_unpaired_comment_repeat2, + [9792] = 2, + ACTIONS(746), 1, + sym_content, + ACTIONS(748), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9801] = 4, + ACTIONS(858), 1, + anon_sym_LBRACE_POUND, + ACTIONS(864), 1, + anon_sym_POUND_RBRACE, + STATE(326), 1, + sym_unpaired_comment, + STATE(344), 1, + aux_sym_unpaired_comment_repeat2, + [9814] = 2, + ACTIONS(756), 1, + sym_content, + ACTIONS(758), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9823] = 2, + ACTIONS(688), 1, + sym_content, + ACTIONS(690), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9832] = 2, + ACTIONS(768), 1, + sym_content, + ACTIONS(770), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9841] = 2, + ACTIONS(816), 1, + sym_content, + ACTIONS(818), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9850] = 2, + ACTIONS(828), 1, + sym_content, + ACTIONS(830), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9859] = 2, + ACTIONS(868), 1, + sym_content, + ACTIONS(866), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9868] = 2, + ACTIONS(808), 1, + sym_content, + ACTIONS(810), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9877] = 3, + ACTIONS(668), 1, + aux_sym_unpaired_comment_token1, + STATE(341), 1, + aux_sym_unpaired_comment_repeat1, + ACTIONS(870), 2, + anon_sym_LBRACE_POUND, + anon_sym_POUND_RBRACE, + [9888] = 2, + ACTIONS(776), 1, + sym_content, + ACTIONS(778), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9897] = 3, + ACTIONS(874), 1, + aux_sym_unpaired_comment_token1, + STATE(341), 1, + aux_sym_unpaired_comment_repeat1, + ACTIONS(872), 2, + anon_sym_LBRACE_POUND, + anon_sym_POUND_RBRACE, + [9908] = 4, + ACTIONS(858), 1, + anon_sym_LBRACE_POUND, + ACTIONS(877), 1, + anon_sym_POUND_RBRACE, + STATE(326), 1, + sym_unpaired_comment, + STATE(344), 1, + aux_sym_unpaired_comment_repeat2, + [9921] = 2, + ACTIONS(881), 1, + sym_content, + ACTIONS(879), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9930] = 4, + ACTIONS(883), 1, + anon_sym_LBRACE_POUND, + ACTIONS(886), 1, + anon_sym_POUND_RBRACE, + STATE(326), 1, + sym_unpaired_comment, + STATE(344), 1, + aux_sym_unpaired_comment_repeat2, + [9943] = 4, + ACTIONS(888), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(178), 1, + sym_else_statement, + STATE(410), 1, + aux_sym_if_statement_repeat1, + [9956] = 2, + ACTIONS(788), 1, + sym_content, + ACTIONS(790), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9965] = 2, + ACTIONS(772), 1, + sym_content, + ACTIONS(774), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9974] = 2, + ACTIONS(812), 1, + sym_content, + ACTIONS(814), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9983] = 2, + ACTIONS(892), 1, + sym_content, + ACTIONS(890), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [9992] = 4, + ACTIONS(894), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(168), 1, + sym_else_statement, + STATE(410), 1, + aux_sym_if_statement_repeat1, + [10005] = 2, + ACTIONS(716), 1, + sym_content, + ACTIONS(718), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10014] = 2, + ACTIONS(800), 1, + sym_content, + ACTIONS(802), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10023] = 2, + ACTIONS(796), 1, + sym_content, + ACTIONS(798), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10032] = 2, + ACTIONS(792), 1, + sym_content, + ACTIONS(794), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10041] = 2, + ACTIONS(784), 1, + sym_content, + ACTIONS(786), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10050] = 2, + ACTIONS(804), 1, + sym_content, + ACTIONS(806), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10059] = 4, + ACTIONS(858), 1, + anon_sym_LBRACE_POUND, + ACTIONS(896), 1, + anon_sym_POUND_RBRACE, + STATE(326), 1, + sym_unpaired_comment, + STATE(344), 1, + aux_sym_unpaired_comment_repeat2, + [10072] = 4, + ACTIONS(858), 1, + anon_sym_LBRACE_POUND, + ACTIONS(898), 1, + anon_sym_POUND_RBRACE, + STATE(326), 1, + sym_unpaired_comment, + STATE(344), 1, + aux_sym_unpaired_comment_repeat2, + [10085] = 2, + ACTIONS(844), 1, + sym_content, + ACTIONS(846), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10094] = 4, + ACTIONS(900), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(181), 1, + sym_else_statement, + STATE(410), 1, + aux_sym_if_statement_repeat1, + [10107] = 4, + ACTIONS(902), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(167), 1, + sym_else_statement, + STATE(410), 1, + aux_sym_if_statement_repeat1, + [10120] = 2, + ACTIONS(832), 1, + sym_content, + ACTIONS(834), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10129] = 4, + ACTIONS(904), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(185), 1, + sym_else_statement, + STATE(410), 1, + aux_sym_if_statement_repeat1, + [10142] = 2, + ACTIONS(824), 1, + sym_content, + ACTIONS(826), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10151] = 2, + ACTIONS(820), 1, + sym_content, + ACTIONS(822), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10160] = 2, + ACTIONS(760), 1, + sym_content, + ACTIONS(762), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10169] = 2, + ACTIONS(836), 1, + sym_content, + ACTIONS(838), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10178] = 2, + ACTIONS(840), 1, + sym_content, + ACTIONS(842), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10187] = 2, + ACTIONS(908), 1, + sym_content, + ACTIONS(906), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10196] = 2, + ACTIONS(742), 1, + sym_content, + ACTIONS(744), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10205] = 2, + ACTIONS(710), 1, + sym_content, + ACTIONS(712), 3, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACE_PERCENT, + anon_sym_LBRACE_POUND, + [10214] = 3, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + aux_sym_string_token2, + STATE(381), 1, + aux_sym_string_repeat2, + [10224] = 3, + ACTIONS(914), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10234] = 3, + ACTIONS(916), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10244] = 3, + ACTIONS(918), 1, + sym__identifier, + STATE(55), 1, + sym_filter_name, + STATE(378), 1, + sym_filter, + [10254] = 1, + ACTIONS(712), 3, + anon_sym_LBRACE_POUND, + aux_sym_unpaired_comment_token1, + anon_sym_POUND_RBRACE, + [10260] = 3, + ACTIONS(52), 1, + anon_sym_PIPE, + ACTIONS(920), 1, + anon_sym_PERCENT_RBRACE, + STATE(64), 1, + aux_sym_string_repeat3, + [10270] = 3, + ACTIONS(52), 1, + anon_sym_PIPE, + ACTIONS(922), 1, + anon_sym_PERCENT_RBRACE, + STATE(377), 1, + aux_sym_string_repeat3, + [10280] = 3, + ACTIONS(924), 1, + anon_sym_endif, + ACTIONS(926), 1, + anon_sym_elif, + ACTIONS(928), 1, + anon_sym_else, + [10290] = 3, + ACTIONS(930), 1, + anon_sym_SQUOTE, + ACTIONS(932), 1, + aux_sym_string_token1, + STATE(391), 1, + aux_sym_string_repeat1, + [10300] = 3, + ACTIONS(912), 1, + aux_sym_string_token2, + ACTIONS(930), 1, + anon_sym_DQUOTE, + STATE(392), 1, + aux_sym_string_repeat2, + [10310] = 3, + ACTIONS(52), 1, + anon_sym_PIPE, + ACTIONS(934), 1, + anon_sym_PERCENT_RBRACE, + STATE(64), 1, + aux_sym_string_repeat3, + [10320] = 3, + ACTIONS(936), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(938), 1, + aux_sym_unpaired_comment_token1, + STATE(407), 1, + aux_sym_unpaired_comment_repeat1, + [10330] = 3, + ACTIONS(918), 1, + sym__identifier, + STATE(55), 1, + sym_filter_name, + STATE(402), 1, + sym_filter, + [10340] = 3, + ACTIONS(940), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10350] = 3, + ACTIONS(912), 1, + aux_sym_string_token2, + ACTIONS(942), 1, + anon_sym_DQUOTE, + STATE(392), 1, + aux_sym_string_repeat2, + [10360] = 3, + ACTIONS(926), 1, + anon_sym_elif, + ACTIONS(928), 1, + anon_sym_else, + ACTIONS(944), 1, + anon_sym_endif, + [10370] = 3, + ACTIONS(946), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10380] = 1, + ACTIONS(744), 3, + anon_sym_LBRACE_POUND, + aux_sym_unpaired_comment_token1, + anon_sym_POUND_RBRACE, + [10386] = 3, + ACTIONS(932), 1, + aux_sym_string_token1, + ACTIONS(942), 1, + anon_sym_SQUOTE, + STATE(391), 1, + aux_sym_string_repeat1, + [10396] = 3, + ACTIONS(948), 1, + anon_sym_SQUOTE, + ACTIONS(950), 1, + aux_sym_string_token1, + STATE(391), 1, + aux_sym_string_repeat1, + [10406] = 3, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(955), 1, + aux_sym_string_token2, + STATE(392), 1, + aux_sym_string_repeat2, + [10416] = 3, + ACTIONS(958), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10426] = 3, + ACTIONS(926), 1, + anon_sym_elif, + ACTIONS(928), 1, + anon_sym_else, + ACTIONS(960), 1, + anon_sym_endif, + [10436] = 3, + ACTIONS(926), 1, + anon_sym_elif, + ACTIONS(928), 1, + anon_sym_else, + ACTIONS(962), 1, + anon_sym_endif, + [10446] = 3, + ACTIONS(964), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10456] = 3, + ACTIONS(926), 1, + anon_sym_elif, + ACTIONS(928), 1, + anon_sym_else, + ACTIONS(966), 1, + anon_sym_endif, + [10466] = 3, + ACTIONS(968), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10476] = 3, + ACTIONS(970), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10486] = 3, + ACTIONS(972), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10496] = 3, + ACTIONS(974), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10506] = 3, + ACTIONS(52), 1, + anon_sym_PIPE, + ACTIONS(976), 1, + anon_sym_PERCENT_RBRACE, + STATE(382), 1, + aux_sym_string_repeat3, + [10516] = 3, + ACTIONS(912), 1, + aux_sym_string_token2, + ACTIONS(978), 1, + anon_sym_DQUOTE, + STATE(386), 1, + aux_sym_string_repeat2, + [10526] = 3, + ACTIONS(980), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10536] = 3, + ACTIONS(983), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10546] = 3, + ACTIONS(926), 1, + anon_sym_elif, + ACTIONS(928), 1, + anon_sym_else, + ACTIONS(985), 1, + anon_sym_endif, + [10556] = 3, + ACTIONS(698), 1, + aux_sym_unpaired_comment_token1, + ACTIONS(987), 1, + anon_sym_LBRACE_PERCENT, + STATE(412), 1, + aux_sym_unpaired_comment_repeat1, + [10566] = 3, + ACTIONS(918), 1, + sym__identifier, + STATE(55), 1, + sym_filter_name, + STATE(78), 1, + sym_filter, + [10576] = 3, + ACTIONS(989), 1, + anon_sym_LBRACE_PERCENT, + STATE(383), 1, + sym_paired_comment, + STATE(404), 1, + aux_sym_paired_comment_repeat1, + [10586] = 3, + ACTIONS(991), 1, + anon_sym_LBRACE_PERCENT, + STATE(102), 1, + sym_elif_statement, + STATE(410), 1, + aux_sym_if_statement_repeat1, + [10596] = 3, + ACTIONS(932), 1, + aux_sym_string_token1, + ACTIONS(978), 1, + anon_sym_SQUOTE, + STATE(390), 1, + aux_sym_string_repeat1, + [10606] = 3, + ACTIONS(872), 1, + anon_sym_LBRACE_PERCENT, + ACTIONS(994), 1, + aux_sym_unpaired_comment_token1, + STATE(412), 1, + aux_sym_unpaired_comment_repeat1, + [10616] = 1, + ACTIONS(842), 3, + anon_sym_LBRACE_POUND, + aux_sym_unpaired_comment_token1, + anon_sym_POUND_RBRACE, + [10622] = 3, + ACTIONS(910), 1, + anon_sym_SQUOTE, + ACTIONS(932), 1, + aux_sym_string_token1, + STATE(380), 1, + aux_sym_string_repeat1, + [10632] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(999), 1, + anon_sym_endcomment, + [10639] = 2, + ACTIONS(1001), 1, + anon_sym_SQUOTE, + ACTIONS(1003), 1, + aux_sym_string_token1, + [10646] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1005), 1, + anon_sym_endcomment, + [10653] = 1, + ACTIONS(830), 2, + anon_sym_LBRACE_PERCENT, + aux_sym_unpaired_comment_token1, + [10658] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1007), 1, + anon_sym_endcomment, + [10665] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1009), 1, + anon_sym_endcomment, + [10672] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1011), 1, + anon_sym_endcomment, + [10679] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1013), 1, + anon_sym_endcomment, + [10686] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1015), 1, + anon_sym_endcomment, + [10693] = 2, + ACTIONS(1017), 1, + sym_variable_name, + STATE(492), 1, + sym_variable, + [10700] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1019), 1, + anon_sym_endcomment, + [10707] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1021), 1, + anon_sym_endcomment, + [10714] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1023), 1, + anon_sym_endcomment, + [10721] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1025), 1, + anon_sym_endcomment, + [10728] = 1, + ACTIONS(818), 2, + anon_sym_LBRACE_PERCENT, + aux_sym_unpaired_comment_token1, + [10733] = 2, + ACTIONS(1017), 1, + sym_variable_name, + STATE(488), 1, + sym_variable, + [10740] = 2, + ACTIONS(1027), 1, + sym__identifier, + ACTIONS(1029), 1, + anon_sym_PERCENT_RBRACE, + [10747] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1031), 1, + anon_sym_endcomment, + [10754] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1033), 1, + anon_sym_endcomment, + [10761] = 1, + ACTIONS(686), 2, + anon_sym_LBRACE_PERCENT, + aux_sym_unpaired_comment_token1, + [10766] = 1, + ACTIONS(846), 2, + anon_sym_LBRACE_PERCENT, + aux_sym_unpaired_comment_token1, + [10771] = 2, + ACTIONS(1035), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + aux_sym_string_token2, + [10778] = 2, + ACTIONS(1039), 1, + sym__identifier, + ACTIONS(1041), 1, + anon_sym_PERCENT_RBRACE, + [10785] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1043), 1, + anon_sym_endcomment, + [10792] = 1, + ACTIONS(802), 2, + anon_sym_LBRACE_PERCENT, + aux_sym_unpaired_comment_token1, + [10797] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1045), 1, + anon_sym_endcomment, + [10804] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1047), 1, + anon_sym_endcomment, + [10811] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1049), 1, + anon_sym_endcomment, + [10818] = 1, + ACTIONS(814), 2, + anon_sym_LBRACE_PERCENT, + aux_sym_unpaired_comment_token1, + [10823] = 2, + ACTIONS(1051), 1, + sym__identifier, + ACTIONS(1053), 1, + anon_sym_PERCENT_RBRACE, + [10830] = 2, + ACTIONS(997), 1, + anon_sym_comment, + ACTIONS(1055), 1, + anon_sym_endcomment, + [10837] = 1, + ACTIONS(1057), 1, + anon_sym_PERCENT_RBRACE, + [10841] = 1, + ACTIONS(1059), 1, + anon_sym_PERCENT_RBRACE, + [10845] = 1, + ACTIONS(1061), 1, + anon_sym_PERCENT_RBRACE, + [10849] = 1, + ACTIONS(1063), 1, + anon_sym_PERCENT_RBRACE, + [10853] = 1, + ACTIONS(1065), 1, + anon_sym_PERCENT_RBRACE, + [10857] = 1, + ACTIONS(1067), 1, + anon_sym_PERCENT_RBRACE, + [10861] = 1, + ACTIONS(1069), 1, + anon_sym_PERCENT_RBRACE, + [10865] = 1, + ACTIONS(1071), 1, + anon_sym_PERCENT_RBRACE, + [10869] = 1, + ACTIONS(1073), 1, + anon_sym_PERCENT_RBRACE, + [10873] = 1, + ACTIONS(1075), 1, + anon_sym_PERCENT_RBRACE, + [10877] = 1, + ACTIONS(1077), 1, + anon_sym_PERCENT_RBRACE, + [10881] = 1, + ACTIONS(1079), 1, + sym__identifier, + [10885] = 1, + ACTIONS(1081), 1, + anon_sym_PERCENT_RBRACE, + [10889] = 1, + ACTIONS(1083), 1, + anon_sym_PERCENT_RBRACE, + [10893] = 1, + ACTIONS(1085), 1, + anon_sym_PERCENT_RBRACE, + [10897] = 1, + ACTIONS(1087), 1, + anon_sym_PERCENT_RBRACE, + [10901] = 1, + ACTIONS(1089), 1, + anon_sym_PERCENT_RBRACE, + [10905] = 1, + ACTIONS(1091), 1, + anon_sym_PERCENT_RBRACE, + [10909] = 1, + ACTIONS(1093), 1, + anon_sym_PERCENT_RBRACE, + [10913] = 1, + ACTIONS(1095), 1, + anon_sym_PERCENT_RBRACE, + [10917] = 1, + ACTIONS(1097), 1, + anon_sym_PERCENT_RBRACE, + [10921] = 1, + ACTIONS(1099), 1, + anon_sym_PERCENT_RBRACE, + [10925] = 1, + ACTIONS(1101), 1, + anon_sym_PERCENT_RBRACE, + [10929] = 1, + ACTIONS(1103), 1, + anon_sym_PERCENT_RBRACE, + [10933] = 1, + ACTIONS(1105), 1, + anon_sym_PERCENT_RBRACE, + [10937] = 1, + ACTIONS(1107), 1, + anon_sym_PERCENT_RBRACE, + [10941] = 1, + ACTIONS(1109), 1, + anon_sym_PERCENT_RBRACE, + [10945] = 1, + ACTIONS(1111), 1, + anon_sym_PERCENT_RBRACE, + [10949] = 1, + ACTIONS(1113), 1, + anon_sym_PERCENT_RBRACE, + [10953] = 1, + ACTIONS(1115), 1, + anon_sym_PERCENT_RBRACE, + [10957] = 1, + ACTIONS(1117), 1, + anon_sym_PERCENT_RBRACE, + [10961] = 1, + ACTIONS(1119), 1, + anon_sym_PERCENT_RBRACE, + [10965] = 1, + ACTIONS(1121), 1, + anon_sym_PERCENT_RBRACE, + [10969] = 1, + ACTIONS(1123), 1, + anon_sym_PERCENT_RBRACE, + [10973] = 1, + ACTIONS(1125), 1, + anon_sym_PERCENT_RBRACE, + [10977] = 1, + ACTIONS(1127), 1, + anon_sym_PERCENT_RBRACE, + [10981] = 1, + ACTIONS(1129), 1, + anon_sym_PERCENT_RBRACE, + [10985] = 1, + ACTIONS(1131), 1, + anon_sym_PERCENT_RBRACE, + [10989] = 1, + ACTIONS(997), 1, + anon_sym_comment, + [10993] = 1, + ACTIONS(1133), 1, + anon_sym_PERCENT_RBRACE, + [10997] = 1, + ACTIONS(1135), 1, + anon_sym_PERCENT_RBRACE, + [11001] = 1, + ACTIONS(926), 1, + anon_sym_elif, + [11005] = 1, + ACTIONS(1137), 1, + anon_sym_RBRACE_RBRACE, + [11009] = 1, + ACTIONS(1139), 1, + anon_sym_PERCENT_RBRACE, + [11013] = 1, + ACTIONS(1141), 1, + anon_sym_PERCENT_RBRACE, + [11017] = 1, + ACTIONS(1143), 1, + anon_sym_PERCENT_RBRACE, + [11021] = 1, + ACTIONS(1145), 1, + anon_sym_RBRACE_RBRACE, + [11025] = 1, + ACTIONS(1147), 1, + ts_builtin_sym_end, + [11029] = 1, + ACTIONS(1149), 1, + anon_sym_PERCENT_RBRACE, + [11033] = 1, + ACTIONS(1151), 1, + anon_sym_PERCENT_RBRACE, + [11037] = 1, + ACTIONS(1153), 1, + anon_sym_PERCENT_RBRACE, + [11041] = 1, + ACTIONS(1155), 1, + anon_sym_PERCENT_RBRACE, + [11045] = 1, + ACTIONS(1157), 1, + anon_sym_PERCENT_RBRACE, + [11049] = 1, + ACTIONS(1159), 1, + anon_sym_PERCENT_RBRACE, + [11053] = 1, + ACTIONS(1161), 1, + anon_sym_PERCENT_RBRACE, + [11057] = 1, + ACTIONS(1163), 1, + anon_sym_PERCENT_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 82, - [SMALL_STATE(4)] = 164, - [SMALL_STATE(5)] = 246, - [SMALL_STATE(6)] = 328, - [SMALL_STATE(7)] = 410, - [SMALL_STATE(8)] = 492, - [SMALL_STATE(9)] = 574, - [SMALL_STATE(10)] = 656, - [SMALL_STATE(11)] = 738, - [SMALL_STATE(12)] = 820, - [SMALL_STATE(13)] = 902, - [SMALL_STATE(14)] = 984, - [SMALL_STATE(15)] = 1066, - [SMALL_STATE(16)] = 1148, - [SMALL_STATE(17)] = 1230, - [SMALL_STATE(18)] = 1312, - [SMALL_STATE(19)] = 1394, - [SMALL_STATE(20)] = 1476, - [SMALL_STATE(21)] = 1558, - [SMALL_STATE(22)] = 1640, - [SMALL_STATE(23)] = 1722, - [SMALL_STATE(24)] = 1804, - [SMALL_STATE(25)] = 1886, - [SMALL_STATE(26)] = 1968, - [SMALL_STATE(27)] = 2050, - [SMALL_STATE(28)] = 2132, - [SMALL_STATE(29)] = 2214, - [SMALL_STATE(30)] = 2296, - [SMALL_STATE(31)] = 2378, - [SMALL_STATE(32)] = 2460, - [SMALL_STATE(33)] = 2542, - [SMALL_STATE(34)] = 2624, - [SMALL_STATE(35)] = 2706, - [SMALL_STATE(36)] = 2788, - [SMALL_STATE(37)] = 2870, - [SMALL_STATE(38)] = 2952, - [SMALL_STATE(39)] = 3034, - [SMALL_STATE(40)] = 3116, - [SMALL_STATE(41)] = 3198, - [SMALL_STATE(42)] = 3280, - [SMALL_STATE(43)] = 3362, - [SMALL_STATE(44)] = 3444, - [SMALL_STATE(45)] = 3526, - [SMALL_STATE(46)] = 3608, - [SMALL_STATE(47)] = 3690, - [SMALL_STATE(48)] = 3772, - [SMALL_STATE(49)] = 3854, - [SMALL_STATE(50)] = 3936, - [SMALL_STATE(51)] = 4018, - [SMALL_STATE(52)] = 4100, - [SMALL_STATE(53)] = 4182, - [SMALL_STATE(54)] = 4264, - [SMALL_STATE(55)] = 4346, - [SMALL_STATE(56)] = 4428, - [SMALL_STATE(57)] = 4510, - [SMALL_STATE(58)] = 4592, - [SMALL_STATE(59)] = 4674, - [SMALL_STATE(60)] = 4756, - [SMALL_STATE(61)] = 4838, - [SMALL_STATE(62)] = 4920, - [SMALL_STATE(63)] = 4996, - [SMALL_STATE(64)] = 5072, - [SMALL_STATE(65)] = 5148, - [SMALL_STATE(66)] = 5224, - [SMALL_STATE(67)] = 5300, - [SMALL_STATE(68)] = 5376, - [SMALL_STATE(69)] = 5452, - [SMALL_STATE(70)] = 5528, - [SMALL_STATE(71)] = 5604, - [SMALL_STATE(72)] = 5680, - [SMALL_STATE(73)] = 5756, - [SMALL_STATE(74)] = 5832, - [SMALL_STATE(75)] = 5908, - [SMALL_STATE(76)] = 5984, - [SMALL_STATE(77)] = 6060, - [SMALL_STATE(78)] = 6136, - [SMALL_STATE(79)] = 6212, - [SMALL_STATE(80)] = 6288, - [SMALL_STATE(81)] = 6364, - [SMALL_STATE(82)] = 6440, - [SMALL_STATE(83)] = 6516, - [SMALL_STATE(84)] = 6592, - [SMALL_STATE(85)] = 6668, - [SMALL_STATE(86)] = 6744, - [SMALL_STATE(87)] = 6820, - [SMALL_STATE(88)] = 6896, - [SMALL_STATE(89)] = 6972, - [SMALL_STATE(90)] = 7048, - [SMALL_STATE(91)] = 7124, - [SMALL_STATE(92)] = 7200, - [SMALL_STATE(93)] = 7276, - [SMALL_STATE(94)] = 7352, - [SMALL_STATE(95)] = 7428, - [SMALL_STATE(96)] = 7504, - [SMALL_STATE(97)] = 7580, - [SMALL_STATE(98)] = 7656, - [SMALL_STATE(99)] = 7732, - [SMALL_STATE(100)] = 7808, - [SMALL_STATE(101)] = 7884, - [SMALL_STATE(102)] = 7960, - [SMALL_STATE(103)] = 8036, - [SMALL_STATE(104)] = 8112, - [SMALL_STATE(105)] = 8188, - [SMALL_STATE(106)] = 8264, - [SMALL_STATE(107)] = 8340, - [SMALL_STATE(108)] = 8416, - [SMALL_STATE(109)] = 8492, - [SMALL_STATE(110)] = 8568, - [SMALL_STATE(111)] = 8644, - [SMALL_STATE(112)] = 8720, - [SMALL_STATE(113)] = 8796, - [SMALL_STATE(114)] = 8872, - [SMALL_STATE(115)] = 8948, - [SMALL_STATE(116)] = 9024, - [SMALL_STATE(117)] = 9100, - [SMALL_STATE(118)] = 9146, - [SMALL_STATE(119)] = 9188, - [SMALL_STATE(120)] = 9228, - [SMALL_STATE(121)] = 9268, - [SMALL_STATE(122)] = 9308, - [SMALL_STATE(123)] = 9348, - [SMALL_STATE(124)] = 9386, - [SMALL_STATE(125)] = 9424, - [SMALL_STATE(126)] = 9462, - [SMALL_STATE(127)] = 9500, - [SMALL_STATE(128)] = 9538, - [SMALL_STATE(129)] = 9576, - [SMALL_STATE(130)] = 9614, - [SMALL_STATE(131)] = 9652, - [SMALL_STATE(132)] = 9690, - [SMALL_STATE(133)] = 9728, - [SMALL_STATE(134)] = 9766, - [SMALL_STATE(135)] = 9804, - [SMALL_STATE(136)] = 9836, - [SMALL_STATE(137)] = 9868, - [SMALL_STATE(138)] = 9900, - [SMALL_STATE(139)] = 9932, - [SMALL_STATE(140)] = 9964, - [SMALL_STATE(141)] = 9996, - [SMALL_STATE(142)] = 10028, - [SMALL_STATE(143)] = 10060, - [SMALL_STATE(144)] = 10092, - [SMALL_STATE(145)] = 10124, - [SMALL_STATE(146)] = 10156, - [SMALL_STATE(147)] = 10188, - [SMALL_STATE(148)] = 10220, - [SMALL_STATE(149)] = 10252, - [SMALL_STATE(150)] = 10281, - [SMALL_STATE(151)] = 10310, - [SMALL_STATE(152)] = 10339, - [SMALL_STATE(153)] = 10368, - [SMALL_STATE(154)] = 10397, - [SMALL_STATE(155)] = 10426, - [SMALL_STATE(156)] = 10455, - [SMALL_STATE(157)] = 10484, - [SMALL_STATE(158)] = 10513, - [SMALL_STATE(159)] = 10542, - [SMALL_STATE(160)] = 10571, - [SMALL_STATE(161)] = 10600, - [SMALL_STATE(162)] = 10629, - [SMALL_STATE(163)] = 10658, - [SMALL_STATE(164)] = 10687, - [SMALL_STATE(165)] = 10716, - [SMALL_STATE(166)] = 10745, - [SMALL_STATE(167)] = 10774, - [SMALL_STATE(168)] = 10803, - [SMALL_STATE(169)] = 10832, - [SMALL_STATE(170)] = 10861, - [SMALL_STATE(171)] = 10890, - [SMALL_STATE(172)] = 10919, - [SMALL_STATE(173)] = 10948, - [SMALL_STATE(174)] = 10977, - [SMALL_STATE(175)] = 11006, - [SMALL_STATE(176)] = 11035, - [SMALL_STATE(177)] = 11064, - [SMALL_STATE(178)] = 11093, - [SMALL_STATE(179)] = 11122, - [SMALL_STATE(180)] = 11151, - [SMALL_STATE(181)] = 11180, - [SMALL_STATE(182)] = 11209, - [SMALL_STATE(183)] = 11238, - [SMALL_STATE(184)] = 11267, - [SMALL_STATE(185)] = 11296, - [SMALL_STATE(186)] = 11325, - [SMALL_STATE(187)] = 11354, - [SMALL_STATE(188)] = 11383, - [SMALL_STATE(189)] = 11412, - [SMALL_STATE(190)] = 11467, - [SMALL_STATE(191)] = 11496, - [SMALL_STATE(192)] = 11525, - [SMALL_STATE(193)] = 11554, - [SMALL_STATE(194)] = 11583, - [SMALL_STATE(195)] = 11612, - [SMALL_STATE(196)] = 11641, - [SMALL_STATE(197)] = 11696, - [SMALL_STATE(198)] = 11725, - [SMALL_STATE(199)] = 11754, - [SMALL_STATE(200)] = 11783, - [SMALL_STATE(201)] = 11812, - [SMALL_STATE(202)] = 11841, - [SMALL_STATE(203)] = 11870, - [SMALL_STATE(204)] = 11899, - [SMALL_STATE(205)] = 11928, - [SMALL_STATE(206)] = 11957, - [SMALL_STATE(207)] = 11986, - [SMALL_STATE(208)] = 12041, - [SMALL_STATE(209)] = 12070, - [SMALL_STATE(210)] = 12099, - [SMALL_STATE(211)] = 12128, - [SMALL_STATE(212)] = 12157, - [SMALL_STATE(213)] = 12186, - [SMALL_STATE(214)] = 12215, - [SMALL_STATE(215)] = 12244, - [SMALL_STATE(216)] = 12273, - [SMALL_STATE(217)] = 12302, - [SMALL_STATE(218)] = 12331, - [SMALL_STATE(219)] = 12360, - [SMALL_STATE(220)] = 12389, - [SMALL_STATE(221)] = 12418, - [SMALL_STATE(222)] = 12447, - [SMALL_STATE(223)] = 12476, - [SMALL_STATE(224)] = 12505, - [SMALL_STATE(225)] = 12534, - [SMALL_STATE(226)] = 12563, - [SMALL_STATE(227)] = 12592, - [SMALL_STATE(228)] = 12621, - [SMALL_STATE(229)] = 12650, - [SMALL_STATE(230)] = 12679, - [SMALL_STATE(231)] = 12708, - [SMALL_STATE(232)] = 12737, - [SMALL_STATE(233)] = 12766, - [SMALL_STATE(234)] = 12795, - [SMALL_STATE(235)] = 12824, - [SMALL_STATE(236)] = 12853, - [SMALL_STATE(237)] = 12882, - [SMALL_STATE(238)] = 12911, - [SMALL_STATE(239)] = 12940, - [SMALL_STATE(240)] = 12969, - [SMALL_STATE(241)] = 12998, - [SMALL_STATE(242)] = 13027, - [SMALL_STATE(243)] = 13056, - [SMALL_STATE(244)] = 13085, - [SMALL_STATE(245)] = 13140, - [SMALL_STATE(246)] = 13169, - [SMALL_STATE(247)] = 13198, - [SMALL_STATE(248)] = 13227, - [SMALL_STATE(249)] = 13256, - [SMALL_STATE(250)] = 13285, - [SMALL_STATE(251)] = 13314, - [SMALL_STATE(252)] = 13343, - [SMALL_STATE(253)] = 13372, - [SMALL_STATE(254)] = 13401, - [SMALL_STATE(255)] = 13430, - [SMALL_STATE(256)] = 13459, - [SMALL_STATE(257)] = 13488, - [SMALL_STATE(258)] = 13517, - [SMALL_STATE(259)] = 13546, - [SMALL_STATE(260)] = 13575, - [SMALL_STATE(261)] = 13604, - [SMALL_STATE(262)] = 13633, - [SMALL_STATE(263)] = 13688, - [SMALL_STATE(264)] = 13717, - [SMALL_STATE(265)] = 13746, - [SMALL_STATE(266)] = 13775, - [SMALL_STATE(267)] = 13804, - [SMALL_STATE(268)] = 13833, - [SMALL_STATE(269)] = 13862, - [SMALL_STATE(270)] = 13891, - [SMALL_STATE(271)] = 13920, - [SMALL_STATE(272)] = 13949, - [SMALL_STATE(273)] = 13978, - [SMALL_STATE(274)] = 14007, - [SMALL_STATE(275)] = 14036, - [SMALL_STATE(276)] = 14091, - [SMALL_STATE(277)] = 14120, - [SMALL_STATE(278)] = 14149, - [SMALL_STATE(279)] = 14178, - [SMALL_STATE(280)] = 14207, - [SMALL_STATE(281)] = 14236, - [SMALL_STATE(282)] = 14265, - [SMALL_STATE(283)] = 14294, - [SMALL_STATE(284)] = 14323, - [SMALL_STATE(285)] = 14352, - [SMALL_STATE(286)] = 14407, - [SMALL_STATE(287)] = 14436, - [SMALL_STATE(288)] = 14465, - [SMALL_STATE(289)] = 14494, - [SMALL_STATE(290)] = 14549, - [SMALL_STATE(291)] = 14578, - [SMALL_STATE(292)] = 14607, - [SMALL_STATE(293)] = 14659, - [SMALL_STATE(294)] = 14711, - [SMALL_STATE(295)] = 14763, - [SMALL_STATE(296)] = 14815, - [SMALL_STATE(297)] = 14867, - [SMALL_STATE(298)] = 14919, - [SMALL_STATE(299)] = 14971, - [SMALL_STATE(300)] = 15023, - [SMALL_STATE(301)] = 15049, - [SMALL_STATE(302)] = 15098, - [SMALL_STATE(303)] = 15147, - [SMALL_STATE(304)] = 15196, - [SMALL_STATE(305)] = 15245, - [SMALL_STATE(306)] = 15294, - [SMALL_STATE(307)] = 15343, - [SMALL_STATE(308)] = 15392, - [SMALL_STATE(309)] = 15441, - [SMALL_STATE(310)] = 15490, - [SMALL_STATE(311)] = 15539, - [SMALL_STATE(312)] = 15588, - [SMALL_STATE(313)] = 15637, - [SMALL_STATE(314)] = 15686, - [SMALL_STATE(315)] = 15735, - [SMALL_STATE(316)] = 15784, - [SMALL_STATE(317)] = 15833, - [SMALL_STATE(318)] = 15882, - [SMALL_STATE(319)] = 15931, - [SMALL_STATE(320)] = 15980, - [SMALL_STATE(321)] = 16029, - [SMALL_STATE(322)] = 16078, - [SMALL_STATE(323)] = 16127, - [SMALL_STATE(324)] = 16176, - [SMALL_STATE(325)] = 16225, - [SMALL_STATE(326)] = 16274, - [SMALL_STATE(327)] = 16323, - [SMALL_STATE(328)] = 16372, - [SMALL_STATE(329)] = 16421, - [SMALL_STATE(330)] = 16470, - [SMALL_STATE(331)] = 16519, - [SMALL_STATE(332)] = 16568, - [SMALL_STATE(333)] = 16617, - [SMALL_STATE(334)] = 16642, - [SMALL_STATE(335)] = 16691, - [SMALL_STATE(336)] = 16740, - [SMALL_STATE(337)] = 16789, - [SMALL_STATE(338)] = 16838, - [SMALL_STATE(339)] = 16887, - [SMALL_STATE(340)] = 16936, - [SMALL_STATE(341)] = 16985, - [SMALL_STATE(342)] = 17034, - [SMALL_STATE(343)] = 17083, - [SMALL_STATE(344)] = 17132, - [SMALL_STATE(345)] = 17181, - [SMALL_STATE(346)] = 17230, - [SMALL_STATE(347)] = 17279, - [SMALL_STATE(348)] = 17328, - [SMALL_STATE(349)] = 17377, - [SMALL_STATE(350)] = 17426, - [SMALL_STATE(351)] = 17475, - [SMALL_STATE(352)] = 17524, - [SMALL_STATE(353)] = 17573, - [SMALL_STATE(354)] = 17622, - [SMALL_STATE(355)] = 17671, - [SMALL_STATE(356)] = 17720, - [SMALL_STATE(357)] = 17769, - [SMALL_STATE(358)] = 17818, - [SMALL_STATE(359)] = 17867, - [SMALL_STATE(360)] = 17916, - [SMALL_STATE(361)] = 17965, - [SMALL_STATE(362)] = 18014, - [SMALL_STATE(363)] = 18063, - [SMALL_STATE(364)] = 18112, - [SMALL_STATE(365)] = 18161, - [SMALL_STATE(366)] = 18210, - [SMALL_STATE(367)] = 18259, - [SMALL_STATE(368)] = 18308, - [SMALL_STATE(369)] = 18357, - [SMALL_STATE(370)] = 18406, - [SMALL_STATE(371)] = 18455, - [SMALL_STATE(372)] = 18504, - [SMALL_STATE(373)] = 18553, - [SMALL_STATE(374)] = 18602, - [SMALL_STATE(375)] = 18651, - [SMALL_STATE(376)] = 18700, - [SMALL_STATE(377)] = 18749, - [SMALL_STATE(378)] = 18798, - [SMALL_STATE(379)] = 18847, - [SMALL_STATE(380)] = 18896, - [SMALL_STATE(381)] = 18945, - [SMALL_STATE(382)] = 18994, - [SMALL_STATE(383)] = 19043, - [SMALL_STATE(384)] = 19092, - [SMALL_STATE(385)] = 19141, - [SMALL_STATE(386)] = 19190, - [SMALL_STATE(387)] = 19239, - [SMALL_STATE(388)] = 19288, - [SMALL_STATE(389)] = 19337, - [SMALL_STATE(390)] = 19386, - [SMALL_STATE(391)] = 19410, - [SMALL_STATE(392)] = 19436, - [SMALL_STATE(393)] = 19456, - [SMALL_STATE(394)] = 19476, - [SMALL_STATE(395)] = 19492, - [SMALL_STATE(396)] = 19508, - [SMALL_STATE(397)] = 19523, - [SMALL_STATE(398)] = 19538, - [SMALL_STATE(399)] = 19549, - [SMALL_STATE(400)] = 19563, - [SMALL_STATE(401)] = 19577, - [SMALL_STATE(402)] = 19591, - [SMALL_STATE(403)] = 19605, - [SMALL_STATE(404)] = 19616, - [SMALL_STATE(405)] = 19635, - [SMALL_STATE(406)] = 19646, - [SMALL_STATE(407)] = 19663, - [SMALL_STATE(408)] = 19674, - [SMALL_STATE(409)] = 19685, - [SMALL_STATE(410)] = 19698, - [SMALL_STATE(411)] = 19709, - [SMALL_STATE(412)] = 19720, - [SMALL_STATE(413)] = 19731, - [SMALL_STATE(414)] = 19742, - [SMALL_STATE(415)] = 19753, - [SMALL_STATE(416)] = 19772, - [SMALL_STATE(417)] = 19783, - [SMALL_STATE(418)] = 19794, - [SMALL_STATE(419)] = 19805, - [SMALL_STATE(420)] = 19816, - [SMALL_STATE(421)] = 19827, - [SMALL_STATE(422)] = 19838, - [SMALL_STATE(423)] = 19857, - [SMALL_STATE(424)] = 19868, - [SMALL_STATE(425)] = 19879, - [SMALL_STATE(426)] = 19890, - [SMALL_STATE(427)] = 19901, - [SMALL_STATE(428)] = 19912, - [SMALL_STATE(429)] = 19923, - [SMALL_STATE(430)] = 19934, - [SMALL_STATE(431)] = 19945, - [SMALL_STATE(432)] = 19956, - [SMALL_STATE(433)] = 19967, - [SMALL_STATE(434)] = 19978, - [SMALL_STATE(435)] = 19989, - [SMALL_STATE(436)] = 20000, - [SMALL_STATE(437)] = 20011, - [SMALL_STATE(438)] = 20022, - [SMALL_STATE(439)] = 20035, - [SMALL_STATE(440)] = 20054, - [SMALL_STATE(441)] = 20065, - [SMALL_STATE(442)] = 20076, - [SMALL_STATE(443)] = 20087, - [SMALL_STATE(444)] = 20098, - [SMALL_STATE(445)] = 20109, - [SMALL_STATE(446)] = 20128, - [SMALL_STATE(447)] = 20139, - [SMALL_STATE(448)] = 20158, - [SMALL_STATE(449)] = 20169, - [SMALL_STATE(450)] = 20188, - [SMALL_STATE(451)] = 20199, - [SMALL_STATE(452)] = 20210, - [SMALL_STATE(453)] = 20229, - [SMALL_STATE(454)] = 20248, - [SMALL_STATE(455)] = 20267, - [SMALL_STATE(456)] = 20278, - [SMALL_STATE(457)] = 20297, - [SMALL_STATE(458)] = 20308, - [SMALL_STATE(459)] = 20319, - [SMALL_STATE(460)] = 20332, - [SMALL_STATE(461)] = 20343, - [SMALL_STATE(462)] = 20362, - [SMALL_STATE(463)] = 20381, - [SMALL_STATE(464)] = 20400, - [SMALL_STATE(465)] = 20410, - [SMALL_STATE(466)] = 20420, - [SMALL_STATE(467)] = 20428, - [SMALL_STATE(468)] = 20438, - [SMALL_STATE(469)] = 20454, - [SMALL_STATE(470)] = 20464, - [SMALL_STATE(471)] = 20480, - [SMALL_STATE(472)] = 20496, - [SMALL_STATE(473)] = 20512, - [SMALL_STATE(474)] = 20524, - [SMALL_STATE(475)] = 20540, - [SMALL_STATE(476)] = 20556, - [SMALL_STATE(477)] = 20572, - [SMALL_STATE(478)] = 20588, - [SMALL_STATE(479)] = 20604, - [SMALL_STATE(480)] = 20614, - [SMALL_STATE(481)] = 20630, - [SMALL_STATE(482)] = 20640, - [SMALL_STATE(483)] = 20656, - [SMALL_STATE(484)] = 20672, - [SMALL_STATE(485)] = 20682, - [SMALL_STATE(486)] = 20694, - [SMALL_STATE(487)] = 20702, - [SMALL_STATE(488)] = 20718, - [SMALL_STATE(489)] = 20728, - [SMALL_STATE(490)] = 20744, - [SMALL_STATE(491)] = 20754, - [SMALL_STATE(492)] = 20770, - [SMALL_STATE(493)] = 20780, - [SMALL_STATE(494)] = 20788, - [SMALL_STATE(495)] = 20798, - [SMALL_STATE(496)] = 20808, - [SMALL_STATE(497)] = 20818, - [SMALL_STATE(498)] = 20828, - [SMALL_STATE(499)] = 20840, - [SMALL_STATE(500)] = 20850, - [SMALL_STATE(501)] = 20860, - [SMALL_STATE(502)] = 20876, - [SMALL_STATE(503)] = 20886, - [SMALL_STATE(504)] = 20898, - [SMALL_STATE(505)] = 20914, - [SMALL_STATE(506)] = 20926, - [SMALL_STATE(507)] = 20936, - [SMALL_STATE(508)] = 20946, - [SMALL_STATE(509)] = 20962, - [SMALL_STATE(510)] = 20972, - [SMALL_STATE(511)] = 20988, - [SMALL_STATE(512)] = 20998, - [SMALL_STATE(513)] = 21008, - [SMALL_STATE(514)] = 21024, - [SMALL_STATE(515)] = 21034, - [SMALL_STATE(516)] = 21042, - [SMALL_STATE(517)] = 21054, - [SMALL_STATE(518)] = 21066, - [SMALL_STATE(519)] = 21076, - [SMALL_STATE(520)] = 21092, - [SMALL_STATE(521)] = 21108, - [SMALL_STATE(522)] = 21118, - [SMALL_STATE(523)] = 21128, - [SMALL_STATE(524)] = 21138, - [SMALL_STATE(525)] = 21148, - [SMALL_STATE(526)] = 21158, - [SMALL_STATE(527)] = 21168, - [SMALL_STATE(528)] = 21184, - [SMALL_STATE(529)] = 21194, - [SMALL_STATE(530)] = 21204, - [SMALL_STATE(531)] = 21214, - [SMALL_STATE(532)] = 21224, - [SMALL_STATE(533)] = 21234, - [SMALL_STATE(534)] = 21244, - [SMALL_STATE(535)] = 21254, - [SMALL_STATE(536)] = 21264, - [SMALL_STATE(537)] = 21274, - [SMALL_STATE(538)] = 21284, - [SMALL_STATE(539)] = 21294, - [SMALL_STATE(540)] = 21304, - [SMALL_STATE(541)] = 21314, - [SMALL_STATE(542)] = 21324, - [SMALL_STATE(543)] = 21334, - [SMALL_STATE(544)] = 21344, - [SMALL_STATE(545)] = 21354, - [SMALL_STATE(546)] = 21364, - [SMALL_STATE(547)] = 21374, - [SMALL_STATE(548)] = 21384, - [SMALL_STATE(549)] = 21397, - [SMALL_STATE(550)] = 21410, - [SMALL_STATE(551)] = 21423, - [SMALL_STATE(552)] = 21436, - [SMALL_STATE(553)] = 21449, - [SMALL_STATE(554)] = 21462, - [SMALL_STATE(555)] = 21475, - [SMALL_STATE(556)] = 21488, - [SMALL_STATE(557)] = 21501, - [SMALL_STATE(558)] = 21514, - [SMALL_STATE(559)] = 21527, - [SMALL_STATE(560)] = 21540, - [SMALL_STATE(561)] = 21551, - [SMALL_STATE(562)] = 21564, - [SMALL_STATE(563)] = 21577, - [SMALL_STATE(564)] = 21590, - [SMALL_STATE(565)] = 21603, - [SMALL_STATE(566)] = 21616, - [SMALL_STATE(567)] = 21629, - [SMALL_STATE(568)] = 21642, - [SMALL_STATE(569)] = 21655, - [SMALL_STATE(570)] = 21668, - [SMALL_STATE(571)] = 21681, - [SMALL_STATE(572)] = 21694, - [SMALL_STATE(573)] = 21707, - [SMALL_STATE(574)] = 21720, - [SMALL_STATE(575)] = 21733, - [SMALL_STATE(576)] = 21744, - [SMALL_STATE(577)] = 21757, - [SMALL_STATE(578)] = 21770, - [SMALL_STATE(579)] = 21781, - [SMALL_STATE(580)] = 21794, - [SMALL_STATE(581)] = 21807, - [SMALL_STATE(582)] = 21820, - [SMALL_STATE(583)] = 21833, - [SMALL_STATE(584)] = 21846, - [SMALL_STATE(585)] = 21859, - [SMALL_STATE(586)] = 21872, - [SMALL_STATE(587)] = 21885, - [SMALL_STATE(588)] = 21898, - [SMALL_STATE(589)] = 21911, - [SMALL_STATE(590)] = 21924, - [SMALL_STATE(591)] = 21937, - [SMALL_STATE(592)] = 21950, - [SMALL_STATE(593)] = 21963, - [SMALL_STATE(594)] = 21974, - [SMALL_STATE(595)] = 21985, - [SMALL_STATE(596)] = 21998, - [SMALL_STATE(597)] = 22011, - [SMALL_STATE(598)] = 22022, - [SMALL_STATE(599)] = 22035, - [SMALL_STATE(600)] = 22048, - [SMALL_STATE(601)] = 22061, - [SMALL_STATE(602)] = 22074, - [SMALL_STATE(603)] = 22087, - [SMALL_STATE(604)] = 22097, - [SMALL_STATE(605)] = 22107, - [SMALL_STATE(606)] = 22117, - [SMALL_STATE(607)] = 22127, - [SMALL_STATE(608)] = 22137, - [SMALL_STATE(609)] = 22147, - [SMALL_STATE(610)] = 22157, - [SMALL_STATE(611)] = 22167, - [SMALL_STATE(612)] = 22177, - [SMALL_STATE(613)] = 22187, - [SMALL_STATE(614)] = 22197, - [SMALL_STATE(615)] = 22207, - [SMALL_STATE(616)] = 22217, - [SMALL_STATE(617)] = 22227, - [SMALL_STATE(618)] = 22237, - [SMALL_STATE(619)] = 22247, - [SMALL_STATE(620)] = 22257, - [SMALL_STATE(621)] = 22267, - [SMALL_STATE(622)] = 22277, - [SMALL_STATE(623)] = 22287, - [SMALL_STATE(624)] = 22297, - [SMALL_STATE(625)] = 22307, - [SMALL_STATE(626)] = 22317, - [SMALL_STATE(627)] = 22327, - [SMALL_STATE(628)] = 22337, - [SMALL_STATE(629)] = 22347, - [SMALL_STATE(630)] = 22357, - [SMALL_STATE(631)] = 22367, - [SMALL_STATE(632)] = 22377, - [SMALL_STATE(633)] = 22387, - [SMALL_STATE(634)] = 22397, - [SMALL_STATE(635)] = 22407, - [SMALL_STATE(636)] = 22417, - [SMALL_STATE(637)] = 22427, - [SMALL_STATE(638)] = 22437, - [SMALL_STATE(639)] = 22447, - [SMALL_STATE(640)] = 22457, - [SMALL_STATE(641)] = 22467, - [SMALL_STATE(642)] = 22477, - [SMALL_STATE(643)] = 22487, - [SMALL_STATE(644)] = 22497, - [SMALL_STATE(645)] = 22507, - [SMALL_STATE(646)] = 22517, - [SMALL_STATE(647)] = 22527, - [SMALL_STATE(648)] = 22537, - [SMALL_STATE(649)] = 22547, - [SMALL_STATE(650)] = 22557, - [SMALL_STATE(651)] = 22567, - [SMALL_STATE(652)] = 22577, - [SMALL_STATE(653)] = 22587, - [SMALL_STATE(654)] = 22597, - [SMALL_STATE(655)] = 22607, - [SMALL_STATE(656)] = 22617, - [SMALL_STATE(657)] = 22627, - [SMALL_STATE(658)] = 22637, - [SMALL_STATE(659)] = 22647, - [SMALL_STATE(660)] = 22657, - [SMALL_STATE(661)] = 22667, - [SMALL_STATE(662)] = 22677, - [SMALL_STATE(663)] = 22687, - [SMALL_STATE(664)] = 22697, - [SMALL_STATE(665)] = 22707, - [SMALL_STATE(666)] = 22717, - [SMALL_STATE(667)] = 22727, - [SMALL_STATE(668)] = 22737, - [SMALL_STATE(669)] = 22747, - [SMALL_STATE(670)] = 22757, - [SMALL_STATE(671)] = 22767, - [SMALL_STATE(672)] = 22777, - [SMALL_STATE(673)] = 22787, - [SMALL_STATE(674)] = 22797, - [SMALL_STATE(675)] = 22807, - [SMALL_STATE(676)] = 22817, - [SMALL_STATE(677)] = 22827, - [SMALL_STATE(678)] = 22837, - [SMALL_STATE(679)] = 22847, - [SMALL_STATE(680)] = 22857, - [SMALL_STATE(681)] = 22867, - [SMALL_STATE(682)] = 22877, - [SMALL_STATE(683)] = 22887, - [SMALL_STATE(684)] = 22897, - [SMALL_STATE(685)] = 22907, - [SMALL_STATE(686)] = 22917, - [SMALL_STATE(687)] = 22923, - [SMALL_STATE(688)] = 22933, - [SMALL_STATE(689)] = 22943, - [SMALL_STATE(690)] = 22953, - [SMALL_STATE(691)] = 22963, - [SMALL_STATE(692)] = 22973, - [SMALL_STATE(693)] = 22983, - [SMALL_STATE(694)] = 22993, - [SMALL_STATE(695)] = 23003, - [SMALL_STATE(696)] = 23013, - [SMALL_STATE(697)] = 23023, - [SMALL_STATE(698)] = 23033, - [SMALL_STATE(699)] = 23043, - [SMALL_STATE(700)] = 23053, - [SMALL_STATE(701)] = 23063, - [SMALL_STATE(702)] = 23073, - [SMALL_STATE(703)] = 23083, - [SMALL_STATE(704)] = 23093, - [SMALL_STATE(705)] = 23099, - [SMALL_STATE(706)] = 23109, - [SMALL_STATE(707)] = 23119, - [SMALL_STATE(708)] = 23125, - [SMALL_STATE(709)] = 23135, - [SMALL_STATE(710)] = 23145, - [SMALL_STATE(711)] = 23155, - [SMALL_STATE(712)] = 23161, - [SMALL_STATE(713)] = 23171, - [SMALL_STATE(714)] = 23181, - [SMALL_STATE(715)] = 23191, - [SMALL_STATE(716)] = 23201, - [SMALL_STATE(717)] = 23211, - [SMALL_STATE(718)] = 23221, - [SMALL_STATE(719)] = 23231, - [SMALL_STATE(720)] = 23241, - [SMALL_STATE(721)] = 23251, - [SMALL_STATE(722)] = 23261, - [SMALL_STATE(723)] = 23271, - [SMALL_STATE(724)] = 23279, - [SMALL_STATE(725)] = 23289, - [SMALL_STATE(726)] = 23297, - [SMALL_STATE(727)] = 23305, - [SMALL_STATE(728)] = 23315, - [SMALL_STATE(729)] = 23325, - [SMALL_STATE(730)] = 23335, - [SMALL_STATE(731)] = 23345, - [SMALL_STATE(732)] = 23355, - [SMALL_STATE(733)] = 23365, - [SMALL_STATE(734)] = 23375, - [SMALL_STATE(735)] = 23385, - [SMALL_STATE(736)] = 23395, - [SMALL_STATE(737)] = 23405, - [SMALL_STATE(738)] = 23415, - [SMALL_STATE(739)] = 23425, - [SMALL_STATE(740)] = 23435, - [SMALL_STATE(741)] = 23445, - [SMALL_STATE(742)] = 23455, - [SMALL_STATE(743)] = 23465, - [SMALL_STATE(744)] = 23475, - [SMALL_STATE(745)] = 23485, - [SMALL_STATE(746)] = 23495, - [SMALL_STATE(747)] = 23505, - [SMALL_STATE(748)] = 23515, - [SMALL_STATE(749)] = 23525, - [SMALL_STATE(750)] = 23535, - [SMALL_STATE(751)] = 23545, - [SMALL_STATE(752)] = 23555, - [SMALL_STATE(753)] = 23565, - [SMALL_STATE(754)] = 23575, - [SMALL_STATE(755)] = 23585, - [SMALL_STATE(756)] = 23595, - [SMALL_STATE(757)] = 23605, - [SMALL_STATE(758)] = 23615, - [SMALL_STATE(759)] = 23625, - [SMALL_STATE(760)] = 23635, - [SMALL_STATE(761)] = 23645, - [SMALL_STATE(762)] = 23655, - [SMALL_STATE(763)] = 23665, - [SMALL_STATE(764)] = 23675, - [SMALL_STATE(765)] = 23685, - [SMALL_STATE(766)] = 23695, - [SMALL_STATE(767)] = 23705, - [SMALL_STATE(768)] = 23715, - [SMALL_STATE(769)] = 23725, - [SMALL_STATE(770)] = 23735, - [SMALL_STATE(771)] = 23745, - [SMALL_STATE(772)] = 23755, - [SMALL_STATE(773)] = 23765, - [SMALL_STATE(774)] = 23775, - [SMALL_STATE(775)] = 23785, - [SMALL_STATE(776)] = 23795, - [SMALL_STATE(777)] = 23805, - [SMALL_STATE(778)] = 23815, - [SMALL_STATE(779)] = 23825, - [SMALL_STATE(780)] = 23835, - [SMALL_STATE(781)] = 23845, - [SMALL_STATE(782)] = 23855, - [SMALL_STATE(783)] = 23865, - [SMALL_STATE(784)] = 23875, - [SMALL_STATE(785)] = 23885, - [SMALL_STATE(786)] = 23895, - [SMALL_STATE(787)] = 23905, - [SMALL_STATE(788)] = 23915, - [SMALL_STATE(789)] = 23925, - [SMALL_STATE(790)] = 23935, - [SMALL_STATE(791)] = 23945, - [SMALL_STATE(792)] = 23955, - [SMALL_STATE(793)] = 23965, - [SMALL_STATE(794)] = 23975, - [SMALL_STATE(795)] = 23985, - [SMALL_STATE(796)] = 23995, - [SMALL_STATE(797)] = 24005, - [SMALL_STATE(798)] = 24015, - [SMALL_STATE(799)] = 24025, - [SMALL_STATE(800)] = 24035, - [SMALL_STATE(801)] = 24045, - [SMALL_STATE(802)] = 24055, - [SMALL_STATE(803)] = 24065, - [SMALL_STATE(804)] = 24075, - [SMALL_STATE(805)] = 24085, - [SMALL_STATE(806)] = 24095, - [SMALL_STATE(807)] = 24105, - [SMALL_STATE(808)] = 24115, - [SMALL_STATE(809)] = 24125, - [SMALL_STATE(810)] = 24135, - [SMALL_STATE(811)] = 24145, - [SMALL_STATE(812)] = 24155, - [SMALL_STATE(813)] = 24165, - [SMALL_STATE(814)] = 24175, - [SMALL_STATE(815)] = 24185, - [SMALL_STATE(816)] = 24195, - [SMALL_STATE(817)] = 24205, - [SMALL_STATE(818)] = 24215, - [SMALL_STATE(819)] = 24225, - [SMALL_STATE(820)] = 24235, - [SMALL_STATE(821)] = 24245, - [SMALL_STATE(822)] = 24255, - [SMALL_STATE(823)] = 24265, - [SMALL_STATE(824)] = 24275, - [SMALL_STATE(825)] = 24285, - [SMALL_STATE(826)] = 24295, - [SMALL_STATE(827)] = 24305, - [SMALL_STATE(828)] = 24315, - [SMALL_STATE(829)] = 24325, - [SMALL_STATE(830)] = 24335, - [SMALL_STATE(831)] = 24345, - [SMALL_STATE(832)] = 24355, - [SMALL_STATE(833)] = 24365, - [SMALL_STATE(834)] = 24375, - [SMALL_STATE(835)] = 24382, - [SMALL_STATE(836)] = 24389, - [SMALL_STATE(837)] = 24396, - [SMALL_STATE(838)] = 24403, - [SMALL_STATE(839)] = 24410, - [SMALL_STATE(840)] = 24417, - [SMALL_STATE(841)] = 24424, - [SMALL_STATE(842)] = 24431, - [SMALL_STATE(843)] = 24438, - [SMALL_STATE(844)] = 24445, - [SMALL_STATE(845)] = 24452, - [SMALL_STATE(846)] = 24459, - [SMALL_STATE(847)] = 24466, - [SMALL_STATE(848)] = 24473, - [SMALL_STATE(849)] = 24480, - [SMALL_STATE(850)] = 24487, - [SMALL_STATE(851)] = 24494, - [SMALL_STATE(852)] = 24501, - [SMALL_STATE(853)] = 24508, - [SMALL_STATE(854)] = 24515, - [SMALL_STATE(855)] = 24522, - [SMALL_STATE(856)] = 24529, - [SMALL_STATE(857)] = 24536, - [SMALL_STATE(858)] = 24543, - [SMALL_STATE(859)] = 24550, - [SMALL_STATE(860)] = 24557, - [SMALL_STATE(861)] = 24564, - [SMALL_STATE(862)] = 24571, - [SMALL_STATE(863)] = 24578, - [SMALL_STATE(864)] = 24585, - [SMALL_STATE(865)] = 24592, - [SMALL_STATE(866)] = 24599, - [SMALL_STATE(867)] = 24606, - [SMALL_STATE(868)] = 24613, - [SMALL_STATE(869)] = 24620, - [SMALL_STATE(870)] = 24627, - [SMALL_STATE(871)] = 24634, - [SMALL_STATE(872)] = 24641, - [SMALL_STATE(873)] = 24648, - [SMALL_STATE(874)] = 24655, - [SMALL_STATE(875)] = 24662, - [SMALL_STATE(876)] = 24669, - [SMALL_STATE(877)] = 24676, - [SMALL_STATE(878)] = 24683, - [SMALL_STATE(879)] = 24690, - [SMALL_STATE(880)] = 24697, - [SMALL_STATE(881)] = 24704, - [SMALL_STATE(882)] = 24711, - [SMALL_STATE(883)] = 24718, - [SMALL_STATE(884)] = 24725, - [SMALL_STATE(885)] = 24732, - [SMALL_STATE(886)] = 24739, - [SMALL_STATE(887)] = 24746, - [SMALL_STATE(888)] = 24753, - [SMALL_STATE(889)] = 24760, - [SMALL_STATE(890)] = 24767, - [SMALL_STATE(891)] = 24774, - [SMALL_STATE(892)] = 24781, - [SMALL_STATE(893)] = 24788, - [SMALL_STATE(894)] = 24795, - [SMALL_STATE(895)] = 24802, - [SMALL_STATE(896)] = 24809, - [SMALL_STATE(897)] = 24816, - [SMALL_STATE(898)] = 24823, - [SMALL_STATE(899)] = 24830, - [SMALL_STATE(900)] = 24837, - [SMALL_STATE(901)] = 24844, - [SMALL_STATE(902)] = 24851, - [SMALL_STATE(903)] = 24858, - [SMALL_STATE(904)] = 24865, - [SMALL_STATE(905)] = 24872, - [SMALL_STATE(906)] = 24879, - [SMALL_STATE(907)] = 24886, - [SMALL_STATE(908)] = 24893, - [SMALL_STATE(909)] = 24900, - [SMALL_STATE(910)] = 24907, - [SMALL_STATE(911)] = 24914, - [SMALL_STATE(912)] = 24921, - [SMALL_STATE(913)] = 24928, - [SMALL_STATE(914)] = 24935, - [SMALL_STATE(915)] = 24942, - [SMALL_STATE(916)] = 24949, - [SMALL_STATE(917)] = 24956, - [SMALL_STATE(918)] = 24963, - [SMALL_STATE(919)] = 24970, - [SMALL_STATE(920)] = 24977, - [SMALL_STATE(921)] = 24984, - [SMALL_STATE(922)] = 24991, - [SMALL_STATE(923)] = 24998, - [SMALL_STATE(924)] = 25005, - [SMALL_STATE(925)] = 25012, - [SMALL_STATE(926)] = 25019, - [SMALL_STATE(927)] = 25026, - [SMALL_STATE(928)] = 25033, - [SMALL_STATE(929)] = 25040, - [SMALL_STATE(930)] = 25047, - [SMALL_STATE(931)] = 25054, - [SMALL_STATE(932)] = 25061, - [SMALL_STATE(933)] = 25068, - [SMALL_STATE(934)] = 25075, - [SMALL_STATE(935)] = 25082, - [SMALL_STATE(936)] = 25089, - [SMALL_STATE(937)] = 25096, - [SMALL_STATE(938)] = 25103, - [SMALL_STATE(939)] = 25110, - [SMALL_STATE(940)] = 25117, - [SMALL_STATE(941)] = 25124, - [SMALL_STATE(942)] = 25131, - [SMALL_STATE(943)] = 25138, - [SMALL_STATE(944)] = 25145, - [SMALL_STATE(945)] = 25152, - [SMALL_STATE(946)] = 25159, - [SMALL_STATE(947)] = 25166, - [SMALL_STATE(948)] = 25173, - [SMALL_STATE(949)] = 25180, - [SMALL_STATE(950)] = 25187, - [SMALL_STATE(951)] = 25194, - [SMALL_STATE(952)] = 25201, - [SMALL_STATE(953)] = 25208, - [SMALL_STATE(954)] = 25215, - [SMALL_STATE(955)] = 25222, - [SMALL_STATE(956)] = 25229, - [SMALL_STATE(957)] = 25236, - [SMALL_STATE(958)] = 25243, - [SMALL_STATE(959)] = 25250, - [SMALL_STATE(960)] = 25257, - [SMALL_STATE(961)] = 25264, - [SMALL_STATE(962)] = 25271, - [SMALL_STATE(963)] = 25278, - [SMALL_STATE(964)] = 25285, - [SMALL_STATE(965)] = 25292, - [SMALL_STATE(966)] = 25299, - [SMALL_STATE(967)] = 25306, - [SMALL_STATE(968)] = 25313, - [SMALL_STATE(969)] = 25320, - [SMALL_STATE(970)] = 25327, - [SMALL_STATE(971)] = 25334, - [SMALL_STATE(972)] = 25341, - [SMALL_STATE(973)] = 25348, - [SMALL_STATE(974)] = 25355, - [SMALL_STATE(975)] = 25362, - [SMALL_STATE(976)] = 25369, - [SMALL_STATE(977)] = 25376, - [SMALL_STATE(978)] = 25383, - [SMALL_STATE(979)] = 25390, - [SMALL_STATE(980)] = 25397, - [SMALL_STATE(981)] = 25404, - [SMALL_STATE(982)] = 25411, - [SMALL_STATE(983)] = 25418, - [SMALL_STATE(984)] = 25423, - [SMALL_STATE(985)] = 25430, - [SMALL_STATE(986)] = 25435, - [SMALL_STATE(987)] = 25442, - [SMALL_STATE(988)] = 25449, - [SMALL_STATE(989)] = 25456, - [SMALL_STATE(990)] = 25463, - [SMALL_STATE(991)] = 25470, - [SMALL_STATE(992)] = 25477, - [SMALL_STATE(993)] = 25484, - [SMALL_STATE(994)] = 25491, - [SMALL_STATE(995)] = 25498, - [SMALL_STATE(996)] = 25505, - [SMALL_STATE(997)] = 25512, - [SMALL_STATE(998)] = 25519, - [SMALL_STATE(999)] = 25523, - [SMALL_STATE(1000)] = 25527, - [SMALL_STATE(1001)] = 25531, - [SMALL_STATE(1002)] = 25535, - [SMALL_STATE(1003)] = 25539, - [SMALL_STATE(1004)] = 25543, - [SMALL_STATE(1005)] = 25547, - [SMALL_STATE(1006)] = 25551, + [SMALL_STATE(3)] = 29, + [SMALL_STATE(4)] = 58, + [SMALL_STATE(5)] = 87, + [SMALL_STATE(6)] = 125, + [SMALL_STATE(7)] = 163, + [SMALL_STATE(8)] = 201, + [SMALL_STATE(9)] = 229, + [SMALL_STATE(10)] = 267, + [SMALL_STATE(11)] = 305, + [SMALL_STATE(12)] = 343, + [SMALL_STATE(13)] = 381, + [SMALL_STATE(14)] = 419, + [SMALL_STATE(15)] = 457, + [SMALL_STATE(16)] = 495, + [SMALL_STATE(17)] = 533, + [SMALL_STATE(18)] = 571, + [SMALL_STATE(19)] = 609, + [SMALL_STATE(20)] = 647, + [SMALL_STATE(21)] = 685, + [SMALL_STATE(22)] = 723, + [SMALL_STATE(23)] = 761, + [SMALL_STATE(24)] = 799, + [SMALL_STATE(25)] = 837, + [SMALL_STATE(26)] = 875, + [SMALL_STATE(27)] = 913, + [SMALL_STATE(28)] = 951, + [SMALL_STATE(29)] = 979, + [SMALL_STATE(30)] = 1017, + [SMALL_STATE(31)] = 1055, + [SMALL_STATE(32)] = 1093, + [SMALL_STATE(33)] = 1131, + [SMALL_STATE(34)] = 1169, + [SMALL_STATE(35)] = 1207, + [SMALL_STATE(36)] = 1245, + [SMALL_STATE(37)] = 1283, + [SMALL_STATE(38)] = 1321, + [SMALL_STATE(39)] = 1359, + [SMALL_STATE(40)] = 1383, + [SMALL_STATE(41)] = 1421, + [SMALL_STATE(42)] = 1457, + [SMALL_STATE(43)] = 1495, + [SMALL_STATE(44)] = 1533, + [SMALL_STATE(45)] = 1569, + [SMALL_STATE(46)] = 1605, + [SMALL_STATE(47)] = 1643, + [SMALL_STATE(48)] = 1681, + [SMALL_STATE(49)] = 1719, + [SMALL_STATE(50)] = 1755, + [SMALL_STATE(51)] = 1793, + [SMALL_STATE(52)] = 1831, + [SMALL_STATE(53)] = 1869, + [SMALL_STATE(54)] = 1893, + [SMALL_STATE(55)] = 1931, + [SMALL_STATE(56)] = 1957, + [SMALL_STATE(57)] = 1995, + [SMALL_STATE(58)] = 2033, + [SMALL_STATE(59)] = 2071, + [SMALL_STATE(60)] = 2109, + [SMALL_STATE(61)] = 2147, + [SMALL_STATE(62)] = 2185, + [SMALL_STATE(63)] = 2223, + [SMALL_STATE(64)] = 2259, + [SMALL_STATE(65)] = 2287, + [SMALL_STATE(66)] = 2325, + [SMALL_STATE(67)] = 2363, + [SMALL_STATE(68)] = 2401, + [SMALL_STATE(69)] = 2439, + [SMALL_STATE(70)] = 2475, + [SMALL_STATE(71)] = 2513, + [SMALL_STATE(72)] = 2549, + [SMALL_STATE(73)] = 2587, + [SMALL_STATE(74)] = 2625, + [SMALL_STATE(75)] = 2661, + [SMALL_STATE(76)] = 2699, + [SMALL_STATE(77)] = 2722, + [SMALL_STATE(78)] = 2749, + [SMALL_STATE(79)] = 2772, + [SMALL_STATE(80)] = 2799, + [SMALL_STATE(81)] = 2826, + [SMALL_STATE(82)] = 2853, + [SMALL_STATE(83)] = 2876, + [SMALL_STATE(84)] = 2899, + [SMALL_STATE(85)] = 2929, + [SMALL_STATE(86)] = 2959, + [SMALL_STATE(87)] = 2989, + [SMALL_STATE(88)] = 3019, + [SMALL_STATE(89)] = 3049, + [SMALL_STATE(90)] = 3079, + [SMALL_STATE(91)] = 3109, + [SMALL_STATE(92)] = 3139, + [SMALL_STATE(93)] = 3169, + [SMALL_STATE(94)] = 3199, + [SMALL_STATE(95)] = 3226, + [SMALL_STATE(96)] = 3253, + [SMALL_STATE(97)] = 3280, + [SMALL_STATE(98)] = 3307, + [SMALL_STATE(99)] = 3334, + [SMALL_STATE(100)] = 3361, + [SMALL_STATE(101)] = 3388, + [SMALL_STATE(102)] = 3415, + [SMALL_STATE(103)] = 3442, + [SMALL_STATE(104)] = 3469, + [SMALL_STATE(105)] = 3496, + [SMALL_STATE(106)] = 3521, + [SMALL_STATE(107)] = 3548, + [SMALL_STATE(108)] = 3575, + [SMALL_STATE(109)] = 3602, + [SMALL_STATE(110)] = 3629, + [SMALL_STATE(111)] = 3656, + [SMALL_STATE(112)] = 3683, + [SMALL_STATE(113)] = 3710, + [SMALL_STATE(114)] = 3737, + [SMALL_STATE(115)] = 3764, + [SMALL_STATE(116)] = 3791, + [SMALL_STATE(117)] = 3818, + [SMALL_STATE(118)] = 3845, + [SMALL_STATE(119)] = 3872, + [SMALL_STATE(120)] = 3899, + [SMALL_STATE(121)] = 3926, + [SMALL_STATE(122)] = 3953, + [SMALL_STATE(123)] = 3980, + [SMALL_STATE(124)] = 4007, + [SMALL_STATE(125)] = 4034, + [SMALL_STATE(126)] = 4061, + [SMALL_STATE(127)] = 4088, + [SMALL_STATE(128)] = 4115, + [SMALL_STATE(129)] = 4142, + [SMALL_STATE(130)] = 4169, + [SMALL_STATE(131)] = 4196, + [SMALL_STATE(132)] = 4223, + [SMALL_STATE(133)] = 4250, + [SMALL_STATE(134)] = 4277, + [SMALL_STATE(135)] = 4304, + [SMALL_STATE(136)] = 4331, + [SMALL_STATE(137)] = 4358, + [SMALL_STATE(138)] = 4385, + [SMALL_STATE(139)] = 4406, + [SMALL_STATE(140)] = 4433, + [SMALL_STATE(141)] = 4460, + [SMALL_STATE(142)] = 4487, + [SMALL_STATE(143)] = 4514, + [SMALL_STATE(144)] = 4541, + [SMALL_STATE(145)] = 4568, + [SMALL_STATE(146)] = 4595, + [SMALL_STATE(147)] = 4622, + [SMALL_STATE(148)] = 4649, + [SMALL_STATE(149)] = 4676, + [SMALL_STATE(150)] = 4703, + [SMALL_STATE(151)] = 4730, + [SMALL_STATE(152)] = 4757, + [SMALL_STATE(153)] = 4784, + [SMALL_STATE(154)] = 4811, + [SMALL_STATE(155)] = 4838, + [SMALL_STATE(156)] = 4865, + [SMALL_STATE(157)] = 4892, + [SMALL_STATE(158)] = 4919, + [SMALL_STATE(159)] = 4946, + [SMALL_STATE(160)] = 4973, + [SMALL_STATE(161)] = 5000, + [SMALL_STATE(162)] = 5027, + [SMALL_STATE(163)] = 5054, + [SMALL_STATE(164)] = 5081, + [SMALL_STATE(165)] = 5108, + [SMALL_STATE(166)] = 5135, + [SMALL_STATE(167)] = 5162, + [SMALL_STATE(168)] = 5189, + [SMALL_STATE(169)] = 5216, + [SMALL_STATE(170)] = 5243, + [SMALL_STATE(171)] = 5270, + [SMALL_STATE(172)] = 5297, + [SMALL_STATE(173)] = 5324, + [SMALL_STATE(174)] = 5351, + [SMALL_STATE(175)] = 5378, + [SMALL_STATE(176)] = 5405, + [SMALL_STATE(177)] = 5432, + [SMALL_STATE(178)] = 5459, + [SMALL_STATE(179)] = 5486, + [SMALL_STATE(180)] = 5513, + [SMALL_STATE(181)] = 5540, + [SMALL_STATE(182)] = 5567, + [SMALL_STATE(183)] = 5594, + [SMALL_STATE(184)] = 5621, + [SMALL_STATE(185)] = 5648, + [SMALL_STATE(186)] = 5675, + [SMALL_STATE(187)] = 5702, + [SMALL_STATE(188)] = 5729, + [SMALL_STATE(189)] = 5756, + [SMALL_STATE(190)] = 5783, + [SMALL_STATE(191)] = 5810, + [SMALL_STATE(192)] = 5856, + [SMALL_STATE(193)] = 5902, + [SMALL_STATE(194)] = 5948, + [SMALL_STATE(195)] = 5994, + [SMALL_STATE(196)] = 6040, + [SMALL_STATE(197)] = 6086, + [SMALL_STATE(198)] = 6129, + [SMALL_STATE(199)] = 6172, + [SMALL_STATE(200)] = 6215, + [SMALL_STATE(201)] = 6234, + [SMALL_STATE(202)] = 6277, + [SMALL_STATE(203)] = 6320, + [SMALL_STATE(204)] = 6363, + [SMALL_STATE(205)] = 6403, + [SMALL_STATE(206)] = 6443, + [SMALL_STATE(207)] = 6483, + [SMALL_STATE(208)] = 6523, + [SMALL_STATE(209)] = 6563, + [SMALL_STATE(210)] = 6603, + [SMALL_STATE(211)] = 6643, + [SMALL_STATE(212)] = 6683, + [SMALL_STATE(213)] = 6723, + [SMALL_STATE(214)] = 6763, + [SMALL_STATE(215)] = 6803, + [SMALL_STATE(216)] = 6843, + [SMALL_STATE(217)] = 6883, + [SMALL_STATE(218)] = 6923, + [SMALL_STATE(219)] = 6963, + [SMALL_STATE(220)] = 7003, + [SMALL_STATE(221)] = 7043, + [SMALL_STATE(222)] = 7083, + [SMALL_STATE(223)] = 7123, + [SMALL_STATE(224)] = 7163, + [SMALL_STATE(225)] = 7203, + [SMALL_STATE(226)] = 7243, + [SMALL_STATE(227)] = 7283, + [SMALL_STATE(228)] = 7323, + [SMALL_STATE(229)] = 7363, + [SMALL_STATE(230)] = 7403, + [SMALL_STATE(231)] = 7443, + [SMALL_STATE(232)] = 7483, + [SMALL_STATE(233)] = 7523, + [SMALL_STATE(234)] = 7563, + [SMALL_STATE(235)] = 7603, + [SMALL_STATE(236)] = 7643, + [SMALL_STATE(237)] = 7683, + [SMALL_STATE(238)] = 7723, + [SMALL_STATE(239)] = 7763, + [SMALL_STATE(240)] = 7803, + [SMALL_STATE(241)] = 7843, + [SMALL_STATE(242)] = 7883, + [SMALL_STATE(243)] = 7923, + [SMALL_STATE(244)] = 7963, + [SMALL_STATE(245)] = 8003, + [SMALL_STATE(246)] = 8043, + [SMALL_STATE(247)] = 8083, + [SMALL_STATE(248)] = 8123, + [SMALL_STATE(249)] = 8163, + [SMALL_STATE(250)] = 8203, + [SMALL_STATE(251)] = 8243, + [SMALL_STATE(252)] = 8283, + [SMALL_STATE(253)] = 8323, + [SMALL_STATE(254)] = 8363, + [SMALL_STATE(255)] = 8403, + [SMALL_STATE(256)] = 8443, + [SMALL_STATE(257)] = 8483, + [SMALL_STATE(258)] = 8523, + [SMALL_STATE(259)] = 8563, + [SMALL_STATE(260)] = 8603, + [SMALL_STATE(261)] = 8643, + [SMALL_STATE(262)] = 8683, + [SMALL_STATE(263)] = 8723, + [SMALL_STATE(264)] = 8763, + [SMALL_STATE(265)] = 8803, + [SMALL_STATE(266)] = 8843, + [SMALL_STATE(267)] = 8883, + [SMALL_STATE(268)] = 8923, + [SMALL_STATE(269)] = 8963, + [SMALL_STATE(270)] = 9003, + [SMALL_STATE(271)] = 9040, + [SMALL_STATE(272)] = 9077, + [SMALL_STATE(273)] = 9096, + [SMALL_STATE(274)] = 9115, + [SMALL_STATE(275)] = 9134, + [SMALL_STATE(276)] = 9153, + [SMALL_STATE(277)] = 9172, + [SMALL_STATE(278)] = 9191, + [SMALL_STATE(279)] = 9201, + [SMALL_STATE(280)] = 9211, + [SMALL_STATE(281)] = 9227, + [SMALL_STATE(282)] = 9243, + [SMALL_STATE(283)] = 9259, + [SMALL_STATE(284)] = 9275, + [SMALL_STATE(285)] = 9291, + [SMALL_STATE(286)] = 9301, + [SMALL_STATE(287)] = 9317, + [SMALL_STATE(288)] = 9327, + [SMALL_STATE(289)] = 9337, + [SMALL_STATE(290)] = 9351, + [SMALL_STATE(291)] = 9367, + [SMALL_STATE(292)] = 9383, + [SMALL_STATE(293)] = 9399, + [SMALL_STATE(294)] = 9415, + [SMALL_STATE(295)] = 9425, + [SMALL_STATE(296)] = 9435, + [SMALL_STATE(297)] = 9451, + [SMALL_STATE(298)] = 9467, + [SMALL_STATE(299)] = 9477, + [SMALL_STATE(300)] = 9487, + [SMALL_STATE(301)] = 9497, + [SMALL_STATE(302)] = 9507, + [SMALL_STATE(303)] = 9517, + [SMALL_STATE(304)] = 9527, + [SMALL_STATE(305)] = 9537, + [SMALL_STATE(306)] = 9547, + [SMALL_STATE(307)] = 9557, + [SMALL_STATE(308)] = 9567, + [SMALL_STATE(309)] = 9577, + [SMALL_STATE(310)] = 9587, + [SMALL_STATE(311)] = 9597, + [SMALL_STATE(312)] = 9607, + [SMALL_STATE(313)] = 9617, + [SMALL_STATE(314)] = 9627, + [SMALL_STATE(315)] = 9637, + [SMALL_STATE(316)] = 9647, + [SMALL_STATE(317)] = 9657, + [SMALL_STATE(318)] = 9667, + [SMALL_STATE(319)] = 9677, + [SMALL_STATE(320)] = 9687, + [SMALL_STATE(321)] = 9697, + [SMALL_STATE(322)] = 9710, + [SMALL_STATE(323)] = 9719, + [SMALL_STATE(324)] = 9728, + [SMALL_STATE(325)] = 9737, + [SMALL_STATE(326)] = 9746, + [SMALL_STATE(327)] = 9757, + [SMALL_STATE(328)] = 9766, + [SMALL_STATE(329)] = 9779, + [SMALL_STATE(330)] = 9792, + [SMALL_STATE(331)] = 9801, + [SMALL_STATE(332)] = 9814, + [SMALL_STATE(333)] = 9823, + [SMALL_STATE(334)] = 9832, + [SMALL_STATE(335)] = 9841, + [SMALL_STATE(336)] = 9850, + [SMALL_STATE(337)] = 9859, + [SMALL_STATE(338)] = 9868, + [SMALL_STATE(339)] = 9877, + [SMALL_STATE(340)] = 9888, + [SMALL_STATE(341)] = 9897, + [SMALL_STATE(342)] = 9908, + [SMALL_STATE(343)] = 9921, + [SMALL_STATE(344)] = 9930, + [SMALL_STATE(345)] = 9943, + [SMALL_STATE(346)] = 9956, + [SMALL_STATE(347)] = 9965, + [SMALL_STATE(348)] = 9974, + [SMALL_STATE(349)] = 9983, + [SMALL_STATE(350)] = 9992, + [SMALL_STATE(351)] = 10005, + [SMALL_STATE(352)] = 10014, + [SMALL_STATE(353)] = 10023, + [SMALL_STATE(354)] = 10032, + [SMALL_STATE(355)] = 10041, + [SMALL_STATE(356)] = 10050, + [SMALL_STATE(357)] = 10059, + [SMALL_STATE(358)] = 10072, + [SMALL_STATE(359)] = 10085, + [SMALL_STATE(360)] = 10094, + [SMALL_STATE(361)] = 10107, + [SMALL_STATE(362)] = 10120, + [SMALL_STATE(363)] = 10129, + [SMALL_STATE(364)] = 10142, + [SMALL_STATE(365)] = 10151, + [SMALL_STATE(366)] = 10160, + [SMALL_STATE(367)] = 10169, + [SMALL_STATE(368)] = 10178, + [SMALL_STATE(369)] = 10187, + [SMALL_STATE(370)] = 10196, + [SMALL_STATE(371)] = 10205, + [SMALL_STATE(372)] = 10214, + [SMALL_STATE(373)] = 10224, + [SMALL_STATE(374)] = 10234, + [SMALL_STATE(375)] = 10244, + [SMALL_STATE(376)] = 10254, + [SMALL_STATE(377)] = 10260, + [SMALL_STATE(378)] = 10270, + [SMALL_STATE(379)] = 10280, + [SMALL_STATE(380)] = 10290, + [SMALL_STATE(381)] = 10300, + [SMALL_STATE(382)] = 10310, + [SMALL_STATE(383)] = 10320, + [SMALL_STATE(384)] = 10330, + [SMALL_STATE(385)] = 10340, + [SMALL_STATE(386)] = 10350, + [SMALL_STATE(387)] = 10360, + [SMALL_STATE(388)] = 10370, + [SMALL_STATE(389)] = 10380, + [SMALL_STATE(390)] = 10386, + [SMALL_STATE(391)] = 10396, + [SMALL_STATE(392)] = 10406, + [SMALL_STATE(393)] = 10416, + [SMALL_STATE(394)] = 10426, + [SMALL_STATE(395)] = 10436, + [SMALL_STATE(396)] = 10446, + [SMALL_STATE(397)] = 10456, + [SMALL_STATE(398)] = 10466, + [SMALL_STATE(399)] = 10476, + [SMALL_STATE(400)] = 10486, + [SMALL_STATE(401)] = 10496, + [SMALL_STATE(402)] = 10506, + [SMALL_STATE(403)] = 10516, + [SMALL_STATE(404)] = 10526, + [SMALL_STATE(405)] = 10536, + [SMALL_STATE(406)] = 10546, + [SMALL_STATE(407)] = 10556, + [SMALL_STATE(408)] = 10566, + [SMALL_STATE(409)] = 10576, + [SMALL_STATE(410)] = 10586, + [SMALL_STATE(411)] = 10596, + [SMALL_STATE(412)] = 10606, + [SMALL_STATE(413)] = 10616, + [SMALL_STATE(414)] = 10622, + [SMALL_STATE(415)] = 10632, + [SMALL_STATE(416)] = 10639, + [SMALL_STATE(417)] = 10646, + [SMALL_STATE(418)] = 10653, + [SMALL_STATE(419)] = 10658, + [SMALL_STATE(420)] = 10665, + [SMALL_STATE(421)] = 10672, + [SMALL_STATE(422)] = 10679, + [SMALL_STATE(423)] = 10686, + [SMALL_STATE(424)] = 10693, + [SMALL_STATE(425)] = 10700, + [SMALL_STATE(426)] = 10707, + [SMALL_STATE(427)] = 10714, + [SMALL_STATE(428)] = 10721, + [SMALL_STATE(429)] = 10728, + [SMALL_STATE(430)] = 10733, + [SMALL_STATE(431)] = 10740, + [SMALL_STATE(432)] = 10747, + [SMALL_STATE(433)] = 10754, + [SMALL_STATE(434)] = 10761, + [SMALL_STATE(435)] = 10766, + [SMALL_STATE(436)] = 10771, + [SMALL_STATE(437)] = 10778, + [SMALL_STATE(438)] = 10785, + [SMALL_STATE(439)] = 10792, + [SMALL_STATE(440)] = 10797, + [SMALL_STATE(441)] = 10804, + [SMALL_STATE(442)] = 10811, + [SMALL_STATE(443)] = 10818, + [SMALL_STATE(444)] = 10823, + [SMALL_STATE(445)] = 10830, + [SMALL_STATE(446)] = 10837, + [SMALL_STATE(447)] = 10841, + [SMALL_STATE(448)] = 10845, + [SMALL_STATE(449)] = 10849, + [SMALL_STATE(450)] = 10853, + [SMALL_STATE(451)] = 10857, + [SMALL_STATE(452)] = 10861, + [SMALL_STATE(453)] = 10865, + [SMALL_STATE(454)] = 10869, + [SMALL_STATE(455)] = 10873, + [SMALL_STATE(456)] = 10877, + [SMALL_STATE(457)] = 10881, + [SMALL_STATE(458)] = 10885, + [SMALL_STATE(459)] = 10889, + [SMALL_STATE(460)] = 10893, + [SMALL_STATE(461)] = 10897, + [SMALL_STATE(462)] = 10901, + [SMALL_STATE(463)] = 10905, + [SMALL_STATE(464)] = 10909, + [SMALL_STATE(465)] = 10913, + [SMALL_STATE(466)] = 10917, + [SMALL_STATE(467)] = 10921, + [SMALL_STATE(468)] = 10925, + [SMALL_STATE(469)] = 10929, + [SMALL_STATE(470)] = 10933, + [SMALL_STATE(471)] = 10937, + [SMALL_STATE(472)] = 10941, + [SMALL_STATE(473)] = 10945, + [SMALL_STATE(474)] = 10949, + [SMALL_STATE(475)] = 10953, + [SMALL_STATE(476)] = 10957, + [SMALL_STATE(477)] = 10961, + [SMALL_STATE(478)] = 10965, + [SMALL_STATE(479)] = 10969, + [SMALL_STATE(480)] = 10973, + [SMALL_STATE(481)] = 10977, + [SMALL_STATE(482)] = 10981, + [SMALL_STATE(483)] = 10985, + [SMALL_STATE(484)] = 10989, + [SMALL_STATE(485)] = 10993, + [SMALL_STATE(486)] = 10997, + [SMALL_STATE(487)] = 11001, + [SMALL_STATE(488)] = 11005, + [SMALL_STATE(489)] = 11009, + [SMALL_STATE(490)] = 11013, + [SMALL_STATE(491)] = 11017, + [SMALL_STATE(492)] = 11021, + [SMALL_STATE(493)] = 11025, + [SMALL_STATE(494)] = 11029, + [SMALL_STATE(495)] = 11033, + [SMALL_STATE(496)] = 11037, + [SMALL_STATE(497)] = 11041, + [SMALL_STATE(498)] = 11045, + [SMALL_STATE(499)] = 11049, + [SMALL_STATE(500)] = 11053, + [SMALL_STATE(501)] = 11057, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(686), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(686), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(704), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(704), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(707), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(707), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(498), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(711), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(713), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(714), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(391), - [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 2), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 2), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ws, 2), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ws, 2), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ws, 2), SHIFT_REPEAT(118), - [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(137), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(415), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(975), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(463), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template, 1), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), SHIFT_REPEAT(942), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(205), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(445), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(942), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(454), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ws, 2), SHIFT_REPEAT(300), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ws, 2), SHIFT_REPEAT(333), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ws, 2), SHIFT_REPEAT(390), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 1), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_argument, 1), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_name_repeat1, 2), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_name_repeat1, 2), SHIFT_REPEAT(394), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__word, 2), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__word, 2), SHIFT_REPEAT(398), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_name, 1), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_name_repeat2, 2), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__word, 1), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_name_repeat2, 2), SHIFT_REPEAT(990), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 3), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_argument, 2), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_statement, 6, .production_id = 2), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_statement, 6, .production_id = 2), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 13, .production_id = 13), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 13, .production_id = 13), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 13), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 13), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 10, .production_id = 6), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 10, .production_id = 6), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2), SHIFT_REPEAT(576), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 1), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 13, .production_id = 13), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 13, .production_id = 13), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 5), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 5), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 12, .production_id = 12), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 12, .production_id = 12), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 12, .production_id = 11), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 12, .production_id = 11), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_comment, 4), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_comment, 4), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 5), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 5), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 12, .production_id = 10), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 12, .production_id = 10), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 6), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 6), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 13, .production_id = 14), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 13, .production_id = 14), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 13, .production_id = 13), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 13, .production_id = 13), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 14, .production_id = 15), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 14, .production_id = 15), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 14, .production_id = 15), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 14, .production_id = 15), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 15), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 15), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_statement, 5, .production_id = 2), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_statement, 5, .production_id = 2), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 14, .production_id = 15), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 14, .production_id = 15), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 14, .production_id = 16), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 14, .production_id = 16), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 6), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 6), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 10), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 10), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 5), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 5), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 15, .production_id = 17), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 15, .production_id = 17), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_detatched_end_statement, 6, .production_id = 3), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_detatched_end_statement, 6, .production_id = 3), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 9, .production_id = 5), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 9, .production_id = 5), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 17), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 17), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 15, .production_id = 17), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 15, .production_id = 17), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 16, .production_id = 18), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 16, .production_id = 18), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 2), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 10, .production_id = 7), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 10, .production_id = 7), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_detatched_end_statement, 7, .production_id = 3), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_detatched_end_statement, 7, .production_id = 3), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 4), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 4), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 12, .production_id = 10), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 12, .production_id = 10), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 11, .production_id = 8), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 11, .production_id = 8), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 11, .production_id = 8), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 11, .production_id = 8), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 11, .production_id = 9), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 11, .production_id = 9), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 11, .production_id = 8), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 11, .production_id = 8), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_comment, 3), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_comment, 3), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 8), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 8), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_comment, 2), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_comment, 2), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 12, .production_id = 10), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 12, .production_id = 10), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 5), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 5), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_filter_argument, 3, .production_id = 4), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_statement, 4), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_statement, 4), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 4), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 4), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ws, 2), SHIFT_REPEAT(473), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 4), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 4), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 6), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 6), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_statement, 6), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_statement, 6), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_filter_argument, 2), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 5), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 5), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_number_repeat1, 2), SHIFT_REPEAT(505), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_number_repeat1, 2), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_statement, 5), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_statement, 5), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 3), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ws, 2), SHIFT_REPEAT(575), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ws, 2), SHIFT_REPEAT(578), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unpaired_comment_repeat2, 1, .production_id = 1), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unpaired_comment_repeat2, 2, .production_id = 1), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unpaired_comment_repeat1, 2), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat1, 2), SHIFT_REPEAT(597), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unpaired_comment_repeat2, 2), SHIFT_REPEAT(447), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unpaired_comment_repeat2, 2), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_operator, 1), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(985), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(983), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(923), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat1, 2), SHIFT_REPEAT(724), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paired_comment_repeat1, 1, .production_id = 1), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paired_comment_repeat1, 2, .production_id = 1), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_comment_repeat1, 2), SHIFT_REPEAT(882), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2136] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [13] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filter_argument_repeat1, 2), + [15] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_filter_argument_repeat1, 2), + [17] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filter_argument_repeat1, 2), SHIFT_REPEAT(457), + [20] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_argument, 2), + [22] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_argument, 2), + [24] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [26] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_argument, 1), + [28] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_argument, 1), + [30] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [32] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [34] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [36] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [38] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [40] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [42] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [44] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [46] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [48] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), + [50] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1), + [52] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [54] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [56] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [58] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [60] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [62] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [64] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [66] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [68] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [70] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [72] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [74] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [76] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [78] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [80] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [84] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [90] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 2), + [92] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 2), + [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_name, 1), + [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_name, 1), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 1), + [156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 1), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2), + [176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat3, 2), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2), SHIFT_REPEAT(408), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(105), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(138), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(138), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(411), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(403), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paired_statement_repeat1, 2), SHIFT_REPEAT(8), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paired_statement_repeat1, 2), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 3), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 3), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), + [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), + [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_filter_argument, 3, .production_id = 6), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_filter_argument, 3, .production_id = 6), + [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_filter_argument, 2), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_filter_argument, 2), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(424), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(270), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(272), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(86), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template, 1), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), SHIFT_REPEAT(271), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 1), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 1), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(430), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(271), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(277), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2), SHIFT_REPEAT(186), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 2), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 2), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 6, .production_id = 4), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 6, .production_id = 4), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 5), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 5), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_comment, 3), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_comment, 3), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_statement, 4, .production_id = 2), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_statement, 4, .production_id = 2), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 3), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 3), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_comment, 4), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_comment, 4), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 7, .production_id = 5), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 7, .production_id = 5), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 5), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 5), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_statement, 3, .production_id = 2), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_statement, 3, .production_id = 2), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 6, .production_id = 3), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 6, .production_id = 3), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 7, .production_id = 5), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 7, .production_id = 5), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 8, .production_id = 9), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 8, .production_id = 9), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 9), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 9), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 3), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 3), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 12), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 12), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 9), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 9), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 12), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 12), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 9, .production_id = 12), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 9, .production_id = 12), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 8, .production_id = 11), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 8, .production_id = 11), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter_statement, 9, .production_id = 12), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter_statement, 9, .production_id = 12), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_statement, 8, .production_id = 9), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_statement, 8, .production_id = 9), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 8, .production_id = 10), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 8, .production_id = 10), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 7, .production_id = 7), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 7, .production_id = 7), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 11, .production_id = 15), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 11, .production_id = 15), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 14), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 14), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 7, .production_id = 8), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 7, .production_id = 8), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 14), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 14), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unpaired_comment, 2), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unpaired_comment, 2), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_comment, 9, .production_id = 13), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_comment, 9, .production_id = 13), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 4), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 4), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat2, 1, .production_id = 1), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 3), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 3), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat2, 2, .production_id = 1), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat1, 2), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat1, 2), SHIFT_REPEAT(341), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_statement, 3), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_statement, 3), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unpaired_comment_repeat2, 2), SHIFT_REPEAT(274), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unpaired_comment_repeat2, 2), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 3), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 3), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_statement, 4), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_statement, 4), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paired_comment_repeat1, 1, .production_id = 1), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(416), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(436), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paired_comment_repeat1, 2), SHIFT_REPEAT(484), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paired_comment_repeat1, 2, .production_id = 1), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(487), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unpaired_comment_repeat1, 2), SHIFT_REPEAT(412), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1147] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), }; #ifdef __cplusplus @@ -25217,6 +12509,8 @@ extern const TSLanguage *tree_sitter_htmldjango(void) { .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = ts_lex_modes, .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym__identifier, .primary_state_ids = ts_primary_state_ids, }; return &language; diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac1..17b4fde 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -130,9 +129,16 @@ struct TSLanguage { * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -166,7 +172,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +182,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +190,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 4e093c4..77875d2 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -586,6 +586,31 @@ with (end_paired_statement)) (content)) +================== +keywords +================== + + + {% get_word as word %} + {% get_word as randomword %} + + +--- + +(template + (content) + (unpaired_statement + (tag_name) + (keyword) + (variable + (variable_name))) + (unpaired_statement + (tag_name) + (keyword) + (variable + (variable_name))) + (content)) + ================== custom ================== @@ -612,16 +637,16 @@ custom (unpaired_statement (tag_name)) (content) - (detatched_end_statement + (unpaired_statement (tag_name)) (unpaired_statement (tag_name)) (content) - (detatched_end_statement + (unpaired_statement (tag_name)) (unpaired_statement (tag_name)) (content) - (detatched_end_statement + (unpaired_statement (tag_name)) (content))